1 |
|
2 | import dayjs from '../index';
|
3 | var locale = {
|
4 | name: 'lb',
|
5 | weekdays: 'Sonndeg_Méindeg_Dënschdeg_Mëttwoch_Donneschdeg_Freideg_Samschdeg'.split('_'),
|
6 | months: 'Januar_Februar_Mäerz_Abrëll_Mee_Juni_Juli_August_September_Oktober_November_Dezember'.split('_'),
|
7 | weekStart: 1,
|
8 | weekdaysShort: 'So._Mé._Dë._Më._Do._Fr._Sa.'.split('_'),
|
9 | monthsShort: 'Jan._Febr._Mrz._Abr._Mee_Jun._Jul._Aug._Sept._Okt._Nov._Dez.'.split('_'),
|
10 | weekdaysMin: 'So_Mé_Dë_Më_Do_Fr_Sa'.split('_'),
|
11 | ordinal: function ordinal(n) {
|
12 | return n;
|
13 | },
|
14 | formats: {
|
15 | LT: 'H:mm [Auer]',
|
16 | LTS: 'H:mm:ss [Auer]',
|
17 | L: 'DD.MM.YYYY',
|
18 | LL: 'D. MMMM YYYY',
|
19 | LLL: 'D. MMMM YYYY H:mm [Auer]',
|
20 | LLLL: 'dddd, D. MMMM YYYY H:mm [Auer]'
|
21 | }
|
22 | };
|
23 | dayjs.locale(locale, null, true);
|
24 | export default locale; |
\ | No newline at end of file |