From e5fe1e784a7f22f4c114bed7f86eb73abbbb1bbb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Wed, 9 Nov 2011 12:18:36 +0000 Subject: [PATCH] 5187: Plugins twice in plugin list; more descriptive as suggested by Paul F. svn: r18418 --- src/plugins/drawreport/drawplugins.gpr.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/plugins/drawreport/drawplugins.gpr.py b/src/plugins/drawreport/drawplugins.gpr.py index 574d094cd..f32004fce 100644 --- a/src/plugins/drawreport/drawplugins.gpr.py +++ b/src/plugins/drawreport/drawplugins.gpr.py @@ -30,7 +30,7 @@ plg = newplugin() plg.id = 'ancestor_chart,BKI' plg.name = _("Ancestor Tree") -plg.description = _("Produces a graphical ancestral tree (Book)") +plg.description = _("Produces a graphical ancestral tree (Book report)") plg.version = '1.0' plg.gramps_target_version = '3.3' plg.status = STABLE @@ -90,7 +90,7 @@ plg.report_modes = [REPORT_MODE_GUI, REPORT_MODE_BKI, REPORT_MODE_CLI] plg = newplugin() plg.id = 'descend_chart,BKI' plg.name = _("Descendant Tree") -plg.description = _("Produces a graphical descendant tree (Book)") +plg.description = _("Produces a graphical descendant tree (Book report)") plg.version = '1.0' plg.gramps_target_version = '3.3' plg.status = STABLE @@ -128,7 +128,7 @@ plg.report_modes = [REPORT_MODE_GUI, REPORT_MODE_CLI] plg = newplugin() plg.id = 'family_descend_chart,BKI' plg.name = _("Family Descendant Tree") -plg.description = _("Produces a graphical descendant tree around a family (Book)") +plg.description = _("Produces a graphical descendant tree around a family (Book report)") plg.version = '1.0' plg.status = STABLE plg.fname = 'DescendTree.py'