diff -r aff75b69db92 -r 2c48c091b6a2 schemas/workflow.py --- a/schemas/workflow.py Tue Jul 02 17:09:04 2013 +0200 +++ b/schemas/workflow.py Mon Jan 13 13:47:47 2014 +0100 @@ -89,14 +89,14 @@ name = String(required=True, indexed=True, internationalizable=True, maxsize=256, constraints=[RQLUniqueConstraint('S name N, S transition_of WF, Y transition_of WF, Y name N', 'Y', - _('workflow already have a transition of that name'))]) + _('workflow already has a transition of that name'))]) type = String(vocabulary=(_('normal'), _('auto')), default='normal') description = RichString(description=_('semantic description of this transition')) transition_of = SubjectRelation('Workflow', cardinality='1*', composite='object', description=_('workflow to which this transition belongs'), constraints=[RQLUniqueConstraint('S name N, Y transition_of O, Y name N', 'Y', - _('workflow already have a transition of that name'))]) + _('workflow already has a transition of that name'))]) class require_group(RelationDefinition):