3723: Some labels should be plural ?

svn: r14906
This commit is contained in:
Jérôme Rapinat 2010-03-22 17:17:24 +00:00
parent 0a2b0b84bf
commit b5274cb626
3 changed files with 5 additions and 5 deletions

View File

@ -43,5 +43,5 @@ from Filters.Rules._HasSourceBase import HasSourceBase
class HasSource(HasSourceBase):
"""Families with sources"""
name = _('Families with <count> source')
description = _("Matches families with a certain number of items in the source")
name = _('Families with <count> sources')
description = _("Matches families with a certain number of sources connected to it")

View File

@ -43,5 +43,5 @@ from Filters.Rules._HasSourceBase import HasSourceBase
class HasSource(HasSourceBase):
"""People with sources"""
name = _('People with <count> source')
description = _("Matches people with a certain number of items in the source")
name = _('People with <count> sources')
description = _("Matches people with a certain number of sources connected to it")

View File

@ -43,7 +43,7 @@ class HasSourceBase(Rule):
labels = [ _('Number of instances:'), _('Number must be:')]
name = _('Objects with <count> sources')
description = _("Matches objects that have a certain number of sources")
description = _("Matches objects that have a certain number of sources connected to it")
category = _('General filters')
def prepare(self, db):