[PGP] Add warning for PGP4Win, fix icon

This commit is contained in:
Daniel
2018-04-11 14:55:42 +02:00
parent 492d81a26d
commit 550d17ce1c
2 changed files with 5 additions and 1 deletions

View File

Before

Width:  |  Height:  |  Size: 18 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View File

@@ -37,7 +37,10 @@ log = logging.getLogger('gajim.plugin_system.oldpgp')
ERROR_MSG = ''
if not app.HAVE_GPG:
ERROR_MSG = 'Please install python-gnupg'
if os.name == 'nt':
ERROR_MSG = _('Please install GnuPG / Gpg4win')
else:
ERROR_MSG = _('Please install python-gnupg and PGP')
ALLOWED_TAGS = [('request', nbxmpp.NS_RECEIPTS),
('active', nbxmpp.NS_CHATSTATES),
@@ -57,6 +60,7 @@ ALLOWED_TAGS = [('request', nbxmpp.NS_RECEIPTS),
class OldPGPPlugin(GajimPlugin):
def init(self):
self.description = _('PGP encryption as per XEP-0027')
if ERROR_MSG:
self.activatable = False
self.available_text = ERROR_MSG