From 9f841dffcc83105cc2517c7e31640848fbfff0af Mon Sep 17 00:00:00 2001 From: Matthieu Penant Date: Mon, 17 Dec 2012 08:29:17 -0500 Subject: [PATCH] Datepicker: Added Candian French locale. Fixes #8917 - Datepicker: Add Canadian French locale. --- demos/datepicker/localization.html | 2 ++ ui/i18n/jquery.ui.datepicker-fr-CA.js | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 ui/i18n/jquery.ui.datepicker-fr-CA.js diff --git a/demos/datepicker/localization.html b/demos/datepicker/localization.html index 968196295..49e8475b4 100644 --- a/demos/datepicker/localization.html +++ b/demos/datepicker/localization.html @@ -32,6 +32,7 @@ + @@ -106,6 +107,7 @@ + diff --git a/ui/i18n/jquery.ui.datepicker-fr-CA.js b/ui/i18n/jquery.ui.datepicker-fr-CA.js new file mode 100644 index 000000000..184b88fd3 --- /dev/null +++ b/ui/i18n/jquery.ui.datepicker-fr-CA.js @@ -0,0 +1,23 @@ +/* Canadian-French initialisation for the jQuery UI date picker plugin. */ +jQuery(function ($) { + $.datepicker.regional['fr-CA'] = { + closeText: 'Fermer', + prevText: 'Précédent', + nextText: 'Suivant', + currentText: 'Aujourd\'hui', + monthNames: ['janvier', 'février', 'mars', 'avril', 'mai', 'juin', + 'juillet', 'août', 'septembre', 'octobre', 'novembre', 'décembre'], + monthNamesShort: ['janv.', 'févr.', 'mars', 'avril', 'mai', 'juin', + 'juil.', 'août', 'sept.', 'oct.', 'nov.', 'déc.'], + dayNames: ['dimanche', 'lundi', 'mardi', 'mercredi', 'jeudi', 'vendredi', 'samedi'], + dayNamesShort: ['dim.', 'lun.', 'mar.', 'mer.', 'jeu.', 'ven.', 'sam.'], + dayNamesMin: ['D', 'L', 'M', 'M', 'J', 'V', 'S'], + weekHeader: 'Sem.', + dateFormat: 'yy-mm-dd', + firstDay: 0, + isRTL: false, + showMonthAfterYear: false, + yearSuffix: '' + }; + $.datepicker.setDefaults($.datepicker.regional['fr-CA']); +}); -- 2.39.5