UNPKG

764 BJavaScriptView Raw
1// Montenegrin [me]
2import dayjs from '../index';
3var locale = {
4 name: 'me',
5 weekdays: 'nedjelja_ponedjeljak_utorak_srijeda_četvrtak_petak_subota'.split('_'),
6 months: 'januar_februar_mart_april_maj_jun_jul_avgust_septembar_oktobar_novembar_decembar'.split('_'),
7 weekStart: 1,
8 weekdaysShort: 'ned._pon._uto._sri._čet._pet._sub.'.split('_'),
9 monthsShort: 'jan._feb._mar._apr._maj_jun_jul_avg._sep._okt._nov._dec.'.split('_'),
10 weekdaysMin: 'ne_po_ut_sr_če_pe_su'.split('_'),
11 ordinal: function ordinal(n) {
12 return n;
13 },
14 formats: {
15 LT: 'H:mm',
16 LTS: 'H:mm:ss',
17 L: 'DD.MM.YYYY',
18 LL: 'D. MMMM YYYY',
19 LLL: 'D. MMMM YYYY H:mm',
20 LLLL: 'dddd, D. MMMM YYYY H:mm'
21 }
22};
23dayjs.locale(locale, null, true);
24export default locale;
\No newline at end of file