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