34 lines
1.1 KiB
JavaScript
34 lines
1.1 KiB
JavaScript
/* http://keith-wood.name/calendars.html
|
|
Italian localisation for calendars datepicker for jQuery.
|
|
Written by Apaella (apaella@gmail.com). */
|
|
(function($) {
|
|
'use strict';
|
|
$.calendarsPicker.regionalOptions.it = {
|
|
renderer: $.calendarsPicker.defaultRenderer,
|
|
prevText: '<Prec',
|
|
prevStatus: 'Mese precedente',
|
|
prevJumpText: '<<',
|
|
prevJumpStatus: 'Mostra l\'anno precedente',
|
|
nextText: 'Succ>',
|
|
nextStatus: 'Mese successivo',
|
|
nextJumpText: '>>',
|
|
nextJumpStatus: 'Mostra l\'anno successivo',
|
|
currentText: 'Oggi',
|
|
currentStatus: 'Mese corrente',
|
|
todayText: 'Oggi',
|
|
todayStatus: 'Mese corrente',
|
|
clearText: 'Svuota',
|
|
clearStatus: 'Annulla',
|
|
closeText: 'Chiudi',
|
|
closeStatus: 'Chiudere senza modificare',
|
|
yearStatus: 'Seleziona un altro anno',
|
|
monthStatus: 'Seleziona un altro mese',
|
|
weekText: 'Sm',
|
|
weekStatus: 'Settimana dell\'anno',
|
|
dayStatus: '\'Seleziona\' DD, M d',
|
|
defaultStatus: 'Scegliere una data',
|
|
isRTL: false
|
|
};
|
|
$.calendarsPicker.setDefaults($.calendarsPicker.regionalOptions.it);
|
|
})(jQuery);
|