tim@14: // ** I18N tim@14: tim@14: // Calendar EN language tim@14: // Author: Mihai Bazon, tim@14: // Encoding: any tim@14: // Distributed under the same terms as the calendar itself. tim@14: tim@14: // For translators: please use UTF-8 if possible. We strongly believe that tim@14: // Unicode is the answer to a real internationalized world. Also please tim@14: // include your contact information in the header, as can be seen above. tim@14: tim@14: // full day names tim@14: Calendar._DN = new Array tim@14: ("Sunday", tim@14: "Monday", tim@14: "Tuesday", tim@14: "Wednesday", tim@14: "Thursday", tim@14: "Friday", tim@14: "Saturday", tim@14: "Sunday"); tim@14: tim@14: // Please note that the following array of short day names (and the same goes tim@14: // for short month names, _SMN) isn't absolutely necessary. We give it here tim@14: // for exemplification on how one can customize the short day names, but if tim@14: // they are simply the first N letters of the full name you can simply say: tim@14: // tim@14: // Calendar._SDN_len = N; // short day name length tim@14: // Calendar._SMN_len = N; // short month name length tim@14: // tim@14: // If N = 3 then this is not needed either since we assume a value of 3 if not tim@14: // present, to be compatible with translation files that were written before tim@14: // this feature. tim@14: tim@14: // short day names tim@14: Calendar._SDN = new Array tim@14: ("Sun", tim@14: "Mon", tim@14: "Tue", tim@14: "Wed", tim@14: "Thu", tim@14: "Fri", tim@14: "Sat", tim@14: "Sun"); tim@14: tim@14: // First day of the week. "0" means display Sunday first, "1" means display tim@14: // Monday first, etc. tim@14: Calendar._FD = 0; tim@14: tim@14: // full month names tim@14: Calendar._MN = new Array tim@14: ("January", tim@14: "February", tim@14: "March", tim@14: "April", tim@14: "May", tim@14: "June", tim@14: "July", tim@14: "August", tim@14: "September", tim@14: "October", tim@14: "November", tim@14: "December"); tim@14: tim@14: // short month names tim@14: Calendar._SMN = new Array tim@14: ("Jan", tim@14: "Feb", tim@14: "Mar", tim@14: "Apr", tim@14: "May", tim@14: "Jun", tim@14: "Jul", tim@14: "Aug", tim@14: "Sep", tim@14: "Oct", tim@14: "Nov", tim@14: "Dec"); tim@14: tim@14: // tooltips tim@14: Calendar._TT = {}; tim@14: Calendar._TT["INFO"] = "About the calendar"; tim@14: tim@14: Calendar._TT["ABOUT"] = tim@14: "DHTML Date/Time Selector\n" + tim@14: "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-) tim@14: "For latest version visit: http://www.dynarch.com/projects/calendar/\n" + tim@14: "Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." + tim@14: "\n\n" + tim@14: "Date selection:\n" + tim@14: "- Use the \xab, \xbb buttons to select year\n" + tim@14: "- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" + tim@14: "- Hold mouse button on any of the above buttons for faster selection."; tim@14: Calendar._TT["ABOUT_TIME"] = "\n\n" + tim@14: "Time selection:\n" + tim@14: "- Click on any of the time parts to increase it\n" + tim@14: "- or Shift-click to decrease it\n" + tim@14: "- or click and drag for faster selection."; tim@14: tim@14: Calendar._TT["PREV_YEAR"] = "Prev. year (hold for menu)"; tim@14: Calendar._TT["PREV_MONTH"] = "Prev. month (hold for menu)"; tim@14: Calendar._TT["GO_TODAY"] = "Go Today"; tim@14: Calendar._TT["NEXT_MONTH"] = "Next month (hold for menu)"; tim@14: Calendar._TT["NEXT_YEAR"] = "Next year (hold for menu)"; tim@14: Calendar._TT["SEL_DATE"] = "Select date"; tim@14: Calendar._TT["DRAG_TO_MOVE"] = "Drag to move"; tim@14: Calendar._TT["PART_TODAY"] = " (today)"; tim@14: tim@14: // the following is to inform that "%s" is to be the first day of week tim@14: // %s will be replaced with the day name. tim@14: Calendar._TT["DAY_FIRST"] = "Display %s first"; tim@14: tim@14: // This may be locale-dependent. It specifies the week-end days, as an array tim@14: // of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1 tim@14: // means Monday, etc. tim@14: Calendar._TT["WEEKEND"] = "0,6"; tim@14: tim@14: Calendar._TT["CLOSE"] = "Close"; tim@14: Calendar._TT["TODAY"] = "Today"; tim@14: Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value"; tim@14: tim@14: // date formats tim@14: Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d"; tim@14: Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e"; tim@14: tim@14: Calendar._TT["WK"] = "wk"; tim@14: Calendar._TT["TIME"] = "Time:";