1 |
552
|
thorn
|
// ** I18N
|
2 |
|
|
|
3 |
|
|
// Calendar ZH language
|
4 |
|
|
// Author: muziq, <muziq@sina.com>
|
5 |
|
|
// Encoding: GB2312 or GBK
|
6 |
|
|
// Distributed under the same terms as the calendar itself.
|
7 |
|
|
|
8 |
|
|
// full day names
|
9 |
|
|
Calendar._DN = new Array
|
10 |
|
|
("??????",
|
11 |
|
|
"????һ",
|
12 |
|
|
"???ڶ?",
|
13 |
|
|
"??????",
|
14 |
|
|
"??????",
|
15 |
|
|
"??????",
|
16 |
|
|
"??????",
|
17 |
|
|
"??????");
|
18 |
|
|
|
19 |
|
|
// Please note that the following array of short day names (and the same goes
|
20 |
|
|
// for short month names, _SMN) isn't absolutely necessary. We give it here
|
21 |
|
|
// for exemplification on how one can customize the short day names, but if
|
22 |
|
|
// they are simply the first N letters of the full name you can simply say:
|
23 |
|
|
//
|
24 |
|
|
// Calendar._SDN_len = N; // short day name length
|
25 |
|
|
// Calendar._SMN_len = N; // short month name length
|
26 |
|
|
//
|
27 |
|
|
// If N = 3 then this is not needed either since we assume a value of 3 if not
|
28 |
|
|
// present, to be compatible with translation files that were written before
|
29 |
|
|
// this feature.
|
30 |
|
|
|
31 |
|
|
// short day names
|
32 |
|
|
Calendar._SDN = new Array
|
33 |
|
|
("??",
|
34 |
|
|
"һ",
|
35 |
|
|
"??",
|
36 |
|
|
"??",
|
37 |
|
|
"??",
|
38 |
|
|
"??",
|
39 |
|
|
"??",
|
40 |
|
|
"??");
|
41 |
|
|
|
42 |
|
|
// full month names
|
43 |
|
|
Calendar._MN = new Array
|
44 |
|
|
("һ??",
|
45 |
|
|
"????",
|
46 |
|
|
"????",
|
47 |
|
|
"????",
|
48 |
|
|
"????",
|
49 |
|
|
"????",
|
50 |
|
|
"????",
|
51 |
|
|
"????",
|
52 |
|
|
"????",
|
53 |
|
|
"ʮ??",
|
54 |
|
|
"ʮһ??",
|
55 |
|
|
"ʮ????");
|
56 |
|
|
|
57 |
|
|
// short month names
|
58 |
|
|
Calendar._SMN = new Array
|
59 |
|
|
("һ??",
|
60 |
|
|
"????",
|
61 |
|
|
"????",
|
62 |
|
|
"????",
|
63 |
|
|
"????",
|
64 |
|
|
"????",
|
65 |
|
|
"????",
|
66 |
|
|
"????",
|
67 |
|
|
"????",
|
68 |
|
|
"ʮ??",
|
69 |
|
|
"ʮһ??",
|
70 |
|
|
"ʮ????");
|
71 |
|
|
|
72 |
|
|
// tooltips
|
73 |
|
|
Calendar._TT = {};
|
74 |
|
|
Calendar._TT["INFO"] = "????";
|
75 |
|
|
|
76 |
|
|
Calendar._TT["ABOUT"] =
|
77 |
|
|
"DHTML Date/Time Selector\n" +
|
78 |
|
|
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
|
79 |
|
|
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
|
80 |
|
|
"Distributed under GNU LGPL. See http://gnu.org/licenses/lgpl.html for details." +
|
81 |
|
|
"\n\n" +
|
82 |
|
|
"ѡ??????:\n" +
|
83 |
|
|
"- ??? \xab, \xbb ??ťѡ?????\n" +
|
84 |
|
|
"- ??? " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " ??ťѡ???·?\n" +
|
85 |
|
|
"- ???????ϰ?ť?ɴӲ˵??п???ѡ????ݻ??·?";
|
86 |
|
|
Calendar._TT["ABOUT_TIME"] = "\n\n" +
|
87 |
|
|
"ѡ??ʱ??:\n" +
|
88 |
|
|
"- ???Сʱ????ӿ?ʹ????ֵ??һ\n" +
|
89 |
|
|
"- ??סShift?????Сʱ????ӿ?ʹ????ֵ??һ\n" +
|
90 |
|
|
"- ????϶????ɽ??п???ѡ??";
|
91 |
|
|
|
92 |
|
|
Calendar._TT["PREV_YEAR"] = "??һ?? (??ס???˵?)";
|
93 |
|
|
Calendar._TT["PREV_MONTH"] = "??һ?? (??ס???˵?)";
|
94 |
|
|
Calendar._TT["GO_TODAY"] = "ת??????";
|
95 |
|
|
Calendar._TT["NEXT_MONTH"] = "??һ?? (??ס???˵?)";
|
96 |
|
|
Calendar._TT["NEXT_YEAR"] = "??һ?? (??ס???˵?)";
|
97 |
|
|
Calendar._TT["SEL_DATE"] = "ѡ??????";
|
98 |
|
|
Calendar._TT["DRAG_TO_MOVE"] = "?϶?";
|
99 |
|
|
Calendar._TT["PART_TODAY"] = " (????)";
|
100 |
|
|
|
101 |
|
|
// the following is to inform that "%s" is to be the first day of week
|
102 |
|
|
// %s will be replaced with the day name.
|
103 |
|
|
Calendar._TT["DAY_FIRST"] = "???????ʾ%s";
|
104 |
|
|
|
105 |
|
|
// This may be locale-dependent. It specifies the week-end days, as an array
|
106 |
|
|
// of comma-separated numbers. The numbers are from 0 to 6: 0 means Sunday, 1
|
107 |
|
|
// means Monday, etc.
|
108 |
|
|
Calendar._TT["WEEKEND"] = "0,6";
|
109 |
|
|
|
110 |
|
|
Calendar._TT["CLOSE"] = "?ر?";
|
111 |
|
|
Calendar._TT["TODAY"] = "????";
|
112 |
|
|
Calendar._TT["TIME_PART"] = "(Shift-)????????϶??ı?ֵ";
|
113 |
|
|
|
114 |
|
|
// date formats
|
115 |
|
|
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
|
116 |
|
|
Calendar._TT["TT_DATE_FORMAT"] = "%A, %b %e??";
|
117 |
|
|
|
118 |
|
|
Calendar._TT["WK"] = "??";
|
119 |
|
|
Calendar._TT["TIME"] = "ʱ??:";
|