From a1607c4c6efbc1e0bdcb6ab5f7d6a1a15f9ca18d Mon Sep 17 00:00:00 2001 From: mathieui Date: Mon, 31 Dec 2012 14:00:09 +0100 Subject: Fix #2082 (xml:lang) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is now already done in sleekxmpp, so I added a “lang” configuration option. TODO: use the locale of the system. --- src/connection.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/connection.py') diff --git a/src/connection.py b/src/connection.py index a960e45c..16fb798d 100644 --- a/src/connection.py +++ b/src/connection.py @@ -46,7 +46,8 @@ class Connection(sleekxmpp.ClientXMPP): jid = '%s/%s' % (jid, resource) password = None jid = safeJID(jid) - sleekxmpp.ClientXMPP.__init__(self, jid, password) + # TODO: use the system language + sleekxmpp.ClientXMPP.__init__(self, jid, password, lang=config.get('lang', 'en')) self.core = None self.auto_reconnect = True if config.get('auto_reconnect', 'false').lower() in ('true', '1') else False self.reconnect_max_attempts = 0 -- cgit v1.2.3