// Author: Hartwig Weinkauf h_weinkauf@gmx.de // Completion: Wolfram Heinz, ABAS AG wh@abas.de // Revision and addition of missing text by Gerhard Neinert (gerhard at neinert punkt de) // Feel free to use / redistribute under the GNU LGPL. // ** I18N // full day names // example: Calendar._DN = new Array ("Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"); // short day names Calendar._SDN = new Array ("Su.", "Mo.", "Tu.", "We.", "Th.", "Fr.", "Sa.", "Su."); // 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.", "May.", "Jun.", "Jul.", "Aug.", "Sep.", "Oct.", "Nov.", "Dec."); // tooltips Calendar._TT = {}; Calendar._TT["INFO"] = "Using the calendar"; Calendar._TT["ABOUT"] = "DHTML date/time selector\n\n" + "(c) dynarch.com 2002-2003\n\n\n\n" + // don't translate this ;-) "\n\n" + "Date selection:\n" + "Select year:\xab und \xbb\n" + "Select month:" + String.fromCharCode(0x2039) + " und " + String.fromCharCode(0x203a) + "\n" + "Selection from list: Hold down mouse button."; Calendar._TT["ABOUT_TIME"] = "\n\n" + "Select time:\n\n" + "Hour/Minute forward using mouse click\n\n" + "Hour/Minute back using shift mouse click\n\n" + "Or for a faster selection pull to the left or right."; Calendar._TT["TOGGLE"] = "Select first day of the week"; Calendar._TT["PREV_YEAR"] = "Year back (hold -> selection menu)"; Calendar._TT["PREV_MONTH"] = "Month back (hold -> selection menu)"; Calendar._TT["GO_TODAY"] = "Go to todays date."; Calendar._TT["NEXT_MONTH"] = "Next month (hold -> selection menu)"; Calendar._TT["NEXT_YEAR"] = "Next year (hold -> selection menu)"; Calendar._TT["SEL_DATE"] = "Date selection:"; Calendar._TT["DRAG_TO_MOVE"] = "Click and hold to scroll."; Calendar._TT["PART_TODAY"] = "(today)"; Calendar._TT["MON_FIRST"] = "Display week beginning with Monday."; Calendar._TT["SUN_FIRST"] = "Display week beginning with Sunday."; // 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"] = "%s Fix as first weekday."; // 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"] = "6,0"; Calendar._TT["CLOSE"] = "Close"; Calendar._TT["TODAY"] = "today"; // date formats Calendar._TT["DEF_DATE_FORMAT"] = "%d.%m.%y"; Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e"; // Calendar._TT["TT_DATE_FORMAT"] = "Select date"; Calendar._TT["WK"] = "CW"; Calendar._TT["TIME"] = "Time:";