diff --git a/js/ui/search.js b/js/ui/search.js index 84369c577..c399880f5 100644 --- a/js/ui/search.js +++ b/js/ui/search.js @@ -765,7 +765,7 @@ var ProviderInfo = new Lang.Class({ }, 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; } });