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