diff --git a/gramps/plugins/rel/rel_es.py b/gramps/plugins/rel/rel_es.py index 8cd382c2a..7c6935c67 100644 --- a/gramps/plugins/rel/rel_es.py +++ b/gramps/plugins/rel/rel_es.py @@ -601,7 +601,7 @@ class RelationshipCalculator(gramps.gen.relationship.RelationshipCalculator): # These are cousins in the same generation if Ga == 2: rel_str = "primos hermanos" - elif level < len(_level_name_plural): + elif (Ga-1) < len(_level_name_plural): rel_str = "primos %s" % (_level_name_plural[Ga-1]) else: rel_str = "primos %d-ésimos" % (Ga-1)