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
id_ID.php
45 lines
| 1 | <?php |
| 2 | |
| 3 | // locale: Indonesian (Indonesia) (id-id) |
| 4 | // author: Yuda Sukmana https://github.com/ydatech |
| 5 | |
| 6 | return array( |
| 7 | "months" => explode('_', 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember'), |
| 8 | "monthsShort" => explode('_', 'Jan_Feb_Mar_Apr_Mei_Jun_Jul_Agu_Sep_Okt_Nov_Des'), |
| 9 | "weekdays" => explode('_', 'Senin_Selasa_Rabu_Kamis_Jum\'at_Sabtu_Minggu'), |
| 10 | "weekdaysShort" => explode('_', 'Sen_Sel_Rab_Kam_Jum_Sab_Ming'), |
| 11 | "calendar" => array( |
| 12 | "sameDay" => '[Hari ini]', |
| 13 | "nextDay" => '[Besok]', |
| 14 | "lastDay" => '[Kemarin]', |
| 15 | "lastWeek" => 'l [Kemarin]', |
| 16 | "sameElse" => 'l', |
| 17 | "withTime" => '[pukul] H:i', |
| 18 | "default" => 'd/m/Y', |
| 19 | ), |
| 20 | "relativeTime" => array( |
| 21 | "future" => 'dalam %s', |
| 22 | "past" => '%s yang lalu', |
| 23 | "s" => 'beberapa detik', |
| 24 | "ss" => '%d detik', |
| 25 | "m" => 'semenit', |
| 26 | "mm" => '%d menit', |
| 27 | "h" => 'satu jam', |
| 28 | "hh" => '%d jam', |
| 29 | "d" => 'satu hari', |
| 30 | "dd" => '%d hari', |
| 31 | "M" => 'satu bulan', |
| 32 | "MM" => '%d bulan', |
| 33 | "y" => 'satu tahun', |
| 34 | "yy" => '%d tahun', |
| 35 | ), |
| 36 | "ordinal" => function ($number) |
| 37 | { |
| 38 | |
| 39 | return $number; |
| 40 | }, |
| 41 | "week" => array( |
| 42 | "dow" => 1, // Monday is the first day of the week. |
| 43 | "doy" => 4 // The week that contains Jan 4th is the first week of the year. |
| 44 | ), |
| 45 | ); |