// Author: Hartwig Weinkauf h_weinkauf@gmx.de
// ï¿½erarbeitet und fehlende Texte hinzugefgt von Gerhard Neinert (gerhard at neinert punkt de)
// Feel free to use / redistribute under the GNU LGPL.
// ** I18N

// short day names
Calendar._SDN = new Array
("Su",
 "Mo",
 "Tu",
 "We",
 "Th",
 "Fr",
 "Sa",
 "Su");

// full day names
Calendar._DN = new Array
("Sunday",
 "Monday",
 "Tuesday",
 "Wednesday",
 "Thursday",
 "Friday",
 "Saturday",
 "Sunday");

// short day names only use 2 letters instead of 3
Calendar._SDN_len = 2;

// full month names
Calendar._MN = new Array
("January",
 "February",
 "March",
 "April",
 "May",
 "June",
 "July",
 "August",
 "September",
 "October",
 "November",
 "December");

// short month names
Calendar._SMN = new Array
("Jan",
 "Feb",
 "Mar",
 "Apr",
 "Mai",
 "Jun",
 "Jul",
 "Aug",
 "Sep",
 "Oct",
 "Nov",
 "Dec");

// tooltips
Calendar._TT = {};

Calendar._TT["ABOUT"] =
"Date/Time Selector\n" +
"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
"Donwload neueste Version: http://dynarch.com/mishoo/calendar.epl\n" +
"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
"\n\n" +
"Choose date:\n" +
"- choose year with \xab and \xbb\n" +
"- choose month with " + String.fromCharCode(0x2039) + " and " + String.fromCharCode(0x203a) + "\n";

Calendar._TT["ABOUT_TIME"] = "\n\n" +
"Choose time:\n" +
"- Hour/Minutes klick for next\n" +
"- Hour/Minutes go back with shift+klick\n" +
"- or drag left an right for quick selection";


Calendar._TT["TOGGLE"] = "Select first day of the week";
Calendar._TT["PREV_YEAR"] = "year back";
Calendar._TT["PREV_MONTH"] = "month back";
Calendar._TT["GO_TODAY"] = "go to today";
Calendar._TT["NEXT_MONTH"] = "month before";
Calendar._TT["NEXT_YEAR"] = "choose year";
Calendar._TT["SEL_DATE"] = "choose date";
Calendar._TT["DRAG_TO_MOVE"] = "klick an hold while moving";
Calendar._TT["PART_TODAY"] = " (today)";
Calendar._TT["MON_FIRST"] = "Start week with monday";
Calendar._TT["SUN_FIRST"] = "Start week with Sunday";
Calendar._TT["CLOSE"] = "Close";
Calendar._TT["TODAY"] = "Today";

// date formats
Calendar._TT["DEF_DATE_FORMAT"] = "dd-mm-y";
Calendar._TT["TT_DATE_FORMAT"] = "Choose date";

Calendar._TT["WK"] = "WK";

