You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
// Central Atlas Tamazight Latin [tzm-latn] |
|
import dayjs from '../index'; |
|
var locale = { |
|
name: 'tzm-latn', |
|
weekdays: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), |
|
months: 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), |
|
weekStart: 6, |
|
weekdaysShort: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), |
|
monthsShort: 'innayr_brˤayrˤ_marˤsˤ_ibrir_mayyw_ywnyw_ywlywz_ɣwšt_šwtanbir_ktˤwbrˤ_nwwanbir_dwjnbir'.split('_'), |
|
weekdaysMin: 'asamas_aynas_asinas_akras_akwas_asimwas_asiḍyas'.split('_'), |
|
ordinal: function ordinal(n) { |
|
return n; |
|
}, |
|
formats: { |
|
LT: 'HH:mm', |
|
LTS: 'HH:mm:ss', |
|
L: 'DD/MM/YYYY', |
|
LL: 'D MMMM YYYY', |
|
LLL: 'D MMMM YYYY HH:mm', |
|
LLLL: 'dddd D MMMM YYYY HH:mm' |
|
}, |
|
relativeTime: { |
|
future: 'dadkh s yan %s', |
|
past: 'yan %s', |
|
s: 'imik', |
|
m: 'minuḍ', |
|
mm: '%d minuḍ', |
|
h: 'saɛa', |
|
hh: '%d tassaɛin', |
|
d: 'ass', |
|
dd: '%d ossan', |
|
M: 'ayowr', |
|
MM: '%d iyyirn', |
|
y: 'asgas', |
|
yy: '%d isgasn' |
|
} |
|
}; |
|
dayjs.locale(locale, null, true); |
|
export default locale; |