#10046 closed Bug (invalid)
AutoDetectLanguage option isn't working
| Reported by: | Criss | Owned by: | |
|---|---|---|---|
| Priority: | Normal | Milestone: | |
| Component: | UI : Language | Version: | 4.0 |
| Keywords: | Cc: |
Description
I'm using ckeditor 4.0 in an .net mvc application, testing UI language I realized an issue with AutoDetectLanguage, that is because when user change browser language, ckeditor doesn't update language toolbar; Could you help me?
Change History (2)
comment:1 Changed 13 years ago by
| Keywords: | language removed |
|---|---|
| Resolution: | → invalid |
| Status: | new → closed |
comment:2 Changed 13 years ago by
Thanks for the information, but testing ckeditor language I saw in google chrome (v24) working well but in IE9 isn't working I consider this an issue... try yourself testing demo page http://ckeditor.com/demo in IE9 changing language (Internet Option-Languages).

AutoDetectLanguage option was used in FCKeditor http://docs.cksource.com/CKEditor_3.x/Developers_Guide/FCKeditor_CKEditor_Configuration_Mapping and I don't think it was doing what you want.
I don't fully understand question but you have only three options:
var editor = CKEDITOR.replace('abc'); function changeLang(){ editor.config.language = your_code_here; }CKEDITOR.replace('abc'{ language: server_side_tag_that_on_page_load_will_change_to_locale_string });Please also note that CKEditor 4 for ASP.NET is not out yet so you can either use JS version or 3.6.4. Mixing them will not work.