2013-02-18 125 views
0

我想爲我的一個項目使用Aloha-Editor。默認的項目語言是德語,但我找不到任何方法來更改編輯器的語言。 (搜索他們的網站和指南)更改Aloha編輯語言

我發現的唯一的事情是如何在爲編輯器開發插件時使用i18n,而不是如何在當前穩定版本中設置語言。

這是我做過什麼:

<!-- load the jQuery and require.js libraries --> 
<script type="text/javascript" src="http://cdn.aloha-editor.org/latest/lib/require.js"></script> 
<script type="text/javascript" src="http://cdn.aloha-editor.org/latest/lib/vendor/jquery-1.7.2.js"></script> 

<!-- load the Aloha Editor core and some plugins --> 
<script src="http://cdn.aloha-editor.org/latest/lib/aloha.js" 
     data-aloha-plugins="common/ui, 
          common/format, 
          common/list, 
          common/link, 
          common/highlighteditables"> 
</script> 

<!-- load the Aloha Editor CSS styles --> 
<link href="http://cdn.aloha-editor.org/latest/css/aloha.css" rel="stylesheet" type="text/css" /> 

<!-- make all elements with class="editable" editable with Aloha Editor --> 
<script type="text/javascript"> 
    Aloha.ready(function() { 
     var $ = Aloha.jQuery; 
     $('.editable').aloha(); 
    }); 
</script> 

有誰知道我需要添加或更改,以獲得在其他語言的編輯器?

回答

2

起初,我發現在​​的東西,但這樣做並沒有爲我工作。

比我看了演示頁面,來到這個工作解決方案。我不得不添加下面的JavaScript之前,我包括require.jsaloha.js

<script language="javascript"> 
    Aloha = window.Aloha || {}; 
    Aloha.settings = { 
     locale: 'de' 
    }; 
</script> 

然後阿羅哈腳本自動加載的所選擇的語言對於i18n文件。我使用了本地版本的aloha,並沒有使用http://cdn.aloha-editor.org/latest版本進行測試。我的版本是0.22.7。

+0

出於某種原因,我不得不刪除'common/block'插件讓它工作 – Pere 2013-12-27 23:39:24

1

您可以下載其他語言herehelp file 有更多信息您可以通過管理 - >語言隨時在您的項目中更改主語言。

希望這有助於

雷切爾

+0

@ tbraun89查看更新的答案 – 2013-02-18 18:39:28

+0

我擁有js格式的所有語言文件,但我不知道如何使用它們。 gengo僅僅是爲了開發新的插件還是爲現有的或者核心提供新的語言? 當我下載了語言文件時,我並不清楚如何在我的應用程序中加載。 – tbraun89 2013-02-18 18:59:36

+0

我說再次下載https://github.com/akzhan/jwysiwyg – 2013-02-18 19:22:37