Project

General

Profile

1
// ** I18N
2

    
3
// Calendar EN language
4
// Author: Mihai Bazon, <mihai_bazon@yahoo.com>
5
// Translation: Yourim Yi <yyi@yourim.net>
6
// Encoding: EUC-KR
7
// lang : ko
8
// Distributed under the same terms as the calendar itself.
9

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

    
14
// full day names
15

    
16
Calendar._DN = new Array
17
("?Ͽ???",
18
 "??????",
19
 "ȭ????",
20
 "??????",
21
 "?????",
22
 "?ݿ???",
23
 "?????",
24
 "?Ͽ???");
25

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

    
38
// short day names
39
Calendar._SDN = new Array
40
("??",
41
 "??",
42
 "ȭ",
43
 "??",
44
 "??",
45
 "??",
46
 "??",
47
 "??");
48

    
49
// full month names
50
Calendar._MN = new Array
51
("1??",
52
 "2??",
53
 "3??",
54
 "4??",
55
 "5??",
56
 "6??",
57
 "7??",
58
 "8??",
59
 "9??",
60
 "10??",
61
 "11??",
62
 "12??");
63

    
64
// short month names
65
Calendar._SMN = new Array
66
("1",
67
 "2",
68
 "3",
69
 "4",
70
 "5",
71
 "6",
72
 "7",
73
 "8",
74
 "9",
75
 "10",
76
 "11",
77
 "12");
78

    
79
// tooltips
80
Calendar._TT = {};
81
Calendar._TT["INFO"] = "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 this ;-)
86
"\n"+
87
"?ֽ? ?????? ?????÷??? http://www.dynarch.com/projects/calendar/ ?? ?湮?ϼ???\n" +
88
"\n"+
89
"GNU LGPL ???̼????? ?????˴ϴ?. \n"+
90
"???̼????? ???? ?ڼ??? ?????? http://gnu.org/licenses/lgpl.html ?? ????????." +
91
"\n\n" +
92
"??¥ ????:\n" +
93
"- ?????? ?????Ϸ??? \xab, \xbb ??ư?? ????մϴ?\n" +
94
"- ???? ?????Ϸ??? " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " ??ư?? ????????\n" +
95
"- ??? ?????? ?????? ?? ?????? ?????? ?????Ͻ? ?? ?ֽ??ϴ?.";
96
Calendar._TT["ABOUT_TIME"] = "\n\n" +
97
"?ð? ????:\n" +
98
"- ???콺?? ?????? ?ð??? ?????մϴ?\n" +
99
"- Shift Ű?? ?Բ? ?????? ?????մϴ?\n" +
100
"- ???? ???¿??? ???콺?? ?????̸? ?? ?? ?????? ???? ???մϴ?.\n";
101

    
102
Calendar._TT["PREV_YEAR"] = "???? ?? (??? ?????? ???)";
103
Calendar._TT["PREV_MONTH"] = "???? ?? (??? ?????? ???)";
104
Calendar._TT["GO_TODAY"] = "???? ??¥??";
105
Calendar._TT["NEXT_MONTH"] = "???? ?? (??? ?????? ???)";
106
Calendar._TT["NEXT_YEAR"] = "???? ?? (??? ?????? ???)";
107
Calendar._TT["SEL_DATE"] = "??¥?? ?????ϼ???";
108
Calendar._TT["DRAG_TO_MOVE"] = "???콺 ?巡?׷? ?̵? ?ϼ???";
109
Calendar._TT["PART_TODAY"] = " (????)";
110
Calendar._TT["MON_FIRST"] = "???????? ?? ???? ???? ???Ϸ?";
111
Calendar._TT["SUN_FIRST"] = "?Ͽ????? ?? ???? ???? ???Ϸ?";
112
Calendar._TT["CLOSE"] = "?ݱ?";
113
Calendar._TT["TODAY"] = "????";
114
Calendar._TT["TIME_PART"] = "(Shift-)Ŭ?? ?Ǵ? ?巡?? ?ϼ???";
115

    
116
// date formats
117
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
118
Calendar._TT["TT_DATE_FORMAT"] = "%b/%e [%a]";
119

    
120
Calendar._TT["WK"] = "??";
(25-25/43)