22 lines
585 B
JavaScript
22 lines
585 B
JavaScript
|
/* Czech translation for the jQuery Timepicker Addon */
|
||
|
/* Written by Ondřej Vodáček */
|
||
|
(function($) {
|
||
|
$.timepicker.regional['cs'] = {
|
||
|
timeOnlyTitle: 'Vyberte čas',
|
||
|
timeText: 'Čas',
|
||
|
hourText: 'Hodiny',
|
||
|
minuteText: 'Minuty',
|
||
|
secondText: 'Vteřiny',
|
||
|
millisecText: 'Milisekundy',
|
||
|
microsecText: 'Mikrosekundy',
|
||
|
timezoneText: 'Časové pásmo',
|
||
|
currentText: 'Nyní',
|
||
|
closeText: 'Zavřít',
|
||
|
timeFormat: 'HH:mm',
|
||
|
amNames: ['dop.', 'AM', 'A'],
|
||
|
pmNames: ['odp.', 'PM', 'P'],
|
||
|
isRTL: false
|
||
|
};
|
||
|
$.timepicker.setDefaults($.timepicker.regional['cs']);
|
||
|
})(jQuery);
|