diff options
author | Felix Nagel <info@felixnagel.com> | 2012-12-20 00:32:28 +0100 |
---|---|---|
committer | Felix Nagel <info@felixnagel.com> | 2012-12-20 00:32:28 +0100 |
commit | dab7bf89933c15132b81eaee46a0220357fb27cd (patch) | |
tree | 2c3dfbdedfdcc01a86f5a04380cee320f3cd2a41 /ui/i18n | |
parent | 50d7a969a52d4aa1a6c8ae8a3013374fc24aabe1 (diff) | |
parent | 209443d716587d896ffcdf26c0fd8c8a23437b3c (diff) | |
download | jquery-ui-dab7bf89933c15132b81eaee46a0220357fb27cd.tar.gz jquery-ui-dab7bf89933c15132b81eaee46a0220357fb27cd.zip |
Merge branch 'master' into selectmenu
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']);
+});
|