summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2012-12-31 14:00:09 +0100
committermathieui <mathieui@mathieui.net>2012-12-31 14:00:09 +0100
commita1607c4c6efbc1e0bdcb6ab5f7d6a1a15f9ca18d (patch)
tree6b44b9569c232b75f326cedc423e2f6191b61e1a
parentd15c4e0b589a021fcffbd11a329f1ecb88bd27f0 (diff)
downloadpoezio-a1607c4c6efbc1e0bdcb6ab5f7d6a1a15f9ca18d.tar.gz
poezio-a1607c4c6efbc1e0bdcb6ab5f7d6a1a15f9ca18d.tar.bz2
poezio-a1607c4c6efbc1e0bdcb6ab5f7d6a1a15f9ca18d.tar.xz
poezio-a1607c4c6efbc1e0bdcb6ab5f7d6a1a15f9ca18d.zip
Fix #2082 (xml:lang)
This is now already done in sleekxmpp, so I added a “lang” configuration option. TODO: use the locale of the system.
-rw-r--r--data/default_config.cfg5
-rw-r--r--doc/en/configure.txt4
-rw-r--r--src/connection.py3
3 files changed, 11 insertions, 1 deletions
diff --git a/data/default_config.cfg b/data/default_config.cfg
index 10d901e1..284f1311 100644
--- a/data/default_config.cfg
+++ b/data/default_config.cfg
@@ -344,6 +344,11 @@ send_os_info = true
# Set to false if you don't want people to know that information
send_time = true
+# The language you specify using.
+# This *may* be ysed by an automated entity to send you tailored replies
+# If you don't understand, leave en.
+lang = en
+
# Configure the number of maximum lines and messages (for each tab) that
# can be kept in memory. If poezio consumes too much memory, lower these
# values
diff --git a/doc/en/configure.txt b/doc/en/configure.txt
index 00a6a3c9..609775e3 100644
--- a/doc/en/configure.txt
+++ b/doc/en/configure.txt
@@ -197,6 +197,10 @@ section of this documentation.
The 'server' option will be ignored if you specify a JID (Jabber id)
It should be in the form nickname@server.tld
+*lang*:: en
+
+ The lang some automated entities will use when replying to you.
+
*lazy_resize*:: true
Defines if all tabs are resized at the same time (if set to false)
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