From 2dab9b146ebae54a3a4bf3b05274d2becff43be1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Sat, 9 Mar 2013 09:17:59 +0000 Subject: [PATCH] typo for handling translated strings svn: r21586 --- gramps/plugins/view/geomoves.py | 2 +- gramps/plugins/view/geoperson.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/plugins/view/geomoves.py b/gramps/plugins/view/geomoves.py index 08722e227..a2be98640 100644 --- a/gramps/plugins/view/geomoves.py +++ b/gramps/plugins/view/geomoves.py @@ -464,7 +464,7 @@ class GeoMoves(GeoGraphyView): person = self.dbstate.db.get_person_from_handle(self.uistate.get_active('Person')) if not person: return - self.message_layer.add_message(_("All descendance for %s" % _nd.display(person))) + self.message_layer.add_message(_("All descendance for %s") % _nd.display(person)) color = Gdk.color_parse(self._config.get('geography.color_base')) GLib.timeout_add(int(self._config.get("geography.generation_interval")), self.animate_moves, 0, person, color) diff --git a/gramps/plugins/view/geoperson.py b/gramps/plugins/view/geoperson.py index 551d2e1d9..a81eabc79 100644 --- a/gramps/plugins/view/geoperson.py +++ b/gramps/plugins/view/geoperson.py @@ -299,7 +299,7 @@ class GeoPerson(GeoGraphyView): person = dbstate.db.get_person_from_handle(person_handle) if person is not None: # For each event, if we have a place, set a marker. - self.message_layer.add_message(_("Person places for %s" % _nd.display(person))) + self.message_layer.add_message(_("Person places for %s") % _nd.display(person)) for event_ref in person.get_event_ref_list(): if not event_ref: continue