From aa8451d49e7183b6042cb448c6c7c08aeeea7516 Mon Sep 17 00:00:00 2001 From: jdugge Date: Thu, 11 Jan 2018 15:10:43 +0100 Subject: [PATCH 1/2] Add "decimal" and "thousands" to de.js locale --- lib/locales/de.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/locales/de.js b/lib/locales/de.js index f0d7efefac3..9106ad04889 100644 --- a/lib/locales/de.js +++ b/lib/locales/de.js @@ -83,6 +83,8 @@ module.exports = { 'Jan', 'Feb', 'Mär', 'Apr', 'Mai', 'Jun', 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez' ], - date: '%d.%m.%Y' + date: '%d.%m.%Y', + decimal: ",", + thousands: "." } }; From 5555029d143abd7bd67c4f11c40791ef5bd05080 Mon Sep 17 00:00:00 2001 From: alexcjohnson Date: Mon, 15 Jan 2018 15:42:08 -0500 Subject: [PATCH 2/2] lint --- lib/locales/de.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/locales/de.js b/lib/locales/de.js index 9106ad04889..bda142a1f37 100644 --- a/lib/locales/de.js +++ b/lib/locales/de.js @@ -84,7 +84,7 @@ module.exports = { 'Jul', 'Aug', 'Sep', 'Okt', 'Nov', 'Dez' ], date: '%d.%m.%Y', - decimal: ",", - thousands: "." + decimal: ',', + thousands: '.' } };