fix some strings

This commit is contained in:
Yann Leboulanger 2012-02-14 20:42:32 +01:00
parent 721f33c5cf
commit 3a0aa4c7c6
4 changed files with 5 additions and 5 deletions

View File

@ -308,7 +308,7 @@
<property name="homogeneous">True</property>
<child>
<object class="GtkButton" id="synchronise_contacts_button1">
<property name="label" translatable="yes">Synchronise contacts</property>
<property name="label" translatable="yes">Synchronize contacts</property>
<property name="visible">True</property>
<property name="can_focus">True</property>
<property name="receives_default">False</property>

View File

@ -202,7 +202,7 @@
<child>
<object class="GtkCheckMenuItem" id="show_transports_menuitem">
<property name="visible">True</property>
<property name="label" translatable="yes">Show T_rans_ports</property>
<property name="label" translatable="yes">Show T_ransports</property>
<property name="use_underline">True</property>
<signal name="activate" handler="on_show_transports_menuitem_activate"/>
</object>

View File

@ -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()

View File

@ -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')