รวม code แก้ไข OP 3138, 3141, 2736, 2654
This commit is contained in:
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-cs.js
Normal file
25
wwwroot/lib/jquery.calendars/js/jquery.calendars-cs.js
Normal file
@@ -0,0 +1,25 @@
|
||||
/* http://keith-wood.name/calendars.html
|
||||
Czech localisation for Gregorian/Julian calendars for jQuery.
|
||||
Written by Tomas Muller (tomas@tomas-muller.net). */
|
||||
(function($) {
|
||||
'use strict';
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.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'],
|
||||
digits: null,
|
||||
dateFormat: 'dd.mm.yyyy',
|
||||
firstDay: 1,
|
||||
isRTL: false
|
||||
};
|
||||
if ($.calendars.calendars.julian) {
|
||||
$.calendars.calendars.julian.prototype.regionalOptions.cs =
|
||||
$.calendars.calendars.gregorian.prototype.regionalOptions.cs;
|
||||
}
|
||||
})(jQuery);
|
||||
Reference in New Issue
Block a user