jQuery Datepicker localization jQuery Datepicker localization javascript javascript

jQuery Datepicker localization


That code should work, but you need to include the localization in your page (it isn't included by default). Try putting this in your <head> tag, somewhere after you include jQuery and jQueryUI:

<script type="text/javascript"        src="https://raw.githubusercontent.com/jquery/jquery-ui/master/ui/i18n/datepicker-fr.js"></script>

I can't find where this is documented on the jQueryUI site, but if you view the source of this demo you'll see that this is how they do it. Also, please note that including this JS file will set the datepicker defaults to French, so if you want only some datepickers to be in French, you'll have to set the default back to English.

You can find all languages here at github:https://github.com/jquery/jquery-ui/tree/master/ui/i18n


You can do like this

 $.datepicker.regional['fr'] = {clearText: 'Effacer', clearStatus: '',    closeText: 'Fermer', closeStatus: 'Fermer sans modifier',    prevText: '<Préc', prevStatus: 'Voir le mois précédent',    nextText: 'Suiv>', nextStatus: 'Voir le mois suivant',    currentText: 'Courant', currentStatus: 'Voir le mois 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'],    monthStatus: 'Voir un autre mois', yearStatus: 'Voir un autre année',    weekHeader: 'Sm', weekStatus: '',    dayNames: ['Dimanche','Lundi','Mardi','Mercredi','Jeudi','Vendredi','Samedi'],    dayNamesShort: ['Dim','Lun','Mar','Mer','Jeu','Ven','Sam'],    dayNamesMin: ['Di','Lu','Ma','Me','Je','Ve','Sa'],    dayStatus: 'Utiliser DD comme premier jour de la semaine', dateStatus: 'Choisir le DD, MM d',    dateFormat: 'dd/mm/yy', firstDay: 0,     initStatus: 'Choisir la date', isRTL: false}; $.datepicker.setDefaults($.datepicker.regional['fr']);


If you want to include some options besides regional localization, you have to use $.extend, like this:

$(function() {   $('#Date').datepicker($.extend({      showMonthAfterYear: false,      dateFormat:'d MM, y'    },    $.datepicker.regional['fr']  ));});