mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-01-06 05:35:22 +01:00
IGN:Tag release
This commit is contained in:
parent
29ccb391c4
commit
1cb96c7ec0
1 changed files with 2 additions and 2 deletions
|
|
@ -268,7 +268,7 @@ def modify_plugin(self, op=''):
|
|||
plugin = self._plugin_model.index_to_plugin(index)
|
||||
if not plugin.can_be_disabled:
|
||||
error_dialog(self,_('Plugin cannot be disabled'),
|
||||
_('The plugin %s cannot be disabled')%plugin.name).exec_()
|
||||
_('The plugin: %s cannot be disabled')%plugin.name).exec_()
|
||||
return
|
||||
if op == 'toggle':
|
||||
if is_disabled(plugin):
|
||||
|
|
@ -279,7 +279,7 @@ def modify_plugin(self, op=''):
|
|||
if op == 'customize':
|
||||
if not plugin.is_customizable():
|
||||
info_dialog(self, _('Plugin not customizable'),
|
||||
_('Plugin %s does not need customization')%plugin.name).exec_()
|
||||
_('Plugin: %s does not need customization')%plugin.name).exec_()
|
||||
return
|
||||
help = plugin.customization_help()
|
||||
text, ok = QInputDialog.getText(self, _('Customize %s')%plugin.name,
|
||||
|
|
|
|||
Loading…
Reference in a new issue