mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-23 16:53:26 +01:00
72 lines
2.5 KiB
PHP
72 lines
2.5 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' => [
|
|
|
|
],
|
|
'general' => 'General',
|
|
'security' => 'Security',
|
|
'advanced' => 'Advanced',
|
|
'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.'
|
|
],
|
|
'close_token_on_copy' => [
|
|
'label' => 'Close token after copy',
|
|
'help' => 'Automatically close the popup showing the generated token after it has been copied'
|
|
],
|
|
'use_basic_qrcode_reader' => [
|
|
'label' => 'Use basic qrcode reader',
|
|
'help' => 'If you experiences issues when capturing qrCodes enables this option to switch to a more basic but more reliable qrcode reader'
|
|
],
|
|
'display_mode' => [
|
|
'label' => 'Display mode',
|
|
'help' => 'Choose whether you want accounts to be displayed as a list or as a grid'
|
|
],
|
|
'grid' => 'Grid',
|
|
'list' => 'List',
|
|
'show_accounts_icons' => [
|
|
'label' => 'Show icons',
|
|
'help' => 'Show icons accounts in the main view'
|
|
],
|
|
'auto_lock' => [
|
|
'label' => 'Auto lock',
|
|
'help' => 'Log out the user automatically in case of inactivity'
|
|
],
|
|
'never' => 'Never',
|
|
'on_token_copy' => 'On security code copy',
|
|
'1_minutes' => 'After 1 minute',
|
|
'5_minutes' => 'After 5 minutes',
|
|
'10_minutes' => 'After 10 minutes',
|
|
'15_minutes' => 'After 15 minutes',
|
|
'30_minutes' => 'After 30 minutes',
|
|
'1_hour' => 'After 1 hour',
|
|
'1_day' => 'After 1 day',
|
|
],
|
|
|
|
|
|
];
|