Correct error messages

Correct error message from "Unable to add userto primary project." to
"Unable to add user to primary project.".

This patch only fix the error messages in the Python file. Because we
have many missing strings in the po files at the moment, we'd better to
update all the strings at once rather than piecemeal.

Fixes bug #1190932

Change-Id: Ib1be37313e70b3c397ca7e15cbfffb9ff523a9b3
This commit is contained in:
Zhang Chun
2013-07-28 13:32:05 +08:00
parent 5aa75c7b20
commit 95c26d6855

View File

@@ -115,7 +115,7 @@ class CreateUserForm(BaseUserForm):
data['role_id'])
except:
exceptions.handle(request,
_('Unable to add user'
_('Unable to add user '
'to primary project.'))
return new_user
except: