// Calendar CAT language

// full day names
Calendar._DN = new Array
("Diumenge",
 "Dilluns",
 "Dimarts",
 "Dimecres",
 "Dijous",
 "Divendres",
 "Dissabte",
 "Diumenge");

// short day names
Calendar._SDN = new Array
("dg.",
 "dl.",
 "dt.",
 "dc.",
 "dj.",
 "dv.",
 "ds.",
 "dg.");

// 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
("Gener",
 "Febrer",
 "Març",
 "Abril",
 "Maig",
 "Juny",
 "Juliol",
 "Agost",
 "Setembre",
 "Octubre",
 "Novembre",
 "Desembre");

// short month names
Calendar._SMN = new Array
("Gener",
 "Febrer",
 "Març",
 "Abril",
 "Maig",
 "Juny",
 "Juliol",
 "Agost",
 "Setembre",
 "Octubre",
 "Novembre",
 "Desembre");

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

Calendar._TT["ABOUT"] = "";
Calendar._TT["ABOUT_TIME"] = "";

Calendar._TT["PREV_YEAR"] = "Any anterior";
Calendar._TT["PREV_MONTH"] = "Mes anterior";
Calendar._TT["GO_TODAY"] = "Avui";
Calendar._TT["NEXT_MONTH"] = "Mes següent";
Calendar._TT["NEXT_YEAR"] = "Any següent";
Calendar._TT["SEL_DATE"] = "Selecciona una data";
Calendar._TT["DRAG_TO_MOVE"] = "Arrastra";
Calendar._TT["PART_TODAY"] = " Avui";

// 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"] = "Ordena: %s primer";

// 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"] = "Tanca";
Calendar._TT["TODAY"] = "Avui";
Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";

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

Calendar._TT["WK"] = "setmana";
Calendar._TT["TIME"] = "Hora:";

