2020-02-12 23:24:35 +01:00
|
|
|
<?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',
|
2020-03-09 20:24:25 +01:00
|
|
|
'options' => 'Options',
|
2020-02-12 23:24:35 +01:00
|
|
|
'confirm' => [
|
|
|
|
|
|
|
|
],
|
|
|
|
'forms' => [
|
|
|
|
'edit_settings' => 'Edit settings',
|
2020-02-27 12:18:46 +01:00
|
|
|
'setting_saved' => 'Settings saved',
|
2020-02-27 16:58:04 +01:00
|
|
|
'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.'
|
|
|
|
],
|
2020-03-23 21:41:59 +01:00
|
|
|
'close_token_on_copy' => [
|
|
|
|
'label' => 'Close token after copy',
|
|
|
|
'help' => 'Automatically close the popup showing the generated token after it has been copied'
|
|
|
|
],
|
2020-04-02 10:43:05 +02:00
|
|
|
'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'
|
|
|
|
],
|
2020-05-02 17:55:41 +02:00
|
|
|
'display_mode' => [
|
|
|
|
'label' => 'Desktop display mode',
|
|
|
|
'help' => 'Choose whether you want accounts to be displayed as a list or as a grid on desktop'
|
|
|
|
],
|
|
|
|
'grid' => 'Grid',
|
|
|
|
'list' => 'List',
|
2020-02-12 23:24:35 +01:00
|
|
|
],
|
|
|
|
|
|
|
|
|
|
|
|
];
|