META-INF.resources.bower_components.globalize-languages.fo.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["fo"] = $.extend(true, {}, en, {
name: "fo",
englishName: "Faroese",
nativeName: "føroyskt",
language: "fo",
numberFormat: {
',': ".",
'.': ",",
percent: {
pattern: ["-n%", "n%"],
',': ".",
'.': ","
},
currency: {
pattern: ["$ -n", "$ n"],
',': ".",
'.': ",",
symbol: "kr."
}
},
calendars: {
standard: $.extend(true, {}, standard, {
'/': "-",
firstDay: 1,
days: {
names: ["sunnudagur", "mánadagur", "týsdagur", "mikudagur", "hósdagur", "fríggjadagur", "leygardagur"],
namesAbbr: ["sun", "mán", "týs", "mik", "hós", "frí", "leyg"],
namesShort: ["su", "má", "tý", "mi", "hó", "fr", "ley"]
},
months: {
names: ["januar", "februar", "mars", "apríl", "mai", "juni", "juli", "august", "september", "oktober", "november", "desember", ""],
namesAbbr: ["jan", "feb", "mar", "apr", "mai", "jun", "jul", "aug", "sep", "okt", "nov", "des", ""]
},
AM: null,
PM: null,
patterns: {
d: "dd-MM-yyyy",
D: "d. MMMM yyyy",
t: "HH:mm",
T: "HH:mm:ss",
f: "d. MMMM yyyy HH:mm",
F: "d. MMMM yyyy HH:mm:ss",
M: "d. MMMM",
Y: "MMMM yyyy"
}
})
}
}, cultures["fo"]);
culture.calendar = culture.calendars.standard;
})(jQuery);