* src/GenericFilter.py (HasTextMatchingSubstringOf):

Rename FullTextSearch as well as its descriptions.
* src/gramps_main.py: Change string for filter menu.
* src/plugins/FilterEditor.py (EditRule.__init__): Hide window while
drawing.
* src/DateEdit.py (DateEditorDialog.__init__): Hide window while
drawing.


svn: r4186
This commit is contained in:
Alex Roitman
2005-03-15 16:26:30 +00:00
parent c492d5a5ad
commit 0b892faff2
5 changed files with 18 additions and 10 deletions

View File

@ -57,9 +57,7 @@ import Date
import DateHandler
import NameDisplay
from TransTable import TransTable
from Utils import for_each_ancestor
from Utils import probably_alive
from Utils import get_source_referents
from Utils import for_each_ancestor,probably_alive,get_source_referents
#-------------------------------------------------------------------------
#
@ -1828,12 +1826,12 @@ class IsWitness(Rule):
self.map.append(w.get_value())
#-------------------------------------------------------------------------
# "FullTextSearch"
# "HasTextMatchingSubstringOf"
#-------------------------------------------------------------------------
class FullTextSearch(Rule):
"""Full-text serach for ..."""
class HasTextMatchingSubstringOf(Rule):
"""Rule that checks for string matches in any textual information"""
labels = [_('Substring:')]
@ -1850,7 +1848,7 @@ class FullTextSearch(Rule):
self.family_map = {}
def name(self):
return 'Full-text serach for ...'
return 'Has text matching substring of'
def description(self):
return _("Matches persons whose records contain text matching a substring")
@ -2119,7 +2117,7 @@ tasks = {
unicode(_("People marked private")) : PeoplePrivate,
unicode(_("Witnesses")) : IsWitness,
unicode(_("Full-text search ...")) : FullTextSearch,
unicode(_("Has text matching substring")) : HasTextMatchingSubstringOf,
}
#-------------------------------------------------------------------------