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.
23 lines
923 B
23 lines
923 B
/* Czech initialisation for the jQuery UI date picker plugin. */ |
|
/* Written by Tomas Muller (tomas@tomas-muller.net). */ |
|
jQuery(function($){ |
|
$.datepicker.regional['cs'] = { |
|
closeText: 'Zavřít', |
|
prevText: '<Dříve', |
|
nextText: 'Později>', |
|
currentText: 'Nyní', |
|
monthNames: ['leden','únor','březen','duben','květen','červen', |
|
'červenec','srpen','září','říjen','listopad','prosinec'], |
|
monthNamesShort: ['led','úno','bře','dub','kvě','čer', |
|
'čvc','srp','zář','říj','lis','pro'], |
|
dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'], |
|
dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'], |
|
dayNamesMin: ['ne','po','út','st','čt','pá','so'], |
|
weekHeader: 'Týd', |
|
dateFormat: 'dd.mm.yy', |
|
firstDay: 1, |
|
isRTL: false, |
|
showMonthAfterYear: false, |
|
yearSuffix: ''}; |
|
$.datepicker.setDefaults($.datepicker.regional['cs']); |
|
});
|
|
|