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} !',
|
|
|
|
'confirm' => [
|
|
|
|
'logout' => 'Are you sure you want to log out?',
|
|
|
|
],
|
|
|
|
'forms' => [
|
|
|
|
'name' => 'Name',
|
|
|
|
'login' => 'Login',
|
|
|
|
'email' => 'Email',
|
|
|
|
'password' => '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-01-23 23:02:54 +01:00
|
|
|
'current_password' => 'Current password',
|
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-01-23 23:02:54 +01:00
|
|
|
'profile_saved' => 'Profile successfully updated!'
|
2020-01-14 23:43:43 +01:00
|
|
|
],
|
2020-01-15 11:47:03 +01:00
|
|
|
|
2019-05-20 07:37:41 +02:00
|
|
|
|
|
|
|
];
|