1 | /*
|
---|
2 | Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
|
---|
3 | For licensing, see LICENSE.html or http://ckeditor.com/license
|
---|
4 | */
|
---|
5 |
|
---|
6 | /**
|
---|
7 | * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
|
---|
8 | * Korean language.
|
---|
9 | */
|
---|
10 |
|
---|
11 | /**#@+
|
---|
12 | @type String
|
---|
13 | @example
|
---|
14 | */
|
---|
15 |
|
---|
16 | /**
|
---|
17 | * Contains the dictionary of language entries.
|
---|
18 | * @namespace
|
---|
19 | */
|
---|
20 | CKEDITOR.lang['ko'] =
|
---|
21 | {
|
---|
22 | /**
|
---|
23 | * The language reading direction. Possible values are "rtl" for
|
---|
24 | * Right-To-Left languages (like Arabic) and "ltr" for Left-To-Right
|
---|
25 | * languages (like English).
|
---|
26 | * @default 'ltr'
|
---|
27 | */
|
---|
28 | dir : 'ltr',
|
---|
29 |
|
---|
30 | /*
|
---|
31 | * Screenreader titles. Please note that screenreaders are not always capable
|
---|
32 | * of reading non-English words. So be careful while translating it.
|
---|
33 | */
|
---|
34 | editorTitle : 'Rich text editor, %1, press ALT 0 for help.', // MISSING
|
---|
35 |
|
---|
36 | // ARIA descriptions.
|
---|
37 | toolbars : 'Editor toolbars', // MISSING
|
---|
38 | editor : 'Rich Text Editor', // MISSING
|
---|
39 |
|
---|
40 | // Toolbar buttons without dialogs.
|
---|
41 | source : '소스',
|
---|
42 | newPage : '새 문서',
|
---|
43 | save : '저장하기',
|
---|
44 | preview : '미리보기',
|
---|
45 | cut : '잘라내기',
|
---|
46 | copy : '복사하기',
|
---|
47 | paste : '붙여넣기',
|
---|
48 | print : '인쇄하기',
|
---|
49 | underline : '밑줄',
|
---|
50 | bold : '진하게',
|
---|
51 | italic : '이텔릭',
|
---|
52 | selectAll : '전체선택',
|
---|
53 | removeFormat : '포맷 지우기',
|
---|
54 | strike : '취소선',
|
---|
55 | subscript : '아래 첨자',
|
---|
56 | superscript : '위 첨자',
|
---|
57 | horizontalrule : '수평선 삽입',
|
---|
58 | pagebreak : 'Insert Page Break for Printing', // MISSING
|
---|
59 | pagebreakAlt : 'Page Break', // MISSING
|
---|
60 | unlink : '링크 삭제',
|
---|
61 | undo : '취소',
|
---|
62 | redo : '재실행',
|
---|
63 |
|
---|
64 | // Common messages and labels.
|
---|
65 | common :
|
---|
66 | {
|
---|
67 | browseServer : '서버 보기',
|
---|
68 | url : 'URL',
|
---|
69 | protocol : '프로토콜',
|
---|
70 | upload : '업로드',
|
---|
71 | uploadSubmit : '서버로 전송',
|
---|
72 | image : '이미지',
|
---|
73 | flash : '플래쉬',
|
---|
74 | form : '폼',
|
---|
75 | checkbox : '체크박스',
|
---|
76 | radio : '라디오버튼',
|
---|
77 | textField : '입력필드',
|
---|
78 | textarea : '입력영역',
|
---|
79 | hiddenField : '숨김필드',
|
---|
80 | button : '버튼',
|
---|
81 | select : '펼침목록',
|
---|
82 | imageButton : '이미지버튼',
|
---|
83 | notSet : '<설정되지 않음>',
|
---|
84 | id : 'ID',
|
---|
85 | name : 'Name',
|
---|
86 | langDir : '쓰기 방향',
|
---|
87 | langDirLtr : '왼쪽에서 오른쪽 (LTR)',
|
---|
88 | langDirRtl : '오른쪽에서 왼쪽 (RTL)',
|
---|
89 | langCode : '언어 코드',
|
---|
90 | longDescr : 'URL 설명',
|
---|
91 | cssClass : 'Stylesheet Classes',
|
---|
92 | advisoryTitle : 'Advisory Title',
|
---|
93 | cssStyle : 'Style',
|
---|
94 | ok : '예',
|
---|
95 | cancel : '아니오',
|
---|
96 | close : 'Close', // MISSING
|
---|
97 | preview : 'Preview', // MISSING
|
---|
98 | generalTab : 'General', // MISSING
|
---|
99 | advancedTab : '자세히',
|
---|
100 | validateNumberFailed : 'This value is not a number.', // MISSING
|
---|
101 | confirmNewPage : 'Any unsaved changes to this content will be lost. Are you sure you want to load new page?', // MISSING
|
---|
102 | confirmCancel : 'Some of the options have been changed. Are you sure to close the dialog?', // MISSING
|
---|
103 | options : 'Options', // MISSING
|
---|
104 | target : 'Target', // MISSING
|
---|
105 | targetNew : 'New Window (_blank)', // MISSING
|
---|
106 | targetTop : 'Topmost Window (_top)', // MISSING
|
---|
107 | targetSelf : 'Same Window (_self)', // MISSING
|
---|
108 | targetParent : 'Parent Window (_parent)', // MISSING
|
---|
109 | langDirLTR : 'Left to Right (LTR)', // MISSING
|
---|
110 | langDirRTL : 'Right to Left (RTL)', // MISSING
|
---|
111 | styles : 'Style', // MISSING
|
---|
112 | cssClasses : 'Stylesheet Classes', // MISSING
|
---|
113 | width : '너비',
|
---|
114 | height : '높이',
|
---|
115 | align : '정렬',
|
---|
116 | alignLeft : '왼쪽',
|
---|
117 | alignRight : '오른쪽',
|
---|
118 | alignCenter : '가운데',
|
---|
119 | alignTop : '위',
|
---|
120 | alignMiddle : '중간',
|
---|
121 | alignBottom : '아래',
|
---|
122 | invalidHeight : 'Height must be a number.', // MISSING
|
---|
123 | invalidWidth : 'Width must be a number.', // MISSING
|
---|
124 | invalidCssLength : 'Value specified for the "%1" field must be a positive number with or without a valid CSS measurement unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING
|
---|
125 | invalidHtmlLength : 'Value specified for the "%1" field must be a positive number with or without a valid HTML measurement unit (px or %).', // MISSING
|
---|
126 | invalidInlineStyle : 'Value specified for the inline style must consist of one or more tuples with the format of "name : value", separated by semi-colons.', // MISSING
|
---|
127 | cssLengthTooltip : 'Enter a number for a value in pixels or a number with a valid CSS unit (px, %, in, cm, mm, em, ex, pt, or pc).', // MISSING
|
---|
128 |
|
---|
129 | // Put the voice-only part of the label in the span.
|
---|
130 | unavailable : '%1<span class="cke_accessibility">, unavailable</span>' // MISSING
|
---|
131 | },
|
---|
132 |
|
---|
133 | contextmenu :
|
---|
134 | {
|
---|
135 | options : 'Context Menu Options' // MISSING
|
---|
136 | },
|
---|
137 |
|
---|
138 | // Special char dialog.
|
---|
139 | specialChar :
|
---|
140 | {
|
---|
141 | toolbar : '특수문자 삽입',
|
---|
142 | title : '특수문자 선택',
|
---|
143 | options : 'Special Character Options' // MISSING
|
---|
144 | },
|
---|
145 |
|
---|
146 | // Link dialog.
|
---|
147 | link :
|
---|
148 | {
|
---|
149 | toolbar : '링크 삽입/변경',
|
---|
150 | other : '<기타>',
|
---|
151 | menu : '링크 수정',
|
---|
152 | title : '링크',
|
---|
153 | info : '링크 정보',
|
---|
154 | target : '타겟',
|
---|
155 | upload : '업로드',
|
---|
156 | advanced : '자세히',
|
---|
157 | type : '링크 종류',
|
---|
158 | toUrl : 'URL', // MISSING
|
---|
159 | toAnchor : '책갈피',
|
---|
160 | toEmail : '이메일',
|
---|
161 | targetFrame : '<프레임>',
|
---|
162 | targetPopup : '<팝업창>',
|
---|
163 | targetFrameName : '타겟 프레임 이름',
|
---|
164 | targetPopupName : '팝업창 이름',
|
---|
165 | popupFeatures : '팝업창 설정',
|
---|
166 | popupResizable : 'Resizable', // MISSING
|
---|
167 | popupStatusBar : '상태바',
|
---|
168 | popupLocationBar: '주소표시줄',
|
---|
169 | popupToolbar : '툴바',
|
---|
170 | popupMenuBar : '메뉴바',
|
---|
171 | popupFullScreen : '전체화면 (IE)',
|
---|
172 | popupScrollBars : '스크롤바',
|
---|
173 | popupDependent : 'Dependent (Netscape)',
|
---|
174 | popupLeft : '왼쪽 위치',
|
---|
175 | popupTop : '윗쪽 위치',
|
---|
176 | id : 'Id', // MISSING
|
---|
177 | langDir : '쓰기 방향',
|
---|
178 | langDirLTR : '왼쪽에서 오른쪽 (LTR)',
|
---|
179 | langDirRTL : '오른쪽에서 왼쪽 (RTL)',
|
---|
180 | acccessKey : '엑세스 키',
|
---|
181 | name : 'Name',
|
---|
182 | langCode : '쓰기 방향',
|
---|
183 | tabIndex : '탭 순서',
|
---|
184 | advisoryTitle : 'Advisory Title',
|
---|
185 | advisoryContentType : 'Advisory Content Type',
|
---|
186 | cssClasses : 'Stylesheet Classes',
|
---|
187 | charset : 'Linked Resource Charset',
|
---|
188 | styles : 'Style',
|
---|
189 | rel : 'Relationship', // MISSING
|
---|
190 | selectAnchor : '책갈피 선택',
|
---|
191 | anchorName : '책갈피 이름',
|
---|
192 | anchorId : '책갈피 ID',
|
---|
193 | emailAddress : '이메일 주소',
|
---|
194 | emailSubject : '제목',
|
---|
195 | emailBody : '내용',
|
---|
196 | noAnchors : '(문서에 책갈피가 없습니다.)',
|
---|
197 | noUrl : '링크 URL을 입력하십시요.',
|
---|
198 | noEmail : '이메일주소를 입력하십시요.'
|
---|
199 | },
|
---|
200 |
|
---|
201 | // Anchor dialog
|
---|
202 | anchor :
|
---|
203 | {
|
---|
204 | toolbar : '책갈피 삽입/변경',
|
---|
205 | menu : '책갈피 속성',
|
---|
206 | title : '책갈피 속성',
|
---|
207 | name : '책갈피 이름',
|
---|
208 | errorName : '책갈피 이름을 입력하십시요.',
|
---|
209 | remove : 'Remove Anchor' // MISSING
|
---|
210 | },
|
---|
211 |
|
---|
212 | // List style dialog
|
---|
213 | list:
|
---|
214 | {
|
---|
215 | numberedTitle : 'Numbered List Properties', // MISSING
|
---|
216 | bulletedTitle : 'Bulleted List Properties', // MISSING
|
---|
217 | type : 'Type', // MISSING
|
---|
218 | start : 'Start', // MISSING
|
---|
219 | validateStartNumber :'List start number must be a whole number.', // MISSING
|
---|
220 | circle : 'Circle', // MISSING
|
---|
221 | disc : 'Disc', // MISSING
|
---|
222 | square : 'Square', // MISSING
|
---|
223 | none : 'None', // MISSING
|
---|
224 | notset : '<not set>', // MISSING
|
---|
225 | armenian : 'Armenian numbering', // MISSING
|
---|
226 | georgian : 'Georgian numbering (an, ban, gan, etc.)', // MISSING
|
---|
227 | lowerRoman : 'Lower Roman (i, ii, iii, iv, v, etc.)', // MISSING
|
---|
228 | upperRoman : 'Upper Roman (I, II, III, IV, V, etc.)', // MISSING
|
---|
229 | lowerAlpha : 'Lower Alpha (a, b, c, d, e, etc.)', // MISSING
|
---|
230 | upperAlpha : 'Upper Alpha (A, B, C, D, E, etc.)', // MISSING
|
---|
231 | lowerGreek : 'Lower Greek (alpha, beta, gamma, etc.)', // MISSING
|
---|
232 | decimal : 'Decimal (1, 2, 3, etc.)', // MISSING
|
---|
233 | decimalLeadingZero : 'Decimal leading zero (01, 02, 03, etc.)' // MISSING
|
---|
234 | },
|
---|
235 |
|
---|
236 | // Find And Replace Dialog
|
---|
237 | findAndReplace :
|
---|
238 | {
|
---|
239 | title : '찾기 & 바꾸기',
|
---|
240 | find : '찾기',
|
---|
241 | replace : '바꾸기',
|
---|
242 | findWhat : '찾을 문자열:',
|
---|
243 | replaceWith : '바꿀 문자열:',
|
---|
244 | notFoundMsg : '문자열을 찾을 수 없습니다.',
|
---|
245 | findOptions : 'Find Options', // MISSING
|
---|
246 | matchCase : '대소문자 구분',
|
---|
247 | matchWord : '온전한 단어',
|
---|
248 | matchCyclic : 'Match cyclic', // MISSING
|
---|
249 | replaceAll : '모두 바꾸기',
|
---|
250 | replaceSuccessMsg : '%1 occurrence(s) replaced.' // MISSING
|
---|
251 | },
|
---|
252 |
|
---|
253 | // Table Dialog
|
---|
254 | table :
|
---|
255 | {
|
---|
256 | toolbar : '표',
|
---|
257 | title : '표 설정',
|
---|
258 | menu : '표 설정',
|
---|
259 | deleteTable : '표 삭제',
|
---|
260 | rows : '가로줄',
|
---|
261 | columns : '세로줄',
|
---|
262 | border : '테두리 크기',
|
---|
263 | widthPx : '픽셀',
|
---|
264 | widthPc : '퍼센트',
|
---|
265 | widthUnit : 'width unit', // MISSING
|
---|
266 | cellSpace : '셀 간격',
|
---|
267 | cellPad : '셀 여백',
|
---|
268 | caption : '캡션',
|
---|
269 | summary : 'Summary', // MISSING
|
---|
270 | headers : 'Headers', // MISSING
|
---|
271 | headersNone : 'None', // MISSING
|
---|
272 | headersColumn : 'First column', // MISSING
|
---|
273 | headersRow : 'First Row', // MISSING
|
---|
274 | headersBoth : 'Both', // MISSING
|
---|
275 | invalidRows : 'Number of rows must be a number greater than 0.', // MISSING
|
---|
276 | invalidCols : 'Number of columns must be a number greater than 0.', // MISSING
|
---|
277 | invalidBorder : 'Border size must be a number.', // MISSING
|
---|
278 | invalidWidth : 'Table width must be a number.', // MISSING
|
---|
279 | invalidHeight : 'Table height must be a number.', // MISSING
|
---|
280 | invalidCellSpacing : 'Cell spacing must be a positive number.', // MISSING
|
---|
281 | invalidCellPadding : 'Cell padding must be a positive number.', // MISSING
|
---|
282 |
|
---|
283 | cell :
|
---|
284 | {
|
---|
285 | menu : '셀/칸(Cell)',
|
---|
286 | insertBefore : '앞에 셀/칸 삽입',
|
---|
287 | insertAfter : '뒤에 셀/칸 삽입',
|
---|
288 | deleteCell : '셀 삭제',
|
---|
289 | merge : '셀 합치기',
|
---|
290 | mergeRight : '오른쪽 뭉치기',
|
---|
291 | mergeDown : '왼쪽 뭉치기',
|
---|
292 | splitHorizontal : '수평 나누기',
|
---|
293 | splitVertical : '수직 나누기',
|
---|
294 | title : 'Cell Properties', // MISSING
|
---|
295 | cellType : 'Cell Type', // MISSING
|
---|
296 | rowSpan : 'Rows Span', // MISSING
|
---|
297 | colSpan : 'Columns Span', // MISSING
|
---|
298 | wordWrap : 'Word Wrap', // MISSING
|
---|
299 | hAlign : 'Horizontal Alignment', // MISSING
|
---|
300 | vAlign : 'Vertical Alignment', // MISSING
|
---|
301 | alignBaseline : 'Baseline', // MISSING
|
---|
302 | bgColor : 'Background Color', // MISSING
|
---|
303 | borderColor : 'Border Color', // MISSING
|
---|
304 | data : 'Data', // MISSING
|
---|
305 | header : 'Header', // MISSING
|
---|
306 | yes : 'Yes', // MISSING
|
---|
307 | no : 'No', // MISSING
|
---|
308 | invalidWidth : 'Cell width must be a number.', // MISSING
|
---|
309 | invalidHeight : 'Cell height must be a number.', // MISSING
|
---|
310 | invalidRowSpan : 'Rows span must be a whole number.', // MISSING
|
---|
311 | invalidColSpan : 'Columns span must be a whole number.', // MISSING
|
---|
312 | chooseColor : 'Choose' // MISSING
|
---|
313 | },
|
---|
314 |
|
---|
315 | row :
|
---|
316 | {
|
---|
317 | menu : '행(Row)',
|
---|
318 | insertBefore : '앞에 행 삽입',
|
---|
319 | insertAfter : '뒤에 행 삽입',
|
---|
320 | deleteRow : '가로줄 삭제'
|
---|
321 | },
|
---|
322 |
|
---|
323 | column :
|
---|
324 | {
|
---|
325 | menu : '열(Column)',
|
---|
326 | insertBefore : '앞에 열 삽입',
|
---|
327 | insertAfter : '뒤에 열 삽입',
|
---|
328 | deleteColumn : '세로줄 삭제'
|
---|
329 | }
|
---|
330 | },
|
---|
331 |
|
---|
332 | // Button Dialog.
|
---|
333 | button :
|
---|
334 | {
|
---|
335 | title : '버튼 속성',
|
---|
336 | text : '버튼글자(값)',
|
---|
337 | type : '버튼종류',
|
---|
338 | typeBtn : 'Button', // MISSING
|
---|
339 | typeSbm : 'Submit', // MISSING
|
---|
340 | typeRst : 'Reset' // MISSING
|
---|
341 | },
|
---|
342 |
|
---|
343 | // Checkbox and Radio Button Dialogs.
|
---|
344 | checkboxAndRadio :
|
---|
345 | {
|
---|
346 | checkboxTitle : '체크박스 속성',
|
---|
347 | radioTitle : '라디오버튼 속성',
|
---|
348 | value : '값',
|
---|
349 | selected : '선택됨'
|
---|
350 | },
|
---|
351 |
|
---|
352 | // Form Dialog.
|
---|
353 | form :
|
---|
354 | {
|
---|
355 | title : '폼 속성',
|
---|
356 | menu : '폼 속성',
|
---|
357 | action : '실행경로(Action)',
|
---|
358 | method : '방법(Method)',
|
---|
359 | encoding : 'Encoding' // MISSING
|
---|
360 | },
|
---|
361 |
|
---|
362 | // Select Field Dialog.
|
---|
363 | select :
|
---|
364 | {
|
---|
365 | title : '펼침목록 속성',
|
---|
366 | selectInfo : '정보',
|
---|
367 | opAvail : '선택옵션',
|
---|
368 | value : '값',
|
---|
369 | size : '세로크기',
|
---|
370 | lines : '줄',
|
---|
371 | chkMulti : '여러항목 선택 허용',
|
---|
372 | opText : '이름',
|
---|
373 | opValue : '값',
|
---|
374 | btnAdd : '추가',
|
---|
375 | btnModify : '변경',
|
---|
376 | btnUp : '위로',
|
---|
377 | btnDown : '아래로',
|
---|
378 | btnSetValue : '선택된것으로 설정',
|
---|
379 | btnDelete : '삭제'
|
---|
380 | },
|
---|
381 |
|
---|
382 | // Textarea Dialog.
|
---|
383 | textarea :
|
---|
384 | {
|
---|
385 | title : '입력영역 속성',
|
---|
386 | cols : '칸수',
|
---|
387 | rows : '줄수'
|
---|
388 | },
|
---|
389 |
|
---|
390 | // Text Field Dialog.
|
---|
391 | textfield :
|
---|
392 | {
|
---|
393 | title : '입력필드 속성',
|
---|
394 | name : '이름',
|
---|
395 | value : '값',
|
---|
396 | charWidth : '글자 너비',
|
---|
397 | maxChars : '최대 글자수',
|
---|
398 | type : '종류',
|
---|
399 | typeText : '문자열',
|
---|
400 | typePass : '비밀번호'
|
---|
401 | },
|
---|
402 |
|
---|
403 | // Hidden Field Dialog.
|
---|
404 | hidden :
|
---|
405 | {
|
---|
406 | title : '숨김필드 속성',
|
---|
407 | name : '이름',
|
---|
408 | value : '값'
|
---|
409 | },
|
---|
410 |
|
---|
411 | // Image Dialog.
|
---|
412 | image :
|
---|
413 | {
|
---|
414 | title : '이미지 설정',
|
---|
415 | titleButton : '이미지버튼 속성',
|
---|
416 | menu : '이미지 설정',
|
---|
417 | infoTab : '이미지 정보',
|
---|
418 | btnUpload : '서버로 전송',
|
---|
419 | upload : '업로드',
|
---|
420 | alt : '이미지 설명',
|
---|
421 | lockRatio : '비율 유지',
|
---|
422 | resetSize : '원래 크기로',
|
---|
423 | border : '테두리',
|
---|
424 | hSpace : '수평여백',
|
---|
425 | vSpace : '수직여백',
|
---|
426 | alertUrl : '이미지 URL을 입력하십시요',
|
---|
427 | linkTab : '링크',
|
---|
428 | button2Img : 'Do you want to transform the selected image button on a simple image?', // MISSING
|
---|
429 | img2Button : 'Do you want to transform the selected image on a image button?', // MISSING
|
---|
430 | urlMissing : 'Image source URL is missing.', // MISSING
|
---|
431 | validateBorder : 'Border must be a whole number.', // MISSING
|
---|
432 | validateHSpace : 'HSpace must be a whole number.', // MISSING
|
---|
433 | validateVSpace : 'VSpace must be a whole number.' // MISSING
|
---|
434 | },
|
---|
435 |
|
---|
436 | // Flash Dialog
|
---|
437 | flash :
|
---|
438 | {
|
---|
439 | properties : '플래쉬 속성',
|
---|
440 | propertiesTab : 'Properties', // MISSING
|
---|
441 | title : '플래쉬 등록정보',
|
---|
442 | chkPlay : '자동재생',
|
---|
443 | chkLoop : '반복',
|
---|
444 | chkMenu : '플래쉬메뉴 가능',
|
---|
445 | chkFull : 'Allow Fullscreen', // MISSING
|
---|
446 | scale : '영역',
|
---|
447 | scaleAll : '모두보기',
|
---|
448 | scaleNoBorder : '경계선없음',
|
---|
449 | scaleFit : '영역자동조절',
|
---|
450 | access : 'Script Access', // MISSING
|
---|
451 | accessAlways : 'Always', // MISSING
|
---|
452 | accessSameDomain: 'Same domain', // MISSING
|
---|
453 | accessNever : 'Never', // MISSING
|
---|
454 | alignAbsBottom : '줄아래(Abs Bottom)',
|
---|
455 | alignAbsMiddle : '줄중간(Abs Middle)',
|
---|
456 | alignBaseline : '기준선',
|
---|
457 | alignTextTop : '글자상단',
|
---|
458 | quality : 'Quality', // MISSING
|
---|
459 | qualityBest : 'Best', // MISSING
|
---|
460 | qualityHigh : 'High', // MISSING
|
---|
461 | qualityAutoHigh : 'Auto High', // MISSING
|
---|
462 | qualityMedium : 'Medium', // MISSING
|
---|
463 | qualityAutoLow : 'Auto Low', // MISSING
|
---|
464 | qualityLow : 'Low', // MISSING
|
---|
465 | windowModeWindow: 'Window', // MISSING
|
---|
466 | windowModeOpaque: 'Opaque', // MISSING
|
---|
467 | windowModeTransparent : 'Transparent', // MISSING
|
---|
468 | windowMode : 'Window mode', // MISSING
|
---|
469 | flashvars : 'Variables for Flash', // MISSING
|
---|
470 | bgcolor : '배경 색상',
|
---|
471 | hSpace : '수평여백',
|
---|
472 | vSpace : '수직여백',
|
---|
473 | validateSrc : '링크 URL을 입력하십시요.',
|
---|
474 | validateHSpace : 'HSpace must be a number.', // MISSING
|
---|
475 | validateVSpace : 'VSpace must be a number.' // MISSING
|
---|
476 | },
|
---|
477 |
|
---|
478 | // Speller Pages Dialog
|
---|
479 | spellCheck :
|
---|
480 | {
|
---|
481 | toolbar : '철자검사',
|
---|
482 | title : 'Spell Check', // MISSING
|
---|
483 | notAvailable : 'Sorry, but service is unavailable now.', // MISSING
|
---|
484 | errorLoading : 'Error loading application service host: %s.', // MISSING
|
---|
485 | notInDic : '사전에 없는 단어',
|
---|
486 | changeTo : '변경할 단어',
|
---|
487 | btnIgnore : '건너뜀',
|
---|
488 | btnIgnoreAll : '모두 건너뜀',
|
---|
489 | btnReplace : '변경',
|
---|
490 | btnReplaceAll : '모두 변경',
|
---|
491 | btnUndo : '취소',
|
---|
492 | noSuggestions : '- 추천단어 없음 -',
|
---|
493 | progress : '철자검사를 진행중입니다...',
|
---|
494 | noMispell : '철자검사 완료: 잘못된 철자가 없습니다.',
|
---|
495 | noChanges : '철자검사 완료: 변경된 단어가 없습니다.',
|
---|
496 | oneChange : '철자검사 완료: 단어가 변경되었습니다.',
|
---|
497 | manyChanges : '철자검사 완료: %1 단어가 변경되었습니다.',
|
---|
498 | ieSpellDownload : '철자 검사기가 철치되지 않았습니다. 지금 다운로드하시겠습니까?'
|
---|
499 | },
|
---|
500 |
|
---|
501 | smiley :
|
---|
502 | {
|
---|
503 | toolbar : '아이콘',
|
---|
504 | title : '아이콘 삽입',
|
---|
505 | options : 'Smiley Options' // MISSING
|
---|
506 | },
|
---|
507 |
|
---|
508 | elementsPath :
|
---|
509 | {
|
---|
510 | eleLabel : 'Elements path', // MISSING
|
---|
511 | eleTitle : '%1 element' // MISSING
|
---|
512 | },
|
---|
513 |
|
---|
514 | numberedlist : '순서있는 목록',
|
---|
515 | bulletedlist : '순서없는 목록',
|
---|
516 | indent : '들여쓰기',
|
---|
517 | outdent : '내어쓰기',
|
---|
518 |
|
---|
519 | justify :
|
---|
520 | {
|
---|
521 | left : '왼쪽 정렬',
|
---|
522 | center : '가운데 정렬',
|
---|
523 | right : '오른쪽 정렬',
|
---|
524 | block : '양쪽 맞춤'
|
---|
525 | },
|
---|
526 |
|
---|
527 | blockquote : 'Block Quote', // MISSING
|
---|
528 |
|
---|
529 | clipboard :
|
---|
530 | {
|
---|
531 | title : '붙여넣기',
|
---|
532 | cutError : '브라우저의 보안설정때문에 잘라내기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl/Cmd+X).',
|
---|
533 | copyError : '브라우저의 보안설정때문에 복사하기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl/Cmd+C).',
|
---|
534 | pasteMsg : '키보드의 (<STRONG>Ctrl/Cmd+V</STRONG>) 를 이용해서 상자안에 붙여넣고 <STRONG>OK</STRONG> 를 누르세요.',
|
---|
535 | securityMsg : '브러우저 보안 설정으로 인해, 클립보드의 자료를 직접 접근할 수 없습니다. 이 창에 다시 붙여넣기 하십시오.',
|
---|
536 | pasteArea : 'Paste Area' // MISSING
|
---|
537 | },
|
---|
538 |
|
---|
539 | pastefromword :
|
---|
540 | {
|
---|
541 | confirmCleanup : 'The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?', // MISSING
|
---|
542 | toolbar : 'MS Word 형식에서 붙여넣기',
|
---|
543 | title : 'MS Word 형식에서 붙여넣기',
|
---|
544 | error : 'It was not possible to clean up the pasted data due to an internal error' // MISSING
|
---|
545 | },
|
---|
546 |
|
---|
547 | pasteText :
|
---|
548 | {
|
---|
549 | button : '텍스트로 붙여넣기',
|
---|
550 | title : '텍스트로 붙여넣기'
|
---|
551 | },
|
---|
552 |
|
---|
553 | templates :
|
---|
554 | {
|
---|
555 | button : '템플릿',
|
---|
556 | title : '내용 템플릿',
|
---|
557 | options : 'Template Options', // MISSING
|
---|
558 | insertOption : '현재 내용 바꾸기',
|
---|
559 | selectPromptMsg : '에디터에서 사용할 템플릿을 선택하십시요.<br>(지금까지 작성된 내용은 사라집니다.):',
|
---|
560 | emptyListMsg : '(템플릿이 없습니다.)'
|
---|
561 | },
|
---|
562 |
|
---|
563 | showBlocks : 'Show Blocks', // MISSING
|
---|
564 |
|
---|
565 | stylesCombo :
|
---|
566 | {
|
---|
567 | label : '스타일',
|
---|
568 | panelTitle : 'Formatting Styles', // MISSING
|
---|
569 | panelTitle1 : 'Block Styles', // MISSING
|
---|
570 | panelTitle2 : 'Inline Styles', // MISSING
|
---|
571 | panelTitle3 : 'Object Styles' // MISSING
|
---|
572 | },
|
---|
573 |
|
---|
574 | format :
|
---|
575 | {
|
---|
576 | label : '포맷',
|
---|
577 | panelTitle : '포맷',
|
---|
578 |
|
---|
579 | tag_p : 'Normal',
|
---|
580 | tag_pre : 'Formatted',
|
---|
581 | tag_address : 'Address',
|
---|
582 | tag_h1 : 'Heading 1',
|
---|
583 | tag_h2 : 'Heading 2',
|
---|
584 | tag_h3 : 'Heading 3',
|
---|
585 | tag_h4 : 'Heading 4',
|
---|
586 | tag_h5 : 'Heading 5',
|
---|
587 | tag_h6 : 'Heading 6',
|
---|
588 | tag_div : 'Normal (DIV)' // MISSING
|
---|
589 | },
|
---|
590 |
|
---|
591 | div :
|
---|
592 | {
|
---|
593 | title : 'Create Div Container', // MISSING
|
---|
594 | toolbar : 'Create Div Container', // MISSING
|
---|
595 | cssClassInputLabel : 'Stylesheet Classes', // MISSING
|
---|
596 | styleSelectLabel : 'Style', // MISSING
|
---|
597 | IdInputLabel : 'Id', // MISSING
|
---|
598 | languageCodeInputLabel : ' Language Code', // MISSING
|
---|
599 | inlineStyleInputLabel : 'Inline Style', // MISSING
|
---|
600 | advisoryTitleInputLabel : 'Advisory Title', // MISSING
|
---|
601 | langDirLabel : 'Language Direction', // MISSING
|
---|
602 | langDirLTRLabel : 'Left to Right (LTR)', // MISSING
|
---|
603 | langDirRTLLabel : 'Right to Left (RTL)', // MISSING
|
---|
604 | edit : 'Edit Div', // MISSING
|
---|
605 | remove : 'Remove Div' // MISSING
|
---|
606 | },
|
---|
607 |
|
---|
608 | iframe :
|
---|
609 | {
|
---|
610 | title : 'IFrame Properties', // MISSING
|
---|
611 | toolbar : 'IFrame', // MISSING
|
---|
612 | noUrl : 'Please type the iframe URL', // MISSING
|
---|
613 | scrolling : 'Enable scrollbars', // MISSING
|
---|
614 | border : 'Show frame border' // MISSING
|
---|
615 | },
|
---|
616 |
|
---|
617 | font :
|
---|
618 | {
|
---|
619 | label : '폰트',
|
---|
620 | voiceLabel : 'Font', // MISSING
|
---|
621 | panelTitle : '폰트'
|
---|
622 | },
|
---|
623 |
|
---|
624 | fontSize :
|
---|
625 | {
|
---|
626 | label : '글자 크기',
|
---|
627 | voiceLabel : 'Font Size', // MISSING
|
---|
628 | panelTitle : '글자 크기'
|
---|
629 | },
|
---|
630 |
|
---|
631 | colorButton :
|
---|
632 | {
|
---|
633 | textColorTitle : '글자 색상',
|
---|
634 | bgColorTitle : '배경 색상',
|
---|
635 | panelTitle : 'Colors', // MISSING
|
---|
636 | auto : '기본색상',
|
---|
637 | more : '색상선택...'
|
---|
638 | },
|
---|
639 |
|
---|
640 | colors :
|
---|
641 | {
|
---|
642 | '000' : 'Black', // MISSING
|
---|
643 | '800000' : 'Maroon', // MISSING
|
---|
644 | '8B4513' : 'Saddle Brown', // MISSING
|
---|
645 | '2F4F4F' : 'Dark Slate Gray', // MISSING
|
---|
646 | '008080' : 'Teal', // MISSING
|
---|
647 | '000080' : 'Navy', // MISSING
|
---|
648 | '4B0082' : 'Indigo', // MISSING
|
---|
649 | '696969' : 'Dark Gray', // MISSING
|
---|
650 | 'B22222' : 'Fire Brick', // MISSING
|
---|
651 | 'A52A2A' : 'Brown', // MISSING
|
---|
652 | 'DAA520' : 'Golden Rod', // MISSING
|
---|
653 | '006400' : 'Dark Green', // MISSING
|
---|
654 | '40E0D0' : 'Turquoise', // MISSING
|
---|
655 | '0000CD' : 'Medium Blue', // MISSING
|
---|
656 | '800080' : 'Purple', // MISSING
|
---|
657 | '808080' : 'Gray', // MISSING
|
---|
658 | 'F00' : 'Red', // MISSING
|
---|
659 | 'FF8C00' : 'Dark Orange', // MISSING
|
---|
660 | 'FFD700' : 'Gold', // MISSING
|
---|
661 | '008000' : 'Green', // MISSING
|
---|
662 | '0FF' : 'Cyan', // MISSING
|
---|
663 | '00F' : 'Blue', // MISSING
|
---|
664 | 'EE82EE' : 'Violet', // MISSING
|
---|
665 | 'A9A9A9' : 'Dim Gray', // MISSING
|
---|
666 | 'FFA07A' : 'Light Salmon', // MISSING
|
---|
667 | 'FFA500' : 'Orange', // MISSING
|
---|
668 | 'FFFF00' : 'Yellow', // MISSING
|
---|
669 | '00FF00' : 'Lime', // MISSING
|
---|
670 | 'AFEEEE' : 'Pale Turquoise', // MISSING
|
---|
671 | 'ADD8E6' : 'Light Blue', // MISSING
|
---|
672 | 'DDA0DD' : 'Plum', // MISSING
|
---|
673 | 'D3D3D3' : 'Light Grey', // MISSING
|
---|
674 | 'FFF0F5' : 'Lavender Blush', // MISSING
|
---|
675 | 'FAEBD7' : 'Antique White', // MISSING
|
---|
676 | 'FFFFE0' : 'Light Yellow', // MISSING
|
---|
677 | 'F0FFF0' : 'Honeydew', // MISSING
|
---|
678 | 'F0FFFF' : 'Azure', // MISSING
|
---|
679 | 'F0F8FF' : 'Alice Blue', // MISSING
|
---|
680 | 'E6E6FA' : 'Lavender', // MISSING
|
---|
681 | 'FFF' : 'White' // MISSING
|
---|
682 | },
|
---|
683 |
|
---|
684 | scayt :
|
---|
685 | {
|
---|
686 | title : 'Spell Check As You Type', // MISSING
|
---|
687 | opera_title : 'Not supported by Opera', // MISSING
|
---|
688 | enable : 'Enable SCAYT', // MISSING
|
---|
689 | disable : 'Disable SCAYT', // MISSING
|
---|
690 | about : 'About SCAYT', // MISSING
|
---|
691 | toggle : 'Toggle SCAYT', // MISSING
|
---|
692 | options : 'Options', // MISSING
|
---|
693 | langs : 'Languages', // MISSING
|
---|
694 | moreSuggestions : 'More suggestions', // MISSING
|
---|
695 | ignore : 'Ignore', // MISSING
|
---|
696 | ignoreAll : 'Ignore All', // MISSING
|
---|
697 | addWord : 'Add Word', // MISSING
|
---|
698 | emptyDic : 'Dictionary name should not be empty.', // MISSING
|
---|
699 |
|
---|
700 | optionsTab : 'Options', // MISSING
|
---|
701 | allCaps : 'Ignore All-Caps Words', // MISSING
|
---|
702 | ignoreDomainNames : 'Ignore Domain Names', // MISSING
|
---|
703 | mixedCase : 'Ignore Words with Mixed Case', // MISSING
|
---|
704 | mixedWithDigits : 'Ignore Words with Numbers', // MISSING
|
---|
705 |
|
---|
706 | languagesTab : 'Languages', // MISSING
|
---|
707 |
|
---|
708 | dictionariesTab : 'Dictionaries', // MISSING
|
---|
709 | dic_field_name : 'Dictionary name', // MISSING
|
---|
710 | dic_create : 'Create', // MISSING
|
---|
711 | dic_restore : 'Restore', // MISSING
|
---|
712 | dic_delete : 'Delete', // MISSING
|
---|
713 | dic_rename : 'Rename', // MISSING
|
---|
714 | dic_info : 'Initially the User Dictionary is stored in a Cookie. However, Cookies are limited in size. When the User Dictionary grows to a point where it cannot be stored in a Cookie, then the dictionary may be stored on our server. To store your personal dictionary on our server you should specify a name for your dictionary. If you already have a stored dictionary, please type its name and click the Restore button.', // MISSING
|
---|
715 |
|
---|
716 | aboutTab : 'About' // MISSING
|
---|
717 | },
|
---|
718 |
|
---|
719 | about :
|
---|
720 | {
|
---|
721 | title : 'About CKEditor', // MISSING
|
---|
722 | dlgTitle : 'About CKEditor', // MISSING
|
---|
723 | help : 'Check $1 for help.', // MISSING
|
---|
724 | userGuide : 'CKEditor User\'s Guide', // MISSING
|
---|
725 | moreInfo : 'For licensing information please visit our web site:', // MISSING
|
---|
726 | copy : 'Copyright © $1. All rights reserved.' // MISSING
|
---|
727 | },
|
---|
728 |
|
---|
729 | maximize : 'Maximize', // MISSING
|
---|
730 | minimize : 'Minimize', // MISSING
|
---|
731 |
|
---|
732 | fakeobjects :
|
---|
733 | {
|
---|
734 | anchor : 'Anchor', // MISSING
|
---|
735 | flash : 'Flash Animation', // MISSING
|
---|
736 | iframe : 'IFrame', // MISSING
|
---|
737 | hiddenfield : 'Hidden Field', // MISSING
|
---|
738 | unknown : 'Unknown Object' // MISSING
|
---|
739 | },
|
---|
740 |
|
---|
741 | resize : 'Drag to resize', // MISSING
|
---|
742 |
|
---|
743 | colordialog :
|
---|
744 | {
|
---|
745 | title : 'Select color', // MISSING
|
---|
746 | options : 'Color Options', // MISSING
|
---|
747 | highlight : 'Highlight', // MISSING
|
---|
748 | selected : 'Selected Color', // MISSING
|
---|
749 | clear : 'Clear' // MISSING
|
---|
750 | },
|
---|
751 |
|
---|
752 | toolbarCollapse : 'Collapse Toolbar', // MISSING
|
---|
753 | toolbarExpand : 'Expand Toolbar', // MISSING
|
---|
754 |
|
---|
755 | toolbarGroups :
|
---|
756 | {
|
---|
757 | document : 'Document', // MISSING
|
---|
758 | clipboard : 'Clipboard/Undo', // MISSING
|
---|
759 | editing : 'Editing', // MISSING
|
---|
760 | forms : 'Forms', // MISSING
|
---|
761 | basicstyles : 'Basic Styles', // MISSING
|
---|
762 | paragraph : 'Paragraph', // MISSING
|
---|
763 | links : 'Links', // MISSING
|
---|
764 | insert : 'Insert', // MISSING
|
---|
765 | styles : 'Styles', // MISSING
|
---|
766 | colors : 'Colors', // MISSING
|
---|
767 | tools : 'Tools' // MISSING
|
---|
768 | },
|
---|
769 |
|
---|
770 | bidi :
|
---|
771 | {
|
---|
772 | ltr : 'Text direction from left to right', // MISSING
|
---|
773 | rtl : 'Text direction from right to left' // MISSING
|
---|
774 | },
|
---|
775 |
|
---|
776 | docprops :
|
---|
777 | {
|
---|
778 | label : '문서 속성',
|
---|
779 | title : '문서 속성',
|
---|
780 | design : 'Design', // MISSING
|
---|
781 | meta : '메타데이터',
|
---|
782 | chooseColor : 'Choose', // MISSING
|
---|
783 | other : '<기타>',
|
---|
784 | docTitle : '페이지명',
|
---|
785 | charset : '캐릭터셋 인코딩',
|
---|
786 | charsetOther : '다른 캐릭터셋 인코딩',
|
---|
787 | charsetASCII : 'ASCII', // MISSING
|
---|
788 | charsetCE : 'Central European', // MISSING
|
---|
789 | charsetCT : 'Chinese Traditional (Big5)', // MISSING
|
---|
790 | charsetCR : 'Cyrillic', // MISSING
|
---|
791 | charsetGR : 'Greek', // MISSING
|
---|
792 | charsetJP : 'Japanese', // MISSING
|
---|
793 | charsetKR : 'Korean', // MISSING
|
---|
794 | charsetTR : 'Turkish', // MISSING
|
---|
795 | charsetUN : 'Unicode (UTF-8)', // MISSING
|
---|
796 | charsetWE : 'Western European', // MISSING
|
---|
797 | docType : '문서 헤드',
|
---|
798 | docTypeOther : '다른 문서헤드',
|
---|
799 | xhtmlDec : 'XHTML 문서정의 포함',
|
---|
800 | bgColor : '배경색상',
|
---|
801 | bgImage : '배경이미지 URL',
|
---|
802 | bgFixed : '스크롤되지않는 배경',
|
---|
803 | txtColor : '글자 색상',
|
---|
804 | margin : '페이지 여백',
|
---|
805 | marginTop : '위',
|
---|
806 | marginLeft : '왼쪽',
|
---|
807 | marginRight : '오른쪽',
|
---|
808 | marginBottom : '아래',
|
---|
809 | metaKeywords : '문서 키워드 (콤마로 구분)',
|
---|
810 | metaDescription : '문서 설명',
|
---|
811 | metaAuthor : '작성자',
|
---|
812 | metaCopyright : '저작권',
|
---|
813 | previewHtml : '<p>This is some <strong>sample text</strong>. You are using <a href="javascript:void(0)">CKEditor</a>.</p>' // MISSING
|
---|
814 | }
|
---|
815 | };
|
---|