coherency typo wording on filter descriptions

svn: r11230
This commit is contained in:
Jérôme Rapinat 2008-11-01 15:38:46 +00:00
parent df5286233d
commit bb936aca6d
2 changed files with 6 additions and 6 deletions

View File

@ -35,10 +35,10 @@ from gettext import gettext as _
from Filters.Rules._HasGalleryBase import HasGalleryBase
#-------------------------------------------------------------------------
# "Sources who have images"
# "Sources who have media object reference"
#-------------------------------------------------------------------------
class HasGallery(HasGalleryBase):
"""Rule that checks for sources who have Media object reference"""
"""Rule that checks for source who has media object reference"""
name = _('Source with images')
description = _("Matches source with image in the gallery")
name = _('Sources with media')
description = _("Matches sources with media object in the gallery")

View File

@ -40,6 +40,6 @@ from Filters.Rules._HasReferenceCountBase import HasReferenceCountBase
class HasReferenceCountOf(HasReferenceCountBase):
"""Source objects with a reference count of <count>"""
name = _('Source objects with a reference count of <count>')
description = _("Matches source objects with a certain reference count")
name = _('Sources with a reference count of <count>')
description = _("Matches sources with a certain reference count")