X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=_source%2Fplugins%2Fa11yhelp%2Fplugin.js;h=695349f6f78a73c73e68b206242c09d32de500ef;hb=4e90e78dc97789709ee7404359a5517540c27553;hp=455d21e297f2e98e31ef547c20d10330b3c46732;hpb=059b4c2fef02528bf1af189f7996e80652faddfb;p=ckeditor.git diff --git a/_source/plugins/a11yhelp/plugin.js b/_source/plugins/a11yhelp/plugin.js index 455d21e..695349f 100644 --- a/_source/plugins/a11yhelp/plugin.js +++ b/_source/plugins/a11yhelp/plugin.js @@ -1,5 +1,5 @@ /* -Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. +Copyright (c) 2003-2011, CKSource - Frederico Knabben. All rights reserved. For licensing, see LICENSE.html or http://ckeditor.com/license */ @@ -16,7 +16,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license CKEDITOR.plugins.add( pluginName, { // List of available localizations. - availableLangs : { en:1 }, + availableLangs : { en:1, he:1 }, init : function( editor ) { @@ -32,7 +32,7 @@ For licensing, see LICENSE.html or http://ckeditor.com/license CKEDITOR.getUrl( plugin.path + 'lang/' + langCode + '.js' ), function() { - CKEDITOR.tools.extend( editor.lang, plugin.lang[ langCode ] ); + CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ langCode ] ); editor.openDialog( commandName ); }); },