diff --git a/src/calibre/gui2/preferences/plugins.py b/src/calibre/gui2/preferences/plugins.py index fc6733ce6e..2e101965b0 100644 --- a/src/calibre/gui2/preferences/plugins.py +++ b/src/calibre/gui2/preferences/plugins.py @@ -198,9 +198,7 @@ class PluginModel(QAbstractItemModel, AdaptSQP): # {{{ return None if index.internalId() == 0: if role == Qt.DisplayRole: - category = self.categories[index.row()] - return (_("%(plugin_type)s %(plugins)s")% - dict(plugin_type=category, plugins=_('plugins'))) + return self.categories[index.row()] else: plugin = self.index_to_plugin(index) disabled = is_disabled(plugin)