fix typos

svn: r4368
This commit is contained in:
Eero Tamminen 2005-04-17 17:48:42 +00:00
parent 1f96107362
commit 315367e81d
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
2005-04-17 Eero Tamminen <eerot@sf>
* src/GenericFilter.py: Fix typo
* src/ReportUtils.py: Fix typos
2005-04-15 Martin Hawlisch <Martin.Hawlisch@gmx.de> 2005-04-15 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/plugins/WebPage.py (dump_gendex): Files are named by GRAMPS ID; * src/plugins/WebPage.py (dump_gendex): Files are named by GRAMPS ID;
Alway print fields for birth/death; Fixed typo in DateHandler Alway print fields for birth/death; Fixed typo in DateHandler

View File

@ -1822,7 +1822,7 @@ class IsWitness(Rule):
return 'Witnesses' return 'Witnesses'
def description(self): def description(self):
return _("Matches persons who are whitness in an event") return _("Matches persons who are witnesses in an event")
def category(self): def category(self):
return _('Event filters') return _('Event filters')

View File

@ -1216,7 +1216,7 @@ def died_str(database,person,person_name=None,empty_date="",empty_place="",
elif age_units == 2: #male, month_year, place, months elif age_units == 2: #male, month_year, place, months
text = _("%(male_name)s " text = _("%(male_name)s "
"died in %(month_year)s in %(death_place)s " "died in %(month_year)s in %(death_place)s "
"at the age of %(age)d mpnths.") % { "at the age of %(age)d months.") % {
'male_name' : person_name, 'male_name' : person_name,
'month_year' : ddate, 'death_place' : dplace, 'month_year' : ddate, 'death_place' : dplace,
'age' : age } 'age' : age }
@ -1347,7 +1347,7 @@ def died_str(database,person,person_name=None,empty_date="",empty_place="",
elif age_units == 2: #female, month_year, place, months elif age_units == 2: #female, month_year, place, months
text = _("%(female_name)s " text = _("%(female_name)s "
"died in %(month_year)s in %(death_place)s " "died in %(month_year)s in %(death_place)s "
"at the age of %(age)d mpnths.") % { "at the age of %(age)d months.") % {
'female_name' : person_name, 'female_name' : person_name,
'month_year' : ddate, 'death_place' : dplace, 'month_year' : ddate, 'death_place' : dplace,
'age' : age } 'age' : age }