Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: more flexible pager translation
  • Loading branch information
perexg committed Jun 22, 2015
1 parent e57e58f commit ec2c596
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/static/app/tvheadend.js
Expand Up @@ -99,7 +99,7 @@ tvheadend.PagingToolbarConf = function(conf, title, auto, count)
conf.width = 50;
conf.pageSize = 50;
conf.displayInfo = true;
conf.displayMsg = title + _(' {0} - {1} of {2}');
conf.displayMsg = _('{3} {0} - {1} of {2}').replace('{3}', title);
conf.emptyMsg = String.format(_('No {0} to display'), title.toLowerCase());
conf.items = [];
if (auto || count)
Expand Down

0 comments on commit ec2c596

Please sign in to comment.