2 Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved.
\r
3 For licensing, see LICENSE.html or http://ckeditor.com/license
\r
7 * @fileOverview Plugin definition for the a11yhelp, which provides a dialog
\r
8 * with accessibility related help.
\r
13 var pluginName = 'a11yhelp',
\r
14 commandName = 'a11yHelp';
\r
16 CKEDITOR.plugins.add( pluginName,
\r
18 // List of available localizations.
\r
19 availableLangs : { en:1, he:1 },
\r
21 init : function( editor )
\r
24 editor.addCommand( commandName,
\r
28 var langCode = editor.langCode;
\r
29 langCode = plugin.availableLangs[ langCode ] ? langCode : 'en';
\r
31 CKEDITOR.scriptLoader.load(
\r
32 CKEDITOR.getUrl( plugin.path + 'lang/' + langCode + '.js' ),
\r
35 CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ langCode ] );
\r
36 editor.openDialog( commandName );
\r
39 modes : { wysiwyg:1, source:1 },
\r
43 CKEDITOR.dialog.add( commandName, this.path + 'dialogs/a11yhelp.js' );
\r