Mercurial > hg > soundsoftware-site
comparison .svn/pristine/9f/9f47c2af252935d6ffde9527cb707adbd78dd2cf.svn-base @ 1295:622f24f53b42 redmine-2.3
Update to Redmine SVN revision 11972 on 2.3-stable branch
author | Chris Cannam |
---|---|
date | Fri, 14 Jun 2013 09:02:21 +0100 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
1294:3e4c3460b6ca | 1295:622f24f53b42 |
---|---|
1 /* 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 }); |