Skip to content

Commit

Permalink
fix: Update nb (Norsk Bokmål) locale (#604)
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiralis authored and iamkun committed May 28, 2019
1 parent 790cd1a commit 907f5c9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/locale/nb.js
Original file line number Diff line number Diff line change
Expand Up @@ -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: {
Expand Down Expand Up @@ -34,4 +37,3 @@ const locale = {
dayjs.locale(locale, null, true)

export default locale

0 comments on commit 907f5c9

Please sign in to comment.