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
ja_JP.php
44 lines
| 1 | <?php |
| 2 | // locale: Japanese ( ja-jp ) |
| 3 | // author: Takumi https://github.com/takumi-dev |
| 4 | return array( |
| 5 | "months" => explode('_', '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'), |
| 6 | "monthsShort" => explode('_', '1月_2月_3月_4月_5月_6月_7月_8月_9月_10月_11月_12月'), |
| 7 | "weekdays" => explode('_', '月曜日_火曜日_水曜日_木曜日_金曜日_土曜日_日曜日'), |
| 8 | "weekdaysShort" => explode('_', '月_火_水_木_金_土_日'), |
| 9 | "calendar" => array( |
| 10 | "sameDay" => '[今日]', |
| 11 | "nextDay" => '[明日]', |
| 12 | "lastDay" => '[昨日]', |
| 13 | "lastWeek" => '[� |
| 14 | �週]l', |
| 15 | "sameElse" => 'l', |
| 16 | "withTime" => 'H時i分', |
| 17 | "default" => 'Y年m月d日', |
| 18 | ), |
| 19 | "relativeTime" => array( |
| 20 | "future" => '%s後', |
| 21 | "past" => '%s前', |
| 22 | "s" => '数秒', |
| 23 | "ss" => '%d秒', |
| 24 | "m" => '1分', |
| 25 | "mm" => '%d分', |
| 26 | "h" => '1時間', |
| 27 | "hh" => '%d時間', |
| 28 | "d" => '1日', |
| 29 | "dd" => '%d日', |
| 30 | "M" => '1ヶ月', |
| 31 | "MM" => '%dヶ月', |
| 32 | "y" => '1年', |
| 33 | "yy" => '%d年', |
| 34 | ), |
| 35 | "ordinal" => function ($number) |
| 36 | { |
| 37 | $prefix = '第'; |
| 38 | return $prefix.$number; |
| 39 | }, |
| 40 | "week" => array( |
| 41 | "dow" => 1, // Monday is the first day of the week. |
| 42 | "doy" => 4 // The week that contains Jan 4th is the first week of the year. |
| 43 | ), |
| 44 | ); |