Created
December 16, 2012 10:53
-
-
Save corsonr/4306287 to your computer and use it in GitHub Desktop.
jQuery UI datepicker in French
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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: 'Aujourd\'hui', | |
monthNames: ['Janvier','Fevrier','Mars','Avril','Mai','Juin', | |
'Juillet','Aout','Septembre','Octobre','Novembre','Decembre'], | |
monthNamesShort: ['Jan','Fev','Mar','Avr','Mai','Jun', | |
'Jul','Aou','Sep','Oct','Nov','Dec'], | |
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: '', | |
minDate: 0, | |
maxDate: '+12M +0D', | |
numberOfMonths: 2, | |
showButtonPanel: true | |
}; | |
$.datepicker.setDefaults($.datepicker.regional['fr']); | |
}); |
thank you
Thanks
Thanks !
Thank you ! Merci !
Tks a lot !!
Days of the week and months of the year are not capitalized in French, FYI.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you