2013-07-24 88 views
2

我使用TinyMCE的,并希望在西班牙语中显示它(ES)为TinyMCE的3.x中设置语言

TinyMCE的版本信息如下

majorVersion : '3', minorVersion : '3.9.2', releaseDate : '2010-09-29'

文档说下载语言包from here和文件复制到相应的文件夹 :

/tinymce/jscripts/tiny_mce/langs/ 
/tinymce/jscripts/tiny_mce/themes/advanced/langs/ 
/tinymce/jscripts/tiny_mce/plugins/<pluginname>/langs/ 

,还可以设置

tinyMCE.init({ 

     // General options 
     language: 'es', 
     mode: "textareas", 
     theme: "advanced", 
     relative_urls : false, 
     file_browser_callback : ekmUpload, 
     plugins: "safari,spellchecker,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,imagemanager,filemanager", 

     // Theme options 
     theme_advanced_buttons1: "newdocument,save,print,|,code,preview,fullscreen,|,bold,italic,underline,strikethrough,forecolor,backcolor,|,justifyleft,justifycenter,justifyright,justifyfull,|,formatselect,fontselect,fontsizeselect", 
     theme_advanced_buttons2: "image,template,|,cut,copy,paste,pastetext,pasteword,|,search,|,bullist,numlist,|,sub,sup,|,undo,redo,|,link,unlink,anchor,|,hr,removeformat,", 
     theme_advanced_buttons3: "", 
     theme_advanced_toolbar_location: "top", 
     theme_advanced_toolbar_align: "left", 
     theme_advanced_statusbar_location: "bottom", 
     theme_advanced_resizing: false, 

     content_css : " ", 
     editor_selector: "HTMLEditor", 
     height : '500', 
     width : '100%', 
     convert_urls : false, 

     inline_styles : true, 

     save_enablewhendirty: true, 
     save_onsavecallback: "SaveDocuments", 

这个答案here也给出了相同的建议。

但语言包(zip文件)只包含lang/es.js

有没有这个,没有出现在西班牙,“格式”,“FONT-FAMILY”和“字体大小”下拉列表不显示在西班牙语中。

我在想什么?

+0

+1很好的问题 – Thariama

回答

1

什么你donwloaded是TinyMCE的4语言文件,你需要的TinyMCE 3.语言包您将在这里得到它:http://www.tinymce.com/i18n3x/index.php?ctrl=lang&act=download&pr_id=1

+0

对不起,我已经建立了'''语言: “ES”,'''我只是复制和粘贴错误到的问题。我现在更新了这个问题。任何其他想法? –

+1

你所下载的是tinymce 4的语言文件,你需要设置为tinymce 3.你会在这里得到它:http://www.tinymce.com/i18n3x/index.php?ctrl=lang&act=download&pr_id=1 – Thariama

+0

我已经下载了你建议的文件。在应用它们之后,TinyMCE编辑器现在在下拉列表中的所有项目(字体系列,字体大小等)前面添加''''advanced。“'''。仍然不会以西班牙文显示任何内容。我也再次更新了这个问题,以显示我的完整TinyMCE配置。任何更多的帮助,将不胜感激。 –