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
vi_VN.php
48 lines
| 1 | <?php |
| 2 | |
| 3 | // locale: vietnamese - Viet Nam (vi_VN) |
| 4 | // author: Oanh Nguyen https://github.com/oanhnn |
| 5 | |
| 6 | return array( |
| 7 | "months" => explode('_', 'Tháng một_Tháng hai_Tháng ba_Tháng tư_Tháng năm_Tháng sáu_Tháng bảy_Tháng tám_Tháng chín_Tháng mười_Tháng mười một_Tháng mười hai'), |
| 8 | "monthsNominative" => explode('_', 'Tháng 1_Tháng 2_Tháng 3_Tháng 4_Tháng 5_Tháng 6_Tháng 7_Tháng 8_Tháng 9_Tháng 10_Tháng 11_Tháng 12'), |
| 9 | "monthsShort" => explode('_', 'Th1_Th2_Th3_Th4_Th5_Th6_Th7_Th8_Th9_Th10_Th11_Th12'), |
| 10 | "weekdays" => explode('_', 'Thứ 2_Thứ 3_Thứ 4_Thứ 5_Thứ 6_Thứ 7_Chủ nhật'), |
| 11 | "weekdaysShort" => explode('_', 'T2_T3_T4_T5_T6_T7_CN'), |
| 12 | "calendar" => array( |
| 13 | "sameDay" => '[Hôm nay]', |
| 14 | "nextDay" => '[Ngày mai]', |
| 15 | "lastDay" => '[Hôm qua]', |
| 16 | "lastWeek" => '[tuần trước] l', |
| 17 | "sameElse" => 'l', |
| 18 | "withTime" => '[lúc] H:i', |
| 19 | "default" => 'd/m/Y', |
| 20 | ), |
| 21 | "relativeTime" => array( |
| 22 | "future" => 'vào %s', |
| 23 | "past" => '%s trước đây', |
| 24 | "s" => 'một vài giây', |
| 25 | "ss" => '%d giây', |
| 26 | "m" => 'một phút', |
| 27 | "mm" => '%d phút', |
| 28 | "h" => 'một giờ', |
| 29 | "hh" => '%d giờ', |
| 30 | "d" => 'một ngày', |
| 31 | "dd" => '%d ngày', |
| 32 | "M" => 'một tháng', |
| 33 | "MM" => '%d tháng', |
| 34 | "y" => 'một năm', |
| 35 | "yy" => '%d năm', |
| 36 | ), |
| 37 | "ordinal" => function ($number) { |
| 38 | $prefix = "thứ "; |
| 39 | |
| 40 | return $prefix . $number; |
| 41 | }, |
| 42 | "week" => array( |
| 43 | "dow" => 1, // Monday is the first day of the week. |
| 44 | "doy" => 4 // The week that contains Jan 4th is the first week of the year. |
| 45 | ), |
| 46 | ); |
| 47 | |
| 48 |