From 3fe17370fd8f220f8cb205f2816847b77ccab681 Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Wed, 9 Sep 2015 13:49:05 +0200 Subject: JS: add missing french translation for date picker --- .../jquery-ui/ui/i18n/jquery.ui.datepicker-fr.js | 25 ++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 ishtar_common/static/js/jquery-ui/ui/i18n/jquery.ui.datepicker-fr.js (limited to 'ishtar_common/static/js/jquery-ui') 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 */ +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']); +}); -- cgit v1.2.3