jQuery.localize 翻译 jquery.dialog 消息
我使用 jQuery 对话框来显示一些信息,并使用 jquery-localize 来翻译用户界面。
要本地化,我使用 https://github.com/coderifous/jquery-localize
我有这段代码在我的 中,但我不知道如何本地化按钮...
$('#dialog').dialog({
autoOpen: false,
width: 600,
modal: true,
buttons: {
"Yes, I would like to have this one": function() {
doSomeStuff();
$( this ).dialog( "close" );
},
"No, I prefer to don't..": function() {
$( this ).dialog( "close" );
}
}
});
我可以使用 jQuery.localize 使用的相同资源吗?如果是的话,我该怎么做?如果没有,我如何本地化 JavaScript 字符串和值?
多谢
I'm using a jQuery Dialog to display some information and jquery-localize to translate the user interface.
To localise I use https://github.com/coderifous/jquery-localize
I have this code in my <head>
, but I don't know hot to localize the buttons...
$('#dialog').dialog({
autoOpen: false,
width: 600,
modal: true,
buttons: {
"Yes, I would like to have this one": function() {
doSomeStuff();
$( this ).dialog( "close" );
},
"No, I prefer to don't..": function() {
$( this ).dialog( "close" );
}
}
});
Can I use same resource that jQuery.localize uses? And if yes, how can I do that? If not, how can I localize JavaScript strings and values?
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
jquery.localize 使用
rel
属性。如果您已经设置了 jquery.localize,那么您应该能够在打开对话框时添加rel
:然后调用 localize (取自文档 - 您的可能会有所不同):
jquery.localize uses a
rel
attribute. If you already have jquery.localize set up, you should be able to add therel
when you open the dialog:Then call localize (taken from the docs - yours may be different):