Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
WEBUI JS: another intl fix - combo emptyText
  • Loading branch information
perexg committed Jun 22, 2015
1 parent ec2c596 commit 1396f62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webui/static/app/idnode.js
Expand Up @@ -379,7 +379,7 @@ tvheadend.IdNodeField = function(conf)
c['typeAhead'] = true;
c['forceSelection'] = false;
c['triggerAction'] = 'all';
c['emptyText'] = 'Select ' + this.text + ' ...';
c['emptyText'] = _('Select {0} ...').replace('{0}', this.text);

combo = true;

Expand Down

0 comments on commit 1396f62

Please sign in to comment.