* src/EditPlace.py (display_references): Translate event names.

svn: r2674
This commit is contained in:
Alex Roitman 2004-01-20 20:03:50 +00:00
parent 8ccf568d34
commit 7ca42a912f
2 changed files with 7 additions and 4 deletions

View File

@ -6,6 +6,7 @@
build_parents_nosel_menu, build_sp_parents_nosel_menu, build_parents_nosel_menu, build_sp_parents_nosel_menu,
build_child_menu, build_spouse_menu, build_parents_menu, build_child_menu, build_spouse_menu, build_parents_menu,
build_sp_parents_menu): Ditch stock Home item. build_sp_parents_menu): Ditch stock Home item.
* src/EditPlace.py (display_references): Translate event names.
2004-01-19 Don Allingham <dallingham@users.sourceforge.net> 2004-01-19 Don Allingham <dallingham@users.sourceforge.net>
* src/plugins/FilterEditor.py: handle unicode characters * src/plugins/FilterEditor.py: handle unicode characters

View File

@ -1,7 +1,7 @@
# #
# Gramps - a GTK+/GNOME based genealogy program # Gramps - a GTK+/GNOME based genealogy program
# #
# Copyright (C) 2000-2003 Donald N. Allingham # Copyright (C) 2000-2004 Donald N. Allingham
# #
# This program is free software; you can redistribute it and/or modify # This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
@ -442,7 +442,7 @@ class EditPlace:
t = _("%s [%s]: event %s\n") t = _("%s [%s]: event %s\n")
for e in pevent: for e in pevent:
msg = msg + ( t % (GrampsCfg.nameof(e[0]),e[0].getId(),e[1].getName())) msg = msg + ( t % (GrampsCfg.nameof(e[0]),e[0].getId(),_(e[1].getName())))
if len(fevent) > 0: if len(fevent) > 0:
any = 1 any = 1
@ -454,13 +454,15 @@ class EditPlace:
father = e[0].getFather() father = e[0].getFather()
mother = e[0].getMother() mother = e[0].getMother()
if father and mother: if father and mother:
fname = "%s and %s" % (GrampsCfg.nameof(father),GrampsCfg.nameof(mother)) fname = _("%(father)s and %(mother)s") % {
"father" : GrampsCfg.nameof(father),
"mother" : GrampsCfg.nameof(mother) }
elif father: elif father:
fname = "%s" % GrampsCfg.nameof(father) fname = "%s" % GrampsCfg.nameof(father)
else: else:
fname = "%s" % GrampsCfg.nameof(mother) fname = "%s" % GrampsCfg.nameof(mother)
msg = msg + ( t % (fname,e[0].getId(),e[1].getName())) msg = msg + ( t % (fname,e[0].getId(),_(e[1].getName())))
self.refinfo.get_buffer().set_text(msg) self.refinfo.get_buffer().set_text(msg)
if any: if any: