diff options
| author | Alexis Metaireau <alexis@notmyidea.org> | 2011-10-16 23:38:27 +0200 |
|---|---|---|
| committer | Alexis Metaireau <alexis@notmyidea.org> | 2011-10-16 23:38:27 +0200 |
| commit | f7a969240a984c6eb63662331ad7767283088efc (patch) | |
| tree | 35020be50ef11f8c8dd5899edcd2943ba43159f8 /budget/static/jquery/i18n | |
| parent | 9a3e4537cbd5c3aa8d154fe390749c1c33e5dc12 (diff) | |
| download | ihatemoney-mirror-f7a969240a984c6eb63662331ad7767283088efc.zip ihatemoney-mirror-f7a969240a984c6eb63662331ad7767283088efc.tar.gz ihatemoney-mirror-f7a969240a984c6eb63662331ad7767283088efc.tar.bz2 | |
Add a datepicker (with support of i18n). Fix #37
Diffstat (limited to 'budget/static/jquery/i18n')
| -rw-r--r-- | budget/static/jquery/i18n/jquery.ui.datepicker-fr.js | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/budget/static/jquery/i18n/jquery.ui.datepicker-fr.js b/budget/static/jquery/i18n/jquery.ui.datepicker-fr.js new file mode 100644 index 0000000..134bda6 --- /dev/null +++ b/budget/static/jquery/i18n/jquery.ui.datepicker-fr.js @@ -0,0 +1,23 @@ +/* French initialisation for the jQuery UI date picker plugin. */ +/* Written by Keith Wood (kbwood{at}iinet.com.au) and Stéphane Nahmani (sholby@sholby.net). */ +jQuery(function($){ + $.datepicker.regional['fr'] = { + closeText: 'Fermer', + prevText: '<Préc', + nextText: 'Suiv>', + currentText: 'Courant', + monthNames: ['Janvier','Février','Mars','Avril','Mai','Juin', + 'Juillet','Août','Septembre','Octobre','Novembre','Décembre'], + monthNamesShort: ['Jan','Fév','Mar','Avr','Mai','Jun', + 'Jul','Aoû','Sep','Oct','Nov','Déc'], + dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'], + dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'], + dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'], + weekHeader: 'Sm', + dateFormat: 'dd/mm/yy', + firstDay: 1, + isRTL: false, + showMonthAfterYear: false, + yearSuffix: ''}; + $.datepicker.setDefaults($.datepicker.regional['fr']); +});
\ No newline at end of file |
