Skip to content

Instantly share code, notes, and snippets.

@saten
Created June 18, 2013 00:17
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save saten/5801684 to your computer and use it in GitHub Desktop.
Save saten/5801684 to your computer and use it in GitHub Desktop.
Italian jquery ui localization file
/* Italian initialisation for the jQuery UI date picker plugin. */
/* Scritta da Sante Rotondi <saten.r@gmail.com> */
jQuery(function($){
$.datepicker.regional['it'] = {
closeText: 'Chiudi',
prevText: 'Precedente',
nextText: 'Successivo',
currentText: 'Oggi',
monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno',
'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],
monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu',
'Lug','Ago','Set','Ott','Nov','Dic'],
dayNames: ['Domenica','Luned&#236','Marted&#236','Mercoled&#236','Gioved&#236','Venerd&#236','Sabato'],
dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],
dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'],
weekHeader: 'Sett.',
dateFormat: 'dd/mm/yy',
firstDay: 1,
isRTL: false,
showMonthAfterYear: false,
yearSuffix: ''};
$.datepicker.setDefaults($.datepicker.regional['it']);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment