将自定义语言文件添加到 CKEditor
有没有办法向 CKEditor 添加新语言?我想集成一个 aspx 页面,该页面从字典数据库读取值到编辑器。
我已经完成的事情:
- 在配置中添加了
language: 'dictionary'
- 添加了一个名为
dictionary.js
的文件(以CKEDITOR.lang['dictionary'] 开头
)到 lang 目录 - 添加
dictionary: 'Dictionary'
到 _languages.js 中的语言数组
但到目前为止它没有显示我定义的翻译
是否有什么我忘记了做什么?
Is there a way to add a new language to CKEditor? I want to integrate an aspx page that reads values from a dictionary database to the editor.
Things I've done already:
- added
language: 'dictionary'
to config - added a file called
dictionary.js
(starting withCKEDITOR.lang['dictionary']
) to the lang directory - added
dictionary: 'Dictionary'
to the language array in _languages.js
But sofar it's not showing the translations I've defined
Is there something I forgot to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想通了
你必须覆盖 lang.languages 并添加新语言
Figured it out
You have to override lang.languages and add the new language