]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - jscalendar/lang/calendar-bg.js
Release 6.1.4
[Github/sugarcrm.git] / jscalendar / lang / calendar-bg.js
1 /*
2
3 Modification information for LGPL compliance
4
5 r58354 - 2010-09-29 14:39:04 -0700 (Wed, 29 Sep 2010) - kjing - Author: Majed Itani <mitani@mitani.local>
6      fixes issues where language pack calendars were not compatible
7
8
9 */
10
11 // ** I18N
12
13 // Calendar EN language
14 // Author: Mihai Bazon, <mishoo@infoiasi.ro>
15 // Encoding: any
16 // Distributed under the same terms as the calendar itself.
17
18 // For translators: please use UTF-8 if possible.  We strongly believe that
19 // Unicode is the answer to a real internationalized world.  Also please
20 // include your contact information in the header, as can be seen above.
21
22 // full day names
23 Calendar._DN = new Array
24 ("Sunday",
25  "Monday",
26  "Tuesday",
27  "Wednesday",
28  "Thursday",
29  "Friday",
30  "Saturday",
31  "Sunday");
32
33 // Please note that the following array of short day names (and the same goes
34 // for short month names, _SMN) isn't absolutely necessary.  We give it here
35 // for exemplification on how one can customize the short day names, but if
36 // they are simply the first N letters of the full name you can simply say:
37 //
38 //   Calendar._SDN_len = N; // short day name length
39 //   Calendar._SMN_len = N; // short month name length
40 //
41 // If N = 3 then this is not needed either since we assume a value of 3 if not
42 // present, to be compatible with translation files that were written before
43 // this feature.
44
45 // short day names
46 Calendar._SDN = new Array
47 ("Sun",
48  "Mon",
49  "Tue",
50  "Wed",
51  "Thu",
52  "Fri",
53  "Sat",
54  "Sun");
55
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");
70
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");
85
86 // tooltips
87 Calendar._TT = {};
88 Calendar._TT["INFO"] = "About the calendar";
89
90 Calendar._TT["ABOUT"] =
91 "DHTML Date/Time Selector\n" +
92 "(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
93 "For latest version visit: http://dynarch.com/mishoo/calendar.epl\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.";
105
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 and time";
112 Calendar._TT["DRAG_TO_MOVE"] = "Drag to move";
113 Calendar._TT["PART_TODAY"] = " (today)";
114
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";
118
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";
123
124 Calendar._TT["CLOSE"] = "Close";
125 Calendar._TT["TODAY"] = "Today";
126 //Calendar._TT["TIME_PART"] = "(Shift-)Click or drag to change value";
127 Calendar._TT["TIME_PART"] = "Drag mouse or use arrows to change";
128
129 // date formats
130 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
131 Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
132
133 Calendar._TT["WK"] = "wk";
134 Calendar._TT["TIME"] = "Time:";