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:
Diffstat (limited to 'src/common/config.py')
-rw-r--r--src/common/config.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/common/config.py b/src/common/config.py
index 95e5fa763..33447822a 100644
--- a/src/common/config.py
+++ b/src/common/config.py
@@ -191,7 +191,7 @@ class Config:
'noconfirm_close_muc_rooms': [opt_str, '', _('Never ask before closing group chat tab/window in this space separated list of group chat jids.')],
'notify_on_file_complete': [opt_bool, True],
'file_transfers_port': [opt_int, 28011],
- 'ft_add_hosts_to_send': [opt_str, '', _('Comma separated list of hosts that we send, in addition of local interfaces, for File Transfer in case of address translation/port forwarding.')],
+ 'ft_add_hosts_to_send': [opt_str, '', _('Comma separated list of hosts that we send, in addition of local interfaces, for File Transfer in case of address translation/port forwarding.')],
'conversation_font': [opt_str, ''],
'use_kib_mib': [opt_bool, False, _('IEC standard says KiB = 1024 bytes, KB = 1000 bytes.')],
'notify_on_all_muc_messages': [opt_bool, False],
@@ -557,7 +557,7 @@ class Config:
if optname not in self.__options:
return None
return self.__options[optname][OPT_VAL]
-
+
def get_desc(self, optname):
if optname not in self.__options:
return None
@@ -574,7 +574,7 @@ class Config:
if typename not in self.__options_per_key:
# raise RuntimeError, 'option %s does not exist' % typename
return
-
+
opt = self.__options_per_key[typename]
if name in opt[1]:
# we already have added group name before
@@ -589,7 +589,7 @@ class Config:
opt = self.__options_per_key[typename]
if subname is None:
del opt[1][name]
- # if subname is specified, delete the item in the group.
+ # if subname is specified, delete the item in the group.
elif subname in opt[1][name]:
del opt[1][name][subname]