META-INF.resources.bower_components.globalize-languages.nl.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
The newest version!
(function ($) {
var cultures = Globalize.cultures,
en = cultures.en,
standard = en.calendars.standard,
culture = cultures["nl"] = $.extend(true, {}, en, {
name: "nl",
englishName: "Dutch",
nativeName: "Nederlands",
language: "nl",
numberFormat: {
',': ".",
'.': ",",
percent: {
',': ".",
'.': ","
},
currency: {
pattern: ["$ -n", "$ n"],
',': ".",
'.': ",",
symbol: "€"
}
},
calendars: {
standard: $.extend(true, {}, standard, {
'/': "-",
firstDay: 1,
days: {
names: ["zondag", "maandag", "dinsdag", "woensdag", "donderdag", "vrijdag", "zaterdag"],
namesAbbr: ["zo", "ma", "di", "wo", "do", "vr", "za"],
namesShort: ["zo", "ma", "di", "wo", "do", "vr", "za"]
},
months: {
names: ["januari", "februari", "maart", "april", "mei", "juni", "juli", "augustus", "september", "oktober", "november", "december", ""],
namesAbbr: ["jan", "feb", "mrt", "apr", "mei", "jun", "jul", "aug", "sep", "okt", "nov", "dec", ""]
},
AM: null,
PM: null,
patterns: {
d: "d-M-yyyy",
D: "dddd d MMMM yyyy",
t: "H:mm",
T: "H:mm:ss",
f: "dddd d MMMM yyyy H:mm",
F: "dddd d MMMM yyyy H:mm:ss",
M: "dd MMMM",
Y: "MMMM yyyy"
}
})
}
}, cultures["nl"]);
culture.calendar = culture.calendars.standard;
})(jQuery);