You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
705 B
22 lines
705 B
/* Italian translation for the jQuery Timepicker Addon */
|
|
/* Written by Marco "logicoder" Del Tongo */
|
|
(function ($) {
|
|
$.timepicker.regional['it'] = {
|
|
timeOnlyTitle: 'Scegli orario',
|
|
timeText: 'Orario',
|
|
hourText: 'Ora',
|
|
minuteText: 'Minuti',
|
|
secondText: 'Secondi',
|
|
millisecText: 'Millisecondi',
|
|
microsecText: 'Microsecondi',
|
|
timezoneText: 'Fuso orario',
|
|
currentText: 'Adesso',
|
|
closeText: 'Chiudi',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['m.', 'AM', 'A'],
|
|
pmNames: ['p.', 'PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['it']);
|
|
})(jQuery);
|