2020-10-14 23:19: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.
|
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
'resource_not_found' => 'Resource not found',
|
|
|
|
'error_occured' => 'An error occured:',
|
|
|
|
'already_one_user_registered' => 'There is already a registered user.',
|
|
|
|
'cannot_register_more_user' => 'You cannot register more than one user.',
|
2020-10-14 23:33:07 +02:00
|
|
|
'refresh' => 'Refresh',
|
2020-10-14 23:19:41 +02:00
|
|
|
'response' => [
|
|
|
|
'no_valid_otp' => 'No valid OTP resource in this QR code',
|
|
|
|
],
|
|
|
|
'something_wrong_with_server' => 'Something is wrong with your server',
|
|
|
|
'Unable_to_decrypt_uri' => 'Unable to decrypt uri',
|
|
|
|
'wrong_current_password' => 'Wrong current password, nothing has changed'
|
|
|
|
|
|
|
|
];
|