diff --git a/src/locale/nb.js b/src/locale/nb.js index a7dd0bcef..f82432ec3 100644 --- a/src/locale/nb.js +++ b/src/locale/nb.js @@ -3,7 +3,10 @@ import dayjs from 'dayjs' const locale = { name: 'nb', weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'), + weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'), + weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'), months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'), + monthsShort: 'jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.'.split('_'), ordinal: n => `${n}.`, weekStart: 1, formats: { @@ -34,4 +37,3 @@ const locale = { dayjs.locale(locale, null, true) export default locale -