Index: /CKEditor/branches/features/aria/_source/plugins/a11yhelp/plugin.js
===================================================================
--- /CKEditor/branches/features/aria/_source/plugins/a11yhelp/plugin.js	(revision 5079)
+++ /CKEditor/branches/features/aria/_source/plugins/a11yhelp/plugin.js	(revision 5080)
@@ -5,5 +5,6 @@
 
 /**
- * @fileOverview Bring better accessibility support to browsers that has limited support for modern technologies (e.g. ARIA).
+ * @fileOverview Plugin definition for the a11yhelp, which provides a dialog
+ * with accessibility related help.
  */
 
@@ -15,5 +16,7 @@
 	CKEDITOR.plugins.add( pluginName,
 	{
-		langs : [ 'en' ],
+		// List of available localizations.
+		availableLangs : { en:1 },
+
 		init : function( editor )
 		{
@@ -23,6 +26,6 @@
 					exec : function()
 					{
-						var langCode = ( CKEDITOR.tools.indexOf( plugin.langs, editor.langCode ) >= 0 ?
-							editor.langCode : plugin.langs[ 0 ] );
+						var langCode = editor.langCode;
+						langCode = plugin.availableLangs[ langCode ] ? langCode : 'en';
 
 						CKEDITOR.scriptLoader.load(
@@ -32,5 +35,5 @@
 									CKEDITOR.tools.extend( editor.lang, plugin.lang[ langCode ] );
 									editor.openDialog( commandName );
-								})	;
+								});
 					},
 					modes : { wysiwyg:1, source:1 },
