Project

General

Profile

1
// ** I18N
2

    
3
// Calendar EN language
4
// Author: Mihai Bazon, <mishoo@infoiasi.ro>
5
// Encoding: any
6
// Translator : Niko <nikoused@gmail.com>
7
// Distributed under the same terms as the calendar itself.
8

    
9
// For translators: please use UTF-8 if possible.  We strongly believe that
10
// Unicode is the answer to a real internationalized world.  Also please
11
// include your contact information in the header, as can be seen above.
12

    
13
// full day names
14
Calendar._DN = new Array
15
("\u5468\u65e5",//\u5468\u65e5
16
 "\u5468\u4e00",//\u5468\u4e00
17
 "\u5468\u4e8c",//\u5468\u4e8c
18
 "\u5468\u4e09",//\u5468\u4e09
19
 "\u5468\u56db",//\u5468\u56db
20
 "\u5468\u4e94",//\u5468\u4e94
21
 "\u5468\u516d",//\u5468\u516d
22
 "\u5468\u65e5");//\u5468\u65e5
23

    
24
// Please note that the following array of short day names (and the same goes
25
// for short month names, _SMN) isn't absolutely necessary.  We give it here
26
// for exemplification on how one can customize the short day names, but if
27
// they are simply the first N letters of the full name you can simply say:
28
//
29
//   Calendar._SDN_len = N; // short day name length
30
//   Calendar._SMN_len = N; // short month name length
31
//
32
// If N = 3 then this is not needed either since we assume a value of 3 if not
33
// present, to be compatible with translation files that were written before
34
// this feature.
35

    
36
// short day names
37
Calendar._SDN = new Array
38
("\u5468\u65e5",
39
 "\u5468\u4e00",
40
 "\u5468\u4e8c",
41
 "\u5468\u4e09",
42
 "\u5468\u56db",
43
 "\u5468\u4e94",
44
 "\u5468\u516d",
45
 "\u5468\u65e5");
46

    
47
// full month names
48
Calendar._MN = new Array
49
("\u4e00\u6708",
50
 "\u4e8c\u6708",
51
 "\u4e09\u6708",
52
 "\u56db\u6708",
53
 "\u4e94\u6708",
54
 "\u516d\u6708",
55
 "\u4e03\u6708",
56
 "\u516b\u6708",
57
 "\u4e5d\u6708",
58
 "\u5341\u6708",
59
 "\u5341\u4e00\u6708",
60
 "\u5341\u4e8c\u6708");
61

    
62
// short month names
63
Calendar._SMN = new Array
64
("\u4e00\u6708",
65
 "\u4e8c\u6708",
66
 "\u4e09\u6708",
67
 "\u56db\u6708",
68
 "\u4e94\u6708",
69
 "\u516d\u6708",
70
 "\u4e03\u6708",
71
 "\u516b\u6708",
72
 "\u4e5d\u6708",
73
 "\u5341\u6708",
74
 "\u5341\u4e00\u6708",
75
 "\u5341\u4e8c\u6708");
76

    
77
// tooltips
78
Calendar._TT = {};
79
Calendar._TT["INFO"] = "\u5173\u4e8e";
80

    
81
Calendar._TT["ABOUT"] =
82
"   DHTML \u65e5\u8d77/\u65f6\u95f4\u9009\u62e9\u63a7\u4ef6\n" +
83
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
84
"For latest version visit: \u6700\u65b0\u7248\u672c\u8bf7\u767b\u9646http://www.dynarch.com/projects/calendar/\u5bdf\u770b\n" +
85
"\u9075\u5faaGNU LGPL.  \u7ec6\u8282\u53c2\u9605 http://gnu.org/licenses/lgpl.html" +
86
"\n\n" +
87
"\u65e5\u671f\u9009\u62e9:\n" +
88
"- \u70b9\u51fb\xab(\xbb)\u6309\u94ae\u9009\u62e9\u4e0a(\u4e0b)\u4e00\u5e74\u5ea6.\n" +
89
"- \u70b9\u51fb" + String.fromCharCode(0x2039) + "(" + String.fromCharCode(0x203a) + ")\u6309\u94ae\u9009\u62e9\u4e0a(\u4e0b)\u4e2a\u6708\u4efd.\n" +
90
"- \u957f\u65f6\u95f4\u6309\u7740\u6309\u94ae\u5c06\u51fa\u73b0\u66f4\u591a\u9009\u62e9\u9879.";
91
Calendar._TT["ABOUT_TIME"] = "\n\n" +
92
"\u65f6\u95f4\u9009\u62e9:\n" +
93
"-\u5728\u65f6\u95f4\u90e8\u5206(\u5206\u6216\u8005\u79d2)\u4e0a\u5355\u51fb\u9f20\u6807\u5de6\u952e\u6765\u589e\u52a0\u5f53\u524d\u65f6\u95f4\u90e8\u5206(\u5206\u6216\u8005\u79d2)\n" +
94
"-\u5728\u65f6\u95f4\u90e8\u5206(\u5206\u6216\u8005\u79d2)\u4e0a\u6309\u4f4fShift\u952e\u540e\u5355\u51fb\u9f20\u6807\u5de6\u952e\u6765\u51cf\u5c11\u5f53\u524d\u65f6\u95f4\u90e8\u5206(\u5206\u6216\u8005\u79d2).";
95

    
96
Calendar._TT["PREV_YEAR"] = "\u4e0a\u4e00\u5e74";
97
Calendar._TT["PREV_MONTH"] = "\u4e0a\u4e2a\u6708";
98
Calendar._TT["GO_TODAY"] = "\u5230\u4eca\u5929";
99
Calendar._TT["NEXT_MONTH"] = "\u4e0b\u4e2a\u6708";
100
Calendar._TT["NEXT_YEAR"] = "\u4e0b\u4e00\u5e74";
101
Calendar._TT["SEL_DATE"] = "\u9009\u62e9\u65e5\u671f";
102
Calendar._TT["DRAG_TO_MOVE"] = "\u62d6\u52a8";
103
Calendar._TT["PART_TODAY"] = " (\u4eca\u5929)";
104

    
105
// the following is to inform that "%s" is to be the first day of week
106
// %s will be replaced with the day name.
107
Calendar._TT["DAY_FIRST"] = "%s\u4e3a\u8fd9\u5468\u7684\u7b2c\u4e00\u5929";
108

    
109
// This may be locale-dependent.  It specifies the week-end days, as an array
110
// of comma-separated numbers.  The numbers are from 0 to 6: 0 means Sunday, 1
111
// means Monday, etc.
112
Calendar._TT["WEEKEND"] = "0,6";
113

    
114
Calendar._TT["CLOSE"] = "\u5173\u95ed";
115
Calendar._TT["TODAY"] = "\u4eca\u5929";
116
Calendar._TT["TIME_PART"] = "(\u6309\u7740Shift\u952e)\u5355\u51fb\u6216\u62d6\u52a8\u6539\u53d8\u503c";
117

    
118
// date formats
119
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
120
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e\u65e5";
121

    
122
Calendar._TT["WK"] = "\u5468";
123
Calendar._TT["TIME"] = "\u65f6\u95f4:";
(43-43/44)