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