mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
26 lines
1.4 KiB
JavaScript
26 lines
1.4 KiB
JavaScript
|
/* Italian initialisation for the jQuery UI date picker plugin. */
|
||
|
/* Written by Apaella (apaella@gmail.com). */
|
||
|
jQuery(function($){
|
||
|
$.datepicker.regional['it'] = {
|
||
|
clearText: 'Svuota', clearStatus: 'Annulla',
|
||
|
closeText: 'Chiudi', closeStatus: 'Chiudere senza modificare',
|
||
|
prevText: '<Prec', prevStatus: 'Mese precedente',
|
||
|
prevBigText: '<<', prevBigStatus: 'Mostra l\'anno precedente',
|
||
|
nextText: 'Succ>', nextStatus: 'Mese successivo',
|
||
|
nextBigText: '>>', nextBigStatus: 'Mostra l\'anno successivo',
|
||
|
currentText: 'Oggi', currentStatus: 'Mese corrente',
|
||
|
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'],
|
||
|
monthStatus: 'Seleziona un altro mese', yearStatus: 'Seleziona un altro anno',
|
||
|
weekHeader: 'Sm', weekStatus: 'Settimana dell\'anno',
|
||
|
dayNames: ['Domenica','Lunedì','Martedì','Mercoledì','Giovedì','Venerdì','Sabato'],
|
||
|
dayNamesShort: ['Dom','Lun','Mar','Mer','Gio','Ven','Sab'],
|
||
|
dayNamesMin: ['Do','Lu','Ma','Me','Gio','Ve','Sa'],
|
||
|
dayStatus: 'Usa DD come primo giorno della settimana', dateStatus: 'Seleziona D, M d',
|
||
|
dateFormat: 'dd/mm/yy', firstDay: 1,
|
||
|
initStatus: 'Scegliere una data', isRTL: false};
|
||
|
$.datepicker.setDefaults($.datepicker.regional['it']);
|
||
|
});
|