]> CyberLeo.Net >> Repos - SourceForge/phpwiki.git/blob - themes/blog/jscalendar/lang/calendar-zh.js
Convert calendar-zh.js from GB2312 to UTF-8
[SourceForge/phpwiki.git] / themes / blog / jscalendar / lang / calendar-zh.js
1 // ** I18N
2
3 // Calendar ZH language
4 // Author: muziq, <muziq@sina.com>
5 // Distributed under the same terms as the calendar itself.
6
7 // full day names
8 Calendar._DN = new Array
9 ("星期日",
10  "星期一",
11  "星期二",
12  "星期三",
13  "星期四",
14  "星期五",
15  "星期六",
16  "星期日");
17
18 // Please note that the following array of short day names (and the same goes
19 // for short month names, _SMN) isn't absolutely necessary.  We give it here
20 // for exemplification on how one can customize the short day names, but if
21 // they are simply the first N letters of the full name you can simply say:
22 //
23 //   Calendar._SDN_len = N; // short day name length
24 //   Calendar._SMN_len = N; // short month name length
25 //
26 // If N = 3 then this is not needed either since we assume a value of 3 if not
27 // present, to be compatible with translation files that were written before
28 // this feature.
29
30 // short day names
31 Calendar._SDN = new Array
32 ("日",
33  "一",
34  "二",
35  "三",
36  "四",
37  "五",
38  "六",
39  "日");
40
41 // full month names
42 Calendar._MN = new Array
43 ("一月",
44  "二月",
45  "三月",
46  "四月",
47  "五月",
48  "六月",
49  "七月",
50  "八月",
51  "九月",
52  "十月",
53  "十一月",
54  "十二月");
55
56 // short month names
57 Calendar._SMN = new Array
58 ("一月",
59  "二月",
60  "三月",
61  "四月",
62  "五月",
63  "六月",
64  "七月",
65  "八月",
66  "九月",
67  "十月",
68  "十一月",
69  "十二月");
70
71 // tooltips
72 Calendar._TT = {};
73 Calendar._TT["INFO"] = "帮助";
74
75 Calendar._TT["ABOUT"] =
76 "DHTML Date/Time Selector\n" +
77 "(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
78 "For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
79 "Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
80 "\n\n" +
81 "选择日期:\n" +
82 "- 点击 \xab, \xbb 按钮选择年份\n" +
83 "- 点击 " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " 按钮选择月份\n" +
84 "- 长按以上按钮可从菜单中快速选择年份或月份";
85 Calendar._TT["ABOUT_TIME"] = "\n\n" +
86 "选择时间:\n" +
87 "- 点击小时或分钟可使改数值加一\n" +
88 "- 按住Shift键点击小时或分钟可使改数值减一\n" +
89 "- 点击拖动鼠标可进行快速选择";
90
91 Calendar._TT["PREV_YEAR"] = "上一年 (按住出菜单)";
92 Calendar._TT["PREV_MONTH"] = "上一月 (按住出菜单)";
93 Calendar._TT["GO_TODAY"] = "转到今日";
94 Calendar._TT["NEXT_MONTH"] = "下一月 (按住出菜单)";
95 Calendar._TT["NEXT_YEAR"] = "下一年 (按住出菜单)";
96 Calendar._TT["SEL_DATE"] = "选择日期";
97 Calendar._TT["DRAG_TO_MOVE"] = "拖动";
98 Calendar._TT["PART_TODAY"] = " (今日)";
99
100 // the following is to inform that "%s" is to be the first day of week
101 // %s will be replaced with the day name.
102 Calendar._TT["DAY_FIRST"] = "最左边显示%s";
103
104 // This may be locale-dependent.  It specifies the week-end days, as an array
105 // of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
106 // means Monday, etc.
107 Calendar._TT["WEEKEND"] = "0,6";
108
109 Calendar._TT["CLOSE"] = "关闭";
110 Calendar._TT["TODAY"] = "今日";
111 Calendar._TT["TIME_PART"] = "(Shift-)点击鼠标或拖动改变值";
112
113 // date formats
114 Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
115 Calendar._TT["TT_DATE_FORMAT"] = "%A, %b %e日";
116
117 Calendar._TT["WK"] = "周";
118 Calendar._TT["TIME"] = "时间:";