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
lv_LV.php
56 lines
| 1 | <?php |
| 2 | |
| 3 | // locale: Latviešu (Latvian) (lv_LV) |
| 4 | // author: Artjoms Nemiro https://github.com/LinMAD |
| 5 | |
| 6 | return array( |
| 7 | 'months' => explode( |
| 8 | '_', |
| 9 | 'Janvārī_Februārī_Martā_Aprīlī_Maijā_Jūnijā_Jūlijā_Augustā_Septembrī_Oktobrī_Novembrī_Decembrī' |
| 10 | ), |
| 11 | 'monthsNominative' => explode( |
| 12 | '_', |
| 13 | 'Janvāris_Februāris_Marts_Aprīlis_Maijs_Jūnijs_Jūlijs_Augusts_Septembris_Oktobris_Novembris_Decembris' |
| 14 | ), |
| 15 | 'monthsShort' => explode( |
| 16 | '_', |
| 17 | 'Janv_Febr_Mar_Apr_Maijs_Jūn_Jūl_Aug_Sept_Okt_Nov_Dec' |
| 18 | ), |
| 19 | 'weekdays' => explode( |
| 20 | '_', |
| 21 | 'Pirmdiena_Otrdiena_Trešdiena_Ceturtdiena_Piektdiena_Sestdiena_Svētdiena' |
| 22 | ), |
| 23 | 'weekdaysShort' => explode('_', 'Pr_Ot_Tr_Ce_Pk_Se_Sv'), |
| 24 | 'calendar' => array( |
| 25 | 'sameDay' => '[Šodien]', |
| 26 | 'nextDay' => '[Rītdien]', |
| 27 | 'lastDay' => '[Vakardien]', |
| 28 | 'lastWeek' => '[Pagājušā] l', |
| 29 | 'sameElse' => 'l', |
| 30 | 'withTime' => '[plkst.] H:i', |
| 31 | 'default' => 'd.m.Y', |
| 32 | ), |
| 33 | 'relativeTime' => array( |
| 34 | 'future' => 'pēc %s', |
| 35 | 'past' => 'pirms %s', |
| 36 | 's' => 'dažām sekundēm', |
| 37 | 'ss' => '%d sekundēm', |
| 38 | 'm' => 'minūtes', |
| 39 | 'mm' => '%d minūtēm', |
| 40 | 'h' => 'stundas', |
| 41 | 'hh' => '%d stundām', |
| 42 | 'd' => 'dienas', |
| 43 | 'dd' => '%d dienām', |
| 44 | 'M' => 'mēneša', |
| 45 | 'MM' => '%d mēnešiem', |
| 46 | 'y' => 'gada', |
| 47 | 'yy' => '%d gadiem', |
| 48 | ), |
| 49 | 'ordinal' => function ($number) { |
| 50 | return $number . '.'; |
| 51 | }, |
| 52 | 'week' => array( |
| 53 | 'dow' => 1, // Monday is the first day of the week. |
| 54 | 'doy' => 4 // The week that contains Jan 4th is the first week of the year. |
| 55 | ), |
| 56 | ); |