1 |
|
2 | import dayjs from '../index';
|
3 | var locale = {
|
4 | name: 'sq',
|
5 | weekdays: 'E Diel_E Hënë_E Martë_E Mërkurë_E Enjte_E Premte_E Shtunë'.split('_'),
|
6 | months: 'Janar_Shkurt_Mars_Prill_Maj_Qershor_Korrik_Gusht_Shtator_Tetor_Nëntor_Dhjetor'.split('_'),
|
7 | weekStart: 1,
|
8 | weekdaysShort: 'Die_Hën_Mar_Mër_Enj_Pre_Sht'.split('_'),
|
9 | monthsShort: 'Jan_Shk_Mar_Pri_Maj_Qer_Kor_Gus_Sht_Tet_Nën_Dhj'.split('_'),
|
10 | weekdaysMin: 'D_H_Ma_Më_E_P_Sh'.split('_'),
|
11 | ordinal: function ordinal(n) {
|
12 | return n;
|
13 | },
|
14 | formats: {
|
15 | LT: 'HH:mm',
|
16 | LTS: 'HH:mm:ss',
|
17 | L: 'DD/MM/YYYY',
|
18 | LL: 'D MMMM YYYY',
|
19 | LLL: 'D MMMM YYYY HH:mm',
|
20 | LLLL: 'dddd, D MMMM YYYY HH:mm'
|
21 | },
|
22 | relativeTime: {
|
23 | future: 'në %s',
|
24 | past: '%s më parë',
|
25 | s: 'disa sekonda',
|
26 | m: 'një minutë',
|
27 | mm: '%d minuta',
|
28 | h: 'një orë',
|
29 | hh: '%d orë',
|
30 | d: 'një ditë',
|
31 | dd: '%d ditë',
|
32 | M: 'një muaj',
|
33 | MM: '%d muaj',
|
34 | y: 'një vit',
|
35 | yy: '%d vite'
|
36 | }
|
37 | };
|
38 | dayjs.locale(locale, null, true);
|
39 | export default locale; |
\ | No newline at end of file |