dateSettings.php
687 Bytes
<?php
/**
* Locale translations for date control and php-date-formatter settings.
* NOTE: this file must be saved in UTF-8 encoding.
*/
return [
'days' => ["星期日", "星期一", "星期二", "星期三", "星期四", "星期五", "星期六", "星期日"],
'daysShort' => ["週日", "週一", "週二", "週三", "週四", "週五", "週六", "週日"],
'months' => ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
'monthsShort' => ["一月", "二月", "三月", "四月", "五月", "六月", "七月", "八月", "九月", "十月", "十一月", "十二月"],
'meridiem' => ['AM', 'PM']
];
?>