We have a site which is being used by Japanese editors. So the user has their language set to Japanese (which rocks), but they can't see any of the TinyMCE editors.
I can fix this by adding a single .js file into the tinymce files, as detailed here
I'm not sure how to get this into a next release, but posting it here might be usful for someone else trying to do the same thing. The fix is to copy the file umbraco_client\tinymce3\langs\en.js and rename it to ja.js (same folder). Then open it up and change the first line from
tinyMCE.addI18n({en:{
to
tinyMCE.addI18n({ja:{
While the tooltips etc are in English now, atleast it works!
Japanese and Text Editors
Hi there
We have a site which is being used by Japanese editors. So the user has their language set to Japanese (which rocks), but they can't see any of the TinyMCE editors.
I can fix this by adding a single .js file into the tinymce files, as detailed here
http://umbraco.codeplex.com/workitem/30296
I'm not sure how to get this into a next release, but posting it here might be usful for someone else trying to do the same thing. The fix is to copy the file umbraco_client\tinymce3\langs\en.js and rename it to ja.js (same folder). Then open it up and change the first line from
tinyMCE.addI18n({en:{
to
tinyMCE.addI18n({ja:{
While the tooltips etc are in English now, atleast it works!
is working on a reply...