diff --git a/resources/lang/en/auth.php b/resources/lang/en/auth.php index dca584d0..57f751a0 100644 --- a/resources/lang/en/auth.php +++ b/resources/lang/en/auth.php @@ -12,12 +12,16 @@ | these language lines according to your application's requirements. | */ + + // Laravel + 'failed' => 'These credentials do not match our records.', + 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', + // 2FAuth 'sign_out' => 'Sign out', 'sign_in' => 'Sign in', 'register' => 'Register', 'hello' => 'Hi {username} !', - 'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', 'already_authenticated' => 'Already authenticated', 'confirm' => [ 'logout' => 'Are you sure you want to log out?', diff --git a/resources/lang/en/passwords.php b/resources/lang/en/passwords.php index 1679d16a..a25271a3 100644 --- a/resources/lang/en/passwords.php +++ b/resources/lang/en/passwords.php @@ -13,9 +13,14 @@ | */ - 'password' => 'Passwords must be at least eight characters and match the confirmation.', + // Laravel 'reset' => 'Your password has been reset!', - 'sent' => 'We have e-mailed your password reset link!', + 'sent' => 'We have emailed your password reset link!', + 'throttled' => 'Please wait before retrying.', 'token' => 'This password reset token is invalid.', - 'user' => "We can't find a user with that e-mail address.", + 'user' => "We can't find a user with that email address.", + + // 2FAuth + 'password' => 'Passwords must be at least eight characters and match the confirmation.', + ]; diff --git a/resources/lang/en/validation.php b/resources/lang/en/validation.php index 35692e3c..633b78f6 100644 --- a/resources/lang/en/validation.php +++ b/resources/lang/en/validation.php @@ -40,7 +40,7 @@ 'dimensions' => 'The :attribute has invalid image dimensions.', 'distinct' => 'The :attribute field has a duplicate value.', 'email' => 'The :attribute must be a valid email address.', - 'ends_with' => 'The :attribute must end with one of the following: :values', + 'ends_with' => 'The :attribute must end with one of the following: :values.', 'exists' => 'The selected :attribute is invalid.', 'file' => 'The :attribute must be a file.', 'filled' => 'The :attribute field must have a value.', @@ -93,6 +93,7 @@ 'not_in' => 'The selected :attribute is invalid.', 'not_regex' => 'The :attribute format is invalid.', 'numeric' => 'The :attribute must be a number.', + 'password' => 'The password is incorrect.', 'present' => 'The :attribute field must be present.', 'regex' => 'The :attribute format is invalid.', 'required' => 'The :attribute field is required.', @@ -109,7 +110,7 @@ 'string' => 'The :attribute must be :size characters.', 'array' => 'The :attribute must contain :size items.', ], - 'starts_with' => 'The :attribute must start with one of the following: :values', + 'starts_with' => 'The :attribute must start with one of the following: :values.', 'string' => 'The :attribute must be a string.', 'timezone' => 'The :attribute must be a valid zone.', 'unique' => 'The :attribute has already been taken.',