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
782 B
22 lines
782 B
/* Serbian cyrilic translation for the jQuery Timepicker Addon */
|
|
/* Written by Vladimir Jelovac */
|
|
(function ($) {
|
|
$.timepicker.regional['sr-RS'] = {
|
|
timeOnlyTitle: 'Одаберите време',
|
|
timeText: 'Време',
|
|
hourText: 'Сати',
|
|
minuteText: 'Минути',
|
|
secondText: 'Секунде',
|
|
millisecText: 'Милисекунде',
|
|
microsecText: 'Микросекунде',
|
|
timezoneText: 'Временска зона',
|
|
currentText: 'Сада',
|
|
closeText: 'Затвори',
|
|
timeFormat: 'HH:mm',
|
|
timeSuffix: '',
|
|
amNames: ['AM', 'A'],
|
|
pmNames: ['PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['sr-RS']);
|
|
})(jQuery);
|