2006-11-03 Alex Roitman <shura@gramps-project.org>
* configure.in: Bump up the version. * src/Editors/_EditLdsOrd.py (update_parent_label): Spurious translation. * src/DataViews/_RelationView.py (write_event_ref): Spurious translation. * src/ReportBase/_ReportDialog.py (get_header): Spurious translation. * RELEASE: version 2.2.2 is released. svn: r7547
This commit is contained in:
@@ -812,7 +812,7 @@ class RelationshipView(PageView.PersonNavView):
|
||||
start_col, stop_col)
|
||||
else:
|
||||
self.write_data(
|
||||
vbox, _('%(event_type)s:') % value, start_col, stop_col)
|
||||
vbox, '%(event_type)s:' % value, start_col, stop_col)
|
||||
|
||||
def write_family(self, family_handle):
|
||||
family = self.dbstate.db.get_family_from_handle(family_handle)
|
||||
|
||||
@@ -287,7 +287,8 @@ class EditLdsOrd(EditSecondary):
|
||||
'gramps_id' : family.gramps_id,
|
||||
}
|
||||
else:
|
||||
label = _("[%(gramps_id)s]") % {
|
||||
# No translation for bare gramps_id
|
||||
label = "[%(gramps_id)s]" % {
|
||||
'gramps_id' : family.gramps_id,
|
||||
}
|
||||
else:
|
||||
|
||||
@@ -110,7 +110,8 @@ class ReportDialog(BareReportDialog):
|
||||
'report_name' : self.report_name,
|
||||
'person_name' : name}
|
||||
else:
|
||||
return _("%(report_name)s") % {'report_name' : self.report_name}
|
||||
# No need to translate report_name, it is already translated
|
||||
return self.report_name
|
||||
|
||||
#------------------------------------------------------------------------
|
||||
#
|
||||
|
||||
Reference in New Issue
Block a user