Blame view
sources/3rdparty/timepicker/js/i18n/jquery.ui.timepicker-cs.js
486 Bytes
|
03e52840d
|
1 2 3 4 5 6 7 8 9 10 11 12 |
/* Czech initialisation for the timepicker plugin */
/* Written by David Spohr (spohr.david at gmail). */
jQuery(function($){
$.timepicker.regional['cs'] = {
hourText: 'Hodiny',
minuteText: 'Minuty',
amPmText: ['AM', 'PM'] ,
closeButtonText: 'Zavřít',
nowButtonText: 'Nyní',
deselectButtonText: 'Odoznačit' }
$.timepicker.setDefaults($.timepicker.regional['cs']);
});
|