
// full day names
Calendar._DN = new Array
("Sonntag",
 "Montag",
 "Dienstag",
 "Mittwoch",
 "Donnerstag",
 "Freitag",
 "Samstag",
 "Sonntag");

// short day names
Calendar._SDN = new Array
("So",
 "Mo",
 "Di",
 "Mi",
 "Do",
 "Fr",
 "Sa",
 "So");

// First day of the week. "0" means display Sunday first, "1" means display
// Monday first, etc.
Calendar._FD = 1;

// full month names
Calendar._MN = new Array
("Januar",
 "Februar",
 "M&auml;rz",
 "April",
 "Mai",
 "Juni",
 "Juli",
 "August",
 "September",
 "Oktober",
 "November",
 "Dezember");

// short month names
Calendar._SMN = new Array
("Jan",
 "Feb",
 "M&auml;r",
 "Apr",
 "Mai",
 "Jun",
 "Jul",
 "Aug",
 "Sep",
 "Okt",
 "Nov",
 "Dez");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "";
Calendar._TT["ABOUT"] = "";
Calendar._TT["PREV_YEAR"] = "Vorhergehendes Jahr (halten f&uuml;r Men&uuml;)";
Calendar._TT["PREV_MONTH"] = "Vorhergehender Monat (halten f&uuml;r Men&uuml;)";
Calendar._TT["GO_TODAY"] = "das aktuelle Datum w&auml;hlen";
Calendar._TT["NEXT_MONTH"] = "N&auml;chster Monat (halten f&uuml;r Men&uuml;)";
Calendar._TT["NEXT_YEAR"] = "N&auml;chstes Jahr (halten f&uuml;r Men&uuml;)";
Calendar._TT["SEL_DATE"] = "Datum w&auml;hlen";
Calendar._TT["DRAG_TO_MOVE"] = "Ziehen zum Verschieben";
Calendar._TT["PART_TODAY"] = " (heute)";

// 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"] = "zeige %s zuerst";

// 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"] = "Schlie&szlig;en";
Calendar._TT["TODAY"] = "Heute";
Calendar._TT["TIME_PART"] = "";

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

Calendar._TT["WK"] = "KW";
Calendar._TT["TIME"] = "Uhrzeit:";

