From fcf31413dce2cbeaf44cc066ff811ed003fc287a Mon Sep 17 00:00:00 2001
From: Nikos Kouremenos <kourem@gmail.com>
Date: Fri, 31 Mar 2006 18:40:10 +0000
Subject: [PATCH] fix hawke patch

---
 src/common/config.py | 6 +++---
 src/gajim.py         | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/common/config.py b/src/common/config.py
index 8c4a76a154..565ba2ed88 100644
--- a/src/common/config.py
+++ b/src/common/config.py
@@ -227,13 +227,13 @@ class Config:
 			# try for 2 minutes before giving up (aka. timeout after those seconds)
 			'try_connecting_for_foo_secs': [ opt_int, 60 ],
 			'http_auth': [opt_str, 'ask'], # yes, no, ask
-			'dont_ack_s10n': [opt_bool, False],
+			'dont_ack_subscription': [opt_bool, False, _('Jabberd2 workaround')],
 			# proxy65 for FT
 			'file_transfer_proxies': [opt_str, 
 			'proxy.jabber.org, proxy.netlab.cz, transfer.jabber.freenet.de'],
 			'use_ft_proxies': [opt_bool, True, _('If checked, Gajim will use your IP and proxies defined in file_transfer_proxies option for file transfer.'), True],
-			'msgwin-x-position': [opt_int, -1], # Default is to let the window manager decide
-			'msgwin-y-position': [opt_int, -1], # Default is to let the window manager decide
+			'msgwin-x-position': [opt_int, -1], # Default is to let the wm decide
+			'msgwin-y-position': [opt_int, -1], # Default is to let the wm decide
 			'msgwin-width': [opt_int, 480],
 			'msgwin-height': [opt_int, 440],
 		}, {}),
diff --git a/src/gajim.py b/src/gajim.py
index 4054061722..220714bfd6 100755
--- a/src/gajim.py
+++ b/src/gajim.py
@@ -650,7 +650,7 @@ class Interface:
 		dialogs.InformationDialog(_('Authorization accepted'),
 				_('The contact "%s" has authorized you to see his or her status.')
 				% jid)
-		if not gajim.config.get_per('accounts',account,'dont_ack_s10n'):
+		if not gajim.config.get_per('accounts', account, 'dont_ack_subscription'):
 			gajim.connections[account].ack_subscribed(jid)
 		if self.remote_ctrl:
 			self.remote_ctrl.raise_signal('Subscribed', (account, array))
@@ -1444,7 +1444,7 @@ class Interface:
 		if not os.path.exists(path):
 			# It's maybe a user theme
 			path = os.path.join(gajim.MY_EMOTS_PATH, emot_theme)
-			if not os.path.exists(path): # theme doesn't exists
+			if not os.path.exists(path): # theme doesn't exist
 				return
 		sys.path.append(path)
 		from emoticons import emoticons as emots
-- 
GitLab