all strings I got report about them, are not translatable; pot/po update

This commit is contained in:
Nikos Kouremenos 2006-01-03 11:40:44 +00:00
parent dc6b296848
commit 787f253992
20 changed files with 13633 additions and 12774 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -1423,12 +1423,13 @@ class Interface:
def test_migration(migration): def test_migration(migration):
if not migration.PROCESSING: if not migration.PROCESSING:
dialog = gtk.Dialog() dialog = gtk.Dialog()
#FIXME: translate these strings after 0.9
dialog = gtk.MessageDialog(None, dialog = gtk.MessageDialog(None,
gtk.DIALOG_DESTROY_WITH_PARENT | gtk.DIALOG_MODAL, gtk.DIALOG_DESTROY_WITH_PARENT | gtk.DIALOG_MODAL,
gtk.MESSAGE_ERROR, gtk.BUTTONS_OK, message_format = 'GUI Migration failed') gtk.MESSAGE_ERROR, gtk.BUTTONS_OK,
message_format = _('GUI Migration failed'))
dialog.format_secondary_text('Logs migration through graphical interface failed. The migration process will start in the background. Please wait a few minutes for Gajim to start.') dialog.format_secondary_text(
_('Logs migration through graphical interface failed. The migration process will start in the background. Please wait a few minutes for Gajim to start.'))
dialog.run() dialog.run()
dialog.destroy() dialog.destroy()
gtk.main_quit() gtk.main_quit()

View File

@ -452,8 +452,7 @@ class VcardWindow:
def change_to_vcard(self): def change_to_vcard(self):
self.xml.get_widget('information_notebook').remove_page(0) self.xml.get_widget('information_notebook').remove_page(0)
#FIXME: make this string translatable for .10 [thanks Stian] self.xml.get_widget('nickname_label').set_text(_('Personal details'))
self.xml.get_widget('nickname_label').set_text('Personal details')
self.publish_button.show() self.publish_button.show()
self.retrieve_button.show() self.retrieve_button.show()