From e5ee70c94ba9560c6fdab10b644838059730631c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sat, 27 Feb 2010 09:30:42 +0000 Subject: [PATCH] typo svn: r14502 --- src/plugins/tool/RelCalc.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/tool/RelCalc.py b/src/plugins/tool/RelCalc.py index 11ddb53bb..d6db8f1eb 100644 --- a/src/plugins/tool/RelCalc.py +++ b/src/plugins/tool/RelCalc.py @@ -185,7 +185,7 @@ class RelCalc(Tool.Tool, ManagedWindow.ManagedWindow): if other_person is None: pass elif self.person.handle == other_person.handle: - rstr = _("%(person)s and %(active_person)s are the same person.")) % { + rstr = _("%(person)s and %(active_person)s are the same person.") % { 'person' : p1, 'active_person' : p2 } text.append((rstr, "")) elif len(rel_strings) == 0: @@ -210,8 +210,8 @@ class RelCalc(Tool.Tool, ManagedWindow.ManagedWindow): p2c = self.db.get_person_from_handle(common[1]) p1str = name_displayer.display(p1c) p2str = name_displayer.display(p2c) - commontext = " " + _("Their common ancestors are %(ancestor1)s and %(ancestor2)s.") - % { 'ancestor1' : p1str, 'ancestor2' : p2str } + commontext = " " + _("Their common ancestors are %(ancestor1)s and %(ancestor2)s.") % { + 'ancestor1' : p1str, 'ancestor2' : p2str } elif length > 2: index = 0 commontext = " " + _("Their common ancestors are: ")