mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-24 01:03:35 +01:00
23 lines
703 B
PHP
23 lines
703 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.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'resource_not_found' => 'Resource not found, please ',
|
||
|
'error_occured' => 'An error occured, please ',
|
||
|
'refresh' => 'refresh',
|
||
|
'response' => [
|
||
|
'no_valid_totp' => 'No valid TOTP resource in this QR code',
|
||
|
]
|
||
|
|
||
|
];
|