* src/Filters/Rules/*/_MatchesFilter.py: Fix typo in description

svn: r7681
This commit is contained in:
Martin Hawlisch 2006-11-24 19:04:06 +00:00
parent b758b3306e
commit 2237772913
9 changed files with 11 additions and 8 deletions

View File

@ -1,3 +1,6 @@
2006-11-24 Martin Hawlisch <Martin.Hawlisch@gmx.de>
* src/Filters/Rules/*/_MatchesFilter.py: Fix typo in description
2006-11-23 Alex Roitman <shura@gramps-project.org>
* test/GrampsDb/GrampsDbBase_Test.py (test_reindex_reference_map):
Properly define lambda to fake the _update_reference_map method.

View File

@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase):
"""Rule that checks against another filter"""
name = _('Events matching the <filter>')
description = _("Matches events macthed by the specified filter name")
description = _("Matches events matched by the specified filter name")
namespace = 'Event'

View File

@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase):
"""Rule that checks against another filter"""
name = _('Families matching the <filter>')
description = _("Matches families macthed by the specified filter name")
description = _("Matches families matched by the specified filter name")
namespace = 'Family'

View File

@ -43,6 +43,6 @@ class MatchesFilter(MatchesFilterBase):
"""Rule that checks against another filter"""
name = _('Media objects matching the <filter>')
description = _("Matches media objects macthed by the "
description = _("Matches media objects matched by the "
"specified filter name")
namespace = 'MediaObject'

View File

@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase):
"""Rule that checks against another filter"""
name = _('People matching the <filter>')
description = _("Matches people macthed by the specified filter name")
description = _("Matches people matched by the specified filter name")
namespace = 'Person'

View File

@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase):
"""Rule that checks against another filter"""
name = _('Places matching the <filter>')
description = _("Matches places macthed by the specified filter name")
description = _("Matches places matched by the specified filter name")
namespace = 'Place'

View File

@ -43,6 +43,6 @@ class MatchesFilter(MatchesFilterBase):
"""Rule that checks against another filter"""
name = _('Repositories matching the <filter>')
description = _("Matches repositoriess macthed "
description = _("Matches repositoriess matched "
"by the specified filter name")
namespace = 'Repository'

View File

@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase):
"""Rule that checks against another filter"""
name = _('Sources matching the <filter>')
description = _("Matches sources macthed by the specified filter name")
description = _("Matches sources matched by the specified filter name")
namespace = 'Source'

View File

@ -50,7 +50,7 @@ class MatchesFilterBase(Rule):
labels = [_('Filter name:')]
name = _('Objects matching the <filter>')
description = _("Matches objects macthed by the specified filter name")
description = _("Matches objects matched by the specified filter name")
category = _('General filters')
def prepare(self,db):