META-INF.resources.bower_components.globalize-languages.fr-CH.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["fr-CH"] = $.extend(true, {}, en, {
name: "fr-CH",
englishName: "French (Switzerland)",
nativeName: "français (Suisse)",
language: "fr",
numberFormat: {
',': "'",
percent: {
',': "'"
},
currency: {
pattern: ["$-n", "$ n"],
',': "'",
symbol: "fr."
}
},
calendars: {
standard: $.extend(true, {}, standard, {
'/': ".",
firstDay: 1,
days: {
names: ["dimanche", "lundi", "mardi", "mercredi", "jeudi", "vendredi", "samedi"],
namesAbbr: ["dim.", "lun.", "mar.", "mer.", "jeu.", "ven.", "sam."],
namesShort: ["di", "lu", "ma", "me", "je", "ve", "sa"]
},
months: {
names: ["janvier", "février", "mars", "avril", "mai", "juin", "juillet", "août", "septembre", "octobre", "novembre", "décembre", ""],
namesAbbr: ["janv.", "févr.", "mars", "avr.", "mai", "juin", "juil.", "août", "sept.", "oct.", "nov.", "déc.", ""]
},
AM: null,
PM: null,
eras: [{"name": "ap. J.-C.", "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: "d MMMM",
Y: "MMMM yyyy"
}
})
}
}, cultures["fr-CH"]);
culture.calendar = culture.calendars.standard;
})(jQuery);