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',
|
|
|
|
'confirm_password' => 'Confirm 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?',
|
|
|
|
'passwords_do_not_match' => 'Passwords do not match',
|
|
|
|
]
|
|
|
|
|
2019-05-20 07:37:41 +02:00
|
|
|
|
|
|
|
];
|