From 5aac8af130332ff4851626972b70a9a84eb9882e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Rapinat?= Date: Tue, 8 Nov 2011 10:16:44 +0000 Subject: [PATCH] 5187: Plugins twice in plugin list (use book description) svn: r18414 --- src/plugins/drawreport/drawplugins.gpr.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/plugins/drawreport/drawplugins.gpr.py b/src/plugins/drawreport/drawplugins.gpr.py index c16e03fa0..d48778f91 100644 --- a/src/plugins/drawreport/drawplugins.gpr.py +++ b/src/plugins/drawreport/drawplugins.gpr.py @@ -29,8 +29,8 @@ plg = newplugin() plg.id = 'ancestor_chart,BKI' -plg.name = _("Ancestor Tree (BKI)") -plg.description = _("Produces a graphical ancestral tree (BKI)") +plg.name = _("Ancestor Tree") +plg.description = _("Produces a graphical ancestral tree (Book)") plg.version = '1.0' plg.gramps_target_version = '3.4' plg.status = STABLE @@ -89,8 +89,8 @@ plg.report_modes = [REPORT_MODE_GUI, REPORT_MODE_BKI, REPORT_MODE_CLI] plg = newplugin() plg.id = 'descend_chart,BKI' -plg.name = _("Descendant Tree (BKI)") -plg.description = _("Produces a graphical descendant tree (BKI)") +plg.name = _("Descendant Tree") +plg.description = _("Produces a graphical descendant tree (Book)") plg.version = '1.0' plg.gramps_target_version = '3.4' plg.status = STABLE @@ -127,8 +127,8 @@ plg.report_modes = [REPORT_MODE_GUI, REPORT_MODE_CLI] plg = newplugin() plg.id = 'family_descend_chart,BKI' -plg.name = _("Family Descendant Tree (BKI)") -plg.description = _("Produces a graphical descendant tree around a family (BKI)") +plg.name = _("Family Descendant Tree") +plg.description = _("Produces a graphical descendant tree around a family (Book)") plg.version = '1.0' plg.status = STABLE plg.fname = 'DescendTree.py'