Hi Joseph
I was just wondering why we don't have the option to set the datetime format as we wish (through Administration panels or 'Edit strings' page).
For example:
- English users would say:
Tuesday, 7 November 2006, 06:07 AM
- But we would say:
95/11/07 06:07 AM 星期二
Note: 95 is Taiwan year, which is calculated from 2006 - 1911 = 95, 星期二 is Tuesday in Chinese.
The following images are captured from
http://moodle.club.tw/moodle, which is a moodle site dedicated to Moodle localization in Taiwan. The datetime format shown below is still in English, which is supposed to be in Chinese(Taiwan) format.



The following are captured from my moodle site, whose datetime format is affected by the 'langconfig.php' file I edited manually earlier.



The following is my 'lanconfig.php'
<?php
$string['locale'] = "zh_TW.UTF-8";
$string['localewin'] = "Chinese_Taiwan.950";
$string['localewincharset'] = "CP950";
$string['oldcharset'] = 'BIG5';
$string['thischarset'] = "UTF-8";
$string['thislanguage'] = "正體中文";
$string['strftimedateshort'] = '%%m/%%d';
$string['strftimedatetime'] = '%%x %%H:%%M';
$string['strftimedaydate'] = '%%A %%x';
$string['strftimedaydatetime'] = '%%A %%x (%%H:%%M)';
$string['strftimedayshort'] = '%%A %%m/%%d';
$string['strftimedaytime'] = '%%a %%H:%%M';
$string['strftimemonthyear'] = '%%Y/%%m';
$string['strftimerecent'] = '%%x %%H:%%M';
$string['strftimerecentfull'] = '%%a %%x %%H:%%M';
$string['strftimetime'] = '%%H:%%M';
?>
Pegasus