Ticket #5182: 5182_2.patch
File 5182_2.patch, 1.7 KB (added by , 15 years ago) |
---|
-
_source/lang/en.js
110 110 unavailable : '%1<span class="cke_accessibility">, unavailable</span>' 111 111 }, 112 112 113 contextmenu : 114 { 115 options : 'Context Menu Options' 116 }, 117 113 118 // Special char dialog. 114 119 specialChar : 115 120 { -
_source/plugins/menubutton/plugin.js
36 36 if ( !menu ) 37 37 { 38 38 menu = _.menu = new CKEDITOR.plugins.contextMenu( editor ); 39 menu.definition.panel.attributes[ 'aria-label' ] = editor.lang.common.options; 39 40 40 41 menu.onHide = CKEDITOR.tools.bind( function() 41 42 { -
_source/plugins/contextmenu/plugin.js
36 36 }, 37 37 this); 38 38 39 this. _.definiton =39 this.definition = 40 40 { 41 41 panel: 42 42 { 43 43 className : editor.skinClass + ' cke_contextmenu', 44 44 attributes : 45 45 { 46 'aria-label' : editor.lang.co mmon.options46 'aria-label' : editor.lang.contextmenu.options 47 47 } 48 48 } 49 49 }; … … 63 63 } 64 64 else 65 65 { 66 menu = this._.menu = new CKEDITOR.menu( editor, this. _.definiton );66 menu = this._.menu = new CKEDITOR.menu( editor, this.definition ); 67 67 menu.onClick = CKEDITOR.tools.bind( function( item ) 68 68 { 69 69 menu.hide();