mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-28 03:05:15 +01:00
42 lines
1.4 KiB
PHP
42 lines
1.4 KiB
PHP
<?php
|
|
|
|
return [
|
|
|
|
/*
|
|
|--------------------------------------------------------------------------
|
|
| Settings 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.
|
|
|
|
|
*/
|
|
|
|
'settings' => 'Settings',
|
|
'account' => 'Account',
|
|
'password' => 'Password',
|
|
'options' => 'Options',
|
|
'confirm' => [
|
|
|
|
],
|
|
'forms' => [
|
|
'edit_settings' => 'Edit settings',
|
|
'setting_saved' => 'Settings saved',
|
|
'language' => [
|
|
'label' => 'Language',
|
|
'help' => 'Change the language used to translate the app interface.'
|
|
],
|
|
'show_token_as_dot' => [
|
|
'label' => 'Show generated tokens as dot',
|
|
'help' => 'Replace generated token caracters with *** to ensure confidentiality. Do not affect the copy/paste feature.'
|
|
],
|
|
'is_demo_app' => [
|
|
'label' => 'Set the app as a demo',
|
|
'help' => 'If set to Yes, the app content (including the registered user) will be reset every hours. Use the \'demo\' user and \'demo\' password to connect to the app in demo mode.'
|
|
],
|
|
],
|
|
|
|
|
|
];
|