Index: _source/plugins/menubutton/plugin.js
===================================================================
--- _source/plugins/menubutton/plugin.js	(revision 5206)
+++ _source/plugins/menubutton/plugin.js	Fri Mar 19 14:28:37 CST 2010
@@ -35,7 +35,17 @@
 		var menu = _.menu;
 		if ( !menu )
 		{
-			menu = _.menu = new CKEDITOR.plugins.contextMenu( editor );
+			menu = _.menu = new CKEDITOR.plugins.contextMenu( editor,
+			{
+				panel:
+				{
+					className : editor.skinClass + ' cke_contextmenu',
+					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	Fri Mar 19 14:27:42 CST 2010
@@ -23,7 +23,7 @@
 
 CKEDITOR.plugins.contextMenu = CKEDITOR.tools.createClass(
 {
-	$ : function( editor )
+	$ : function( editor, definiton )
 	{
 		this.id = 'cke_' + CKEDITOR.tools.getNextNumber();
 		this.editor = editor;
@@ -36,14 +36,14 @@
 			},
 			this);
 
-		this._.definiton =
+		this._.definiton = definiton ||
 		{
 			panel:
 			{
 				className : editor.skinClass + ' cke_contextmenu',
 				attributes :
 				{
-					'aria-label' : editor.lang.common.options
+					'aria-label' : editor.lang.contextmenu.options
 				}
 			}
 		};
