TinyMCE editor language translation and TinyMCE version 4.0.2 (classipress)
Hi,
I'm using classipress 3.3 and works fine, great application ever.
For local users, I've completed translation using po, mo files and everything fine except TinyMCE editor's UI explanation texts.
in
appthemes-functions.php line:90 and 94, there's
"languages : 'en'" and "language : 'en'"
so I changed these into one
"language : 'xx'" , but seems not working. (of course installed language pack for TinyMCE 3.x , downloaded from TinyMCE official site.)
As this approach was failure, so came up with the new idea of installing new version of TinyMCE version 4.0.2 (latest version), but no luck.
in
theme-enqueue.php
there're
Code:
wp_enqueue_script( 'tiny_mce', includes_url('js/tinymce/tiny_mce.js'), array( 'jquery' ), '3.5.8' );
wp_enqueue_script( 'wp-langs-en', includes_url('js/tinymce/langs/wp-langs-en.js'), array( 'jquery' ), '3241-1141' );
(I changed first line, "3.0" to "3.5.8" as this is latest version for TinyMCE v3.x)
but no effect...
Is there any way to translate TinyMCE editor's UI strings ?
Thank you in advance.