Added strings

Signed-off-by: snipe <snipe@snipe.net>
This commit is contained in:
snipe 2022-01-13 21:20:38 -08:00
parent 207ff014b1
commit da47f62d17
2 changed files with 24 additions and 16 deletions

View file

@ -1,6 +1,6 @@
<?php <?php
return [ return array(
'activated' => 'Active', 'activated' => 'Active',
'allow' => 'Allow', 'allow' => 'Allow',
'checkedout' => 'Assets', 'checkedout' => 'Assets',
@ -8,6 +8,7 @@ return [
'createuser' => 'Create User', 'createuser' => 'Create User',
'deny' => 'Deny', 'deny' => 'Deny',
'email' => 'Email', 'email' => 'Email',
'employee_num' => 'Employee No.',
'first_name' => 'First Name', '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.', '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', 'id' => 'Id',
@ -27,11 +28,11 @@ return [
'show_current' => 'Show Current Users', 'show_current' => 'Show Current Users',
'show_deleted' => 'Show Deleted Users', 'show_deleted' => 'Show Deleted Users',
'title' => 'Title', 'title' => 'Title',
'to_restore_them' => 'to restore them.', 'to_restore_them' => 'to restore them.',
'updateuser' => 'Update User', 'updateuser' => 'Update User',
'username' => 'Username', '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.)', 'username_note' => '(This is used for Active Directory binding only, not for login.)',
'cloneuser' => 'Clone User', 'cloneuser' => 'Clone User',
'viewusers' => 'View Users', 'viewusers' => 'View Users',
]; );

View file

@ -1,38 +1,45 @@
<?php <?php
return [ return array(
'account_already_exists' => 'An account with the this email already exists.', 'account_already_exists' => 'An account with the this email already exists.',
'account_not_found' => 'The username or password is incorrect.', 'account_not_found' => 'The username or password is incorrect.',
'account_not_activated' => 'This user account is not activated.', '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.', 'throttle' => 'Too many failed login attempts. Please try again in :minutes minutes.',
'two_factor' => [ 'two_factor' => array(
'already_enrolled' => 'Your device is already enrolled.', 'already_enrolled' => 'Your device is already enrolled.',
'success' => 'You have successfully logged in.', 'success' => 'You have successfully logged in.',
'code_required' => 'Two-factor code is required.', 'code_required' => 'Two-factor code is required.',
'invalid_code' => 'Two-factor code is invalid.', 'invalid_code' => 'Two-factor code is invalid.',
], ),
'signin' => [ 'signin' => array(
'error' => 'There was a problem while trying to log you in, please try again.', 'error' => 'There was a problem while trying to log you in, please try again.',
'success' => 'You have successfully logged in.', 'success' => 'You have successfully logged in.',
], ),
'logout' => [ 'logout' => array(
'error' => 'There was a problem while trying to log you out, please try again.', 'error' => 'There was a problem while trying to log you out, please try again.',
'success' => 'You have successfully logged out.', '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.', '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.', '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.', '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.',
], ),
];
);