From e2591b9766830ee97f76cd084e980562da5c58e8 Mon Sep 17 00:00:00 2001 From: Himanshu Gohel <1551217+hgohel@users.noreply.github.com> Date: Mon, 17 Jan 2022 17:59:52 -0500 Subject: [PATCH] Fix spelling of "Descendants" Resolves #12535 --- gramps/plugins/view/geomoves.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gramps/plugins/view/geomoves.py b/gramps/plugins/view/geomoves.py index cd25c9fa0..06d5782de 100644 --- a/gramps/plugins/view/geomoves.py +++ b/gramps/plugins/view/geomoves.py @@ -207,7 +207,7 @@ class GeoMoves(GeoGraphyView): ) def __init__(self, pdata, dbstate, uistate, nav_group=0): - GeoGraphyView.__init__(self, _("Descendance of the active person."), + GeoGraphyView.__init__(self, _("Descendants of the active person."), pdata, dbstate, uistate, PersonBookmarks, nav_group) self.dbstate = dbstate @@ -570,7 +570,7 @@ class GeoMoves(GeoGraphyView): if not person: return self.message_layer.add_message( - _("All descendance for %s") % _nd.display(person)) + _("All descendants 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)