
Calendar._DN = new Array
("Domingo",
 "Lunes",
 "Martes",
 "Miercoles",
 "Jueves",
 "Viernes",
 "Sabado",
 "Domingo");

Calendar._SDN = new Array
("Dom",
 "Lun",
 "Mar",
 "Mie",
 "Jue",
 "Vie",
 "Sab",
 "Dom");

// 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
("Enero",
 "Febrero",
 "Marzo",
 "Abril",
 "Mayo",
 "Junio",
 "Julio",
 "Agosto",
 "Septiembre",
 "Octubre",
 "Noviembre",
 "Diciembre");

// short month names
Calendar._SMN = new Array
("Ene",
 "Feb",
 "Mar",
 "Abr",
 "May",
 "Jun",
 "Jul",
 "Ago",
 "Sep",
 "Oct",
 "Nov",
 "Dic");

// tooltips
Calendar._TT = {};
Calendar._TT["INFO"] = "Sobre Calendario";

Calendar._TT["ABOUT"] =
"DHTML Fecha/Hora Selector\n" +
"(c) dynarch.com 2002-2005 / Autor: Mihai Bazon\n" + // don't translate this this ;-)
"Para última version Visitar: http://www.dynarch.com/projects/calendar/\n" +
"Distribuir por GNU LGPL.  Ver http://gnu.org/licenses/lgpl.html for details." +
"\n\n" +
"Seleccion de Fecha:\n" +
"- Usar el \xab, \xbb Botones Para seleccionr año\n" +
"- Usar el " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " Boton para seleccionar el mes\n" +
"- Sostner el boton del raton para cualquier seleccion.";
Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Seleccion de tiempo:\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"] = "Anterior año. (Sostener para menu)";
Calendar._TT["PREV_MONTH"] = "Anterior  mes(Sostener para menu)";
Calendar._TT["GO_TODAY"] = "Ir a día";
Calendar._TT["NEXT_MONTH"] = "Siguiente semana (Sostener para menu)";
Calendar._TT["NEXT_YEAR"] = "Siguiente año (Sostener para menu)";
Calendar._TT["SEL_DATE"] = "Seleccionar Fecha";
Calendar._TT["DRAG_TO_MOVE"] = "Arrastrar para mover";
Calendar._TT["PART_TODAY"] = " (Hoy)";

// 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"] = "Mostrar %s Priemro";

// 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"] = "Cerrar";
Calendar._TT["TODAY"] = "Hoy";
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"] = "Semana";
Calendar._TT["TIME"] = "Hora:";
