source: trunk/phpgwapi/js/jscalendar/lang/calendar-ko-utf8.js @ 2

Revision 2, 3.5 KB checked in by niltonneto, 17 years ago (diff)

Removida todas as tags usadas pelo CVS ($Id, $Source).
Primeira versão no CVS externo.

  • Property svn:eol-style set to native
  • Property svn:executable set to *
Line 
1// ** I18N
2
3// Calendar EN language
4// Author: Mihai Bazon, <mishoo@infoiasi.ro>
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
16Calendar._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
39Calendar._SDN = new Array
40("음",
41 "월",
42 "화",
43 "수",
44 "목",
45 "ꞈ",
46 "토",
47 "음");
48
49// full month names
50Calendar._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
65Calendar._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
80Calendar._TT = {};
81Calendar._TT["INFO"] = "calendar 에 대핎서";
82
83Calendar._TT["ABOUT"] =
84"DHTML Date/Time Selector\n" +
85"(c) dynarch.com 2002-2003\n" + // don't translate this this ;-)
86"\n"+
87"최신 버전을 받윌시렀멎 http://dynarch.com/mishoo/calendar.epl 에 방묞하섞요\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"- 계속 누륎고 있윌멎 위 값듀을 빠륎게 선택하싀 수 있습니닀.";
96Calendar._TT["ABOUT_TIME"] = "\n\n" +
97"시간 선택:\n" +
98"- 마우슀로 누륎멎 시간읎 슝가합니닀\n" +
99"- Shift 킀와 핚께 누륎멎 감소합니닀\n" +
100"- 누륞 상태에서 마우슀륌 움직읎멎 좀 더 빠륎게 값읎 변합니닀.\n";
101
102Calendar._TT["PREV_YEAR"] = "지난 핮 (Ꞟ게 누륎멎 목록)";
103Calendar._TT["PREV_MONTH"] = "지난 달 (Ꞟ게 누륎멎 목록)";
104Calendar._TT["GO_TODAY"] = "였늘 날짜로";
105Calendar._TT["NEXT_MONTH"] = "닀음 달 (Ꞟ게 누륎멎 목록)";
106Calendar._TT["NEXT_YEAR"] = "닀음 핮 (Ꞟ게 누륎멎 목록)";
107Calendar._TT["SEL_DATE"] = "날짜륌 선택하섞요";
108Calendar._TT["DRAG_TO_MOVE"] = "마우슀 드래귞로 읎동 하섞요";
109Calendar._TT["PART_TODAY"] = " (였늘)";
110Calendar._TT["MON_FIRST"] = "월요음을 한 죌의 시작 요음로";
111Calendar._TT["SUN_FIRST"] = "음요음을 한 죌의 시작 요음로";
112Calendar._TT["CLOSE"] = "ë‹«êž°";
113Calendar._TT["TODAY"] = "였늘";
114Calendar._TT["TIME_PART"] = "(Shift-)큎늭 또는 드래귞 하섞요";
115
116// date formats
117Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
118Calendar._TT["TT_DATE_FORMAT"] = "%b/%e [%a]";
119
120Calendar._TT["WK"] = "죌";
Note: See TracBrowser for help on using the repository browser.