Thanks MiCCAS,
For this problem, on line 214th of index.php file, locate at: templates/ja_teline folder, you will see:
[PHP]<?php
echo “<span>”.date (‘l’).”</span>”;
echo ” <div>”.date (‘M’).” “.date (‘d’).date (‘S’).”</div>”;
?>
[/PHP]
In this example, I will change to French language:
[PHP]<?php
setlocale(LC_ALL, ‘French’);
echo “<span>”.date (‘%l’).”</span>”;
echo ” <div>”.date (‘%M’).” “.date (‘%d’).date (‘%S’).”</div>”;
?>
[/PHP]
You can found the language string to put on setlocate function here:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/vclib/html/_crt_language_strings.asp