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', 'da', 7 { 8 accessibilityHelp : 9 { 10 title : 'Tilgængelighedsinstrukser', 11 contents : 'Help Contents. To close this dialog press ESC.', // MISSING 12 legend : 13 [ 14 { 15 name : 'Generelt', 16 items : 17 [ 18 { 19 name : 'Editor værktøjslinje', 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 : 'Editor Dialog', // MISSING 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 Context Menu', // MISSING 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 : 'Kommandoer', 51 items : 52 [ 53 { 54 name : 'Fortryd kommando', 55 legend : 'Klik på ${undo}' 56 }, 57 { 58 name : 'Gentag kommando', 59 legend : 'Klik ${redo}' 60 }, 61 { 62 name : ' Bold command', // MISSING 63 legend : 'Klik ${bold}' 64 }, 65 { 66 name : ' Italic command', // MISSING 67 legend : 'Press ${italic}' // MISSING 68 }, 69 { 70 name : ' Underline command', // MISSING 71 legend : 'Klik ${underline}' 72 }, 73 { 74 name : ' Link command', // MISSING 75 legend : 'Klik ${link}' 76 }, 77 { 78 name : ' Toolbar Collapse command', // MISSING 79 legend : 'Press ${toolbarCollapse}' // MISSING 80 }, 81 { 82 name : ' Accessibility Help', // MISSING 83 legend : 'Kilk ${a11yHelp}' 84 } 85 ] 86 } 87 ] 88 } 89 }); 90