commands.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. define("dijit/_editor/nls/commands", { root:
  2. //begin v1.x content
  3. ({
  4. 'bold': 'Bold',
  5. 'copy': 'Copy',
  6. 'cut': 'Cut',
  7. 'delete': 'Delete',
  8. 'indent': 'Indent',
  9. 'insertHorizontalRule': 'Horizontal Rule',
  10. 'insertOrderedList': 'Numbered List',
  11. 'insertUnorderedList': 'Bullet List',
  12. 'italic': 'Italic',
  13. 'justifyCenter': 'Align Center',
  14. 'justifyFull': 'Justify',
  15. 'justifyLeft': 'Align Left',
  16. 'justifyRight': 'Align Right',
  17. 'outdent': 'Outdent',
  18. 'paste': 'Paste',
  19. 'redo': 'Redo',
  20. 'removeFormat': 'Remove Format',
  21. 'selectAll': 'Select All',
  22. 'strikethrough': 'Strikethrough',
  23. 'subscript': 'Subscript',
  24. 'superscript': 'Superscript',
  25. 'underline': 'Underline',
  26. 'undo': 'Undo',
  27. 'unlink': 'Remove Link',
  28. 'createLink': 'Create Link',
  29. 'toggleDir': 'Toggle Direction',
  30. 'insertImage': 'Insert Image',
  31. 'insertTable': 'Insert/Edit Table',
  32. 'toggleTableBorder': 'Toggle Table Border',
  33. 'deleteTable': 'Delete Table',
  34. 'tableProp': 'Table Property',
  35. 'htmlToggle': 'HTML Source',
  36. 'foreColor': 'Foreground Color',
  37. 'hiliteColor': 'Background Color',
  38. 'plainFormatBlock': 'Paragraph Style',
  39. 'formatBlock': 'Paragraph Style',
  40. 'fontSize': 'Font Size',
  41. 'fontName': 'Font Name',
  42. 'tabIndent': 'Tab Indent',
  43. "fullScreen": "Toggle Full Screen",
  44. "viewSource": "View HTML Source",
  45. "print": "Print",
  46. "newPage": "New Page",
  47. /* Error messages */
  48. 'systemShortcut': 'The "${0}" action is only available in your browser using a keyboard shortcut. Use ${1}.',
  49. 'ctrlKey':'ctrl+${0}',
  50. 'appleKey':'\u2318${0}' // "command" or open-apple key on Macintosh
  51. })
  52. //end v1.x content
  53. ,
  54. "zh": true,
  55. "zh-tw": true,
  56. "tr": true,
  57. "th": true,
  58. "sv": true,
  59. "sl": true,
  60. "sk": true,
  61. "ru": true,
  62. "ro": true,
  63. "pt": true,
  64. "pt-pt": true,
  65. "pl": true,
  66. "nl": true,
  67. "nb": true,
  68. "ko": true,
  69. "kk": true,
  70. "ja": true,
  71. "it": true,
  72. "hu": true,
  73. "hr": true,
  74. "he": true,
  75. "fr": true,
  76. "fi": true,
  77. "es": true,
  78. "el": true,
  79. "de": true,
  80. "da": true,
  81. "cs": true,
  82. "ca": true,
  83. "az": true,
  84. "ar": true
  85. });