// full day names
Calendar._DN = new Array
("Duminica",
 "Luni",
 "Marti",
 "Miercuri",
 "Joi",
 "Vineri",
 "Sambata",
 "Duminica");

// short day names
Calendar._SDN = new Array
("D",
 "L",
 "Ma",
 "Mi",
 "J",
 "V",
 "S",
 "D");

// full month names
Calendar._MN = new Array
("Ianuarie",
 "Februarie",
 "Marti",
 "Aprilie",
 "Mai",
 "Iunie",
 "Iulie",
 "August",
 "Septembrie",
 "Octombrie",
 "Noiembrie",
 "Decembrie");

// short month names
Calendar._SMN = new Array
("Ian",
 "Feb",
 "Mar",
 "Apr",
 "Mai",
 "Iun",
 "Iul",
 "Aug",
 "Sep",
 "Oct",
 "Nov",
 "Dec");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "Despre calendar";

Calendar._TT["ABOUT"] =
"Selectare data:\n" +
"- Use the \xab, \xbb buttons to select year\n" +
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
"- Hold mouse button on any of the above buttons for faster selection.";
Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Time selection:\n" +
"- Click on any of the time parts to increase it\n" +
"- or Shift-click to decrease it\n" +
"- or click and drag for faster selection.";

Calendar._TT["PREV_YEAR"] = "Anul anterior (tine apasat pentru meniu)";
Calendar._TT["PREV_MONTH"] = "Luna anterioara (tine apasat pentru meniu)";
Calendar._TT["GO_TODAY"] = "Mergi la data curenta";
Calendar._TT["NEXT_MONTH"] = "Luna urmatoare (tine apasat pentru meniu)";
Calendar._TT["NEXT_YEAR"] = "Anul urmator (tine apasat pentru meniu)";
Calendar._TT["SEL_DATE"] = "Selecteaza data";
Calendar._TT["DRAG_TO_MOVE"] = "Drag pentru mutare";
Calendar._TT["PART_TODAY"] = " (astazi)";

// 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"] = "Arata %s pe prima coloana";

// 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"] = "Inchide";
Calendar._TT["TODAY"] = "Astazi";
Calendar._TT["TIME_PART"] = "(Shift-)Click sau drag pentru a schimba valoarea";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "%d-%m-%Y";
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";

Calendar._TT["WK"] = "wk";
Calendar._TT["TIME"] = "Ora:";
