Index: _source/lang/en.js
===================================================================
--- _source/lang/en.js	(revision 5239)
+++ _source/lang/en.js	Tue Mar 23 22:44:43 CST 2010
@@ -110,6 +110,11 @@
 		unavailable		: '%1<span class="cke_accessibility">, unavailable</span>'
 	},
 
+	contextmenu :
+	{
+		options : 'Context Menu Options'
+	},
+
 	// Special char dialog.
 	specialChar		:
 	{
Index: _source/plugins/menubutton/plugin.js
===================================================================
--- _source/plugins/menubutton/plugin.js	(revision 5206)
+++ _source/plugins/menubutton/plugin.js	Tue Mar 23 22:44:43 CST 2010
@@ -36,6 +36,7 @@
 		if ( !menu )
 		{
 			menu = _.menu = new CKEDITOR.plugins.contextMenu( editor );
+			menu.definition.panel.attributes[ 'aria-label' ] = editor.lang.common.options;
 
 			menu.onHide = CKEDITOR.tools.bind( function()
 				{
Index: _source/plugins/contextmenu/plugin.js
===================================================================
--- _source/plugins/contextmenu/plugin.js	(revision 5206)
+++ _source/plugins/contextmenu/plugin.js	Tue Mar 23 22:43:44 CST 2010
@@ -36,14 +36,14 @@
 			},
 			this);
 
-		this._.definiton =
+		this.definition =
 		{
 			panel:
 			{
 				className : editor.skinClass + ' cke_contextmenu',
 				attributes :
 				{
-					'aria-label' : editor.lang.common.options
+					'aria-label' : editor.lang.contextmenu.options
 				}
 			}
 		};
@@ -63,7 +63,7 @@
 			}
 			else
 			{
-				menu = this._.menu = new CKEDITOR.menu( editor, this._.definiton );
+				menu = this._.menu = new CKEDITOR.menu( editor, this.definition );
 				menu.onClick = CKEDITOR.tools.bind( function( item )
 				{
 					menu.hide();
