Skip to content

Commit 4c6b47f

Browse files
add Dutch locale
1 parent 4e4709c commit 4c6b47f

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

src/locale/nl-NL.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import "locale";
2+
3+
d3.locale.nl_NL = d3.locale({
4+
decimal: ",",
5+
thousands: ".",
6+
grouping: [3],
7+
currency: ["€ ", ""],
8+
dateTime: "%a %e %B %Y %T",
9+
date: "%d-%m-%Y",
10+
time: "%H:%M:%S",
11+
periods: ["AM", "PM"], // unused
12+
days: ["Zondag", "Maandag", "Dinsdag", "Woensdag", "Donderdag", "Vrijdag", "Zaterdag"],
13+
shortDays: ["Zo", "Ma", "Di", "Wo", "Do", "Vr", "Za"],
14+
months: ["Januari", "Februari", "Maart", "April", "Mei", "Juni", "Juli", "Augustus", "September", "Oktober", "November", "December"],
15+
shortMonths: ["Jan", "Feb", "Mrt", "Apr", "Mei", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dec"]
16+
});

0 commit comments

Comments
 (0)