From 550d17ce1cf5bf693c882d6c607f4e0d9db59b13 Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 11 Apr 2018 14:55:42 +0200 Subject: [PATCH] [PGP] Add warning for PGP4Win, fix icon --- pgp/{PGP.png => pgp.png} | Bin pgp/pgpplugin.py | 6 +++++- 2 files changed, 5 insertions(+), 1 deletion(-) rename pgp/{PGP.png => pgp.png} (100%) diff --git a/pgp/PGP.png b/pgp/pgp.png similarity index 100% rename from pgp/PGP.png rename to pgp/pgp.png diff --git a/pgp/pgpplugin.py b/pgp/pgpplugin.py index cccf0e7..bf3b663 100644 --- a/pgp/pgpplugin.py +++ b/pgp/pgpplugin.py @@ -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