如何更改tinymce菜单栏项目的名称
how to change the name of tinymce menubar items
我正在尝试重命名 tinyMce 编辑器中菜单栏中的项目,以便我可以翻译它们。我设法更改了她的标题,但没有更改 sub-items 撤消或重做。
tinymce.init({
selector: 'textarea', // change this value according to your HTML
menu: {
file: {title: 'Arquivo', items: 'newdocument'},
edit: {title: 'Editar', items: 'undo redo | cut copy paste pastetext | selectall'},
insert: {title: 'Inserir', items: 'link media | template hr'},
view: {title: 'Visualizar', items: 'visualaid'},
format: {title: 'Formatar', items: 'bold italic underline strikethrough superscript subscript | formats | removeformat'},
table: {title: 'Tabela', items: 'inserttable tableprops deletetable | cell row column'},
tools: {title: 'Ferramentas', items: 'spellchecker code'}
}
});
如果有人知道该怎么做,那将会很有帮助。
TinyMCE 已经本地化为多种语言,包括西班牙语,因此您无需手动执行此操作。
https://www.tiny.cloud/docs/configure/localization/#language
https://www.tiny.cloud/docs/configure/localization/#usingthecommunitylanguagepacks
假设您已下载正确的语言包并将其部署到正确的位置,您只需告诉 TinyMCE 使用该语言包即可:
tinymce.init({
selector: 'textarea', // change this value according to your HTML
language: 'es'
});
我正在尝试重命名 tinyMce 编辑器中菜单栏中的项目,以便我可以翻译它们。我设法更改了她的标题,但没有更改 sub-items 撤消或重做。
tinymce.init({
selector: 'textarea', // change this value according to your HTML
menu: {
file: {title: 'Arquivo', items: 'newdocument'},
edit: {title: 'Editar', items: 'undo redo | cut copy paste pastetext | selectall'},
insert: {title: 'Inserir', items: 'link media | template hr'},
view: {title: 'Visualizar', items: 'visualaid'},
format: {title: 'Formatar', items: 'bold italic underline strikethrough superscript subscript | formats | removeformat'},
table: {title: 'Tabela', items: 'inserttable tableprops deletetable | cell row column'},
tools: {title: 'Ferramentas', items: 'spellchecker code'}
}
});
如果有人知道该怎么做,那将会很有帮助。
TinyMCE 已经本地化为多种语言,包括西班牙语,因此您无需手动执行此操作。
https://www.tiny.cloud/docs/configure/localization/#language
https://www.tiny.cloud/docs/configure/localization/#usingthecommunitylanguagepacks
假设您已下载正确的语言包并将其部署到正确的位置,您只需告诉 TinyMCE 使用该语言包即可:
tinymce.init({
selector: 'textarea', // change this value according to your HTML
language: 'es'
});