21 lines
575 B
JavaScript
21 lines
575 B
JavaScript
|
/* Croatian translation for the jQuery Timepicker Addon */
|
||
|
/* Written by Mladen */
|
||
|
(function($) {
|
||
|
$.timepicker.regional['hr'] = {
|
||
|
timeOnlyTitle: 'Odaberi vrijeme',
|
||
|
timeText: 'Vrijeme',
|
||
|
hourText: 'Sati',
|
||
|
minuteText: 'Minute',
|
||
|
secondText: 'Sekunde',
|
||
|
millisecText: 'Milisekunde',
|
||
|
microsecText: 'Mikrosekunde',
|
||
|
timezoneText: 'Vremenska zona',
|
||
|
currentText: 'Sada',
|
||
|
closeText: 'Gotovo',
|
||
|
timeFormat: 'HH:mm',
|
||
|
amNames: ['a.m.', 'AM', 'A'],
|
||
|
pmNames: ['p.m.', 'PM', 'P'],
|
||
|
isRTL: false
|
||
|
};
|
||
|
$.timepicker.setDefaults($.timepicker.regional['hr']);
|
||
|
})(jQuery);
|