core-resource-app-test
Version:
App that contains assets and scripts for the core apps
24 lines (23 loc) • 1 kB
JavaScript
/* 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);