gpt4 book ai didi

javascript - 更改 Aloha-Editor 的语言

转载 作者:行者123 更新时间:2023-11-28 20:38:09 25 4
gpt4 key购买 nike

我想使用 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>

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

最佳答案

起初我在 Aloha Guide about Localization 中发现了一些东西但这样做对我来说不起作用。

我查看了演示页面并找到了这个可行的解决方案。在包含 require.jsaloha.js

之前,我必须添加以下 JavaScript
<script language="javascript">
Aloha = window.Aloha || {};
Aloha.settings = {
locale: 'de'
};
</script>

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

关于javascript - 更改 Aloha-Editor 的语言,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14942447/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com