source: trunk/web/addons/job_monarch/lib/extjs-30/src/locale/ext-lang-ko.js @ 625

Last change on this file since 625 was 625, checked in by ramonb, 15 years ago

lib/extjs-30:

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