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
697 B
22 lines
697 B
/* Serbian latin translation for the jQuery Timepicker Addon */
|
|
/* Written by Vladimir Jelovac */
|
|
(function ($) {
|
|
$.timepicker.regional['sr-YU'] = {
|
|
timeOnlyTitle: 'Odaberite vreme',
|
|
timeText: 'Vreme',
|
|
hourText: 'Sati',
|
|
minuteText: 'Minuti',
|
|
secondText: 'Sekunde',
|
|
millisecText: 'Milisekunde',
|
|
microsecText: 'Mikrosekunde',
|
|
timezoneText: 'Vremenska zona',
|
|
currentText: 'Sada',
|
|
closeText: 'Zatvori',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['AM', 'A'],
|
|
pmNames: ['PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['sr-YU']);
|
|
})(jQuery);
|