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
oc_LNC.php
64 lines
| 1 | <?php |
| 2 | |
| 3 | // locale: Occitan languedocian dialect (oc_lnc) |
| 4 | // author: CROWD Studio https://github.com/crowd-studio |
| 5 | |
| 6 | return array( |
| 7 | "months" => explode('_', 'genièr_febrièr_març_abril_mai_junh_julhet_agost_setembre_octobre_novembre_decembre'), |
| 8 | "monthsShort" => explode('_', 'gen._feb._mar._abr._mai._jun._jul._ag._set._oct._nov._dec.'), |
| 9 | "weekdays" => explode('_', 'dimenge_diluns_dimars_dimècres_dijòus_divendres_dissabte'), |
| 10 | "weekdaysShort" => explode('_', 'dg._dl._dm._dc._dj._dv._ds.'), |
| 11 | "calendar" => array( |
| 12 | "sameDay" => '[uèi]', |
| 13 | "nextDay" => '[deman]', |
| 14 | "lastDay" => '[ièr]', |
| 15 | "lastWeek" => 'l [passat]', |
| 16 | "sameElse" => 'l', |
| 17 | "withTime" => '[a] H[o]i', |
| 18 | "default" => 'd/m/Y', |
| 19 | ), |
| 20 | "relativeTime" => array( |
| 21 | "future" => 'dins %s', |
| 22 | "past" => 'fa %s', |
| 23 | "s" => 'unas segondas', |
| 24 | "ss" => '%d segondas', |
| 25 | "m" => 'una minuta', |
| 26 | "mm" => '%d minutas', |
| 27 | "h" => 'una ora', |
| 28 | "hh" => '%d oras', |
| 29 | "d" => 'un jorn', |
| 30 | "dd" => '%d jorns', |
| 31 | "M" => 'un mes', |
| 32 | "MM" => '%d meses', |
| 33 | "y" => 'un an', |
| 34 | "yy" => '%d ans', |
| 35 | ), |
| 36 | "ordinal" => function ($number) |
| 37 | { |
| 38 | switch ($number) |
| 39 | { |
| 40 | case 1: |
| 41 | $output = 'r'; |
| 42 | break; |
| 43 | case 2: |
| 44 | $output = 'n'; |
| 45 | break; |
| 46 | case 3: |
| 47 | $output = 'r'; |
| 48 | break; |
| 49 | case 4: |
| 50 | $output = 't'; |
| 51 | break; |
| 52 | default: |
| 53 | $output = 'è'; |
| 54 | break; |
| 55 | } |
| 56 | |
| 57 | return $number . '[' . $output . ']'; |
| 58 | }, |
| 59 | "week" => array( |
| 60 | "dow" => 1, // Monday is the first day of the week. |
| 61 | "doy" => 4 // The week that contains Jan 4th is the first week of the year. |
| 62 | ), |
| 63 | ); |
| 64 |