We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9a8dcec commit a2b74ceCopy full SHA for a2b74ce
python/plugins/MetaSearch/dialogs/maindialog.py
@@ -473,10 +473,9 @@ def display_results(self):
473
474
position = self.catalog.results['returned'] + self.startfrom
475
476
- msg = self.tr('Showing %d - %d of %d result%s') % (
477
- self.startfrom + 1, position,
478
- self.catalog.results['matches'],
479
- 's'[self.catalog.results['matches'] == 1:])
+ msg = self.tr('Showing %d - %d of %n result(s)', 'number of results',
+ self.catalog.results['matches']) % (self.startfrom + 1,
+ position)
480
481
self.lblResults.setText(msg)
482
0 commit comments