zh-cn.js 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or http://ckeditor.com/license
  4. */
  5. /**
  6. * @fileOverview Defines the {@link CKEDITOR.lang} object, for the
  7. * Chinese Simplified language.
  8. */
  9. /**#@+
  10. @type String
  11. @example
  12. */
  13. /**
  14. * Contains the dictionary of language entries.
  15. * @namespace
  16. */
  17. CKEDITOR.lang[ 'zh-cn' ] = {
  18. // ARIA description.
  19. editor: '所见即所得编辑器',
  20. editorPanel: '所见即所得编辑器面板',
  21. // Common messages and labels.
  22. common: {
  23. // Screenreader titles. Please note that screenreaders are not always capable
  24. // of reading non-English words. So be careful while translating it.
  25. editorHelp: '按 ALT+0 获得帮助',
  26. browseServer: '浏览服务器',
  27. url: 'URL',
  28. protocol: '协议',
  29. upload: '上传',
  30. uploadSubmit: '上传到服务器',
  31. image: '图像',
  32. flash: 'Flash',
  33. form: '表单',
  34. checkbox: '复选框',
  35. radio: '单选按钮',
  36. textField: '单行文本',
  37. textarea: '多行文本',
  38. hiddenField: '隐藏域',
  39. button: '按钮',
  40. select: '列表/菜单',
  41. imageButton: '图像按钮',
  42. notSet: '<没有设置>',
  43. id: 'ID',
  44. name: '名称',
  45. langDir: '语言方向',
  46. langDirLtr: '从左到右 (LTR)',
  47. langDirRtl: '从右到左 (RTL)',
  48. langCode: '语言代码',
  49. longDescr: '详细说明 URL',
  50. cssClass: '样式类名称',
  51. advisoryTitle: '标题',
  52. cssStyle: '行内样式',
  53. ok: '确定',
  54. cancel: '取消',
  55. close: '关闭',
  56. preview: '预览',
  57. resize: '拖拽以改变大小',
  58. generalTab: '常规',
  59. advancedTab: '高级',
  60. validateNumberFailed: '需要输入数字格式',
  61. confirmNewPage: '当前文档内容未保存,是否确认新建文档?',
  62. confirmCancel: '部分修改尚未保存,是否确认关闭对话框?',
  63. options: '选项',
  64. target: '目标窗口',
  65. targetNew: '新窗口 (_blank)',
  66. targetTop: '整页 (_top)',
  67. targetSelf: '本窗口 (_self)',
  68. targetParent: '父窗口 (_parent)',
  69. langDirLTR: '从左到右 (LTR)',
  70. langDirRTL: '从右到左 (RTL)',
  71. styles: '样式',
  72. cssClasses: '样式类',
  73. width: '宽度',
  74. height: '高度',
  75. align: '对齐方式',
  76. alignLeft: '左对齐',
  77. alignRight: '右对齐',
  78. alignCenter: '居中',
  79. alignJustify: '两端对齐',
  80. alignTop: '顶端',
  81. alignMiddle: '居中',
  82. alignBottom: '底部',
  83. alignNone: '无',
  84. invalidValue : '无效的值。',
  85. invalidHeight: '高度必须为数字格式',
  86. invalidWidth: '宽度必须为数字格式',
  87. invalidCssLength: '此“%1”字段的值必须为正数,可以包含或不包含一个有效的 CSS 长度单位(px, %, in, cm, mm, em, ex, pt 或 pc)',
  88. invalidHtmlLength: '此“%1”字段的值必须为正数,可以包含或不包含一个有效的 HTML 长度单位(px 或 %)',
  89. invalidInlineStyle: '内联样式必须为格式是以分号分隔的一个或多个“属性名 : 属性值”。',
  90. cssLengthTooltip: '输入一个表示像素值的数字,或加上一个有效的 CSS 长度单位(px, %, in, cm, mm, em, ex, pt 或 pc)。',
  91. // Put the voice-only part of the label in the span.
  92. unavailable: '%1<span class="cke_accessibility">,不可用</span>'
  93. }
  94. };