Project

General

Profile

Patch #2386 » lang-calendar-ko.js.diff

Kihyun Yun, 2008-12-23 02:25

View differences:

public/javascripts/calendar/lang/calendar-ko.js (working copy)
79 79

  
80 80
// tooltips
81 81
Calendar._TT = {};
82
Calendar._TT["INFO"] = "About the calendar";
82
Calendar._TT["INFO"] = "이 달력은 ... & 도움말";
83 83

  
84 84
Calendar._TT["ABOUT"] =
85
"DHTML Date/Time Selector\n" +
85
"DHTML 날짜/시간 선택기\n" +
86 86
"(c) dynarch.com 2002-2005 / Author: Mihai Bazon\n" + // don't translate this this ;-)
87
"For latest version visit: http://www.dynarch.com/projects/calendar/\n" +
88
"Distributed under GNU LGPL.  See http://gnu.org/licenses/lgpl.html for details." +
87
"최신 버전을 구하려면 여기로: http://www.dynarch.com/projects/calendar/\n" +
88
"배포라이센스:GNU LGPL.  참조:http://gnu.org/licenses/lgpl.html for details." +
89 89
"\n\n" +
90
"Date selection:\n" +
91
"- Use the \xab, \xbb buttons to select year\n" +
92
"- Use the " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " buttons to select month\n" +
93
"- Hold mouse button on any of the above buttons for faster selection.";
90
"날짜 선택:\n" +
91
"- 해를 선택하려면 \xab, \xbb 버튼을 사용하세요.\n" +
92
"- 달을 선택하려면 " + String.fromCharCode(0x2039) + ", " + String.fromCharCode(0x203a) + " 버튼을 사용하세요.\n" +
93
"- 좀 더 빠르게 선택하려면 위의 버튼을 꾹 눌러주세요.";
94 94
Calendar._TT["ABOUT_TIME"] = "\n\n" +
95
"Time selection:\n" +
96
"- Click on any of the time parts to increase it\n" +
97
"- or Shift-click to decrease it\n" +
98
"- or click and drag for faster selection.";
95
"시간 선택:\n" +
96
"- 시, 분을 더하려면 클릭하세요.\n" +
97
"- 시, 분을 빼려면  쉬프트 누르고 클릭하세요.\n" +
98
"- 좀 더 빠르게 선택하려면 클릭하고 드래그하세요.";
99 99

  
100 100
Calendar._TT["PREV_YEAR"] = "이전 해";
101 101
Calendar._TT["PREV_MONTH"] = "이전 달";
......
117 117

  
118 118
Calendar._TT["CLOSE"] = "닫기";
119 119
Calendar._TT["TODAY"] = "오늘";
120
Calendar._TT["TIME_PART"] = "(Shift-)클릭 or drag to change value";
120
Calendar._TT["TIME_PART"] = "클릭(+),쉬프트+클릭(-),드래그";
121 121

  
122 122
// date formats
123 123
Calendar._TT["DEF_DATE_FORMAT"] = "%Y-%m-%d";
124 124
Calendar._TT["TT_DATE_FORMAT"] = "%a, %b %e";
125 125

  
126 126
Calendar._TT["WK"] = "주";
127
Calendar._TT["TIME"] = "Time:";
127
Calendar._TT["TIME"] = "시간:";
(2-2/2)