diff options
author | Keith Wood <kbwood.au@gmail.com> | 2009-04-01 10:34:16 +0000 |
---|---|---|
committer | Keith Wood <kbwood.au@gmail.com> | 2009-04-01 10:34:16 +0000 |
commit | fea2eeb0d73add46dc4798ecca87692a22c57b6d (patch) | |
tree | bf43573f19bbc9e36be5ca849b827efe71207aa4 /ui/i18n/ui.datepicker-fr.js | |
parent | 89905e277e665437164a647f59bdd69072d120ac (diff) | |
download | jquery-ui-fea2eeb0d73add46dc4798ecca87692a22c57b6d.tar.gz jquery-ui-fea2eeb0d73add46dc4798ecca87692a22c57b6d.zip |
Datepicker: fixed #4085 - Can not display year and month correctly in Japanese
Diffstat (limited to 'ui/i18n/ui.datepicker-fr.js')
-rw-r--r-- | ui/i18n/ui.datepicker-fr.js | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ui/i18n/ui.datepicker-fr.js b/ui/i18n/ui.datepicker-fr.js index 02edda29d..12c747739 100644 --- a/ui/i18n/ui.datepicker-fr.js +++ b/ui/i18n/ui.datepicker-fr.js @@ -1,5 +1,5 @@ /* French initialisation for the jQuery UI date picker plugin. */ -/* Written by Keith Wood (kbwood@virginbroadband.com.au) and Stéphane Nahmani (sholby@sholby.net). */ +/* Written by Keith Wood (kbwood{at}iinet.com.au) and Stéphane Nahmani (sholby@sholby.net). */ jQuery(function($){ $.datepicker.regional['fr'] = { closeText: 'Fermer', @@ -13,7 +13,10 @@ jQuery(function($){ dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'], dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'], dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'], - dateFormat: 'dd/mm/yy', firstDay: 1, - isRTL: false}; + dateFormat: 'dd/mm/yy', + firstDay: 1, + isRTL: false, + showMonthAfterYear: false, + yearSuffix: ''}; $.datepicker.setDefaults($.datepicker.regional['fr']); });
\ No newline at end of file |