2012-11-18 276 views
1

我想將語言'en'更改爲'您'。我從http://www.tinymce.com/i18n/index.php?ctrl=lang&act=download&pr_id=1下載了語言文件夾,並用tinymce \ jscripts \ tiny_mce文件夾替換了它的三個文件夾主題,插件,langs。 然後我已經改變在例如文件夾full.html代碼如所提到的:在TinyMCE中更改語言

<!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", 

其它代碼是除了烏爾都語文本相同。

但我的輸出不顯示工具欄,文本區域。

請說出我做錯了什麼。

+0

好像你正在做的一切正確的改變語言。不過看起來你的tinyMCE.init腳本沒有結束標籤。請務必在_plugins_ line –

+0

@ 1.44mb之後放置_}); _標記已關閉 –

回答

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", 
    
    
        }); 
    });