diff --git a/data/gui/accounts_window.ui b/data/gui/accounts_window.ui index de088497e..8eb28ff1b 100644 --- a/data/gui/accounts_window.ui +++ b/data/gui/accounts_window.ui @@ -308,7 +308,7 @@ True - Synchronise contacts + Synchronize contacts True True False diff --git a/data/gui/roster_window.ui b/data/gui/roster_window.ui index 1d222779a..3a4ced776 100644 --- a/data/gui/roster_window.ui +++ b/data/gui/roster_window.ui @@ -202,7 +202,7 @@ True - Show T_rans_ports + Show T_ransports True diff --git a/src/adhoc_commands.py b/src/adhoc_commands.py index ba0d55e21..ec05d8dbf 100644 --- a/src/adhoc_commands.py +++ b/src/adhoc_commands.py @@ -99,7 +99,7 @@ class CommandWindow: self.stage1() # displaying the window - self.window.set_title('Ad-hoc Commands - Gajim') + self.window.set_title(_('Ad-hoc Commands - Gajim')) self.xml.connect_signals(self) self.window.show_all() @@ -415,7 +415,7 @@ class CommandWindow: return self.data_form_widget.show() if self.data_form_widget.title: - self.window.set_title('%s - Ad-hoc Commands - Gajim' % \ + self.window.set_title(_('%s - Ad-hoc Commands - Gajim') % \ self.data_form_widget.title) else: self.data_form_widget.hide() diff --git a/src/common/optparser.py b/src/common/optparser.py index 6c120741b..f84b18a00 100644 --- a/src/common/optparser.py +++ b/src/common/optparser.py @@ -50,7 +50,7 @@ class OptionsParser: except Exception: if os.path.exists(self.__filename): #we talk about a file - print _('error: cannot open %s for reading') % self.__filename + print _('Error: cannot open %s for reading') % self.__filename return False new_version = gajim.config.get('version')