1 /* 2 Copyright (c) 2003-2012, CKSource - Frederico Knabben. All rights reserved. 3 For licensing, see LICENSE.html or http://ckeditor.com/license 4 */ 5 6 CKEDITOR.plugins.setLang( 'a11yhelp', 'ro', 7 { 8 accessibilityHelp : 9 { 10 title : 'Instrucțiuni de accesibilitate', 11 contents : 'Cuprins. Pentru a închide acest dialog, apăsați tasta ESC.', 12 legend : 13 [ 14 { 15 name : 'General', 16 items : 17 [ 18 { 19 name : 'Editează bara.', 20 legend: 21 '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.' // MISSING 22 }, 23 24 { 25 name : 'Dialog editor', 26 legend : 27 '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.' // MISSING 28 }, 29 30 { 31 name : 'Editor meniu contextual', 32 legend : 33 '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.' // MISSING 34 }, 35 36 { 37 name : 'Editor List Box', // MISSING 38 legend : 39 '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.' // MISSING 40 }, 41 42 { 43 name : 'Editor Element Path Bar', // MISSING 44 legend : 45 '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.' // MISSING 46 } 47 ] 48 }, 49 { 50 name : 'Commands', // MISSING 51 items : 52 [ 53 { 54 name : ' Undo command', // MISSING 55 legend : 'Press ${undo}' // MISSING 56 }, 57 { 58 name : ' Redo command', // MISSING 59 legend : 'Press ${redo}' // MISSING 60 }, 61 { 62 name : ' Bold command', // MISSING 63 legend : 'Press ${bold}' // MISSING 64 }, 65 { 66 name : ' Italic command', // MISSING 67 legend : 'Press ${italic}' // MISSING 68 }, 69 { 70 name : ' Underline command', // MISSING 71 legend : 'Press ${underline}' // MISSING 72 }, 73 { 74 name : ' Link command', // MISSING 75 legend : 'Press ${link}' // MISSING 76 }, 77 { 78 name : ' Toolbar Collapse command', // MISSING 79 legend : 'Press ${toolbarCollapse}' // MISSING 80 }, 81 { 82 name : ' Accessibility Help', // MISSING 83 legend : 'Press ${a11yHelp}' // MISSING 84 } 85 ] 86 } 87 ] 88 } 89 }); 90