CKEditor俄语拼写检查

时间:2010-12-11 08:12:10

标签: internationalization ckeditor spell-checking

如何为CKEditor添加俄语拼写检查或启用Firefox默认拼写检查程序?

在FCKeditor中,方法FCKConfig.FirefoxSpellChecker = true;有效,但在CKEditor中,该方法不再可用。

2 个答案:

答案 0 :(得分:3)

http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.disableNativeSpellChecker

  

在浏览器中输入原生内容时禁用内置拼写检查程序(目前仅限Firefox和Safari)。

     

即使单词建议不会出现在CKEditor上下文菜单中,此功能也可用于帮助快速识别拼写错误的单词。

     

由于其他浏览器的限制,此设置目前仅与Firefox兼容。   定义于:plugins / wysiwygarea / plugin.js。

config.disableNativeSpellChecker = false;

答案 1 :(得分:1)

禁用自动检查拼写插件 scayt

config.scayt_autoStartup = false;

禁用浏览器禁止标准拼写检查:

config.disableNativeSpellChecker = false;

禁用指定的 scayt 插件并禁止替换上下文菜单:

config.removePlugins = 'scayt';

隐藏按钮:

config.removeButtons = 'Scayt';