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
702 B
22 lines
702 B
/* 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',
|
|
timeSuffix: '',
|
|
amNames: ['dop.', 'AM', 'A'],
|
|
pmNames: ['odp.', 'PM', 'P'],
|
|
isRTL: false
|
|
};
|
|
$.timepicker.setDefaults($.timepicker.regional['cs']);
|
|
})(jQuery);
|