We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41b1405 commit 5da98f8Copy full SHA for 5da98f8
src/locale/nl.js
@@ -8,7 +8,7 @@ const locale = {
8
weekdaysMin: 'zo_ma_di_wo_do_vr_za'.split('_'),
9
months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),
10
monthsShort: 'jan_feb_mrt_apr_mei_jun_jul_aug_sep_okt_nov_dec'.split('_'),
11
- ordinal: n => `${n}.`,
+ ordinal: (n) => `${n}${n === 1 || n === 8 || n >= 20 ? 'ste' : 'de'}`,
12
weekStart: 1,
13
yearStart: 4,
14
formats: {
@@ -33,7 +33,8 @@ const locale = {
33
MM: '%d maanden',
34
y: 'een jaar',
35
yy: '%d jaar'
36
- }
+ },
37
+
38
}
39
40
dayjs.locale(locale, null, true)
0 commit comments