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
en_US.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | // locale: american english (en_US) |
| 4 | |
| 5 | $locale = require __DIR__ . '/en_GB.php'; |
| 6 | $locale['calendar']['withTime'] = '[at] h:i A'; |
| 7 | $locale['calendar']['default'] = 'm/d/Y'; |
| 8 | $locale['week']['dow'] = 7; |
| 9 | $locale["customFormats"] = array( |
| 10 | "LT" => "g:i A", // 8:30 PM |
| 11 | "L" => "m/d/Y", // 09/04/1986 |
| 12 | "l" => "n/j/Y", // 9/4/1986 |
| 13 | "LL" => "F j, Y", // September 4, 1986 |
| 14 | "ll" => "M j, Y", // Sep 4, 1986 |
| 15 | "LLL" => "F j, Y g:i A", // September 4, 1986 8:30 PM |
| 16 | "lll" => "M j, Y g:i A", // Sep 4, 1986 8:30 PM |
| 17 | "LLLL" => "l, F j, Y g:i A", // Thursday, September 4, 1986 8:30 PM |
| 18 | "llll" => "D, M j, Y g:i A", // Thu, Sep 4, 1986 8:30 PM |
| 19 | ); |
| 20 | |
| 21 | return $locale; |