To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / .svn / pristine / 9f / 9f47c2af252935d6ffde9527cb707adbd78dd2cf.svn-base @ 1297:0a574315af3e
History | View | Annotate | Download (929 Bytes)
| 1 | 1296:038ba2d95de8 | Chris | /* Czech initialisation for the jQuery UI date picker plugin. */ |
|---|---|---|---|
| 2 | /* Written by Tomas Muller (tomas@tomas-muller.net). */ |
||
| 3 | jQuery(function($){
|
||
| 4 | $.datepicker.regional['cs'] = {
|
||
| 5 | closeText: 'Zavřít', |
||
| 6 | prevText: '<Dříve', |
||
| 7 | nextText: 'Později>', |
||
| 8 | currentText: 'Nyní', |
||
| 9 | monthNames: ['leden','únor','březen','duben','květen','červen', |
||
| 10 | 'červenec','srpen','září','říjen','listopad','prosinec'], |
||
| 11 | monthNamesShort: ['led','úno','bře','dub','kvě','čer', |
||
| 12 | 'čvc','srp','zář','říj','lis','pro'], |
||
| 13 | dayNames: ['neděle', 'pondělí', 'úterý', 'středa', 'čtvrtek', 'pátek', 'sobota'], |
||
| 14 | dayNamesShort: ['ne', 'po', 'út', 'st', 'čt', 'pá', 'so'], |
||
| 15 | dayNamesMin: ['ne','po','út','st','čt','pá','so'], |
||
| 16 | weekHeader: 'Týd', |
||
| 17 | dateFormat: 'dd.mm.yy', |
||
| 18 | firstDay: 1, |
||
| 19 | isRTL: false, |
||
| 20 | showMonthAfterYear: false, |
||
| 21 | yearSuffix: ''}; |
||
| 22 | $.datepicker.setDefaults($.datepicker.regional['cs']); |
||
| 23 | }); |