source: trunk/phpgwapi/js/ckeditor/_source/plugins/a11yhelp/lang/en.js @ 2862

Revision 2862, 3.3 KB checked in by rodsouza, 14 years ago (diff)

Ticket #663 - Atualizando e centralizando o CKEditor (v. 3.2.1)

Line 
1/*
2Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved.
3For licensing, see LICENSE.html or http://ckeditor.com/license
4*/
5
6CKEDITOR.plugins.setLang( 'a11yhelp', 'en',
7{
8        accessibilityHelp :
9        {
10                title : 'Accessibility Instructions',
11                contents : 'Help Contents. To close this dialog press ESC.',
12                legend :
13                [
14                        {
15                                name : 'General',
16                                items :
17                                                [
18                                                        {
19                                                                name : 'Editor Toolbar',
20                                                                legend:
21                                                                        'Press ${toolbarFocus} to navigate to the toolbar. ' +
22                                                                        'Move to next toolbar button with TAB or RIGHT ARROW. ' +
23                                                                        'Move to previous button with SHIFT+TAB or LEFT ARROW. ' +
24                                                                        'Press SPACE or ENTER to activate the toolbar button.'
25                                                        },
26
27                                                        {
28                                                                name : 'Editor Dialog',
29                                                                legend :
30                                                                        'Inside a dialog, press TAB to navigate to next dialog field, press SHIFT + TAB to move to previous field, press ENTER to submit dialog, press ESC to cancel dialog. ' +
31                                                                        'For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. ' +
32                                                                        'Then move to next tab with TAB OR RIGTH ARROW. ' +
33                                                                        'Move to previous tab with SHIFT + TAB or LEFT ARROW. ' +
34                                                                        'Press SPACE or ENTER to select the tab page.'
35                                                        },
36
37                                                        {
38                                                                name : 'Editor Context Menu',
39                                                                legend :
40                                                                        'Press ${contextMenu} or APPLICATION KEY to open context-menu. ' +
41                                                                        'Then move to next menu option with TAB or DOWN ARROW. ' +
42                                                                        'Move to previous option with  SHIFT+TAB or UP ARROW. ' +
43                                                                        'Press SPACE or ENTER to select the menu option. ' +
44                                                                        'Open sub-menu of current option wtih SPACE or ENTER or RIGHT ARROW. ' +
45                                                                        'Go back to parent menu item with ESC or LEFT ARROW. ' +
46                                                                        'Close context menu with ESC.'
47                                                        },
48
49                                                        {
50                                                                name : 'Editor List Box',
51                                                                legend :
52                                                                        'Inside a list-box, move to next list item with TAB OR DOWN ARROW. ' +
53                                                                        'Move to previous list item with SHIFT + TAB or UP ARROW. ' +
54                                                                        'Press SPACE or ENTER to select the list option. ' +
55                                                                        'Press ESC to close the list-box.'
56                                                        },
57
58                                                        {
59                                                                name : 'Editor Element Path Bar',
60                                                                legend :
61                                                                        'Press ${elementsPathFocus} to navigate to the elements path bar. ' +
62                                                                        'Move to next element button with TAB or RIGHT ARROW. ' +
63                                                                        'Move to previous button with  SHIFT+TAB or LEFT ARROW. ' +
64                                                                        'Press SPACE or ENTER to select the element in editor.'
65                                                        }
66                                                ]
67                        },
68                        {
69                                name : 'Commands',
70                                items :
71                                                [
72                                                        {
73                                                                name : ' Undo command',
74                                                                legend : 'Press ${undo}'
75                                                        },
76                                                        {
77                                                                name : ' Redo command',
78                                                                legend : 'Press ${redo}'
79                                                        },
80                                                        {
81                                                                name : ' Bold command',
82                                                                legend : 'Press ${bold}'
83                                                        },
84                                                        {
85                                                                name : ' Italic command',
86                                                                legend : 'Press ${italic}'
87                                                        },
88                                                        {
89                                                                name : ' Underline command',
90                                                                legend : 'Press ${underline}'
91                                                        },
92                                                        {
93                                                                name : ' Link command',
94                                                                legend : 'Press ${link}'
95                                                        },
96                                                        {
97                                                                name : ' Toolbar Collapse command',
98                                                                legend : 'Press ${toolbarCollapse}'
99                                                        },
100                                                        {
101                                                                name : ' Accessibility Help',
102                                                                legend : 'Press ${a11yHelp}'
103                                                        }
104                                                ]
105                        }
106                ]
107        }
108});
Note: See TracBrowser for help on using the repository browser.