改变TinyMCE中的语言

时间:2012-11-18 12:35:06

标签: php javascript tinymce

我想将语言'en'更改为'ur'。我从http://www.tinymce.com/i18n/index.php?ctrl=lang&act=download&pr_id=1下载了语言文件夹,并用tinymce \ jscripts \ tiny_mce文件夹替换了它的三个文件夹主题,插件,langs 。  然后我改变了示例文件夹中的full.html代码,如上所述:

<!DOCTYPE html>
<html>
<head>

<title>آپ سادہ مرکزی خیال</title>
<meta charset="utf-8" />
<!-- TinyMCE -->
<script type="text/javascript" src="../jscripts/tiny_mce/tiny_mce.js"></script>
<script type="text/javascript">
    tinyMCE.init({
        // General options
        language : "ur",
        mode : "textareas",
        theme : "advanced",
        plugins : "advhr,advimage,advlink,emotions,fullpage,media,paste,searchreplace,style,table,template,xhtmlxtras",
除了urdu文本之外,

其他代码相同。

但我的输出没有显示工具栏,文本区域。

请说出我做错了什么。

1 个答案:

答案 0 :(得分:1)

这些步骤可能对您有所帮助:

  1. 包含jQuery和jquery.tinymce.js文件。
  2. textarea控件分配属性class="tinymce"
  3. 在JavaScript中:

    $(function(){
        $("textarea.tinymce").tinymce({
            // Location of TinyMCE script
            script_url : "js/tiny_mce/tiny_mce.js",
    
            // General options
            theme : "advanced",
            plugins : "safari,pagebreak,style,layer,table,save,advhr,advimage,advlink,emotions,iespell,inlinepopups,insertdatetime,preview,media,searchreplace,print,contextmenu,paste,directionality,fullscreen,noneditable,visualchars,nonbreaking,xhtmlxtras,template",
    
            // Example content CSS (should be your site CSS)
            content_css : "css/style.css",
    
            // Theme options
            theme_advanced_buttons1 : "save,newdocument,|,bold,italic,underline,strikethrough,|,justifyleft,justifycenter,justifyright,justifyfull,styleselect,formatselect,fontselect,fontsizeselect",
    
    
        });
    });