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

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjs <js-gajim@webkeks.org>2008-08-06 02:03:31 +0400
committerjs <js-gajim@webkeks.org>2008-08-06 02:03:31 +0400
commit59fb1857eff44f12cdbc40aa1507b36eca50bdb3 (patch)
tree40919e668bdd507987dd7b676901519fea390a54
parentff129a19a041005469e5cb5aeea83e75c34730d1 (diff)
It does not need to be a message.
-rw-r--r--src/common/stanza_session.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/stanza_session.py b/src/common/stanza_session.py
index 8861823f4..dd8041064 100644
--- a/src/common/stanza_session.py
+++ b/src/common/stanza_session.py
@@ -250,11 +250,11 @@ class EncryptedStanzaSession(StanzaSession):
c.NT.mac = base64.b64encode(self.hmac(self.km_s, m_content + \
crypto.encode_mpi(old_en_counter)))
- msgtxt = '[This message is part of an encrypted session. ' \
+ msgtxt = '[This is part of an encrypted session. ' \
'If you see this message, something went wrong.]'
lang = os.getenv('LANG')
if lang is not None and lang != 'en': # we're not english
- msgtxt = _('[This message is part of an encrypted session. '
+ msgtxt = _('[This is part of an encrypted session. '
'If you see this message, something went wrong.]') + ' (' + \
msgtxt + ')'
stanza.setBody(msgtxt)