From 60fc1d3f6d6eb32397bd7eb5f617019cc1e3f497 Mon Sep 17 00:00:00 2001 From: snipe Date: Wed, 4 Mar 2020 22:07:35 -0800 Subject: [PATCH] Added/matched forgotten password strings in lang files --- resources/lang/en/auth/message.php | 16 ++++++++-------- resources/lang/en/passwords.php | 3 ++- 2 files changed, 10 insertions(+), 9 deletions(-) diff --git a/resources/lang/en/auth/message.php b/resources/lang/en/auth/message.php index 7c0cd5b50f..80e61977b9 100644 --- a/resources/lang/en/auth/message.php +++ b/resources/lang/en/auth/message.php @@ -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.', diff --git a/resources/lang/en/passwords.php b/resources/lang/en/passwords.php index 2be1be1c54..0e9022fe61 100644 --- a/resources/lang/en/passwords.php +++ b/resources/lang/en/passwords.php @@ -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' ];