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