liuxiaolong
2019-05-09 0d1d88cdb668e75ea8609417ac18ae19947e9525
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
/*
Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved.
For licensing, see LICENSE.html or http://ckeditor.com/license
*/
 
CKEDITOR.plugins.setLang( 'a11yhelp', 'en',
{
    accessibilityHelp :
    {
        title : 'Accessibility Instructions',
        contents : 'Help Contents. To close this dialog press ESC.',
        legend :
        [
            {
                name : 'General',
                items :
                        [
                            {
                                name : 'Editor Toolbar',
                                legend:
                                    '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.'
                            },
 
                            {
                                name : 'Editor Dialog',
                                legend :
                                    '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. ' +
                                    'For dialogs that have multiple tab pages, press ALT + F10 to navigate to tab-list. ' +
                                    'Then move to next tab with TAB OR RIGTH ARROW. ' +
                                    'Move to previous tab with SHIFT + TAB or LEFT ARROW. ' +
                                    'Press SPACE or ENTER to select the tab page.'
                            },
 
                            {
                                name : 'Editor Context Menu',
                                legend :
                                    '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.'
                            },
 
                            {
                                name : 'Editor List Box',
                                legend :
                                    '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.'
                            },
 
                            {
                                name : 'Editor Element Path Bar',
                                legend :
                                    '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.'
                            }
                        ]
            },
            {
                name : 'Commands',
                items :
                        [
                            {
                                name : ' Undo command',
                                legend : 'Press ${undo}'
                            },
                            {
                                name : ' Redo command',
                                legend : 'Press ${redo}'
                            },
                            {
                                name : ' Bold command',
                                legend : 'Press ${bold}'
                            },
                            {
                                name : ' Italic command',
                                legend : 'Press ${italic}'
                            },
                            {
                                name : ' Underline command',
                                legend : 'Press ${underline}'
                            },
                            {
                                name : ' Link command',
                                legend : 'Press ${link}'
                            },
                            {
                                name : ' Toolbar Collapse command',
                                legend : 'Press ${toolbarCollapse}'
                            },
                            {
                                name : ' Accessibility Help',
                                legend : 'Press ${a11yHelp}'
                            }
                        ]
            }
        ]
    }
});