将“按钮”翻译为“按钮”在 jQuery UI 对话框中
我有两个带有翻译的 JavaScript 文件,将根据用户的语言包含这些文件。这对于大多数情况都适用。但不适用于 jQuery UI 对话框内的 Buttons 对象。有什么想法如何解决这个问题吗?
if (data.status == 'success') {
options = {
buttons: {
CLOSE: function() {
$(this).dialog('close');
}
}
};
CLOSE 必须翻译。
I have two JavaScript files with translations, which will be included depending on the users language. This works fine for most cases. But not for the Buttons object inside an jQuery UI Dialog. Any ideas how to solve this?
if (data.status == 'success') {
options = {
buttons: {
CLOSE: function() {
$(this).dialog('close');
}
}
};
CLOSE must be translated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
像这样创建按钮对象:
编辑:更新为使用 CLOSE 变量。
Create the buttons object like this:
Edit: Updated to use the CLOSE variable.
有两种在对话框中指定按钮的方法 (自 1.8.5 起)。其中只有一个对国际化有用。像这样定义你的选项:
@dioslaska 的解决方案也有效,但我认为这种方式更漂亮。
There are two ways to specify buttons in a dialog (since 1.8.5). Only one of them is useful for internationalization. Define your options like this:
@dioslaska's solution works as well, but I think this way is prettier.
只需要加引号即可:P
Just put in in quotation marks :P
您必须修改 jquery-ui javascript 文件中对话框小部件的声明。
找到该行
并将“Close”替换为您的翻译。
You must modify the declaration of the Dialog widget in jquery-ui javascript file.
Find the line
and replace "Close" with your translation.