Changed _ to ngettext for message '%d more'
This commit is contained in:
parent
7992d7c9b3
commit
11e71845d2
@ -765,7 +765,7 @@ var ProviderInfo = new Lang.Class({
|
|||||||
},
|
},
|
||||||
|
|
||||||
setMoreCount: function(count) {
|
setMoreCount: function(count) {
|
||||||
this._moreLabel.text = _("%d more").format(count);
|
this._moreLabel.text = ngettext("%d more", "%d more", count).format(count);
|
||||||
this._moreLabel.visible = count > 0;
|
this._moreLabel.visible = count > 0;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user