mirror of
https://github.com/snipe/snipe-it.git
synced 2025-02-21 03:15:45 -08:00
Added/matched forgotten password strings in lang files
This commit is contained in:
parent
d1a8d76d85
commit
60fc1d3f6d
|
@ -31,15 +31,15 @@ return array(
|
|||
'success' => 'Account sucessfully created.',
|
||||
),
|
||||
|
||||
'forgot-password' => array(
|
||||
'error' => 'There was a problem while trying to get a reset password code, please try again.',
|
||||
'success' => 'Password recovery email successfully sent.',
|
||||
),
|
||||
'forgot-password' => array(
|
||||
'error' => 'There was a problem while trying to get a reset password code, please try again.',
|
||||
'success' => 'If that email address exists in our system, a password recovery email has been sent.',
|
||||
),
|
||||
|
||||
'forgot-password-confirm' => array(
|
||||
'error' => 'There was a problem while trying to reset your password, please try again.',
|
||||
'success' => 'Your password has been successfully reset.',
|
||||
),
|
||||
'forgot-password-confirm' => array(
|
||||
'error' => 'There was a problem while trying to reset your password, please try again.',
|
||||
'success' => 'Your password has been successfully reset.',
|
||||
),
|
||||
|
||||
'activate' => array(
|
||||
'error' => 'There was a problem while trying to activate your account, please try again.',
|
||||
|
|
|
@ -3,8 +3,9 @@
|
|||
return [
|
||||
'sent' => 'Your password link has been sent!',
|
||||
'user' => 'No matching active user found with that email.',
|
||||
'user_inactive' => 'If that email address exists in our system, a password recovery email has been sent.',
|
||||
'token' => 'The password reset token you have provided is invalid',
|
||||
'password' => 'Passwords must be at least six characters and match the confirmation.',
|
||||
'password' => 'Passwords must be at least eight characters and match the confirmation.',
|
||||
'reset' => 'Your password has been reset'
|
||||
];
|
||||
|
||||
|
|
Loading…
Reference in a new issue