forked from kbwood/calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery.calendars-cs.js
23 lines (23 loc) · 981 Bytes
/
jquery.calendars-cs.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/* http://keith-wood.name/calendars.html
Czech localisation for Gregorian/Julian calendars for jQuery.
Written by Tomas Muller (tomas@tomas-muller.net). */
(function($) {
$.calendars.calendars.gregorian.prototype.regional['cs'] = {
name: 'Gregorian',
epochs: ['BCE', 'CE'],
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'],
dateFormat: 'dd.mm.yyyy',
firstDay: 1,
isRTL: false
};
if ($.calendars.calendars.julian) {
$.calendars.calendars.julian.prototype.regional['cs'] =
$.calendars.calendars.gregorian.prototype.regional['cs'];
}
})(jQuery);