2009-11-26 04:02:39 +01:00
|
|
|
/* Italian initialisation for the jQuery UI date picker plugin. */
|
|
|
|
/* Written by Apaella (apaella@gmail.com). */
|
|
|
|
jQuery(function($){
|
|
|
|
$.datepicker.regional['it'] = {
|
2010-03-11 03:29:07 +01:00
|
|
|
closeText: 'Chiudi',
|
|
|
|
prevText: '<Prec',
|
|
|
|
nextText: 'Succ>',
|
|
|
|
currentText: 'Oggi',
|
2009-11-26 04:02:39 +01:00
|
|
|
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ì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'],
|
|
|
|
dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],
|
|
|
|
dayNamesMin: ['Do','Lu','Ma','Me','Gio','Ve','Sa'],
|
2010-03-11 03:29:07 +01:00
|
|
|
dateFormat: 'dd/mm/yy', firstDay: 1,
|
|
|
|
isRTL: false};
|
2009-11-26 04:02:39 +01:00
|
|
|
$.datepicker.setDefaults($.datepicker.regional['it']);
|
|
|
|
});
|