// ** I18N

// Calendar EN language
// Author: Mihai Bazon, <mishoo@infoiasi.ro>
// Encoding: any
// Distributed under the same terms as the calendar itself.

// For translators: please use UTF-8 if possible.  We strongly believe that
// Unicode is the answer to a real internationalized world.  Also please
// include your contact information in the header, as can be seen above.

// full day names
Calendar._DN = new Array
("Sunday",
 "Monday",
 "Tuesday",
 "Wednesday",
 "Thursday",
 "Friday",
 "Saturday");
Calendar._MN = new Array
("January",
 "February",
 "March",
 "April",
 "May",
 "June",
 "July",
 "August",
 "September",
 "October",
 "November",
 "December");
Calendar._SDN = new Array
("Sun",
 "Mon",
 "Tue",
 "Wed",
 "Thu",
 "Fri",
 "Sat");
Calendar._SMN = new Array
("Jan",
 "Feb",
 "Mar",
 "Apr",
 "May",
 "Jun",
 "Jul",
 "Aug",
 "Sep",
 "Oct",
 "Nov",
 "Dec");

// tooltips
Calendar._TT = {};

Calendar._TT["INFO"] = "A propos du calendrier";

Calendar._TT["ABOUT"] =

"Selection of the date :\n" +
"- To use let us click button \xab, \xbb  for selecting the year\n" +
"- To user let us click button " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " for selecting the month\n" +
"- To keep the mouse on any buttons for a faster selection";
Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Selection of the hour :\n" +
"- To click over hours or minutes for incrementer\n" +
"- or Maj-click for decrementer\n" +
"- or click and to slip deplacer for a faster selection";

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

Calendar._TT["PREV_YEAR"] = "Year prev. (to maintain for menu)";
Calendar._TT["PREV_MONTH"] = "Month prev. (to maintain for menu)";
Calendar._TT["GO_TODAY"] = "To reach current date";
Calendar._TT["NEXT_MONTH"] = "Month next. (to maintain for menu)";
Calendar._TT["NEXT_YEAR"] = "Year next. (to maintain for menu)";
Calendar._TT["SEL_DATE"] = "To choose a date";
Calendar._TT["DRAG_TO_MOVE"] = "To move";


Calendar._TT["PART_TODAY"] = " (Today)";
Calendar._TT["MON_FIRST"] = "To start with Monday";
Calendar._TT["SUN_FIRST"] = "To start with Sunday";
Calendar._TT["CLOSE"] = "To close";
Calendar._TT["TODAY"] = "Today";
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"] = " %A %e %B %Y";

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

