From 026da172b7e2ebbe8bbddb5c66e51b6f0bde1331 Mon Sep 17 00:00:00 2001 From: Alex Roitman Date: Mon, 16 May 2005 22:00:59 +0000 Subject: [PATCH] * src/plugins/StatisticsChart.py: Minor stylistic corrections. * src/GenericFilter.py: Minor stylistic corrections. svn: r4602 --- gramps2/ChangeLog | 3 +++ gramps2/src/GenericFilter.py | 9 ++++----- gramps2/src/plugins/StatisticsChart.py | 10 +++++----- 3 files changed, 12 insertions(+), 10 deletions(-) diff --git a/gramps2/ChangeLog b/gramps2/ChangeLog index 9a0c1dad1..070a60720 100644 --- a/gramps2/ChangeLog +++ b/gramps2/ChangeLog @@ -7,6 +7,9 @@ 2005-05-16 Alex Roitman * src/ansel_utf8.py: Convert to Unix end-of-line. + * src/plugins/StatisticsChart.py: Minor stylistic corrections. + * src/GenericFilter.py: Minor stylistic corrections. + 2005-05-16 Don Allingham * src/FamilyView.py: fix reordering of children in family view diff --git a/gramps2/src/GenericFilter.py b/gramps2/src/GenericFilter.py index eb32e3e6f..d3fde4ac8 100644 --- a/gramps2/src/GenericFilter.py +++ b/gramps2/src/GenericFilter.py @@ -612,8 +612,7 @@ class IsChildOfFilterMatch(Rule): # #------------------------------------------------------------------------- class IsSiblingOfFilterMatch(Rule): - """Rule that checks for a person that is a sibling - of someone matched by a filter""" + """Rule that checks for siblings of someone matched by a filter""" labels = [ _('Filter name:') ] @@ -634,7 +633,7 @@ class IsSiblingOfFilterMatch(Rule): return 'Is a sibling of filter match' def description(self): - return _("Matches the person that is a sibling of someone matched by a filter") + return _("Matches siblings of someone matched by a filter") def category(self): return _('Family filters') @@ -1678,10 +1677,10 @@ class NoBirthdate(Rule): labels = [] def name(self): - return 'People without a birth date' + return 'People without a known birth date' def description(self): - return _("Matches persons without a birthdate") + return _("Matches persons without a known birthdate") def category(self): return _('General filters') diff --git a/gramps2/src/plugins/StatisticsChart.py b/gramps2/src/plugins/StatisticsChart.py index 787fb1aa6..ac69dc9f9 100755 --- a/gramps2/src/plugins/StatisticsChart.py +++ b/gramps2/src/plugins/StatisticsChart.py @@ -412,7 +412,7 @@ class Extract: genders - which gender(s) to include into statistics year_from - use only persons who've born this year of after year_to - use only persons who've born this year or before - no_years - use also people without any birth year + no_years - use also people without known birth year Returns an array of tuple of: - Extraction method title @@ -774,7 +774,7 @@ class StatisticsChartOptions(ReportOptions.ReportOptions): "Earlier than 'year_to' value"), 'year_to' : ("=num", "Birth year until which to include people", "Smaller than %d" % self.options_dict['year_to']), - 'no_years' : ("=0/1", "Whether to include people without birth years", + 'no_years' : ("=0/1", "Whether to include people without known birth years", ["Do not include", "Include"], True), 'bar_items' : ("=num", "Use barchart instead of piechart with this many or more items", "Number of items with which piecharts still look good...") @@ -878,9 +878,9 @@ class StatisticsChartOptions(ReportOptions.ReportOptions): dialog.add_option(_('People born between'), box, tip) box.show_all() - # include people without birth year? - tip = _("Check this if you want people who have no birth date or year to be accounted also in the statistics.") - self.no_years = gtk.CheckButton(_("Include people without birth years")) + # include people without known birth year? + tip = _("Check this if you want people who have no known birth date or year to be accounted also in the statistics.") + self.no_years = gtk.CheckButton(_("Include people without known birth years")) self.no_years.set_active(self.options_dict['no_years']) dialog.add_option(None, self.no_years, tip) self.no_years.show()