diff --git a/ChangeLog b/ChangeLog index 80ed1cd7e..75a111439 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,6 @@ +2006-11-24 Martin Hawlisch + * src/Filters/Rules/*/_MatchesFilter.py: Fix typo in description + 2006-11-23 Alex Roitman * test/GrampsDb/GrampsDbBase_Test.py (test_reindex_reference_map): Properly define lambda to fake the _update_reference_map method. diff --git a/src/Filters/Rules/Event/_MatchesFilter.py b/src/Filters/Rules/Event/_MatchesFilter.py index 674a995a3..58077194d 100644 --- a/src/Filters/Rules/Event/_MatchesFilter.py +++ b/src/Filters/Rules/Event/_MatchesFilter.py @@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase): """Rule that checks against another filter""" name = _('Events matching the ') - description = _("Matches events macthed by the specified filter name") + description = _("Matches events matched by the specified filter name") namespace = 'Event' diff --git a/src/Filters/Rules/Family/_MatchesFilter.py b/src/Filters/Rules/Family/_MatchesFilter.py index 20ebcacea..f96c65af7 100644 --- a/src/Filters/Rules/Family/_MatchesFilter.py +++ b/src/Filters/Rules/Family/_MatchesFilter.py @@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase): """Rule that checks against another filter""" name = _('Families matching the ') - description = _("Matches families macthed by the specified filter name") + description = _("Matches families matched by the specified filter name") namespace = 'Family' diff --git a/src/Filters/Rules/MediaObject/_MatchesFilter.py b/src/Filters/Rules/MediaObject/_MatchesFilter.py index ab19acc5f..a0041e064 100644 --- a/src/Filters/Rules/MediaObject/_MatchesFilter.py +++ b/src/Filters/Rules/MediaObject/_MatchesFilter.py @@ -43,6 +43,6 @@ class MatchesFilter(MatchesFilterBase): """Rule that checks against another filter""" name = _('Media objects matching the ') - description = _("Matches media objects macthed by the " + description = _("Matches media objects matched by the " "specified filter name") namespace = 'MediaObject' diff --git a/src/Filters/Rules/Person/_MatchesFilter.py b/src/Filters/Rules/Person/_MatchesFilter.py index 2151d5a73..22f2c4079 100644 --- a/src/Filters/Rules/Person/_MatchesFilter.py +++ b/src/Filters/Rules/Person/_MatchesFilter.py @@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase): """Rule that checks against another filter""" name = _('People matching the ') - description = _("Matches people macthed by the specified filter name") + description = _("Matches people matched by the specified filter name") namespace = 'Person' diff --git a/src/Filters/Rules/Place/_MatchesFilter.py b/src/Filters/Rules/Place/_MatchesFilter.py index c2705cad2..20d853c19 100644 --- a/src/Filters/Rules/Place/_MatchesFilter.py +++ b/src/Filters/Rules/Place/_MatchesFilter.py @@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase): """Rule that checks against another filter""" name = _('Places matching the ') - description = _("Matches places macthed by the specified filter name") + description = _("Matches places matched by the specified filter name") namespace = 'Place' diff --git a/src/Filters/Rules/Repository/_MatchesFilter.py b/src/Filters/Rules/Repository/_MatchesFilter.py index 8bdef5dfe..38063913f 100644 --- a/src/Filters/Rules/Repository/_MatchesFilter.py +++ b/src/Filters/Rules/Repository/_MatchesFilter.py @@ -43,6 +43,6 @@ class MatchesFilter(MatchesFilterBase): """Rule that checks against another filter""" name = _('Repositories matching the ') - description = _("Matches repositoriess macthed " + description = _("Matches repositoriess matched " "by the specified filter name") namespace = 'Repository' diff --git a/src/Filters/Rules/Source/_MatchesFilter.py b/src/Filters/Rules/Source/_MatchesFilter.py index 123183964..530df627f 100644 --- a/src/Filters/Rules/Source/_MatchesFilter.py +++ b/src/Filters/Rules/Source/_MatchesFilter.py @@ -43,5 +43,5 @@ class MatchesFilter(MatchesFilterBase): """Rule that checks against another filter""" name = _('Sources matching the ') - description = _("Matches sources macthed by the specified filter name") + description = _("Matches sources matched by the specified filter name") namespace = 'Source' diff --git a/src/Filters/Rules/_MatchesFilterBase.py b/src/Filters/Rules/_MatchesFilterBase.py index c88e6beb4..3754be64f 100644 --- a/src/Filters/Rules/_MatchesFilterBase.py +++ b/src/Filters/Rules/_MatchesFilterBase.py @@ -50,7 +50,7 @@ class MatchesFilterBase(Rule): labels = [_('Filter name:')] name = _('Objects matching the ') - 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):