Skip to content

Commit

Permalink
fix(locale-nl): set correct weekdays and months
Browse files Browse the repository at this point in the history
  • Loading branch information
donroyco committed Jul 9, 2018
1 parent 89cdce1 commit 6d089d7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/locale/nl.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import dayjs from 'dayjs'

const locale = {
name: 'nl',
weekdays: 'Zondag_Maandag_Dinsdag_Woensdag_Donderdag_Vrijdag_Zaterdag'.split('_'),
months: 'Januari_Februari_Maart_April_Mei_Juni_Juli_Augustus_September_Oktober_November_December'.split('_'),
weekdays: 'zondag_maandag_dinsdag_woensdag_donderdag_vrijdag_zaterdag'.split('_'),
months: 'januari_februari_maart_april_mei_juni_juli_augustus_september_oktober_november_december'.split('_'),
ordinal: n => `${n}.`,
relativeTime: {
future: 'over %s',
Expand Down

0 comments on commit 6d089d7

Please sign in to comment.