HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Localization of this plugin
This discussion is related to the CLEditor jQuery WYSIWYG addon.

in Localization
Can i somehow localize the titles which are popups on mouseover the icons?
I tried to change the titles section in .js and .php , but have no luck.
Tagged:
0
Comments
This plugin uses jQuery plugin cleditor.
I changed jquery.cleditor.min.js for Localization(make sure file is utf8 format).
Search "buttons:{init" in file jquery.cleditor.min.js, then add your language in this "buttons" define.
Below is my change for Chinese.
buttons:{init:"bold,粗体,|"+"italic,斜体,|"+"underline,下划线,|"+"strikethrough,删除线,|"+"subscript,下标,|"+"superscript,上标,|"+"font,字体,fontname,|"+"size,字体大小,fontsize,|"+"style,风格,formatblock,|"+"color,字体颜色,forecolor,|"+"highlight,背景颜色,hilitecolor,color|"+"removeformat,清除格式,|"+"bullets,项目列表,insertunorderedlist|"+"numbering,数字列表,insertorderedlist|"+"outdent,左缩进,|"+"indent,右缩进,|"+"alignleft,左对齐,justifyleft|"+"center,居中对齐,justifycenter|"+"alignright,右对齐,justifyright|"+"justify,两端对齐,justifyfull|"+"undo,撤销,|"+"redo,恢复,|"+"rule,插入水平线,inserthorizontalrule|"+"image,插入图片,insertimage,url|"+"link,插入链接,createlink,url|"+"unlink,删除链接,|"+"cut,裁剪,|"+"copy,复制,|"+"paste,粘贴,|"+"pastetext,纯文本粘贴,inserthtml,|"+"print,打印,|"+"source,源码"},
Thanks @mitiKs for detailed and accurate explanation!