META-INF.resources.bower_components.globalize-languages.de.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jwebmp-globalize Show documentation
Show all versions of jwebmp-globalize Show documentation
The JWebSwing implementation for a full Globalization
(function ($) {
var cultures = Globalize.cultures,
en = cultures.en,
standard = en.calendars.standard,
culture = cultures["de"] = $.extend(true, {}, en, {
name: "de",
englishName: "German",
nativeName: "Deutsch",
language: "de",
numberFormat: {
',': ".",
'.': ",",
percent: {
pattern: ["-n%", "n%"],
',': ".",
'.': ","
},
currency: {
pattern: ["-n $", "n $"],
',': ".",
'.': ",",
symbol: "€"
}
},
calendars: {
standard: $.extend(true, {}, standard, {
'/': ".",
firstDay: 1,
days: {
names: ["Sonntag", "Montag", "Dienstag", "Mittwoch", "Donnerstag", "Freitag", "Samstag"],
namesAbbr: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"],
namesShort: ["So", "Mo", "Di", "Mi", "Do", "Fr", "Sa"]
},
months: {
names: ["Januar", "Februar", "März", "April", "Mai", "Juni", "Juli", "August", "September", "Oktober", "November", "Dezember", ""],
namesAbbr: ["Jan", "Feb", "Mrz", "Apr", "Mai", "Jun", "Jul", "Aug", "Sep", "Okt", "Nov", "Dez", ""]
},
AM: null,
PM: null,
eras: [{"name": "n. Chr.", "start": null, "offset": 0}],
patterns: {
d: "dd.MM.yyyy",
D: "dddd, d. MMMM yyyy",
t: "HH:mm",
T: "HH:mm:ss",
f: "dddd, d. MMMM yyyy HH:mm",
F: "dddd, d. MMMM yyyy HH:mm:ss",
M: "dd MMMM",
Y: "MMMM yyyy"
}
})
}
}, cultures["de"]);
culture.calendar = culture.calendars.standard;
})(jQuery);