// Zilele saptamanii
Calendar._DN = new Array
("Duminica",
 "Luni",
 "Marti",
 "Miercuri",
 "Joi",
 "Vineri",
 "Sambata",
 "Duminica");

// Zilele saptamanii pe scurt
Calendar._SDN = new Array

 ("D",
 "L",
 "M",
 "Mi",
 "J",
 "V",
 "S",
 "D");

// full month names
Calendar._MN = new Array
("Ianuarie",
 "Februarie",
 "Martie",
 "Aprilie",
 "Mai",
 "Iunie",
 "Julie",
 "August",
 "Septembrie",
 "Octobrie",
 "Noiembrie",
 "Decembrie");

// short month names
Calendar._SMN = new Array
("Ianuarie",
 "Februarie",
 "Martie",
 "Aprilie",
 "Mai",
 "Iunie",
 "Julie",
 "August",
 "Septembrie",
 "Octobrie",
 "Noiembrie",
 "Decembrie");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "Despre calendar";

Calendar._TT["ABOUT"] =
"\n\n" +
"Selectarea datei:\n" +
"- Folositi \xab, \xbb pentru a selecta anul\n" +
"- Folositi " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " pentru a selecta luna\n";

Calendar._TT["PREV_YEAR"] = "Anul trecut (Click pentru lista)";
Calendar._TT["PREV_MONTH"] = "Luna trecuta (Click pentru lista)";
Calendar._TT["GO_TODAY"] = "Apasa pentru data curenta";
Calendar._TT["NEXT_MONTH"] = "Luna urmatoare (Click pentru lista)";
Calendar._TT["NEXT_YEAR"] = "Anul urmator (Click pentru lista)";
Calendar._TT["SEL_DATE"] = "Selecteaza data";
Calendar._TT["DRAG_TO_MOVE"] = "Muta";
Calendar._TT["PART_TODAY"] = "(azi)";

// 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"] = "Incepe saptamana cu %s ";

// 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"] = "Azi";
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:";

