aboutsummaryrefslogtreecommitdiff
path: root/sources/lang/ko.js
diff options
context:
space:
mode:
Diffstat (limited to 'sources/lang/ko.js')
-rw-r--r--sources/lang/ko.js25
1 files changed, 21 insertions, 4 deletions
diff --git a/sources/lang/ko.js b/sources/lang/ko.js
index 43a6f80..fe575d9 100644
--- a/sources/lang/ko.js
+++ b/sources/lang/ko.js
@@ -1,5 +1,5 @@
1/** 1/**
2 * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved. 2 * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
3 * For licensing, see LICENSE.md or http://ckeditor.com/license 3 * For licensing, see LICENSE.md or http://ckeditor.com/license
4 */ 4 */
5 5
@@ -28,7 +28,7 @@ CKEDITOR.lang[ 'ko' ] = {
28 // of reading non-English words. So be careful while translating it. 28 // of reading non-English words. So be careful while translating it.
29 editorHelp: '도움이 필요하면 ALT 0 을 누르세요', 29 editorHelp: '도움이 필요하면 ALT 0 을 누르세요',
30 30
31 browseServer: '서버 보기', 31 browseServer: '서버 탐색',
32 url: 'URL', 32 url: 'URL',
33 protocol: '프로토콜', 33 protocol: '프로토콜',
34 upload: '업로드', 34 upload: '업로드',
@@ -86,7 +86,7 @@ CKEDITOR.lang[ 'ko' ] = {
86 alignMiddle: '중간', 86 alignMiddle: '중간',
87 alignBottom: '아래', 87 alignBottom: '아래',
88 alignNone: '기본', 88 alignNone: '기본',
89 invalidValue : '잘못된 값.', 89 invalidValue: '잘못된 값.',
90 invalidHeight: '높이는 숫자여야 합니다.', 90 invalidHeight: '높이는 숫자여야 합니다.',
91 invalidWidth: '넓이는 숫자여야 합니다.', 91 invalidWidth: '넓이는 숫자여야 합니다.',
92 invalidCssLength: '"%1" 값은 유효한 CSS 측정 단위(px, %, in, cm, mm, em, ex, pt, or pc)를 포함하거나 포함하지 않은 양수 여야 합니다.', 92 invalidCssLength: '"%1" 값은 유효한 CSS 측정 단위(px, %, in, cm, mm, em, ex, pt, or pc)를 포함하거나 포함하지 않은 양수 여야 합니다.',
@@ -95,6 +95,23 @@ CKEDITOR.lang[ 'ko' ] = {
95 cssLengthTooltip: '픽셀 단위의 숫자만 입력하시거나 유효한 CSS 단위(px, %, in, cm, mm, em, ex, pt, or pc)와 함께 숫자를 입력해주세요.', 95 cssLengthTooltip: '픽셀 단위의 숫자만 입력하시거나 유효한 CSS 단위(px, %, in, cm, mm, em, ex, pt, or pc)와 함께 숫자를 입력해주세요.',
96 96
97 // Put the voice-only part of the label in the span. 97 // Put the voice-only part of the label in the span.
98 unavailable: '%1<span class="cke_accessibility">, 사용불가</span>' 98 unavailable: '%1<span class="cke_accessibility">, 사용불가</span>',
99
100 // Keyboard keys translations used for creating shortcuts descriptions in tooltips, context menus and ARIA labels.
101 keyboard: {
102 8: '백스페이스',
103 13: '엔터',
104 16: '시프트',
105 17: '컨트롤',
106 18: '알트',
107 32: '간격',
108 35: '엔드',
109 36: '홈',
110 46: '딜리트',
111 224: '커맨드'
112 },
113
114 // Prepended to ARIA labels with shortcuts.
115 keyboardShortcut: '키보드 단축키'
99 } 116 }
100}; 117};