2

早上好,

今天我在我定制的 CMS 上安装了 TinyMCE。现在我想将语言更改为荷兰语,我的整个 tinyMCE 文本框将消失。

我已将荷兰文文件上传到 TinyMCE 指定的位置。当我不添加语言时:“nl”,在我的 TinyMCE javascript 中添加它会起作用(语言是英语)。但是当我添加该行时,整个文本框从我的页面中消失了。

这是我的代码

 <script type="text/javascript" src="jscripts/tiny_mce/jquery.tinymce.js"></script>
    <script type="text/javascript">
        $().ready(function() {
            $('textarea.tinymce').tinymce({

                // Location of TinyMCE script
                script_url : 'jscripts/tiny_mce/tiny_mce.js',

                // General options
                theme : "advanced",

                relative_urls : false,
                plugins : "youtubeIframe,jbimages,autolink,lists,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,images,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template,advlist,jbimages",

                // Theme options
                theme_advanced_buttons1 : "code,preview,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,formatselect",
                theme_advanced_buttons2 : "cut,copy,paste,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,|,insertdate,inserttime",
                theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,iespell,youtubeIframe,jbimages,advhr,|,print,|,ltr,rtl,|,fullscreen",


                //COMPLETE LIJST VAN FUNCTIES
                //theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
                //theme_advanced_buttons2 : "cut,copy,paste,pastetext,pasteword,|,search,replace,|,bullist,numlist,|,outdent,indent,blockquote,|,undo,redo,|,link,unlink,anchor,image,cleanup,help,code,|,insertdate,inserttime,preview,|,forecolor,backcolor",
                //theme_advanced_buttons3 : "tablecontrols,|,hr,removeformat,visualaid,|,sub,sup,|,charmap,emotions,iespell,media,advhr,|,print,|,ltr,rtl,|,fullscreen",
                //theme_advanced_buttons4 : "insertlayer,moveforward,movebackward,absolute,|,styleprops,|,cite,abbr,acronym,del,ins,attribs,|,visualchars,nonbreaking,template,pagebreak",



                theme_advanced_toolbar_location : "top",
                theme_advanced_toolbar_align : "left",
                theme_advanced_statusbar_location : "bottom",
                theme_advanced_resizing : true,
                language : "nl",
                // Example content CSS (should be your site CSS)
                content_css : "css/style.css",

                // Drop lists for link/image/media/template dialogs
                template_external_list_url : "lists/template_list.js",
                external_link_list_url : "lists/link_list.js",
                external_image_list_url : "lists/image_list.js",
                media_external_list_url : "lists/media_list.js",

                // Replace values for the template plugin
                template_replace_values : {
                    username : "Some User",
                    staffid : "991234",
                width : "858"
                }
            });
        });
    </script>
    <!-- /TinyMCE -->

我试图将线路放在其他地方,但没有任何帮助。

有没有人解决这个问题的想法,我真的需要荷兰语。

PS。我正在使用 TinyMCE 的 jQuery 版本

不,我试图将 nl 文件重命名为 en.js 并更改了文件内的 2 个字母。但现在什么都没有出现。我现在看到的唯一内容是示例 print.print_desc 而不是打印或打印。

4

2 回答 2

1

1- 从这里下载您的语言包:https
://www.tiny.cloud/get-tiny/language-packages/ 2- 使 sur 解压缩路径中的包:(yourProject/public/assets/js/langs/yourLangagePack.js 如果文件夹不存在,请添加... )
3- 像这样初始化 tinyMce

 tinymce.init({
            selector: '#your_textArea_id',
            language: "fr_FR", // french for example ...
            // other options ...
            height: "1000"
        });

ps:写下网站下面提到的语言缩写(例如:ennot eng, fr_FRnot only fr

于 2020-09-24T19:27:25.580 回答
0

您必须像这样通过 tinyMCE.init 初始化语言包:

<html>
<head>
</head>
<body>
<script type="text/javascript" src="http://www.google.com/jsapi"></script>
<script type="text/javascript">
    google.load("jquery", "1.4");
</script>
<script type="text/javascript" src="tinymce/jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
tinyMCE.init({
    mode : "specific_textareas",
    editor_selector: "editor", 
    theme : "advanced",
    language : 'nl',
});
</script>

<textarea class="editor">
</textarea>

</body>
</html>

tinyMCE.init 在 tiny_mce.js 中定义,它与“tinymce\jscripts\tiny_mce”中的下载捆绑在一起。据我所知,在 tinyMCE 的 jQuery 版本中不能使用语言包。

于 2012-11-10T17:18:14.057 回答