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
733 B
22 lines
733 B
/* Lithuanian translation for the jQuery Timepicker Addon */
|
|
/* Written by Irmantas Šiupšinskas */
|
|
(function ($) {
|
|
$.timepicker.regional['lt'] = {
|
|
timeOnlyTitle: 'Pasirinkite laiką',
|
|
timeText: 'Laikas',
|
|
hourText: 'Valandos',
|
|
minuteText: 'Minutės',
|
|
secondText: 'Sekundės',
|
|
millisecText: 'Milisekundės',
|
|
microsecText: 'Mikrosekundės',
|
|
timezoneText: 'Laiko zona',
|
|
currentText: 'Dabar',
|
|
closeText: 'Uždaryti',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['priešpiet', 'AM', 'A'],
|
|
pmNames: ['popiet', 'PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['lt']);
|
|
})(jQuery);
|