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
th_TH.php
44 lines
| 1 | <?php |
| 2 | |
| 3 | // locale: Thailand (th_TH) |
| 4 | // author: Tistee Boonsuwan https://github.com/partynetwork |
| 5 | |
| 6 | return array( |
| 7 | "months" => explode('_', 'มกราคม_กุมภาพันธ์_มีนาคม_เมษายน_พฤษภาคม_มิถุนายน_กรกฎาคม_สิงหาคม_กันยายน_ตุลาคม_พฤศจิกายน_ธันวาคม'), |
| 8 | "monthsShort" => explode('_', 'ม.ค._ก.พ._มี.ค._เม.ย._พ.ค._มิ.ย._ก.ค._ส.ค._ก.ย._ต.ค._พ.ย._ธ.ค.'), |
| 9 | "weekdays" => explode('_', 'จันทร์_อังคาร_พุธ_พฤหัสบดี_ศุกร์_เสาร์_อาทิตย์'), |
| 10 | "weekdaysShort" => explode('_', 'จ._อ._พ._พฤ_ศ._ส._อา.'), |
| 11 | "calendar" => array( |
| 12 | "sameDay" => '[วันนี้ เวลา]', |
| 13 | "nextDay" => '[พรุ่งนี้ เวลา]', |
| 14 | "lastDay" => '[เมื่อวานนี้]', |
| 15 | "lastWeek" => '[สัปดาห์ที่แล้ว] l', |
| 16 | "sameElse" => 'l', |
| 17 | "withTime" => '[เมื่อ] H:i', |
| 18 | "default" => 'd/m/Y', |
| 19 | ), |
| 20 | "relativeTime" => array( |
| 21 | "future" => 'อีก %s', |
| 22 | "past" => '%s ที่แล้ว', |
| 23 | "s" => 'ไม่กี่วินาที', |
| 24 | "ss" => '%d วินาที', |
| 25 | "m" => '1 นาที', |
| 26 | "mm" => '%d นาที', |
| 27 | "h" => '1 ชั่วโมง', |
| 28 | "hh" => '%d ชั่วโมง', |
| 29 | "d" => '1 วัน', |
| 30 | "dd" => '%d วัน', |
| 31 | "M" => '1 เดือน', |
| 32 | "MM" => '%d เดือน', |
| 33 | "y" => '1 ปี', |
| 34 | "yy" => '%d ปี', |
| 35 | ), |
| 36 | "ordinal" => function ($number) |
| 37 | { |
| 38 | return $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 | ); |