2008-06-04 02:34:33 +00:00
|
|
|
/* Italian initialisation for the jQuery UI date picker plugin. */
|
2009-06-13 12:52:48 +00:00
|
|
|
/* Written by Antonello Pasella (antonello.pasella@gmail.com). */
|
2008-06-04 02:34:33 +00:00
|
|
|
jQuery(function($){
|
2008-07-25 09:59:05 +00:00
|
|
|
$.datepicker.regional['it'] = {
|
2009-01-04 18:11:41 +00:00
|
|
|
closeText: 'Chiudi',
|
|
|
|
prevText: '<Prec',
|
|
|
|
nextText: 'Succ>',
|
|
|
|
currentText: 'Oggi',
|
2008-06-04 02:34:33 +00:00
|
|
|
monthNames: ['Gennaio','Febbraio','Marzo','Aprile','Maggio','Giugno',
|
2009-06-13 12:52:48 +00:00
|
|
|
'Luglio','Agosto','Settembre','Ottobre','Novembre','Dicembre'],
|
2008-06-04 02:34:33 +00:00
|
|
|
monthNamesShort: ['Gen','Feb','Mar','Apr','Mag','Giu',
|
2009-06-13 12:52:48 +00:00
|
|
|
'Lug','Ago','Set','Ott','Nov','Dic'],
|
2008-06-04 02:34:33 +00:00
|
|
|
dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'],
|
|
|
|
dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],
|
2009-06-13 12:52:48 +00:00
|
|
|
dayNamesMin: ['Do','Lu','Ma','Me','Gi','Ve','Sa'],
|
2009-07-29 08:33:33 +00:00
|
|
|
weekHeader: 'Sm',
|
2009-04-01 10:34:16 +00:00
|
|
|
dateFormat: 'dd/mm/yy',
|
|
|
|
firstDay: 1,
|
|
|
|
isRTL: false,
|
|
|
|
showMonthAfterYear: false,
|
|
|
|
yearSuffix: ''};
|
2008-06-04 02:34:33 +00:00
|
|
|
$.datepicker.setDefaults($.datepicker.regional['it']);
|
|
|
|
});
|