We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 790cd1a commit 907f5c9Copy full SHA for 907f5c9
src/locale/nb.js
@@ -3,7 +3,10 @@ import dayjs from 'dayjs'
3
const locale = {
4
name: 'nb',
5
weekdays: 'søndag_mandag_tirsdag_onsdag_torsdag_fredag_lørdag'.split('_'),
6
+ weekdaysShort: 'sø._ma._ti._on._to._fr._lø.'.split('_'),
7
+ weekdaysMin: 'sø_ma_ti_on_to_fr_lø'.split('_'),
8
months: 'januar_februar_mars_april_mai_juni_juli_august_september_oktober_november_desember'.split('_'),
9
+ monthsShort: 'jan._feb._mars_april_mai_juni_juli_aug._sep._okt._nov._des.'.split('_'),
10
ordinal: n => `${n}.`,
11
weekStart: 1,
12
formats: {
@@ -34,4 +37,3 @@ const locale = {
34
37
dayjs.locale(locale, null, true)
35
38
36
39
export default locale
-
0 commit comments