如何使用i18next本地化属性(对于我的情况下使用标题的jQuery UI工具提示)

时间:2013-09-10 10:04:51

标签: javascript jquery-ui localization jquery-ui-tooltip i18next

我正在检查我们是否可以在项目中使用i18next。

我发现了jQuery UI工具提示的一个问题:jQuery UI从title属性获取工具提示内容,i18next使用data-i18n属性本地化元素内容。

http://i18next.com/pages/doc_templates.html有关于处理jQuery UI对话框/按钮的要点的链接,我们是否需要做类似的事情还是有其他选择?

2 个答案:

答案 0 :(得分:0)

<a href="#" ng-i18next="[title]hello">This is a link.</a>

=&GT;翻译 hello 并将其设置为标题

阅读here

答案 1 :(得分:-1)

$("SelectedElement").attr("data-i18n", "[title]YOUR_KEY").i18n();

试试这个