Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi there
We're using this great package on several of our solutions, but sometimes a weird warning message appears. This is what happens:
Now sometimes the following error message pops up: "spellchecker.no_mpell"
It's a grey popup with a triangle in it and then the above text.
We're running Umbraco 4.11.10 and the language of our logged in user is set to danish.
Anyone have a clue to what might happen?
Thanks in advance.
/Kim A
Hi Kim,
Glad to hear that the work I put into this package is useful for others also :)
That looks like an internationalistion issue with the 'no mispellings message'
This tinymce article seems to describe the problem. I've snipped out what may be the easiest solution for you below?
In spellchecker/editor_plugin_src.js and editor_plugin.js, try change
ed.windowManager.alert('spellchecker.no_mpell');
to
ed.windowManager.alert(ed.getLang('spellchecker.no_mpell'));
Another relevant page to give more info about tinymce internationalistation in this area may be
http://trac.roundcube.net/browser/subversion/branches/devel-vnext/_old/program/js/tiny_mce/plugins/spellchecker/langs/en.js?rev=588 ;
Regards,
Adrian
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Warning message appears in some cases
Hi there
We're using this great package on several of our solutions, but sometimes a weird warning message appears. This is what happens:
Now sometimes the following error message pops up: "spellchecker.no_mpell"
It's a grey popup with a triangle in it and then the above text.
We're running Umbraco 4.11.10 and the language of our logged in user is set to danish.
Anyone have a clue to what might happen?
Thanks in advance.
/Kim A
Hi Kim,
Glad to hear that the work I put into this package is useful for others also :)
That looks like an internationalistion issue with the 'no mispellings message'
This tinymce article seems to describe the problem. I've snipped out what may be the easiest solution for you below?
In spellchecker/editor_plugin_src.js and editor_plugin.js, try change
ed.windowManager.alert('spellchecker.no_mpell');
to
ed.windowManager.alert(ed.getLang('spellchecker.no_mpell'));
Another relevant page to give more info about tinymce internationalistation in this area may be
http://trac.roundcube.net/browser/subversion/branches/devel-vnext/_old/program/js/tiny_mce/plugins/spellchecker/langs/en.js?rev=588 ;
Regards,
Adrian
is working on a reply...