en.js 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  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. 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: 'Press ${toolbarFocus} to navigate to the toolbar. ' +
  15. 'Move to the next and previous toolbar group with TAB and SHIFT+TAB. ' +
  16. 'Move to the next and previous toolbar button with RIGHT ARROW or LEFT ARROW. ' +
  17. 'Press SPACE or ENTER to activate the toolbar button.'
  18. },
  19. {
  20. name: 'Editor Dialog',
  21. legend:
  22. '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. ' +
  23. '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. ' +
  24. 'With tab list focused, move to the next and previous tab with RIGHT and LEFT ARROW, respectively.'
  25. },
  26. {
  27. name: 'Editor Context Menu',
  28. legend: 'Press ${contextMenu} or APPLICATION KEY to open context-menu. ' +
  29. 'Then move to next menu option with TAB or DOWN ARROW. ' +
  30. 'Move to previous option with SHIFT+TAB or UP ARROW. ' +
  31. 'Press SPACE or ENTER to select the menu option. ' +
  32. 'Open sub-menu of current option with SPACE or ENTER or RIGHT ARROW. ' +
  33. 'Go back to parent menu item with ESC or LEFT ARROW. ' +
  34. 'Close context menu with ESC.'
  35. },
  36. {
  37. name: 'Editor List Box',
  38. legend: 'Inside a list-box, move to next list item with TAB OR DOWN ARROW. ' +
  39. 'Move to previous list item with SHIFT+TAB or UP ARROW. ' +
  40. 'Press SPACE or ENTER to select the list option. ' +
  41. 'Press ESC to close the list-box.'
  42. },
  43. {
  44. name: 'Editor Element Path Bar',
  45. legend: 'Press ${elementsPathFocus} to navigate to the elements path bar. ' +
  46. 'Move to next element button with TAB or RIGHT ARROW. ' +
  47. 'Move to previous button with SHIFT+TAB or LEFT ARROW. ' +
  48. 'Press SPACE or ENTER to select the element in editor.'
  49. }
  50. ]
  51. },
  52. {
  53. name: 'Commands',
  54. items: [
  55. {
  56. name: ' Undo command',
  57. legend: 'Press ${undo}'
  58. },
  59. {
  60. name: ' Redo command',
  61. legend: 'Press ${redo}'
  62. },
  63. {
  64. name: ' Bold command',
  65. legend: 'Press ${bold}'
  66. },
  67. {
  68. name: ' Italic command',
  69. legend: 'Press ${italic}'
  70. },
  71. {
  72. name: ' Underline command',
  73. legend: 'Press ${underline}'
  74. },
  75. {
  76. name: ' Link command',
  77. legend: 'Press ${link}'
  78. },
  79. {
  80. name: ' Toolbar Collapse command',
  81. legend: 'Press ${toolbarCollapse}'
  82. },
  83. {
  84. name: ' Access previous focus space command',
  85. legend: 'Press ${accessPreviousSpace} to access the closest unreachable focus space before the caret, ' +
  86. 'for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces.'
  87. },
  88. {
  89. name: ' Access next focus space command',
  90. legend: 'Press ${accessNextSpace} to access the closest unreachable focus space after the caret, ' +
  91. 'for example: two adjacent HR elements. Repeat the key combination to reach distant focus spaces.'
  92. },
  93. {
  94. name: ' Accessibility Help',
  95. legend: 'Press ${a11yHelp}'
  96. }
  97. ]
  98. }
  99. ],
  100. backspace: 'Backspace',
  101. tab: 'Tab',
  102. enter: 'Enter',
  103. shift: 'Shift',
  104. ctrl: 'Ctrl',
  105. alt: 'Alt',
  106. pause: 'Pause',
  107. capslock: 'Caps Lock',
  108. escape: 'Escape',
  109. pageUp: 'Page Up',
  110. pageDown: 'Page Down',
  111. end: 'End',
  112. home: 'Home',
  113. leftArrow: 'Left Arrow',
  114. upArrow: 'Up Arrow',
  115. rightArrow: 'Right Arrow',
  116. downArrow: 'Down Arrow',
  117. insert: 'Insert',
  118. 'delete': 'Delete',
  119. leftWindowKey: 'Left Windows key',
  120. rightWindowKey: 'Right Windows key',
  121. selectKey: 'Select key',
  122. numpad0: 'Numpad 0',
  123. numpad1: 'Numpad 1',
  124. numpad2: 'Numpad 2',
  125. numpad3: 'Numpad 3',
  126. numpad4: 'Numpad 4',
  127. numpad5: 'Numpad 5',
  128. numpad6: 'Numpad 6',
  129. numpad7: 'Numpad 7',
  130. numpad8: 'Numpad 8',
  131. numpad9: 'Numpad 9',
  132. multiply: 'Multiply',
  133. add: 'Add',
  134. subtract: 'Subtract',
  135. decimalPoint: 'Decimal Point',
  136. divide: 'Divide',
  137. f1: 'F1',
  138. f2: 'F2',
  139. f3: 'F3',
  140. f4: 'F4',
  141. f5: 'F5',
  142. f6: 'F6',
  143. f7: 'F7',
  144. f8: 'F8',
  145. f9: 'F9',
  146. f10: 'F10',
  147. f11: 'F11',
  148. f12: 'F12',
  149. numLock: 'Num Lock',
  150. scrollLock: 'Scroll Lock',
  151. semiColon: 'Semicolon',
  152. equalSign: 'Equal Sign',
  153. comma: 'Comma',
  154. dash: 'Dash',
  155. period: 'Period',
  156. forwardSlash: 'Forward Slash',
  157. graveAccent: 'Grave Accent',
  158. openBracket: 'Open Bracket',
  159. backSlash: 'Backslash',
  160. closeBracket: 'Close Bracket',
  161. singleQuote: 'Single Quote'
  162. } );