2019-05-20 07:37:41 +02:00
< ? 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 .
|
*/
2020-01-12 19:55:17 +01:00
'sign_out' => 'Sign out' ,
'sign_in' => 'Sign in' ,
'register' => 'Register' ,
'hello' => 'Hi {username} !' ,
2020-03-04 12:59:55 +01:00
'throttle' => 'Too many login attempts. Please try again in :seconds seconds.' ,
2020-03-05 17:14:57 +01:00
'already_authenticated' => 'Already authenticated' ,
2020-01-12 19:55:17 +01:00
'confirm' => [
'logout' => 'Are you sure you want to log out?' ,
],
'forms' => [
'name' => 'Name' ,
'login' => 'Login' ,
'email' => 'Email' ,
'password' => 'Password' ,
2020-02-25 08:09:54 +01:00
'confirm_password' => 'Confirm password' ,
2020-02-12 23:24:35 +01:00
'confirm_new_password' => 'Confirm new password' ,
2020-01-13 22:24:14 +01:00
'dont_have_account_yet' => 'Don\'t have your account yet?' ,
2020-01-12 19:55:17 +01:00
'already_register' => 'Already registered?' ,
2020-01-13 23:10:32 +01:00
'password_do_not_match' => 'Password do not match' ,
2020-01-14 17:06:59 +01:00
'forgot_your_password' => 'Forgot your password?' ,
'request_password_reset' => 'Request a password reset' ,
2020-01-15 11:47:03 +01:00
'reset_password' => 'Reset password' ,
'new_password' => 'New password' ,
2020-02-28 15:21:12 +01:00
'current_password' => [
'label' => 'Current password' ,
'help' => 'Fill in your current password to confirm that it\'s you'
],
2020-01-15 11:47:03 +01:00
'change_password' => 'Change password' ,
'send_password_reset_link' => 'Send password reset link' ,
2020-01-23 23:02:54 +01:00
'change_your_password' => 'Change your password' ,
'password_successfully_changed' => 'Password successfully changed ' ,
2020-02-12 23:24:35 +01:00
'edit_account' => 'Edit account' ,
2020-03-18 15:04:34 +01:00
'profile_saved' => 'Profile successfully updated!' ,
'welcome_to_demo_app_use_those_credentials' => 'Welcome to the 2FAuth demo.<br><br>You can connect using the email address <strong>demo@2fauth.app</strong> and the password <strong>demo</demo>' ,
2020-01-14 23:43:43 +01:00
],
2019-05-20 07:37:41 +02:00
];