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
|
/**
* @license Copyright (c) 2003-2013, 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
* Chinese Simplified language.
*/
/**#@+
@type String
@example
*/
/**
* Contains the dictionary of language entries.
* @namespace
*/
CKEDITOR.lang[ 'zh-cn' ] = {
/**
* 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',
// ARIA description.
editor: '所见即所得编辑器',
// Common messages and labels.
common: {
// Screenreader titles. Please note that screenreaders are not always capable
// of reading non-English words. So be careful while translating it.
editorHelp: '按 ALT+0 获得帮助',
browseServer: '浏览服务器',
url: '源文件',
protocol: '协议',
upload: '上传',
uploadSubmit: '上传到服务器上',
image: '图象',
flash: 'Flash',
form: '表单',
checkbox: '复选框',
radio: '单选按钮',
textField: '单行文本',
textarea: '多行文本',
hiddenField: '隐藏域',
button: '按钮',
select: '列表/菜单',
imageButton: '图像域',
notSet: '<没有设置>',
id: 'ID',
name: '名称',
langDir: '语言方向',
langDirLtr: '从左到右 (LTR)',
langDirRtl: '从右到左 (RTL)',
langCode: '语言代码',
longDescr: '详细说明地址',
cssClass: '样式类名称',
advisoryTitle: '标题',
cssStyle: '行内样式',
ok: '确定',
cancel: '取消',
close: '关闭',
preview: '预览',
resize: '拖拽以改变尺寸',
generalTab: '常规',
advancedTab: '高级',
validateNumberFailed: '需要输入数字格式',
confirmNewPage: '当前文档内容未保存,是否确认新建文档?',
confirmCancel: '部分修改尚未保存,是否确认关闭对话框?',
options: '选项',
target: '目标窗口',
targetNew: '新窗口 (_blank)',
targetTop: '整页 (_top)',
targetSelf: '本窗口 (_self)',
targetParent: '父窗口 (_parent)',
langDirLTR: '从左到右 (LTR)',
langDirRTL: '从右到左 (RTL)',
styles: '样式',
cssClasses: '样式类',
width: '宽度',
height: '高度',
align: '对齐方式',
alignLeft: '左对齐',
alignRight: '右对齐',
alignCenter: '居中',
alignTop: '顶端',
alignMiddle: '居中',
alignBottom: '底部',
invalidValue : '无效的值。',
invalidHeight: '高度必须为数字格式',
invalidWidth: '宽度必须为数字格式',
invalidCssLength: '该字段必须为合式的CSS长度值,包括单位(px, %, in, cm, mm, em, ex, pt 或 pc)',
invalidHtmlLength: '该字段必须为合式的HTML长度值,包括单位(px 或 %)',
invalidInlineStyle: '内联样式必须为格式是以分号分隔的一个或多个“属性名 : 属性值”',
cssLengthTooltip: '该字段必须为合式的CSS长度值,包括单位(px, %, in, cm, mm, em, ex, pt 或 pc)',
// Put the voice-only part of the label in the span.
unavailable: '%1<span class="cke_accessibility">, 不可用</span>'
}
};
|