Space to separate "&&" so that all "&$var" can be made into "$var" later
[openemr.git] / library / dynarch_calendar_en.js
blob8e3e043d138e40d7e5a196a8fece27281ab90dac
1 // ** I18N
3 // IMPORTANT:
4 //  This library has been migrated to dynarch_calendar_en.inc.php
5 //   in order to support internationalization. This script is left here
6 //   to support old use of the calendar widget.
7 //
9 // Calendar EN language
10 // Author: Mihai Bazon, <mihai_bazon@yahoo.com>
11 // Encoding: any
12 // Distributed under the same terms as the calendar itself.
14 // For translators: please use UTF-8 if possible.  We strongly believe that
15 // Unicode is the answer to a real internationalized world.  Also please
16 // include your contact information in the header, as can be seen above.
18 // full day names
19 Calendar._DN = new Array
20 ("Sunday",
21  "Monday",
22  "Tuesday",
23  "Wednesday",
24  "Thursday",
25  "Friday",
26  "Saturday",
27  "Sunday");
29 // Please note that the following array of short day names (and the same goes
30 // for short month names, _SMN) isn't absolutely necessary.  We give it here
31 // for exemplification on how one can customize the short day names, but if
32 // they are simply the first N letters of the full name you can simply say:
34 //   Calendar._SDN_len = N; // short day name length
35 //   Calendar._SMN_len = N; // short month name length
37 // If N = 3 then this is not needed either since we assume a value of 3 if not
38 // present, to be compatible with translation files that were written before
39 // this feature.
41 // short day names
42 Calendar._SDN = new Array
43 ("Sun",
44  "Mon",
45  "Tue",
46  "Wed",
47  "Thu",
48  "Fri",
49  "Sat",
50  "Sun");
52 // First day of the week. "0" means display Sunday first, "1" means display
53 // Monday first, etc.
54 Calendar._FD = 0;
56 // full month names
57 Calendar._MN = new Array
58 ("January",
59  "February",
60  "March",
61  "April",
62  "May",
63  "June",
64  "July",
65  "August",
66  "September",
67  "October",
68  "November",
69  "December");
71 // short month names
72 Calendar._SMN = new Array
73 ("Jan",
74  "Feb",
75  "Mar",
76  "Apr",
77  "May",
78  "Jun",
79  "Jul",
80  "Aug",
81  "Sep",
82  "Oct",
83  "Nov",
84  "Dec");
86 // tooltips
87 Calendar._TT = {};
88 Calendar._TT["INFO"] = "About the calendar";
90 Calendar._TT["ABOUT"] =
91 "DHTML Date/Time Selector\n" +
92 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
93 "For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
94 "Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
95 "\n\n" +
96 "Date selection:\n" +
97 "- Use the \xab, \xbb buttons to select year\n" +
98 "- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
99 "- Hold mouse button on any of the above buttons for faster selection.";
100 Calendar._TT["ABOUT_TIME"] = "\n\n" +
101 "Time selection:\n" +
102 "- Click on any of the time parts to increase it\n" +
103 "- or Shift-click to decrease it\n" +
104 "- or click and drag for faster selection.";
106 Calendar._TT["PREV_YEAR"] = "Prev. year (hold for menu)";
107 Calendar._TT["PREV_MONTH"] = "Prev. month (hold for menu)";
108 Calendar._TT["GO_TODAY"] = "Go Today";
109 Calendar._TT["NEXT_MONTH"] = "Next month (hold for menu)";
110 Calendar._TT["NEXT_YEAR"] = "Next year (hold for menu)";
111 Calendar._TT["SEL_DATE"] = "Select date";
112 Calendar._TT["DRAG_TO_MOVE"] = "Drag to move";
113 Calendar._TT["PART_TODAY"] = " (today)";
115 // the following is to inform that "%s" is to be the first day of week
116 // %s will be replaced with the day name.
117 Calendar._TT["DAY_FIRST"] = "Display %s first";
119 // This may be locale-dependent.  It specifies the week-end days, as an array
120 // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
121 // means Monday, etc.
122 Calendar._TT["WEEKEND"] = "0,6";
124 Calendar._TT["CLOSE"] = "Close";
125 Calendar._TT["TODAY"] = "Today";
126 Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";
128 // date formats
129 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
130 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
132 Calendar._TT["WK"] = "wk";
133 Calendar._TT["TIME"] = "Time:";