Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim-plugins.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndré Apitzsch <git@apitzsch.eu>2023-04-15 15:26:12 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-04-15 17:10:41 +0300
commit0eea64a1f47a483b8f15f01528eb3990077fbfdb (patch)
tree94c3ac6812aaa15a8433c9c3f4a8b880c325c0ce
parentceeb13d58c19a85d978798306a38106351d31688 (diff)
[pgp] Add missing ')' to info message
-rw-r--r--pgp/modules/pgp_legacy.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/pgp/modules/pgp_legacy.py b/pgp/modules/pgp_legacy.py
index 828bfa0..c1a60bc 100644
--- a/pgp/modules/pgp_legacy.py
+++ b/pgp/modules/pgp_legacy.py
@@ -232,11 +232,11 @@ class PGPLegacy(BaseModule):
@staticmethod
def _get_info_message():
- msg = '[This message is *encrypted* (See :XEP:`27`]'
+ msg = '[This message is *encrypted* (See :XEP:`27`)]'
lang = os.getenv('LANG')
if lang is not None and not lang.startswith('en'):
# we're not english: one in locale and one en
- msg = _('[This message is *encrypted* (See :XEP:`27`]') + \
+ msg = _('[This message is *encrypted* (See :XEP:`27`)]') + \
' (' + msg + ')'
return msg