3

私は次のようにtinymce style_formatsを使用しています:

style_formats : [
                {title : '20px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '20px'}},
                {title : '25px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '25px'}},
                {title : '30px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '30px'}},
                {title : '35px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '35px'}},
                {title : '40px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '40px'}},
                {title : '45px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '45px'}},
                {title : '50px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '50px'}},
                {title : '55px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '55px'}},
                {title : '60px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '60px'}},
                {title : '65px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '65px'}},
                {title : '70px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '70px'}},
                {title : '75px', selector : 'p,div,h1,h2,h3,h4,h5,h6', styles: {lineHeight: '75px'}}
        ]
    });

リストボックスのタイトルは「Styles」ですが、「Line Height」に変更したいです。

どこを変更する必要がありますか? lang ファイルで見つかりません。

ありがとう

4

2 に答える 2

1

tinymce を開く-> テーマ -> 詳細 -> 言語 -> en.js

" style_select ":"Styles""style_select":"Line Height"に変更します

それが役に立てば幸い!!

注: tinymce を新しいバージョンに更新するときは常に、この変更を念頭に置く必要があります。

于 2012-12-18T04:33:53.480 に答える
1

タイトルを変更するには、tiny_mce/themes/advanced/langs/en.js 「表示名」に記載されているような lang ファイルを変更できます。

ただし、新しい tinymce バージョンに更新するたびにこのファイルを変更する必要がないようにするには、oninit を使用してタイトルを変更し、tinymce.init で tinymce 構成パラメーターをセットアップします。

tinymce.EditorManager.i18n['en.advanced.style_select'] = 'Line Height';

したがって、次を使用できます。

tinyMCE.init({
   ...
   setup : function(ed) {
     ed.onBeforeRenderUI.add(function(ed, cm) {
         tinymce.EditorManager.i18n['en.advanced.style_select'] = 'Line Height';
     });
   }
});
于 2012-12-18T07:48:38.003 に答える