我正在使用jQuery TableSorter插件(http://mottie.github.io/tablesorter/docs/ 一个TableSorter插件的分支(http://tablesorter.com) @Mottie)表;由于我的网站支持多种语言,我必须为其Pager插件提供翻译。
有没有人试图将其国际化?
我浏览了它的网站并在网上搜索没有运气。
任何帮助将不胜感激!
更新: @Mottie,感谢您提供输出选项。
答案 0 :(得分:0)
似乎Pager addon只有一行要翻译,可以在初始化插件时提供。
$('.transactions')
.tablesorter({
theme : 'blue',
widgets: [ "zebra", "resizable" ],
widgetOptions: {
resizable : true,
resizable_widths : [ '40px', '100px', '100px' ]
}
})
.tablesorterPager({
container: $("#pager"),
output: 'с {startRow} по {endRow} из {totalRows} транзакции'} //<-- this line
//output: "{startRow} to {endRow} of {totalRows} rows" //<-- original
);
这对我来说没问题。