﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
4411	Bad configuration options for SCAYT	Alfonso Martínez de Lizarrondo		"The initialization has this code 
{{{
oParams.customDictionaryName = editor.config.scayt_customDictionaryName;
oParams.userDictionaryName = editor.config.scayt_userDictionaryName;
oParams.defLang = editor.scayt_defLang;

if ( CKEDITOR._scaytParams )
{
	for ( var k in CKEDITOR._scaytParams )
	{
		oParams[ k ] = CKEDITOR._scaytParams[ k ];
	}
}
}}}
Problems: 

scayt_customDictionaryName and scayt_userDictionaryName aren't documented anywhere.

editor.scayt_defLang isn't using the config object so it's harder to change its value. Also, while trying to test it I wasn't able to make it work (or at least, make it work as I expected)

The CKEDITOR._scaytParams object means that any such option is shared by all the editor instances, instead of being able to configure each instance in a different way. It can't be overriden also in a configuration file. It's also hard to know what can be used there. Luckily I was able to find that sLang worked and help this user: http://cksource.com/forums/viewtopic.php?f=11&t=15705
"	Bug	closed	Normal	CKEditor 3.3	UI : Spell Checker	3.0	fixed	Confirmed	spellchecker.net
