// ** I18N

// Calendar EN language

// full day names
Redicom.Calendar._DN = new Array
("Sunday",
 "Monday",
 "Tuesday",
 "Wednesday",
 "Thursday",
 "Friday",
 "Saturday",
 "Sunday");

// Please note that the following array of short day names (and the same goes
// for short month names, _SMN) isn't absolutely necessary.  We give it here
// for exemplification on how one can customize the short day names, but if
// they are simply the first N letters of the full name you can simply say:
//
//   Redicom.Calendar._SDN_len = N; // short day name length
//   Redicom.Calendar._SMN_len = N; // short month name length
//
// If N = 3 then this is not needed either since we assume a value of 3 if not
// present, to be compatible with translation files that were written before
// this feature.

// short day names
Redicom.Calendar._SDN = new Array
("Sun",
 "Mon",
 "Tue",
 "Wed",
 "Thu",
 "Fri",
 "Sat",
 "Sun");

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

// full month names
Redicom.Calendar._MN = new Array
("January",
 "February",
 "March",
 "April",
 "May",
 "June",
 "July",
 "August",
 "September",
 "October",
 "November",
 "December");

// short month names
Redicom.Calendar._SMN = new Array
("Jan",
 "Feb",
 "Mar",
 "Apr",
 "May",
 "Jun",
 "Jul",
 "Aug",
 "Sep",
 "Oct",
 "Nov",
 "Dec");

// tooltips
Redicom.Calendar._TT_en = Redicom.Calendar._TT = {};
Redicom.Calendar._TT["INFO"] = "About the calendar";

Redicom.Calendar._TT["ABOUT"] =
"DHTML Date/Time Redicom Selector\n" +
"(c) redicom.com 2004-2005\n" + 
"Visit: http://www.redicom.pt/\n";

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

Redicom.Calendar._TT["PREV_YEAR"] = "Prev. year (hold for menu)";
Redicom.Calendar._TT["PREV_MONTH"] = "Prev. month (hold for menu)";
Redicom.Calendar._TT["GO_TODAY"] = "Go Today (hold for history)";
Redicom.Calendar._TT["NEXT_MONTH"] = "Next month (hold for menu)";
Redicom.Calendar._TT["NEXT_YEAR"] = "Next year (hold for menu)";
Redicom.Calendar._TT["SEL_DATE"] = "Select date";
Redicom.Calendar._TT["DRAG_TO_MOVE"] = "Drag to move";
Redicom.Calendar._TT["PART_TODAY"] = " (today)";

// the following is to inform that "%s" is to be the first day of week
// %s will be replaced with the day name.
Redicom.Calendar._TT["DAY_FIRST"] = "Display %s first";

// 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.
Redicom.Calendar._TT["WEEKEND"] = "0,6";

Redicom.Calendar._TT["CLOSE"] = "Close";
Redicom.Calendar._TT["TODAY"] = "Today";
Redicom.Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";

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

Redicom.Calendar._TT["WK"] = "wk";
Redicom.Calendar._TT["TIME"] = "Time:";

Redicom.Calendar._TT["E_RANGE"] = "Outside the range";

/* Preserve data */
	if(Redicom.Calendar._DN) Redicom.Calendar._TT._DN = Redicom.Calendar._DN;
	if(Redicom.Calendar._SDN) Redicom.Calendar._TT._SDN = Redicom.Calendar._SDN;
	if(Redicom.Calendar._SDN_len) Redicom.Calendar._TT._SDN_len = Redicom.Calendar._SDN_len;
	if(Redicom.Calendar._MN) Redicom.Calendar._TT._MN = Redicom.Calendar._MN;
	if(Redicom.Calendar._SMN) Redicom.Calendar._TT._SMN = Redicom.Calendar._SMN;
	if(Redicom.Calendar._SMN_len) Redicom.Calendar._TT._SMN_len = Redicom.Calendar._SMN_len;
	Redicom.Calendar._DN = Redicom.Calendar._SDN = Redicom.Calendar._SDN_len = Redicom.Calendar._MN = Redicom.Calendar._SMN = Redicom.Calendar._SMN_len = null
