我想爲我的一個項目使用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>
有誰知道我需要添加或更改,以獲得在其他語言的編輯器?
出於某種原因,我不得不刪除'common/block'插件讓它工作 – Pere 2013-12-27 23:39:24