一、怎樣設置安裝drupal中文語言包編輯器
安裝好drupal 7後,開啓Content translation以及Locale.net
進入configuration中就能夠看到Translate interface。進去以後右上角點 Import。 選擇你下載的po文件,並將Import to選爲簡體中文。點擊下方import。blog
參見 get
二、安裝CKEditor4.2it
下載WYSIWYG模塊,爲了讓wysiwyg識別4.2版本,須要修改:io
前往 site/all/modules/wysiwyg/editors 目錄並找到 ckeditor.inc 文件,用編輯器修改第81行:
替換:
if (preg_match('@version:\'(?:CKEditor )?([\d\.]+)(?:.+revision:\'([\d]+))?@', $line, $version)) {class
爲import
if (preg_match('@version:[\"|\'](?:CKEditor )?([\d\.]+)(?:.+revision:[\"|\']([\d]+))?@', $line, $version)) {module
WYSIWYG就能夠識別到ckeditor 4了,趕忙體驗ckeditor 4吧!配置
如何將CKeditor 4設置成簡體中文?
將ckeditor文件夾下的配置文件 ckeditor.js 內 166行(可能有個體差別)修改爲 language:"zh-cn",defaultLanguage:"zh-cn"
但我設置後發現語言版本設置簡體中文後,出現的確實繁體中文版。解決辦法:把site/all/libraries/ckeditor/lang下面的zh.js更名,把zh-cn.js改成zh.js
編輯zh.js,把CKEDITOR.lang['zh-cn']=改爲CKEDITOR.lang['zh'],就變成中文界面了