mirror of
https://github.com/kovidgoyal/calibre.git
synced 2025-07-08 10:44:09 -04:00
Fix #1718977 [Please use ngettext for updated plugins msg in status bar](https://bugs.launchpad.net/calibre/+bug/1718977)
This commit is contained in:
parent
4657e48f1e
commit
be464001e2
@ -196,8 +196,8 @@ class UpdateMixin(object):
|
||||
u'<a href="update:%s">%s%s</a></span>') % (
|
||||
_('Update found'), version_url, calibre_version, plt)
|
||||
else:
|
||||
msg = (u'<a href="update:%s">%d %s</a>')%(version_url, number_of_plugin_updates,
|
||||
_('updated plugins'))
|
||||
plt = ngettext('updated plugin', 'updated plugins', number_of_plugin_updates)
|
||||
msg = (u'<a href="update:%s">%d %s</a>')%(version_url, number_of_plugin_updates, plt)
|
||||
self.status_bar.update_label.setText(msg)
|
||||
self.status_bar.update_label.setVisible(True)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user