aboutsummaryrefslogtreecommitdiff
path: root/budget/static/js/i18n/jquery.ui.datepicker-fr.js
diff options
context:
space:
mode:
authorAlexis Metaireau <alexis@notmyidea.org>2011-11-27 23:28:24 +0100
committerAlexis Metaireau <alexis@notmyidea.org>2011-11-28 00:20:30 +0100
commit8570e79170e28ad0437a6b663066e7d54b0c682d (patch)
tree054415cdc9b7c5a1391f3471d20cfde0e302bcad /budget/static/js/i18n/jquery.ui.datepicker-fr.js
parent44060f03dfd6fb9f1925496f06992984ef41062b (diff)
downloadihatemoney-mirror-8570e79170e28ad0437a6b663066e7d54b0c682d.zip
ihatemoney-mirror-8570e79170e28ad0437a6b663066e7d54b0c682d.tar.gz
ihatemoney-mirror-8570e79170e28ad0437a6b663066e7d54b0c682d.tar.bz2
reorganize the static folder structure
Diffstat (limited to 'budget/static/js/i18n/jquery.ui.datepicker-fr.js')
-rw-r--r--budget/static/js/i18n/jquery.ui.datepicker-fr.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/budget/static/js/i18n/jquery.ui.datepicker-fr.js b/budget/static/js/i18n/jquery.ui.datepicker-fr.js
new file mode 100644
index 0000000..e5efd06
--- /dev/null
+++ b/budget/static/js/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: '&#x3c;Préc',
+ nextText: 'Suiv&#x3e;',
+ 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: 'yy-mm-dd',
+ firstDay: 1,
+ isRTL: false,
+ showMonthAfterYear: false,
+ yearSuffix: ''};
+ $.datepicker.setDefaults($.datepicker.regional['fr']);
+});