Skip to content

Commit

Permalink
Update nl.php
Browse files Browse the repository at this point in the history
In Dutch, weekdays and monts are written in lowercase (https://www.babbel.com/en/magazine/a-guide-to-how-to-write-the-date-in-dutch).
  • Loading branch information
nilsenpaul authored and rlanvin committed Jun 8, 2024
1 parent 963a466 commit 44d5b4c
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions src/i18n/nl.php
Original file line number Diff line number Diff line change
Expand Up @@ -61,28 +61,28 @@
),
'bymonth' => ' in %{months}',
'months' => array(
1 => 'Januari',
2 => 'Februari',
3 => 'Maart',
4 => 'April',
5 => 'Mei',
6 => 'Juni',
7 => 'Juli',
8 => 'Augustus',
9 => 'September',
10 => 'Oktober',
11 => 'November',
12 => 'December',
1 => 'januari',
2 => 'februari',
3 => 'maart',
4 => 'april',
5 => 'mei',
6 => 'juni',
7 => 'juli',
8 => 'augustus',
9 => 'september',
10 => 'oktober',
11 => 'november',
12 => 'december',
),
'byweekday' => ' op %{weekdays}',
'weekdays' => array(
1 => 'Maandag',
2 => 'Dinsdag',
3 => 'Woensdag',
4 => 'Donderdag',
5 => 'Vrijdag',
6 => 'Zaterdag',
7 => 'Zondag',
1 => 'maandag',
2 => 'dinsdag',
3 => 'woensdag',
4 => 'donderdag',
5 => 'vrijdag',
6 => 'zaterdag',
7 => 'zondag',
),
'nth_weekday' => array(
'1' => 'de eerste %{weekday}', // e.g. the first Monday
Expand Down

0 comments on commit 44d5b4c

Please sign in to comment.