Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / locale / ext-lang-ko.js
1 /**
2  * Korean Translations By nicetip
3  * 05 September 2007
4  * Modify by techbug / 25 February 2008
5  */
6 Ext.onReady(function() {
7     if(Ext.Updater){
8         Ext.Updater.defaults.indicatorText = '<div class="loading-indicator">로딩중...</div>';
9     }
10
11     if(Ext.view.View){
12         Ext.view.View.prototype.emptyText = "";
13     }
14
15     if(Ext.grid.Panel){
16         Ext.grid.Panel.prototype.ddText = "{0} 개가 선택되었습니다.";
17     }
18
19     if(Ext.TabPanelItem){
20         Ext.TabPanelItem.prototype.closeText = "닫기";
21     }
22
23     if(Ext.form.field.Base){
24         Ext.form.field.Base.prototype.invalidText = "올바른 값이 아닙니다.";
25     }
26
27     if(Ext.LoadMask){
28         Ext.LoadMask.prototype.msg = "로딩중...";
29     }
30
31     if(Ext.Date) {
32         Ext.Date.monthNames = [
33         "1월",
34         "2월",
35         "3월",
36         "4월",
37         "5월",
38         "6월",
39         "7월",
40         "8월",
41         "9월",
42         "10월",
43         "11월",
44         "12월"
45         ];
46
47         Ext.Date.dayNames = [
48         "일",
49         "월",
50         "화",
51         "수",
52         "목",
53         "금",
54         "토"
55         ];
56     }
57     if(Ext.MessageBox){
58         Ext.MessageBox.buttonText = {
59             ok     : "확인",
60             cancel : "취소",
61             yes    : "예",
62             no     : "아니오"
63         };
64     }
65
66     if(Ext.util.Format){
67         Ext.apply(Ext.util.Format, {
68             thousandSeparator: ',',
69             decimalSeparator: '.',
70             currencySign: '\u20a9',  // Korean Won
71             dateFormat: 'm/d/Y'
72         });
73     }
74
75     if(Ext.picker.Date){
76         Ext.apply(Ext.picker.Date.prototype, {
77             todayText         : "오늘",
78             minText           : "최소 날짜범위를 넘었습니다.",
79             maxText           : "최대 날짜범위를 넘었습니다.",
80             disabledDaysText  : "",
81             disabledDatesText : "",
82             monthNames        : Ext.Date.monthNames,
83             dayNames          : Ext.Date.dayNames,
84             nextText          : '다음달(컨트롤키+오른쪽 화살표)',
85             prevText          : '이전달 (컨트롤키+왼족 화살표)',
86             monthYearText     : '월을 선택해주세요. (컨트롤키+위/아래 화살표)',
87             todayTip          : "{0} (스페이스바)",
88             format            : "m/d/y",
89             startDay          : 0
90         });
91     }
92
93     if(Ext.picker.Month) {
94         Ext.apply(Ext.picker.Month.prototype, {
95             okText            : "확인",
96             cancelText        : "취소"
97         });
98     }
99
100     if(Ext.toolbar.Paging){
101         Ext.apply(Ext.PagingToolbar.prototype, {
102             beforePageText : "페이지",
103             afterPageText  : "/ {0}",
104             firstText      : "첫 페이지",
105             prevText       : "이전 페이지",
106             nextText       : "다음 페이지",
107             lastText       : "마지막 페이지",
108             refreshText    : "새로고침",
109             displayMsg     : "전체 {2} 중 {0} - {1}",
110             emptyMsg       : '표시할 데이터가 없습니다.'
111         });
112     }
113
114     if(Ext.form.field.Text){
115         Ext.apply(Ext.form.field.Text.prototype, {
116             minLengthText : "최소길이는 {0}입니다.",
117             maxLengthText : "최대길이는 {0}입니다.",
118             blankText     : "값을 입력해주세요.",
119             regexText     : "",
120             emptyText     : null
121         });
122     }
123
124     if(Ext.form.field.Number){
125         Ext.apply(Ext.form.field.Number.prototype, {
126             minText : "최소값은 {0}입니다.",
127             maxText : "최대값은 {0}입니다.",
128             nanText : "{0}는 올바른 숫자가 아닙니다."
129         });
130     }
131
132     if(Ext.form.field.Date){
133         Ext.apply(Ext.form.field.Date.prototype, {
134             disabledDaysText  : "비활성",
135             disabledDatesText : "비활성",
136             minText           : "{0}일 이후여야 합니다.",
137             maxText           : "{0}일 이전이어야 합니다.",
138             invalidText       : "{0}는 올바른 날짜형식이 아닙니다. - 다음과 같은 형식이어야 합니다. {1}",
139             format            : "m/d/y"
140         });
141     }
142
143     if(Ext.form.field.ComboBox){
144         Ext.apply(Ext.form.field.ComboBox.prototype, {
145             loadingText       : "로딩중...",
146             valueNotFoundText : undefined
147         });
148     }
149
150     if(Ext.form.field.VTypes){
151         Ext.apply(Ext.form.field.VTypes, {
152             emailText    : '이메일 주소 형식에 맞게 입력해야합니다. (예: "user@example.com")',
153             urlText      : 'URL 형식에 맞게 입력해야합니다. (예: "http:/'+'/www.example.com")',
154             alphaText    : '영문, 밑줄(_)만 입력할 수 있습니다.',
155             alphanumText : '영문, 숫자, 밑줄(_)만 입력할 수 있습니다.'
156         });
157     }
158
159     if(Ext.form.field.HtmlEditor){
160         Ext.apply(Ext.form.field.HtmlEditor.prototype, {
161             createLinkText : 'URL을 입력해주세요:',
162             buttonTips : {
163                 bold : {
164                     title: '굵게 (Ctrl+B)',
165                     text: '선택한 텍스트를 굵게 표시합니다.',
166                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
167                 },
168                 italic : {
169                     title: '기울임꼴 (Ctrl+I)',
170                     text: '선택한 텍스트를 기울임꼴로 표시합니다.',
171                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
172                 },
173                 underline : {
174                     title: '밑줄 (Ctrl+U)',
175                     text: '선택한 텍스트에 밑줄을 표시합니다.',
176                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
177                 },
178                 increasefontsize : {
179                     title: '글꼴크기 늘림',
180                     text: '글꼴 크기를 크게 합니다.',
181                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
182                 },
183                 decreasefontsize : {
184                     title: '글꼴크기 줄임',
185                     text: '글꼴 크기를 작게 합니다.',
186                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
187                 },
188                 backcolor : {
189                     title: '텍스트 강조 색',
190                     text: '선택한 텍스트의 배경색을 변경합니다.',
191                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
192                 },
193                 forecolor : {
194                     title: '글꼴색',
195                     text: '선택한 텍스트의 색을 변경합니다.',
196                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
197                 },
198                 justifyleft : {
199                     title: '텍스트 왼쪽 맞춤',
200                     text: '왼쪽에 텍스트를 맞춥니다.',
201                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
202                 },
203                 justifycenter : {
204                     title: '가운데 맞춤',
205                     text: '가운데에 텍스트를 맞춥니다.',
206                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
207                 },
208                 justifyright : {
209                     title: '텍스트 오른쪽 맞춤',
210                     text: '오른쪽에 텍스트를 맞춥니다.',
211                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
212                 },
213                 insertunorderedlist : {
214                     title: '글머리 기호',
215                     text: '글머리 기호 목록을 시작합니다.',
216                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
217                 },
218                 insertorderedlist : {
219                     title: '번호 매기기',
220                     text: '번호 매기기 목록을 시작합니다.',
221                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
222                 },
223                 createlink : {
224                     title: '하이퍼링크',
225                     text: '선택한 텍스트에 하이퍼링크를 만듭니다.',
226                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
227                 },
228                 sourceedit : {
229                     title: '소스편집',
230                     text: '소스편집 모드로 변환합니다.',
231                     cls: Ext.baseCSSPrefix + 'html-editor-tip'
232                 }
233             }
234         });
235     }
236
237     if(Ext.grid.header.Container){
238         Ext.apply(Ext.grid.header.Container.prototype, {
239             sortAscText  : "오름차순 정렬",
240             sortDescText : "내림차순 정렬",
241             lockText     : "칼럼 잠금",
242             unlockText   : "칼럼 잠금해제",
243             columnsText  : "칼럼 목록"
244         });
245     }
246
247     if(Ext.grid.GroupingFeature){
248         Ext.apply(Ext.grid.GroupingFeature.prototype, {
249             emptyGroupText : '(None)',
250             groupByText    : '현재 필드로 그룹핑합니다.',
251             showGroupsText : '그룹으로 보여주기'
252
253         });
254     }
255
256     if(Ext.grid.PropertyColumnModel){
257         Ext.apply(Ext.grid.PropertyColumnModel.prototype, {
258             nameText   : "항목",
259             valueText  : "값",
260             dateFormat : "m/j/Y"
261         });
262     }
263
264     if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){
265         Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, {
266             splitTip            : "크기변경을 위해 드래그하세요.",
267             collapsibleSplitTip : "크기변경을 위해 드래그, 숨기기 위해 더블클릭 하세요."
268         });
269     }
270
271 });