How to set English(UK) as a default language in CKEditor 3.2
How to set English(UK) as a default开发者_JAVA百科 language in CKEditor 3.2.
Setting the language via config.defaultLanguage = 'en-gb'; just works, if the "user interface language" is not set.
Try: "config.language = 'en-gb';"
See: http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html#.language
add it in your configuration file as:
config.defaultLanguage = 'en-gb';
精彩评论