summaryrefslogtreecommitdiff
path: root/app/Model
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-05-28 18:30:18 -0400
committerFrédéric Guillot <fred@kanboard.net>2014-05-28 18:30:18 -0400
commit99b5758dd63b8b4fc9fa7fbe3e2540c6d7d8d031 (patch)
tree23af34d235950f402f029c0d0de3428a1951ec2c /app/Model
parent3fcd3d536883fccabef0dcdf1824fa84bcb77ca9 (diff)
Fix typo (error message)
Diffstat (limited to 'app/Model')
-rw-r--r--app/Model/User.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Model/User.php b/app/Model/User.php
index bce717a7..e651b5fd 100644
--- a/app/Model/User.php
+++ b/app/Model/User.php
@@ -203,7 +203,7 @@ class User extends Base
new Validators\Required('password', t('The password is required')),
new Validators\MinLength('password', t('The minimum length is %d characters', 6), 6),
new Validators\Required('confirmation', t('The confirmation is required')),
- new Validators\Equals('password', 'confirmation', t('Passwords doesn\'t matches')),
+ new Validators\Equals('password', 'confirmation', t('Passwords don\'t match')),
new Validators\Integer('default_project_id', t('This value must be an integer')),
new Validators\Integer('is_admin', t('This value must be an integer')),
new Validators\Email('email', t('Email address invalid')),
@@ -264,7 +264,7 @@ class User extends Base
new Validators\Required('password', t('The password is required')),
new Validators\MinLength('password', t('The minimum length is %d characters', 6), 6),
new Validators\Required('confirmation', t('The confirmation is required')),
- new Validators\Equals('password', 'confirmation', t('Passwords doesn\'t matches')),
+ new Validators\Equals('password', 'confirmation', t('Passwords don\'t match')),
new Validators\Integer('default_project_id', t('This value must be an integer')),
new Validators\Integer('is_admin', t('This value must be an integer')),
new Validators\Email('email', t('Email address invalid')),