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.',
|
'success' => 'Account sucessfully created.',
|
||||||
),
|
),
|
||||||
|
|
||||||
'forgot-password' => array(
|
'forgot-password' => array(
|
||||||
'error' => 'There was a problem while trying to get a reset password code, please try again.',
|
'error' => 'There was a problem while trying to get a reset password code, please try again.',
|
||||||
'success' => 'Password recovery email successfully sent.',
|
'success' => 'If that email address exists in our system, a password recovery email has been sent.',
|
||||||
),
|
),
|
||||||
|
|
||||||
'forgot-password-confirm' => array(
|
'forgot-password-confirm' => array(
|
||||||
'error' => 'There was a problem while trying to reset your password, please try again.',
|
'error' => 'There was a problem while trying to reset your password, please try again.',
|
||||||
'success' => 'Your password has been successfully reset.',
|
'success' => 'Your password has been successfully reset.',
|
||||||
),
|
),
|
||||||
|
|
||||||
'activate' => array(
|
'activate' => array(
|
||||||
'error' => 'There was a problem while trying to activate your account, please try again.',
|
'error' => 'There was a problem while trying to activate your account, please try again.',
|
||||||
|
|
|
@ -3,8 +3,9 @@
|
||||||
return [
|
return [
|
||||||
'sent' => 'Your password link has been sent!',
|
'sent' => 'Your password link has been sent!',
|
||||||
'user' => 'No matching active user found with that email.',
|
'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',
|
'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'
|
'reset' => 'Your password has been reset'
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue