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
se_SV.php
43 lines
| 1 | <?php |
| 2 | |
| 3 | // locale: Swedish (se-SV) |
| 4 | // author: Martin Trobäck https://github.com/lekoaf |
| 5 | |
| 6 | return array( |
| 7 | "months" => explode('_', 'Januari_Februari_Mars_April_Maj_Juni_Juli_Augusti_September_Oktober_November_December'), |
| 8 | "monthsShort" => explode('_', 'Jan_Feb_Mar_Apr_Maj_Jun_Jul_Aug_Sep_Okt_Nov_Dec'), |
| 9 | "weekdays" => explode('_', 'Måndag_Tisdag_Onsdag_Torsdag_Fredag_Lördag_Söndag'), |
| 10 | "weekdaysShort" => explode('_', 'Mån_Tis_Ons_Tor_Fre_Lör_Sön'), |
| 11 | "calendar" => array( |
| 12 | "sameDay" => '[Idag]', |
| 13 | "nextDay" => '[Imorgon]', |
| 14 | "lastDay" => '[Igår]', |
| 15 | "lastWeek" => '[Förra] l', |
| 16 | "sameElse" => 'l', |
| 17 | "withTime" => '[kl] H:i', |
| 18 | "default" => 'Y/m/d', |
| 19 | ), |
| 20 | "relativeTime" => array( |
| 21 | "future" => 'om %s', |
| 22 | "past" => '%s sen', |
| 23 | "s" => 'några sekunder', |
| 24 | "ss" => '%d sekunder', |
| 25 | "m" => 'en minut', |
| 26 | "mm" => '%d minuter', |
| 27 | "h" => 'en timme', |
| 28 | "hh" => '%d timmar', |
| 29 | "d" => 'en dag', |
| 30 | "dd" => '%d dagar', |
| 31 | "M" => 'en månad', |
| 32 | "MM" => '%d månader', |
| 33 | "y" => 'ett år', |
| 34 | "yy" => '%d år', |
| 35 | ), |
| 36 | "ordinal" => function ($number) { |
| 37 | return $number; |
| 38 | }, |
| 39 | "week" => array( |
| 40 | "dow" => 1, // Monday is the first day of the week. |
| 41 | "doy" => 4 // The week that contains Jan 4th is the first week of the year. |
| 42 | ), |
| 43 | ); |