diff options
author | Matthieu Penant <thieum22@hotmail.com> | 2012-12-17 08:29:17 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2012-12-17 08:30:23 -0500 |
commit | 9f841dffcc83105cc2517c7e31640848fbfff0af (patch) | |
tree | b18f446712bc532a355b56639c465f827402e638 /ui/i18n | |
parent | 8ec7a1b69ffd86edbef06e30ca4368600531e649 (diff) | |
download | jquery-ui-9f841dffcc83105cc2517c7e31640848fbfff0af.tar.gz jquery-ui-9f841dffcc83105cc2517c7e31640848fbfff0af.zip |
Datepicker: Added Candian French locale. Fixes #8917 - Datepicker: Add Canadian French locale.
Diffstat (limited to 'ui/i18n')
-rw-r--r-- | ui/i18n/jquery.ui.datepicker-fr-CA.js | 23 |
1 files changed, 23 insertions, 0 deletions
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']);
+});
|