File tree 29 files changed +29
-0
lines changed
29 files changed +29
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'bg' ,
5
5
weekdays : 'Неделя_Понеделник_Вторник_Сряда_Четвъртък_Петък_Събота' . split ( '_' ) ,
6
6
months : 'Януари_Февруари_Март_Април_Май_Юни_Юли_Август_Септември_Октомври_Ноември_Декември' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
ordinal : n => `${ n } .` ,
8
9
formats : {
9
10
LT : 'H:mm' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'ca' ,
5
5
weekdays : 'Diumenge_Dilluns_Dimarts_Dimecres_Dijous_Divendres_Dissabte' . split ( '_' ) ,
6
6
months : 'Gener_Febrer_Març_Abril_Maig_Juny_Juliol_Agost_Setembre_Octubre_Novembre_Desembre' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
formats : {
8
9
LT : 'H:mm' ,
9
10
LTS : 'H:mm:ss' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'cs' ,
5
5
weekdays : 'neděle_pondělí_úterý_středa_čtvrtek_pátek_sobota' . split ( '_' ) ,
6
6
months : 'leden_únor_březen_duben_květen_červen_červenec_srpen_září_říjen_listopad_prosinec' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
ordinal : n => `${ n } .` ,
8
9
formats : {
9
10
LT : 'H:mm' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'da' ,
5
5
weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag' . split ( '_' ) ,
6
6
months : 'januar_februar_marts_april_maj_juni_juli_august_september_oktober_november_december' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
ordinal : n => `${ n } .` ,
8
9
formats : {
9
10
LT : 'HH:mm' ,
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ const locale = {
6
6
months : 'Januar_Februar_März_April_Mai_Juni_Juli_August_September_Oktober_November_Dezember' . split ( '_' ) ,
7
7
monthsShort : 'Jan_Feb_März_Apr_Mai_Juni_Juli_Aug_Sept_Okt_Nov_Dez' . split ( '_' ) ,
8
8
ordinal : n => `${ n } .` ,
9
+ weekStart : 1 ,
9
10
formats : {
10
11
LTS : 'HH:mm:ss' ,
11
12
LT : 'HH:mm' ,
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ const locale = {
6
6
months : 'Ιανουάριος_Φεβρουάριος_Μάρτιος_Απρίλιος_Μάιος_Ιούνιος_Ιούλιος_Αύγουστος_Σεπτέμβριος_Οκτώβριος_Νοέμβριος_Δεκέμβριος' . split ( '_' ) ,
7
7
monthsShort : 'Ιαν_Φεβ_Μαρ_Απρ_Μαι_Ιουν_Ιουλ_Αυγ_Σεπτ_Οκτ_Νοε_Δεκ' . split ( '_' ) ,
8
8
ordinal : n => n ,
9
+ weekStart : 1 ,
9
10
relativeTime : {
10
11
future : 'σε %s' ,
11
12
past : 'πριν %s' ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const locale = {
8
8
months : 'jaanuar_veebruar_märts_aprill_mai_juuni_juuli_august_september_oktoober_november_detsember' . split ( '_' ) , // Note month names are not capitalized in Estonian
9
9
monthsShort : 'jaan_veebr_märts_apr_mai_juuni_juuli_aug_sept_okt_nov_dets' . split ( '_' ) ,
10
10
ordinal : n => `${ n } .` ,
11
+ weekStart : 1 ,
11
12
/*
12
13
* This relativeTime is currently configured for having proper past
13
14
* tense forms since Estonian needs a separate version for future tense
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const locale = {
8
8
months : 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu' . split ( '_' ) , // Note month names are not capitalized in Finnish
9
9
monthsShort : 'tammikuu_helmikuu_maaliskuu_huhtikuu_toukokuu_kesäkuu_heinäkuu_elokuu_syyskuu_lokakuu_marraskuu_joulukuu' . split ( '_' ) , // There is no short form of months in Finnish so just use the regular long form always
10
10
ordinal : n => `${ n } .` ,
11
+ weekStart : 1 ,
11
12
/*
12
13
* This relativeTime is currently configured for having proper past
13
14
* tense forms since Finnish needs a separate version for future tense
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const locale = {
5
5
weekdays : 'Dimanche_Lundi_Mardi_Mercredi_Jeudi_Vendredi_Samedi' . split ( '_' ) ,
6
6
months : 'Janvier_Février_Mars_Avril_Mai_Juin_Juillet_Août_Septembre_Octobre_Novembre_Décembre' . split ( '_' ) ,
7
7
monthsShort : 'janv_févr_mars_avril_mai_juin_juil_août_sept_oct_nov_déc' . split ( '_' ) ,
8
+ weekStart : 1 ,
8
9
formats : {
9
10
LT : 'HH:mm' ,
10
11
LTS : 'HH:mm:ss' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'hr' ,
5
5
weekdays : 'Nedjelja_Ponedjeljak_Utorak_Srijeda_Četvrtak_Petak_Subota' . split ( '_' ) ,
6
6
months : 'Siječanj_Veljača_Ožujak_Travanj_Svibanj_Lipanj_Srpanj_Kolovoz_Rujan_Listopad_Studeni_Prosinac' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
formats : {
8
9
LT : 'H:mm' ,
9
10
LTS : 'H:mm:ss' ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const locale = {
8
8
months : 'január_február_március_április_május_június_július_augusztus_szeptember_október_november_december' . split ( '_' ) ,
9
9
monthsShort : 'jan_feb_márc_ápr_máj_jún_júl_aug_szept_okt_nov_dec' . split ( '_' ) ,
10
10
ordinal : n => `${ n } .` ,
11
+ weekStart : 1 ,
11
12
relativeTime : {
12
13
future : '%s múlva' ,
13
14
past : '%s' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'id' ,
5
5
weekdays : 'Minggu_Senin_Selasa_Rabu_Kamis_Jumat_Sabtu' . split ( '_' ) ,
6
6
months : 'Januari_Februari_Maret_April_Mei_Juni_Juli_Agustus_September_Oktober_November_Desember' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
formats : {
8
9
LT : 'HH.mm' ,
9
10
LTS : 'HH.mm.ss' ,
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ const locale = {
6
6
weekdaysShort : 'dom_lun_mar_mer_gio_ven_sab' . split ( '_' ) ,
7
7
weekdaysMin : 'do_lu_ma_me_gi_ve_sa' . split ( '_' ) ,
8
8
months : 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre' . split ( '_' ) ,
9
+ weekStart : 1 ,
9
10
monthsShort : 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic' . split ( '_' ) ,
10
11
formats : {
11
12
LT : 'HH:mm' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'ka' ,
5
5
weekdays : 'კვირა_ორშაბათი_სამშაბათი_გარემო_ხუთშაბათი_პარასკევი_შაბათს' . split ( '_' ) ,
6
6
months : 'იანვარი_თებერვალი_მარტი_აპრილი_მაისი_ივნისი_ივლისი_აგვისტო_სექტემბერი_ოქტომბერი_ნოემბერი_დეკემბერი' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
formats : {
8
9
LT : 'h:mm A' ,
9
10
LTS : 'h:mm:ss A' ,
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ const locale = {
7
7
weekdaysMin : 'жк_дй_сй_ср_бй_жм_сн' . split ( '_' ) ,
8
8
months : 'қаңтар_ақпан_наурыз_сәуір_мамыр_маусым_шілде_тамыз_қыркүйек_қазан_қараша_желтоқсан' . split ( '_' ) ,
9
9
monthsShort : 'қаң_ақп_нау_сәу_мам_мау_шіл_там_қыр_қаз_қар_жел' . split ( '_' ) ,
10
+ weekStart : 1 ,
10
11
relativeTime : {
11
12
future : '%s ішінде' ,
12
13
past : '%s бұрын' ,
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const locale = {
5
5
weekdays : 'sekmadienis_pirmadienis_antradienis_trečiadienis_ketvirtadienis_penktadienis_šeštadienis' . split ( '_' ) ,
6
6
months : 'sausis_vasaris_kovas_balandis_gegužė_birželis_liepa_rugpjūtis_rugsėjis_spalis_lapkritis_gruodis' . split ( '_' ) ,
7
7
ordinal : n => `${ n } .` ,
8
+ weekStart : 1 ,
8
9
relativeTime : {
9
10
future : 'už %s' ,
10
11
past : 'prieš %s' ,
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const locale = {
5
5
weekdays : 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag' . split ( '_' ) ,
6
6
months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember' . split ( '_' ) ,
7
7
ordinal : n => `${ n } .` ,
8
+ weekStart : 1 ,
8
9
formats : {
9
10
LT : 'HH:mm' ,
10
11
LTS : 'HH:mm:ss' ,
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const locale = {
5
5
weekdays : 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag' . split ( '_' ) ,
6
6
months : 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december' . split ( '_' ) ,
7
7
ordinal : n => `${ n } .` ,
8
+ weekStart : 1 ,
8
9
formats : {
9
10
LT : 'HH:mm' ,
10
11
LTS : 'HH:mm:ss' ,
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const locale = {
8
8
months : 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember' . split ( '_' ) ,
9
9
monthsShort : 'jan_feb_mar_apr_mai_jun_jul_aug_sep_okt_nov_des' . split ( '_' ) ,
10
10
ordinal : n => `${ n } .` ,
11
+ weekStart : 1 ,
11
12
relativeTime : {
12
13
future : 'om %s' ,
13
14
past : 'for %s sidan' ,
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ const locale = {
7
7
weekdaysMin : 'Nd_Pn_Wt_Śr_Cz_Pt_So' . split ( '_' ) ,
8
8
months : 'Styczeń_Luty_Marzec_Kwiecień_Maj_Czerwiec_Lipiec_Sierpień_Wrzesień_Październik_Listopad_Grudzień' . split ( '_' ) ,
9
9
ordinal : n => `${ n } .` ,
10
+ weekStart : 1 ,
10
11
relativeTime : {
11
12
future : 'za %s' ,
12
13
past : 'po %s' ,
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ const locale = {
5
5
weekdays : 'Domingo_Segunda-feira_Terça-feira_Quarta-feira_Quinta-feira_Sexta-feira_Sábado' . split ( '_' ) ,
6
6
months : 'Janeiro_Fevereiro_Março_Abril_Maio_Junho_Julho_Agosto_Setembro_Outubro_Novembro_Dezembro' . split ( '_' ) ,
7
7
ordinal : n => `${ n } º` ,
8
+ weekStart : 1 ,
8
9
relativeTime : {
9
10
future : 'em %s' ,
10
11
past : 'há %s' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'ro' ,
5
5
weekdays : 'Duminică_Luni_Marți_Miercuri_Joi_Vineri_Sâmbătă' . split ( '_' ) ,
6
6
months : 'Ianuarie_Februarie_Martie_Aprilie_Mai_Iunie_Iulie_August_Septembrie_Octombrie_Noiembrie_Decembrie' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
formats : {
8
9
LT : 'H:mm' ,
9
10
LTS : 'H:mm:ss' ,
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ const locale = {
7
7
weekdaysMin : 'вс_пн_вт_ср_чт_пт_сб' . split ( '_' ) ,
8
8
months : 'январь_февраль_март_апрель_май_июнь_июль_август_сентябрь_октябрь_ноябрь_декабрь' . split ( '_' ) ,
9
9
monthsShort : 'янв_фев_мар_апр_май_июн_июл_авг_сен_окт_ноя_дек' . split ( '_' ) ,
10
+ weekStart : 1 ,
10
11
formats : {
11
12
LT : 'H:mm' ,
12
13
LTS : 'H:mm:ss' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'sk' ,
5
5
weekdays : 'Nedeľa_Pondelok_Utorok_Streda_Štvrtok_Piatok_Sobota' . split ( '_' ) ,
6
6
months : 'január_február_marec_apríl_máj_jún_júl_august_september_október_november_december' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
relativeTime : {
8
9
future : 'o %s' ,
9
10
past : 'pred %s' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'sr-cyrl' ,
5
5
weekdays : 'Недеља_Понедељак_Уторак_Среда_Четвртак_Петак_Субота' . split ( '_' ) ,
6
6
months : 'Јануар_Фебруар_Март_Април_Мај_Јун_Јул_Август_Септембар_Октобар_Новембар_Децембар' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
relativeTime : {
8
9
future : 'за %s' ,
9
10
past : 'пре %s' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'sr' ,
5
5
weekdays : 'Nedelja_Ponedeljak_Utorak_Sreda_Četvrtak_Petak_Subota' . split ( '_' ) ,
6
6
months : 'Januar_Februar_Mart_April_Maj_Jun_Jul_Avgust_Septembar_Oktobar_Novembar_Decembar' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
relativeTime : {
8
9
future : 'za %s' ,
9
10
past : 'pre %s' ,
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'sv' ,
5
5
weekdays : 'söndag_måndag_tisdag_onsdag_torsdag_fredag_lördag' . split ( '_' ) ,
6
6
months : 'januari_februari_mars_april_maj_juni_juli_augusti_september_oktober_november_december' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
ordinal : ( n ) => {
8
9
const b = n % 10
9
10
const o = ( b === 1 ) || ( b === 2 ) ? 'a' : 'e'
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ const locale = {
4
4
name : 'tr' ,
5
5
weekdays : 'Pazar_Pazartesi_Salı_Çarşamba_Perşembe_Cuma_Cumartesi' . split ( '_' ) ,
6
6
months : 'Ocak_Şubat_Mart_Nisan_Mayıs_Haziran_Temmuz_Ağustos_Eylül_Ekim_Kasım_Aralık' . split ( '_' ) ,
7
+ weekStart : 1 ,
7
8
formats : {
8
9
LT : 'HH:mm' ,
9
10
LTS : 'HH:mm:ss' ,
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ const locale = {
7
7
weekdaysMin : 'нд_пн_вт_ср_чт_пт_сб' . split ( '_' ) ,
8
8
months : 'січень_лютий_березень_квітень_травень_червень_липень_серпень_вересень_жовтень_листопад_грудень' . split ( '_' ) ,
9
9
monthsShort : 'сiч_лют_бер_квiт_трав_черв_лип_серп_вер_жовт_лист_груд' . split ( '_' ) ,
10
+ weekStart : 1 ,
10
11
relativeTime : {
11
12
future : 'через %s' ,
12
13
past : '%s назад' ,
You can’t perform that action at this time.
0 commit comments