如何指定CKEditor(jquery版本)的界面语言?
我的代码 atm 就是这么简单:
$(document).ready(function(){
$('textarea').ckeditor();
});
它工作完美,我只需要添加一件事:我需要指定界面语言(本地化)。我尝试阅读 CKEditor 帮助网站,但它不是很有帮助。
谁能告诉我在哪里以及如何添加代码来指定语言?
My code atm is this simple:
$(document).ready(function(){
$('textarea').ckeditor();
});
It works flawlessly, I just need to add one more thing: I need to specify the interface language (localisation). I tried reading the CKEditor help site, but it isn't very helpful.
Can anyone tell me where and how do I add any code to specify the language?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
试试这个:
Try this:
未经测试,但请查看:
http://www.sayopenweb.com/ckeditor-faq/
问。
如何为CKEditor设置语言以实现本地化?
一个。
使用语言属性设置 CKEditor 的语言。通过使用此属性,CKEditor 菜单和标签将显示
本地化语言。
如果您使用自定义配置文件来创建 CKEditor 实例使用,
甚至可以使用 javascript 变量来设置语言文件以使本地化选项动态化。
Untested, but check this out:
http://www.sayopenweb.com/ckeditor-faq/
Q.
How do i set language for CKEditor for achieving localization?
A.
Use language property for setting the language of CKEditor. By using this property CKEditor menu’s and labels will display
the localized language.
And if you are using custom config file for creating CKEditor instance use,
Even one can use javascript variable to set language file to make localization option dynamic.
如果您使用自定义配置文件来创建 CKEditor 实例,请尝试此操作。
If you are using custom config file for creating CKEditor instance try this.
我找到了一种简单的方法来设置
CKE 4
编辑器的语言:I found an easy way to set up your language to
CKE 4
editor :我们有一个多语言门户,可以更改整个界面的语言。要更改编辑器的语言,我使用
ajax
来获取当前选择的语言。这是我在 config.js 中添加的代码:We have a multilingual portal and it is possible to change the language of whole interface. To change the language of the editor I am using
ajax
, to get the currently selected language. Here is the code which I added inconfig.js
:这是另一个示例(基于 CKEditor5 ):
Here is one more example (based on CKEditor5):