diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2015-09-09 13:49:05 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2015-09-09 13:49:05 +0200 |
commit | 3fe17370fd8f220f8cb205f2816847b77ccab681 (patch) | |
tree | 968cfb2419383d7fce8dc93024889b12d62b04c9 | |
parent | 422ce5d1236b76b4dc07bb0c382f22b178d7f38b (diff) | |
download | Ishtar-3fe17370fd8f220f8cb205f2816847b77ccab681.tar.bz2 Ishtar-3fe17370fd8f220f8cb205f2816847b77ccab681.zip |
JS: add missing french translation for date picker
-rw-r--r-- | ishtar_common/static/js/jquery-ui/ui/i18n/jquery.ui.datepicker-fr.js | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ishtar_common/static/js/jquery-ui/ui/i18n/jquery.ui.datepicker-fr.js b/ishtar_common/static/js/jquery-ui/ui/i18n/jquery.ui.datepicker-fr.js new file mode 100644 index 000000000..934afd1d0 --- /dev/null +++ b/ishtar_common/static/js/jquery-ui/ui/i18n/jquery.ui.datepicker-fr.js @@ -0,0 +1,25 @@ +/* French initialisation for the jQuery UI date picker plugin. */ +/* Written by Keith Wood (kbwood{at}iinet.com.au), + Stéphane Nahmani (sholby@sholby.net), + Stéphane Raimbault <stephane.raimbault@gmail.com> */ +jQuery(function($){ + $.datepicker.regional['fr'] = { + 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: 'dd/mm/yy', + firstDay: 1, + isRTL: false, + showMonthAfterYear: false, + yearSuffix: ''}; + $.datepicker.setDefaults($.datepicker.regional['fr']); +}); |