Calendar._DN = new Array 
("Neděle", 
"Pondělí", 
"Úterý", 
"Středa", 
"Čtvrtek", 
"Pátek", 
"Sobota", 
"Neděle"); 
// short day names 
Calendar._SDN_len = 2; 
Calendar._SDN = new Array 
("Ne", 
"Po", 
"Út", 
"St", 
"Čt", 
"Pá", 
"So", 
"Ne"); 
// First day of the week. "0" means display Sunday first, "1" means display 
// Monday first, etc. 
Calendar._FD = 0; 
// full month names 
Calendar._MN = new Array 
("Leden", 
"Únor", 
"Březen", 
"Duben", 
"Květen", 
"Červen", 
"Červenec", 
"Srpen", 
"Září", 
"Říjen", 
"Listopad", 
"Prosinec"); 
// short month names 
Calendar._SMN = new Array 
("Led", 
"Úno", 
"Bře", 
"Dub", 
"Kvě", 
"Čer", 
"Čen", 
"Srp", 
"Zář", 
"Říj", 
"Lis", 
"Pro"); 
// tooltips 
Calendar._TT = {}; 
Calendar._TT["INFO"] = "About the calendar"; 
Calendar._TT["ABOUT"] = 
"" + 
"" + 
"" + 
"" + 
"" + 
""; 
Calendar._TT["PREV_YEAR"] = "Před. rok (rozbal menu)"; 
Calendar._TT["PREV_MONTH"] = "Před. měsíc (rozbal menu)"; 
Calendar._TT["GO_TODAY"] = "Jdi na den"; 
Calendar._TT["NEXT_MONTH"] = "Další měsíc (rozbal menu)"; 
Calendar._TT["NEXT_YEAR"] = "Další rok (rozbal menu)"; 
Calendar._TT["SEL_DATE"] = "Vyber datum"; 
Calendar._TT["DRAG_TO_MOVE"] = "Chytnutím přesunout"; 
Calendar._TT["PART_TODAY"] = " (dnes)"; 
Calendar._TT["NULOVANI"] = "Vynulovat"; 
// the following is to inform that "%s" is to be the first day of week 
// %s will be replaced with the day name. 
Calendar._TT["DAY_FIRST"] = "Zobrazit %s první"; 
// This may be locale-dependent.  It specifies the week-end days, as an array 
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1 
// means Monday, etc. 
Calendar._TT["WEEKEND"] = "0,6"; 
Calendar._TT["CLOSE"] = "Zavřít"; 
Calendar._TT["TODAY"] = "Dnes"; 
Calendar._TT["TIME_PART"] = "(Shift-) kliknutím nebo přetažením"; 
// date formats 
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d"; 
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e"; 
Calendar._TT["WK"] = "T"; 
Calendar._TT["TIME"] = "Čas:"; 

