diff --git a/src/calibre/gui2/update.py b/src/calibre/gui2/update.py index b5d847aa7a..adc779c022 100644 --- a/src/calibre/gui2/update.py +++ b/src/calibre/gui2/update.py @@ -221,7 +221,7 @@ class UpdateMixin(object): if has_calibre_update: plt = '' if has_plugin_updates: - plt = ngettext(' (one plugin update)', ' ({} plugin updates)', number_of_plugin_updates).format(number_of_plugin_updates) + plt = ngettext(' and one plugin update', ' and {} plugin updates', number_of_plugin_updates).format(number_of_plugin_updates) msg = ('%s: ' '%s%s') % ( _('Update found'), version_url, calibre_version, plt)