From da47f62d172e6fc6ef7431a71170d46b145094a0 Mon Sep 17 00:00:00 2001 From: snipe Date: Thu, 13 Jan 2022 21:20:38 -0800 Subject: [PATCH] Added strings Signed-off-by: snipe --- resources/lang/en/admin/users/table.php | 9 +++---- resources/lang/en/auth/message.php | 31 +++++++++++++++---------- 2 files changed, 24 insertions(+), 16 deletions(-) diff --git a/resources/lang/en/admin/users/table.php b/resources/lang/en/admin/users/table.php index 7a1d55a51..9bbe883e1 100644 --- a/resources/lang/en/admin/users/table.php +++ b/resources/lang/en/admin/users/table.php @@ -1,6 +1,6 @@ 'Active', 'allow' => 'Allow', 'checkedout' => 'Assets', @@ -8,6 +8,7 @@ return [ 'createuser' => 'Create User', 'deny' => 'Deny', 'email' => 'Email', + 'employee_num' => 'Employee No.', 'first_name' => 'First Name', 'groupnotes' => 'Select a group to assign to the user, remember that a user takes on the permissions of the group they are assigned.', 'id' => 'Id', @@ -27,11 +28,11 @@ return [ 'show_current' => 'Show Current Users', 'show_deleted' => 'Show Deleted Users', 'title' => 'Title', - 'to_restore_them' => 'to restore them.', + 'to_restore_them' => 'to restore them.', 'updateuser' => 'Update User', 'username' => 'Username', - 'user_deleted_text' => 'This user has been marked as deleted.', + 'user_deleted_text' => 'This user has been marked as deleted.', 'username_note' => '(This is used for Active Directory binding only, not for login.)', 'cloneuser' => 'Clone User', 'viewusers' => 'View Users', -]; +); diff --git a/resources/lang/en/auth/message.php b/resources/lang/en/auth/message.php index 693b17786..f086d8c04 100644 --- a/resources/lang/en/auth/message.php +++ b/resources/lang/en/auth/message.php @@ -1,38 +1,45 @@ 'An account with the this email already exists.', 'account_not_found' => 'The username or password is incorrect.', 'account_not_activated' => 'This user account is not activated.', + 'account_suspended' => 'This user account is suspended.', + 'account_banned' => 'This user account is banned.', 'throttle' => 'Too many failed login attempts. Please try again in :minutes minutes.', - 'two_factor' => [ + 'two_factor' => array( 'already_enrolled' => 'Your device is already enrolled.', 'success' => 'You have successfully logged in.', 'code_required' => 'Two-factor code is required.', 'invalid_code' => 'Two-factor code is invalid.', - ], + ), - 'signin' => [ + 'signin' => array( 'error' => 'There was a problem while trying to log you in, please try again.', 'success' => 'You have successfully logged in.', - ], + ), - 'logout' => [ + 'logout' => array( 'error' => 'There was a problem while trying to log you out, please try again.', 'success' => 'You have successfully logged out.', - ], + ), + 'signup' => array( + 'error' => 'There was a problem while trying to create your account, please try again.', + 'success' => 'Account sucessfully created.', + ), - 'forgot-password' => [ + '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' => [ + '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.', - ], + ), -]; + +);