Skip to content

Commit dd371b0

Browse files
committed
Merge branch 'german_locale' of github.com:dwt/d3 into fr-de-locales
2 parents f38ed05 + bb77211 commit dd371b0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

src/locale/de.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.de = d3.locale({
4+
decimal: ",",
5+
thousands: ".",
6+
grouping: [3],
7+
currency: ["", " €"],
8+
dateTime: "%A, der %e. %B %Y, %X",
9+
date: "%e.%m.%Y",
10+
time: "%H:%M:%S",
11+
periods: ["AM", "PM"], // unused
12+
days: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"],
13+
shortDays: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
14+
months: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember"],
15+
shortMonths: ["Jan", "Feb", "Mrz", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez"]
16+
});

0 commit comments

Comments
 (0)