commands.js 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. define(
  2. "dijit/_editor/nls/zh/commands", //begin v1.x content
  3. ({
  4. 'bold': '粗体',
  5. 'copy': '复制',
  6. 'cut': '剪切',
  7. 'delete': '删除',
  8. 'indent': '增加缩进',
  9. 'insertHorizontalRule': '水平线',
  10. 'insertOrderedList': '编号列表',
  11. 'insertUnorderedList': '符号列表',
  12. 'italic': '斜体',
  13. 'justifyCenter': '居中',
  14. 'justifyFull': '对齐',
  15. 'justifyLeft': '左对齐',
  16. 'justifyRight': '右对齐',
  17. 'outdent': '减少缩进',
  18. 'paste': '粘贴',
  19. 'redo': '重做',
  20. 'removeFormat': '除去格式',
  21. 'selectAll': '全选',
  22. 'strikethrough': '删除线',
  23. 'subscript': '下标',
  24. 'superscript': '上标',
  25. 'underline': '下划线',
  26. 'undo': '撤销',
  27. 'unlink': '除去链接',
  28. 'createLink': '创建链接',
  29. 'toggleDir': '固定方向',
  30. 'insertImage': '插入图像',
  31. 'insertTable': '插入/编辑表',
  32. 'toggleTableBorder': '切换表边框',
  33. 'deleteTable': '删除表',
  34. 'tableProp': '表属性',
  35. 'htmlToggle': 'HTML 源代码',
  36. 'foreColor': '前景色',
  37. 'hiliteColor': '背景色',
  38. 'plainFormatBlock': '段落样式',
  39. 'formatBlock': '段落样式',
  40. 'fontSize': '字体大小',
  41. 'fontName': '字体名称',
  42. 'tabIndent': '制表符缩进',
  43. "fullScreen": "切换全屏幕",
  44. "viewSource": "查看 HTML 源代码",
  45. "print": "打印",
  46. "newPage": "新建页面",
  47. /* Error messages */
  48. 'systemShortcut': '只能在浏览器中通过键盘快捷方式执行“${0}”操作。使用 ${1}。'
  49. })
  50. //end v1.x content
  51. );