Fix typo (error message)
This commit is contained in:
parent
3fcd3d5368
commit
99b5758dd6
|
|
@ -126,7 +126,7 @@ return array(
|
|||
'The username must be unique' => 'Der Benutzername muss eindeutig sein',
|
||||
'The username must be alphanumeric' => 'Der Benutzername muss alphanumerisch sein',
|
||||
'The user id is required' => 'Die Benutzer ID wird benötigt',
|
||||
'Passwords doesn\'t matches' => 'Passwörter passen nicht zusammen',
|
||||
'Passwords don\'t match' => 'Passwörter passen nicht zusammen',
|
||||
'The confirmation is required' => 'Die Bestätigung wird benötigt',
|
||||
'The column is required' => 'Die Spalte wird benötigt',
|
||||
'The project is required' => 'Das Projekt wird benötigt',
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ return array(
|
|||
'The username must be unique' => 'El nombre de usuario debe ser único',
|
||||
'The username must be alphanumeric' => 'El nombre de usuario debe ser alfanumérico',
|
||||
'The user id is required' => 'El identificador del usuario es obligatorio',
|
||||
'Passwords doesn\'t matches' => 'Las contraseñas no corresponden',
|
||||
'Passwords don\'t match' => 'Las contraseñas no corresponden',
|
||||
'The confirmation is required' => 'La confirmación es obligatoria',
|
||||
'The column is required' => 'La columna es obligatoria',
|
||||
'The project is required' => 'El proyecto es obligatorio',
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ return array(
|
|||
'The username must be unique' => 'Le nom d\'utilisateur doit être unique',
|
||||
'The username must be alphanumeric' => 'Le nom d\'utilisateur doit être alpha-numérique',
|
||||
'The user id is required' => 'L\'id de l\'utilisateur est obligatoire',
|
||||
'Passwords doesn\'t matches' => 'Les mots de passe ne correspondent pas',
|
||||
'Passwords don\'t match' => 'Les mots de passe ne correspondent pas',
|
||||
'The confirmation is required' => 'Le confirmation est requise',
|
||||
'The column is required' => 'La colonne est obligatoire',
|
||||
'The project is required' => 'Le projet est obligatoire',
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ return array(
|
|||
'The username must be unique' => 'Nazwa użytkownika musi być unikalna',
|
||||
'The username must be alphanumeric' => 'Nazwa użytkownika musi być alfanumeryczna',
|
||||
'The user id is required' => 'ID użytkownika jest wymagane',
|
||||
'Passwords doesn\'t matches' => 'Hasła nie pasują do siebie',
|
||||
'Passwords don\'t match' => 'Hasła nie pasują do siebie',
|
||||
'The confirmation is required' => 'Wymagane jest potwierdzenie',
|
||||
'The column is required' => 'Kolumna jest wymagana',
|
||||
'The project is required' => 'Projekt jest wymagany',
|
||||
|
|
|
|||
|
|
@ -125,7 +125,7 @@ return array(
|
|||
'The username must be unique' => 'O nome de usuário deve ser único',
|
||||
'The username must be alphanumeric' => 'O nome de usuário deve ser alfanumérico, sem espaços ou _',
|
||||
'The user id is required' => 'O id de usuário é obrigatório',
|
||||
'Passwords doesn\'t matches' => 'As senhas não conferem',
|
||||
'Passwords don\'t match' => 'As senhas não conferem',
|
||||
'The confirmation is required' => 'A confirmação é obrigatória',
|
||||
'The column is required' => 'A coluna é obrigatória',
|
||||
'The project is required' => 'O projeto é obrigatório',
|
||||
|
|
|
|||
|
|
@ -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')),
|
||||
|
|
|
|||
Loading…
Reference in New Issue