aboutsummaryrefslogtreecommitdiff
path: root/sources/lang/zh.js
diff options
context:
space:
mode:
Diffstat (limited to 'sources/lang/zh.js')
-rw-r--r--sources/lang/zh.js23
1 files changed, 20 insertions, 3 deletions
diff --git a/sources/lang/zh.js b/sources/lang/zh.js
index a5124e2..c8a0548 100644
--- a/sources/lang/zh.js
+++ b/sources/lang/zh.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
@@ -86,7 +86,7 @@ CKEDITOR.lang[ 'zh' ] = {
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, 或 pc)。', 92 invalidCssLength: '「%1」的值應為正數,並可包含有效的 CSS 單位 (px, %, in, cm, mm, em, ex, pt, 或 pc)。',
@@ -95,6 +95,23 @@ CKEDITOR.lang[ 'zh' ] = {
95 cssLengthTooltip: '請輸入數值,單位是像素或有效的 CSS 單位 (px, %, in, cm, mm, em, ex, pt, 或 pc)。', 95 cssLengthTooltip: '請輸入數值,單位是像素或有效的 CSS 單位 (px, %, in, cm, mm, em, ex, pt, 或 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: 'Enter',
104 16: 'Shift',
105 17: 'Ctrl',
106 18: 'Alt',
107 32: '空白鍵',
108 35: 'End',
109 36: 'Home',
110 46: '刪除',
111 224: 'Command 鍵'
112 },
113
114 // Prepended to ARIA labels with shortcuts.
115 keyboardShortcut: '鍵盤快捷鍵'
99 } 116 }
100}; 117};