ar_TN.php
6 years ago
ca_ES.php
6 years ago
cs_CZ.php
6 years ago
da_DK.php
6 years ago
de_DE.php
6 years ago
en_GB.php
6 years ago
en_US.php
6 years ago
es_ES.php
6 years ago
fr_FR.php
6 years ago
hu_HU.php
6 years ago
id_ID.php
6 years ago
it_IT.php
6 years ago
ja_JP.php
6 years ago
ko_KR.php
6 years ago
lv_LV.php
6 years ago
nl_NL.php
6 years ago
no_NO.php
6 years ago
oc_LNC.php
6 years ago
pl_PL.php
6 years ago
pt_BR.php
6 years ago
pt_PT.php
6 years ago
ro_RO.php
6 years ago
ru_RU.php
6 years ago
se_SV.php
6 years ago
th_TH.php
6 years ago
tr_TR.php
6 years ago
uk_UA.php
6 years ago
vi_VN.php
6 years ago
zh_CN.php
6 years ago
zh_TW.php
6 years ago
zh_TW.php
74 lines
| 1 | <?php |
| 2 | |
| 3 | // locale: traditional chinese (zh-tw) |
| 4 | // author: Ben https://github.com/ben-lin |
| 5 | // author: Senorsen https://github.com/Senorsen |
| 6 | // author: Tino Ehrich https://github.com/fightbulc |
| 7 | |
| 8 | return array( |
| 9 | "months" => explode('_', '一月_二月_三月_四月_五月_� |
| 10 | �月_七月_� |
| 11 | �月_九月_十月_十一月_十二月'), |
| 12 | "monthsShort" => explode('_', '1 月_2 月_3 月_4 月_5 月_6 月_7 月_8 月_9 月_10 月_11 月_12 月'), |
| 13 | "weekdays" => explode('_', '星期一_星期二_星期三_星期四_星期五_星期� |
| 14 | �_星期日'), |
| 15 | "weekdaysShort" => explode('_', '週一_週二_週三_週四_週五_週� |
| 16 | �_週日'), |
| 17 | "weekdaysMin" => explode('_', '一_二_三_四_五_� |
| 18 | �_日'), |
| 19 | "calendar" => array( |
| 20 | "sameDay" => '[今天]', |
| 21 | "nextDay" => '[明天]', |
| 22 | "lastDay" => '[昨天]', |
| 23 | "lastWeek" => '[上]D', |
| 24 | "sameElse" => '[本]D', |
| 25 | "withTime" => 'H:i', |
| 26 | "default" => 'Y-m-d', |
| 27 | ), |
| 28 | "relativeTime" => array( |
| 29 | "future" => '%s� |
| 30 | �', |
| 31 | "past" => '%s前', |
| 32 | "s" => '幾秒', |
| 33 | "ss" => '%d秒', |
| 34 | "m" => '1 分鐘', |
| 35 | "mm" => '%d 分鐘', |
| 36 | "h" => '1 小時', |
| 37 | "hh" => '%d 小時', |
| 38 | "d" => '1 天', |
| 39 | "dd" => '%d 天', |
| 40 | "M" => '1 個月', |
| 41 | "MM" => '%d 個月', |
| 42 | "y" => '1 年', |
| 43 | "yy" => '%d 年', |
| 44 | ), |
| 45 | "ordinal" => function ($number, $token) |
| 46 | { |
| 47 | $symbol = null; |
| 48 | |
| 49 | switch ($token) |
| 50 | { |
| 51 | case 'd': |
| 52 | case 'w': |
| 53 | $symbol = '[日]'; |
| 54 | break; |
| 55 | |
| 56 | case 'n': |
| 57 | $symbol = '[月]'; |
| 58 | break; |
| 59 | |
| 60 | case 'W': |
| 61 | $symbol = '[週]'; |
| 62 | break; |
| 63 | |
| 64 | default: |
| 65 | } |
| 66 | |
| 67 | return $number . $symbol; |
| 68 | }, |
| 69 | "week" => array( |
| 70 | "dow" => 1, // Monday is the first day of the week. |
| 71 | "doy" => 4 // The week that contains Jan 4th is the first week of the year. |
| 72 | ), |
| 73 | ); |
| 74 |