Merge pull request #844 from deepDiverPaul/patch-1

Fix translation slidingtext.locale.de.js
pull/847/head
Gordon Williams 2021-10-07 08:56:54 +01:00 committed by GitHub
commit f62240cd70
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 6 deletions

View File

@ -1,15 +1,15 @@
var DateFormatter = require("slidingtext.dtfmt.js"); var DateFormatter = require("slidingtext.dtfmt.js");
const germanNumberStr = [ ["ZERO",""], // 0 const germanNumberStr = [ ["NULL",""], // 0
["EINS",""], // 1 ["EINS",""], // 1
["ZWEI",""], //2 ["ZWEI",""], //2
["DREI",''], //3 ["DREI",''], //3
["VIER",''], //4 ["VIER",''], //4
["FÜNF",''], //5 ["FÜNF",''], //5
["SECHS",''], //6 ["SECHS",''], //6
["SEIBEN",''], //7 ["SIEBEN",''], //7
["ACHT",''], //8 ["ACHT",''], //8
["NUEN",''], // 9, ["NEUN",''], // 9,
["ZEHN",''], // 10 ["ZEHN",''], // 10
["ELF",''], // 11, ["ELF",''], // 11,
["ZWÖLF",''], // 12 ["ZWÖLF",''], // 12
@ -22,7 +22,7 @@ const germanNumberStr = [ ["ZERO",""], // 0
["NEUN",'ZEHN'], // 19 ["NEUN",'ZEHN'], // 19
]; ];
const germanTensStr = ["ZERO",//0 const germanTensStr = ["NULL",//0
"ZEHN",//10 "ZEHN",//10
"ZWANZIG",//20 "ZWANZIG",//20
"DREIßIG",//30 "DREIßIG",//30
@ -38,7 +38,7 @@ const germanUnit = ["",//0
"VIERUND", //4 "VIERUND", //4
"FÜNFUND", //5 "FÜNFUND", //5
"SECHSUND", //6 "SECHSUND", //6
"SEIBENUND", //7 "SIEBENUND", //7
"ACHTUND", //8 "ACHTUND", //8
"NEUNUND" //9 "NEUNUND" //9
] ]
@ -91,4 +91,4 @@ class GermanDateFormatter extends DateFormatter {
} }
} }
module.exports = GermanDateFormatter; module.exports = GermanDateFormatter;