2008-02-18 Duncan Lithgow <dlithgow@gmail.com>

Raphael Ackermann <raphael.ackermann@gmail.com>
	* 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
This commit is contained in:
Raphael Ackermann 2008-02-18 14:19:18 +00:00
parent 55ba9c4d37
commit df6a507d7c
5 changed files with 18 additions and 10 deletions

View File

@ -1,4 +1,12 @@
2008-02-15 Benny Malengier <benny.malengier@gramps-project.org> 2008-02-18 Duncan Lithgow <dlithgow@gmail.com>
Raphael Ackermann <raphael.ackermann@gmail.com>
* 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 <benny.malengier@gramps-project.org>
* src/DataViews/RelationView.py * src/DataViews/RelationView.py
* src/DataViews/PedigreeView.py * src/DataViews/PedigreeView.py
* src/ReportBase/_ReportUtils.py * src/ReportBase/_ReportUtils.py

View File

@ -21,7 +21,7 @@
# $Id$ # $Id$
"""Reports/Graphical Reports/Ancestor Chart...""" """Reports/Graphical Reports/Ancestor Tree..."""
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
@ -531,9 +531,9 @@ register_report(
report_class = AncestorChart, report_class = AncestorChart,
options_class = AncestorChartOptions, options_class = AncestorChartOptions,
modes = MODE_GUI | MODE_BKI | MODE_CLI, modes = MODE_GUI | MODE_BKI | MODE_CLI,
translated_name = _("Ancestor Graph..."), translated_name = _("Ancestor Tree..."),
status = _("Stable"), status = _("Stable"),
author_name = "Donald N. Allingham", author_name = "Donald N. Allingham",
author_email = "don@gramps-project.org", author_email = "don@gramps-project.org",
description = _("Produces a graphical ancestral tree graph"), description = _("Produces a graphical ancestral tree"),
) )

View File

@ -21,7 +21,7 @@
# $Id$ # $Id$
"""Reports/Graphical Reports/Ancestor Chart...""" """Reports/Graphical Reports/Descendant Tree..."""
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
@ -485,7 +485,7 @@ register_report(
report_class = DescendChart, report_class = DescendChart,
options_class = DescendChartOptions, options_class = DescendChartOptions,
modes = MODE_GUI | MODE_BKI | MODE_CLI, modes = MODE_GUI | MODE_BKI | MODE_CLI,
translated_name = _("Descendant Chart..."), translated_name = _("Descendant Tree..."),
status = _("Stable"), status = _("Stable"),
author_name = "Donald N. Allingham", author_name = "Donald N. Allingham",
author_email = "don@gramps-project.org", author_email = "don@gramps-project.org",

View File

@ -26,7 +26,7 @@
# #
# $Id$ # $Id$
"""Reports/Graphical Reports/Statistics Chart...""" """Reports/Graphical Reports/Statistics Report..."""
#------------------------------------------------------------------------ #------------------------------------------------------------------------
# #
@ -899,7 +899,7 @@ register_report(
report_class = StatisticsChart, report_class = StatisticsChart,
options_class = StatisticsChartOptions, options_class = StatisticsChartOptions,
modes = MODE_GUI | MODE_BKI | MODE_CLI, modes = MODE_GUI | MODE_BKI | MODE_CLI,
translated_name = _("Statistics Chart..."), translated_name = _("Statistics Report..."),
status = (_("Stable")), status = (_("Stable")),
author_name="Eero Tamminen", author_name="Eero Tamminen",
author_email="", author_email="",

View File

@ -22,7 +22,7 @@
# $Id$ # $Id$
""" """
Timeline report Timeline Chart...
""" """
#------------------------------------------------------------------------ #------------------------------------------------------------------------
@ -440,7 +440,7 @@ register_report(
report_class = TimeLine, report_class = TimeLine,
options_class = TimeLineOptions, options_class = TimeLineOptions,
modes = MODE_GUI | MODE_BKI | MODE_CLI, modes = MODE_GUI | MODE_BKI | MODE_CLI,
translated_name = _("Timeline Graph..."), translated_name = _("Timeline Chart..."),
status = _("Stable"), status = _("Stable"),
author_name = "Donald N. Allingham", author_name = "Donald N. Allingham",
author_email = "don@gramps-project.org", author_email = "don@gramps-project.org",