aboutsummaryrefslogtreecommitdiff
path: root/sources/lang/zh-cn.js
diff options
context:
space:
mode:
Diffstat (limited to 'sources/lang/zh-cn.js')
-rw-r--r--sources/lang/zh-cn.js23
1 files changed, 20 insertions, 3 deletions
diff --git a/sources/lang/zh-cn.js b/sources/lang/zh-cn.js
index c3b01a5..b89c0c9 100644
--- a/sources/lang/zh-cn.js
+++ b/sources/lang/zh-cn.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-cn' ] = {
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-cn' ] = {
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: '回车键',
104 16: 'Shift',
105 17: 'Ctrl',
106 18: 'Alt',
107 32: '空格键',
108 35: '行尾键',
109 36: '行首键',
110 46: '删除键',
111 224: 'Command'
112 },
113
114 // Prepended to ARIA labels with shortcuts.
115 keyboardShortcut: '快捷键'
99 } 116 }
100}; 117};