プロジェクトの 1 つでAloha-Editorを使用したいと考えています。デフォルトのプロジェクト言語はドイツ語ですが、エディターの言語を変更する方法が見つかりません。(ウェブとウェブサイトのガイドを検索しました。)
私が見つけた唯一のことは、エディター用のプラグインを開発するときに 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>
エディターを他の言語で使用するには、何を追加または変更する必要があるか知っている人はいますか?