From df6a507d7c34e48cab37dcf9c24bea2651d68ef2 Mon Sep 17 00:00:00 2001 From: Raphael Ackermann Date: Mon, 18 Feb 2008 14:19:18 +0000 Subject: [PATCH] 2008-02-18 Duncan Lithgow Raphael Ackermann * src/plugins/AncestorChart.py * src/plugins/DescendChart.py * src/plugins/StatisticsChart.py * src/plugins/TimeLine.py work on 0001711: Inconsistant names for graphical reports svn: r10049 --- ChangeLog | 10 +++++++++- src/plugins/AncestorChart.py | 6 +++--- src/plugins/DescendChart.py | 4 ++-- src/plugins/StatisticsChart.py | 4 ++-- src/plugins/TimeLine.py | 4 ++-- 5 files changed, 18 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 45f117ee8..d0954ea65 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,12 @@ -2008-02-15 Benny Malengier +2008-02-18 Duncan Lithgow + Raphael Ackermann + * src/plugins/AncestorChart.py + * src/plugins/DescendChart.py + * src/plugins/StatisticsChart.py + * src/plugins/TimeLine.py + work on 0001711: Inconsistant names for graphical reports + +2008-02-18 Benny Malengier * src/DataViews/RelationView.py * src/DataViews/PedigreeView.py * src/ReportBase/_ReportUtils.py diff --git a/src/plugins/AncestorChart.py b/src/plugins/AncestorChart.py index 99b9f4057..11323a6cc 100644 --- a/src/plugins/AncestorChart.py +++ b/src/plugins/AncestorChart.py @@ -21,7 +21,7 @@ # $Id$ -"""Reports/Graphical Reports/Ancestor Chart...""" +"""Reports/Graphical Reports/Ancestor Tree...""" #------------------------------------------------------------------------ # @@ -531,9 +531,9 @@ register_report( report_class = AncestorChart, options_class = AncestorChartOptions, modes = MODE_GUI | MODE_BKI | MODE_CLI, - translated_name = _("Ancestor Graph..."), + translated_name = _("Ancestor Tree..."), status = _("Stable"), author_name = "Donald N. Allingham", author_email = "don@gramps-project.org", - description = _("Produces a graphical ancestral tree graph"), + description = _("Produces a graphical ancestral tree"), ) diff --git a/src/plugins/DescendChart.py b/src/plugins/DescendChart.py index 4e981a7bd..9eb0b1691 100644 --- a/src/plugins/DescendChart.py +++ b/src/plugins/DescendChart.py @@ -21,7 +21,7 @@ # $Id$ -"""Reports/Graphical Reports/Ancestor Chart...""" +"""Reports/Graphical Reports/Descendant Tree...""" #------------------------------------------------------------------------ # @@ -485,7 +485,7 @@ register_report( report_class = DescendChart, options_class = DescendChartOptions, modes = MODE_GUI | MODE_BKI | MODE_CLI, - translated_name = _("Descendant Chart..."), + translated_name = _("Descendant Tree..."), status = _("Stable"), author_name = "Donald N. Allingham", author_email = "don@gramps-project.org", diff --git a/src/plugins/StatisticsChart.py b/src/plugins/StatisticsChart.py index 11fa4f577..ece47c3a5 100644 --- a/src/plugins/StatisticsChart.py +++ b/src/plugins/StatisticsChart.py @@ -26,7 +26,7 @@ # # $Id$ -"""Reports/Graphical Reports/Statistics Chart...""" +"""Reports/Graphical Reports/Statistics Report...""" #------------------------------------------------------------------------ # @@ -899,7 +899,7 @@ register_report( report_class = StatisticsChart, options_class = StatisticsChartOptions, modes = MODE_GUI | MODE_BKI | MODE_CLI, - translated_name = _("Statistics Chart..."), + translated_name = _("Statistics Report..."), status = (_("Stable")), author_name="Eero Tamminen", author_email="", diff --git a/src/plugins/TimeLine.py b/src/plugins/TimeLine.py index 7eab7e10b..2bc6120e1 100644 --- a/src/plugins/TimeLine.py +++ b/src/plugins/TimeLine.py @@ -22,7 +22,7 @@ # $Id$ """ -Timeline report +Timeline Chart... """ #------------------------------------------------------------------------ @@ -440,7 +440,7 @@ register_report( report_class = TimeLine, options_class = TimeLineOptions, modes = MODE_GUI | MODE_BKI | MODE_CLI, - translated_name = _("Timeline Graph..."), + translated_name = _("Timeline Chart..."), status = _("Stable"), author_name = "Donald N. Allingham", author_email = "don@gramps-project.org",