我想更改 TinyMCE 中使用的语言标签。例如“Überschrift 2”->“Überschrift”。
我使用的是 TinyMCE 的 jQuery 插件版本。
有没有办法在不编辑标签文件的情况下覆盖这些标签?
我想更改 TinyMCE 中使用的语言标签。例如“Überschrift 2”->“Überschrift”。
我使用的是 TinyMCE 的 jQuery 插件版本。
有没有办法在不编辑标签文件的情况下覆盖这些标签?
刚刚发现了这个问题,我按照以下方式完成了(使用 tinyMCE 4.1.x):
tinymce.init({
language : 'en_GB',
init_instance_callback : function(editor) {
tinymce.i18n.data.en_GB['New window'] = 'Open in new tab or window';
tinymce.i18n.data.en_GB.Target = 'Options';
}
});
这样做是在编辑器初始化后用您的文本覆盖默认值。无需编辑任何 lang 文件
有可能的。我至少对我自己的本地化字符串进行了测试,使用帮助程序 geti18nstring()和set18nstring()处理 tinymce.i18n 属性。
顺便说一句,这是财产的“完整”文档http://www.tinymce.com/wiki.php/API3:property.tinymce.i18n。:) 片段的其余部分是使用著名的敏捷模式“trust-the-source-Luke”完成的。
// folder: plugins/mycustomtinymceplugin
//
// file: ./langs/en_dlg.js
tinyMCE.addI18n('en.mycustomtinymceplugin_dlg',{charts:"Some charts"});
// file: mycustomtinymceplugin.html <-- opened by ./editor_plugin.js#init ed.windowManager.open({file : url + '/mycustomtinymceplugin.html'
<script>
function geti18nstring( id )
{
return tinymce.i18n[ tinymce.activeEditor.settings.language + '.mycustomtinymceplugin_dlg.' + id ];
}
function seti18nstring( id, i18nstring )
{
//just for curiosity if you wan't to modify something in a plugin which is killed after modification
if( geti18nString( id ) == i18nstring )
{
alert( 'id['+id+'] was replaced already with [' + i18nstring +'].' );
}
else
{
tinymce.i18n[ tinymce.activeEditor.settings.language + '.mycustomtinymceplugin_dlg.' + id ] = i18nstring;
}
}
function dostuffonpluginstart()
{
//to get localized strings
var charts_text = geti18nstring('charts');
$('#chartlist').append( charts_text );
...
//to manipulate localized strings
seti18nstring( 'charts', 'karamba' );
charts_text = geti18nstring('charts');
$('#chartlist').append( charts_text )
}
</script>
...
<div id"chartlist"></div>
是的,寻找“langs”文件夹编辑 de.js。