22 lines
708 B
PHP
22 lines
708 B
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.
|
|
|
|
|
*/
|
|
|
|
'failed' => 'Impossible de vous connecter',
|
|
'password' => 'Email ou mot de passe incorrect',
|
|
'throttle' => 'Trop de tentatives veuillez reessayer dans :seconds seconds.',
|
|
'logout_success' => 'Vous êtes bien déconnecté'
|
|
|
|
];
|