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