Thread: [solved] Locale
View Single Post
  #6  
Old 12-10-2012, 12:41 PM
akia akia is offline
Member
 
Join Date: May 2012
Posts: 12
I've tried some more tests, just to rule out IPB.

I've uploaded a sample php file with the following in:

PHP Code:
<?php
setlocale
(LC_TIME"C");
echo 
strftime("%A");
setlocale(LC_TIME"fi_FI");
echo 
strftime(" in Finnish is %A,");
setlocale(LC_TIME"fr_FR");
echo 
strftime(" in French %A and");
setlocale(LC_TIME"de_DE");
echo 
strftime(" in German %A.\n");
?>
With Apache running I get:

Monday in Finnish is maanantai, in French lundi and in German Montag.

With litespeed running I get:
Monday in Finnish is Monday, in French Monday and in German Monday.
Reply With Quote