Added/matched forgotten password strings in lang files

This commit is contained in:
snipe 2020-03-04 22:07:35 -08:00
parent d1a8d76d85
commit 60fc1d3f6d
2 changed files with 10 additions and 9 deletions

View file

@ -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.',

View file

@ -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'
]; ];