2FAuth/resources/lang/en/auth.php
2020-01-15 11:47:03 +01:00

42 lines
1.3 KiB
PHP

<?php
return [
/*
|--------------------------------------------------------------------------
| Authentication Language Lines
|--------------------------------------------------------------------------
|
| The following language lines are used during authentication for various
| messages that we need to display to the user. You are free to modify
| these language lines according to your application's requirements.
|
*/
'sign_out' => 'Sign out',
'sign_in' => 'Sign in',
'register' => 'Register',
'hello' => 'Hi {username} !',
'confirm' => [
'logout' => 'Are you sure you want to log out?',
],
'forms' => [
'name' => 'Name',
'login' => 'Login',
'email' => 'Email',
'password' => 'Password',
'confirm_password' => 'Confirm password',
'dont_have_account_yet' => 'Don\'t have your account yet?',
'already_register' => 'Already registered?',
'password_do_not_match' => 'Password do not match',
'forgot_your_password' => 'Forgot your password?',
'request_password_reset' => 'Request a password reset',
'reset_password' => 'Reset password',
'new_password' => 'New password',
'change_password' => 'Change password',
'send_password_reset_link' => 'Send password reset link',
],
];