From 907f5c9833e382de5689886e2a9509c64eb3c81b Mon Sep 17 00:00:00 2001 From: Ronny Hanssen Date: Tue, 28 May 2019 05:39:39 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20Update=20=20nb=20(Norsk=20Bokm=C3=A5l)?= =?UTF-8?q?=20locale=20(#604)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/locale/nb.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 -