0

我想在我的一个项目中使用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>

有谁知道我需要添加或更改什么才能获得其他语言的编辑器?

4

2 回答 2

2

起初我在Aloha 指南中找到了一些关于本地化的内容,但这样做对我不起作用。

然后我查看了演示页面并找到了这个可行的解决方案。我必须在包含之前添加以下 javascriptrequire.jsaloha.js

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

然后 Aloha 脚本会自动加载所选语言的 i18n 文件。我使用了本地版本的 aloha 并没有使用来自http://cdn.aloha-editor.org/latest. 我的版本是 0.22.7。

于 2013-02-19T08:34:29.270 回答
1

您可以在此处下载其他语言帮助文件 中提供了更多信息 您可以随时在项目中通过 Admin->Languages 更改主语言。

希望这可以帮助

雷切尔

于 2013-02-18T18:03:49.720 回答