en.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. CKEDITOR.plugins.setLang("a11yhelp", "en", {
  6. title: "Accessibility Instructions",
  7. contents: "Help Contents. To close this dialog press ESC.",
  8. legend: [
  9. {
  10. name: "General",
  11. items: [
  12. {
  13. name: "Editor Toolbar",
  14. legend:
  15. "Press ${toolbarFocus} to navigate to the toolbar. Move to the next and previous toolbar group with TAB and SHIFT+TAB. Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. Press SPACE or ENTER to activate the toolbar button."
  16. },
  17. {
  18. name: "Editor Dialog",
  19. legend:
  20. "Inside a dialog, press TAB to navigate to the next dialog element, press SHIFT+TAB to move to the previous dialog element, press ENTER to submit the dialog, press ESC to cancel the dialog. When a dialog has multiple tabs, the tab list can be reached either with ALT+F10 or with TAB as part of the dialog tabbing order. With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively."
  21. },
  22. {
  23. name: "Editor Context Menu",
  24. legend:
  25. "Press ${contextMenu} or APPLICATION KEY to open context-menu. Then move to next menu option with TAB or DOWN ARROW. Move to previous option with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the menu option. Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. Go back to parent menu item with ESC or LEFT ARROW. Close context menu with ESC."
  26. },
  27. {
  28. name: "Editor List Box",
  29. legend:
  30. "Inside a list-box, move to next list item with TAB OR DOWN ARROW. Move to previous list item with SHIFT+TAB or UP ARROW. Press SPACE or ENTER to select the list option. Press ESC to close the list-box."
  31. },
  32. {
  33. name: "Editor Element Path Bar",
  34. legend:
  35. "Press ${elementsPathFocus} to navigate to the elements path bar. Move to next element button with TAB or RIGHT ARROW. Move to previous button with SHIFT+TAB or LEFT ARROW. Press SPACE or ENTER to select the element in editor."
  36. }
  37. ]
  38. },
  39. {
  40. name: "Commands",
  41. items: [
  42. { name: " Undo command", legend: "Press ${undo}" },
  43. { name: " Redo command", legend: "Press ${redo}" },
  44. { name: " Bold command", legend: "Press ${bold}" },
  45. { name: " Italic command", legend: "Press ${italic}" },
  46. { name: " Underline command", legend: "Press ${underline}" },
  47. { name: " Link command", legend: "Press ${link}" },
  48. {
  49. name: " Toolbar Collapse command",
  50. legend: "Press ${toolbarCollapse}"
  51. },
  52. {
  53. name: " Access previous focus space command",
  54. legend:
  55. "Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."
  56. },
  57. {
  58. name: " Access next focus space command",
  59. legend:
  60. "Press ${accessNextSpace} to access the closest unreachable focus space after the caret, for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces."
  61. },
  62. { name: " Accessibility Help", legend: "Press ${a11yHelp}" },
  63. {
  64. name: " Paste as plain text",
  65. legend: "Press ${pastetext}",
  66. legendEdge: "Press ${pastetext}, followed by ${paste}"
  67. }
  68. ]
  69. }
  70. ],
  71. tab: "Tab",
  72. pause: "Pause",
  73. capslock: "Caps Lock",
  74. escape: "Escape",
  75. pageUp: "Page Up",
  76. pageDown: "Page Down",
  77. leftArrow: "Left Arrow",
  78. upArrow: "Up Arrow",
  79. rightArrow: "Right Arrow",
  80. downArrow: "Down Arrow",
  81. insert: "Insert",
  82. leftWindowKey: "Left Windows key",
  83. rightWindowKey: "Right Windows key",
  84. selectKey: "Select key",
  85. numpad0: "Numpad 0",
  86. numpad1: "Numpad 1",
  87. numpad2: "Numpad 2",
  88. numpad3: "Numpad 3",
  89. numpad4: "Numpad 4",
  90. numpad5: "Numpad 5",
  91. numpad6: "Numpad 6",
  92. numpad7: "Numpad 7",
  93. numpad8: "Numpad 8",
  94. numpad9: "Numpad 9",
  95. multiply: "Multiply",
  96. add: "Add",
  97. subtract: "Subtract",
  98. decimalPoint: "Decimal Point",
  99. divide: "Divide",
  100. f1: "F1",
  101. f2: "F2",
  102. f3: "F3",
  103. f4: "F4",
  104. f5: "F5",
  105. f6: "F6",
  106. f7: "F7",
  107. f8: "F8",
  108. f9: "F9",
  109. f10: "F10",
  110. f11: "F11",
  111. f12: "F12",
  112. numLock: "Num Lock",
  113. scrollLock: "Scroll Lock",
  114. semiColon: "Semicolon",
  115. equalSign: "Equal Sign",
  116. comma: "Comma",
  117. dash: "Dash",
  118. period: "Period",
  119. forwardSlash: "Forward Slash",
  120. graveAccent: "Grave Accent",
  121. openBracket: "Open Bracket",
  122. backSlash: "Backslash",
  123. closeBracket: "Close Bracket",
  124. singleQuote: "Single Quote"
  125. });