diff --git a/gramps/plugins/drawreport/ancestortree.py b/gramps/plugins/drawreport/ancestortree.py index 93dbecdc9..ff7ce1666 100644 --- a/gramps/plugins/drawreport/ancestortree.py +++ b/gramps/plugins/drawreport/ancestortree.py @@ -908,7 +908,7 @@ class AncestorTreeOptions(MenuReportOptions): self.max_gen.connect('value-changed', self.__fillout_vals) self.__fillout_vals() - compress = BooleanOption(_('Co_mpress tree'), True) + compress = BooleanOption(_('Compress tree'), True) compress.set_help(_("Whether to remove any extra blank spaces set " "aside for people that are unknown")) menu.add_option(category_name, "compress_tree", compress) diff --git a/gramps/plugins/drawreport/descendtree.py b/gramps/plugins/drawreport/descendtree.py index d180ed480..67ec31d1d 100644 --- a/gramps/plugins/drawreport/descendtree.py +++ b/gramps/plugins/drawreport/descendtree.py @@ -1501,7 +1501,7 @@ class DescendTreeOptions(MenuReportOptions): "Spouses of the spouse, etc")) menu.add_option(category_name, "maxspouse", max_spouse) - compresst = BooleanOption(_('Co_mpress tree'), False) + compresst = BooleanOption(_('Compress tree'), False) compresst.set_help(_("Whether to move people up, where possible, " "resulting in a smaller tree")) menu.add_option(category_name, "compress_tree", compresst)