﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8421	Language files not loading properly for the a11yhelp plugin	Teresa Monahan		"To Reproduce:
1. Open ui_languages.html in the _samples directory.
2. Click into the editor and press ALT+0 to load the a11y help instructions. The help dialog is displayed and the contents are in English.
3. Now change the language to Hebrew.
4. Click into the editor and press ALT+0 to load the a11y help instructions again. 
'''Problem:''' The help dialog is displayed and the contents are still in English. The contents should now be displayed in Hebrew.

We believe the issue is that the previous language is not getting overwritten when a new language is selected.
The following code change in a11yhelp\plugin.js seems to fix this problem:

Current Code:
{{{
CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ langCode ] );
}}}

Proposed Fix:
{{{
CKEDITOR.tools.extend( editor.lang, plugin.langEntries[ langCode ],true );
}}}

This issue arose during our translation process for 3.6.2. It is an important issue for us to address in 3.6.x since all our language resources for this plugin are now located in the a11yhelp\lang directory."	Bug	closed	Normal		General	3.5.3	fixed	IBM	Damian Satya Minnekanti
