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