Improving help messages

svn: r12276
This commit is contained in:
Joan Creus 2009-03-09 18:33:26 +00:00
parent 4d900e41e8
commit 3a4781aaa0
2 changed files with 3 additions and 3 deletions

View File

@ -41,5 +41,5 @@ class HasReferenceCountOf(HasReferenceCountBase):
"""Family objects with a reference count of <count>""" """Family objects with a reference count of <count>"""
name = _('Families with a reference count of <count>') name = _('Families with a reference count of <count>')
description = _("Matches families objects with a certain reference count") description = _("Matches family objects with a certain reference count")

View File

@ -44,8 +44,8 @@ class RegExpChildName(RegExpName):
"""Rule that checks for full or partial name matches""" """Rule that checks for full or partial name matches"""
name = _('Families with child matching the <regex_name>') name = _('Families with child matching the <regex_name>')
description = _("Matches families where child has a name " description = _("Matches families where some child has a name "
"matching a specified regular expression") "that matches a specified regular expression")
category = _('Child filters') category = _('Child filters')
base_class = RegExpName base_class = RegExpName
apply = child_base apply = child_base