- zoesch.de - blitzkiste.net - gruene-hassberge (norbert.zoesch.de) 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
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);
|