mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-30 04:03:18 +01:00
23 lines
761 B
PHP
23 lines
761 B
PHP
|
<?php
|
||
|
|
||
|
return [
|
||
|
|
||
|
/*
|
||
|
|--------------------------------------------------------------------------
|
||
|
| Notifications 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.
|
||
|
|
|
||
|
*/
|
||
|
|
||
|
'hello' => 'Hello',
|
||
|
'test_email_settings' => [
|
||
|
'subject' => '2FAuth test email',
|
||
|
'reason' => 'You are receiving this email because you requested a test email to validate the email settings of your 2FAuth instance.',
|
||
|
'success' => 'Good news, it works :)'
|
||
|
],
|
||
|
|
||
|
];
|