summaryrefslogtreecommitdiff
path: root/models
diff options
context:
space:
mode:
Diffstat (limited to 'models')
-rw-r--r--models/user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/models/user.php b/models/user.php
index 50e02fef..f80d5edf 100644
--- a/models/user.php
+++ b/models/user.php
@@ -88,7 +88,7 @@ class User extends Base
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\Integer('default_project_id', t('The value must be an integer')),
+ 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')),
));