* src/Filters/Rules/Family/_ChildHasNameOf.py (description): Typo.

* src/Filters/Rules/Family/_ChildHasIdOf.py (description): Typo.
	* src/Filters/Rules/Family/_FatherHasNameOf.py (description): Typo.
	* src/Filters/Rules/Family/_FatherHasIdOf.py (description): Typo.
	* src/Filters/Rules/Family/_MotherHasNameOf.py (description): Typo.
	* src/Filters/Rules/Family/_MotherHasIdOf.py (description): Typo.


svn: r7177
This commit is contained in:
Alex Roitman 2006-08-14 20:34:25 +00:00
parent 5b0058c852
commit 5e7495f797
7 changed files with 12 additions and 6 deletions

View File

@ -1,4 +1,10 @@
2006-08-14 Alex Roitman <shura@gramps-project.org>
* src/Filters/Rules/Family/_ChildHasNameOf.py (description): Typo.
* src/Filters/Rules/Family/_ChildHasIdOf.py (description): Typo.
* src/Filters/Rules/Family/_FatherHasNameOf.py (description): Typo.
* src/Filters/Rules/Family/_FatherHasIdOf.py (description): Typo.
* src/Filters/Rules/Family/_MotherHasNameOf.py (description): Typo.
* src/Filters/Rules/Family/_MotherHasIdOf.py (description): Typo.
* src/Makefile.am (docs): Use new project website in API docs.
2006-08-14 Don Allingham <don@gramps-project.org>

View File

@ -45,7 +45,7 @@ class ChildHasIdOf(HasGrampsId):
labels = [ _('Person ID:') ]
name = _('Families with child with the <Id>')
description = _("Matches familis where child has a specified "
description = _("Matches families where child has a specified "
"GRAMPS ID")
category = _('Child filters')
base_class = HasGrampsId

View File

@ -44,7 +44,7 @@ class ChildHasNameOf(HasNameOf):
"""Rule that checks for full or partial name matches"""
name = _('Families with child with the <name>')
description = _("Matches familis where child has a specified "
description = _("Matches families where child has a specified "
"(partial) name")
category = _('Child filters')
base_class = HasNameOf

View File

@ -45,7 +45,7 @@ class FatherHasIdOf(HasGrampsId):
labels = [ _('Person ID:') ]
name = _('Families with father with the <Id>')
description = _("Matches familis whose father has a specified "
description = _("Matches families whose father has a specified "
"GRAMPS ID")
category = _('Father filters')
base_class = HasGrampsId

View File

@ -44,7 +44,7 @@ class FatherHasNameOf(HasNameOf):
"""Rule that checks for full or partial name matches"""
name = _('Families with father with the <name>')
description = _("Matches familis whose father has a specified "
description = _("Matches families whose father has a specified "
"(partial) name")
category = _('Father filters')
base_class = HasNameOf

View File

@ -45,7 +45,7 @@ class MotherHasIdOf(HasGrampsId):
labels = [ _('Person ID:') ]
name = _('Families with mother with the <Id>')
description = _("Matches familis whose mother has a specified "
description = _("Matches families whose mother has a specified "
"GRAMPS ID")
category = _('Mother filters')
base_class = HasGrampsId

View File

@ -44,7 +44,7 @@ class MotherHasNameOf(HasNameOf):
"""Rule that checks for full or partial name matches"""
name = _('Families with mother with the <name>')
description = _("Matches familis whose mother has a specified "
description = _("Matches families whose mother has a specified "
"(partial) name")
category = _('Mother filters')
base_class = HasNameOf