

// full day names
Calendar._DN = new Array
("Neděle",
 "Pondělí",
 "Úterý",
 "Středa",
 "Čtvrtek",
 "Pátek",
 "Sobota",
 "Neděle");



// short day names
Calendar._SDN = new Array
("Ne",
 "Po",
 "Út",
 "St",
 "Čt",
 "Pá",
 "So",
 "Ne");

// full month names
Calendar._MN = new Array
("Leden",
 "Únor",
 "Březen",
 "Duben",
 "Květem",
 "Červen",
 "Červenec",
 "Srpen",
 "Září",
 "Říjen",
 "Listopad",
 "Prosinec");

// short month names
Calendar._SMN = new Array
("Led",
 "Úno",
 "Bře",
 "Dub",
 "Kvě",
 "Čer",
 "Čer",
 "Srp",
 "Zář",
 "Říj",
 "Lis",
 "Pro");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "O kalendáři";

Calendar._TT["ABOUT"] =
"ACTUALNET s.r.o.\n" + // don't translate this this ;-)
"http://actualnet.cz\n" +
"Překlad: MarX";

Calendar._TT["TOGGLE"] = "Ersten Tag der Woche w\u00e4hlen";
Calendar._TT["PREV_YEAR"] = "Předchozí rok";
Calendar._TT["PREV_MONTH"] = "Předchozí měsíc";
Calendar._TT["GO_TODAY"] = "Dnešní datum";
Calendar._TT["NEXT_MONTH"] = "Následující měsíc";
Calendar._TT["NEXT_YEAR"] = "Následující rok";
Calendar._TT["SEL_DATE"] = "Vybrat datum";
Calendar._TT["DRAG_TO_MOVE"] = "Chytněte k posunutí";
Calendar._TT["PART_TODAY"] = " (Dnes)";

// 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"] = "Display %s first";

// 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-)Click or drag to change value";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";

Calendar._TT["WK"] = "wk";
Calendar._TT["TIME"] = "Time:";

