META-INF.resources.bower_components.globalize-languages.en-MY.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["en-MY"] = $.extend(true, {}, en, {
name: "en-MY",
englishName: "English (Malaysia)",
nativeName: "English (Malaysia)",
numberFormat: {
percent: {
pattern: ["-n%", "n%"]
},
currency: {
symbol: "RM"
}
},
calendars: {
standard: $.extend(true, {}, standard, {
days: {
namesShort: ["S", "M", "T", "W", "T", "F", "S"]
},
patterns: {
d: "d/M/yyyy",
D: "dddd, d MMMM, yyyy",
f: "dddd, d MMMM, yyyy h:mm tt",
F: "dddd, d MMMM, yyyy h:mm:ss tt",
M: "d MMMM"
}
})
}
}, cultures["en-MY"]);
culture.calendar = culture.calendars.standard;
})(jQuery);