2FAuth/resources/lang/es/settings.php

94 lines
3.9 KiB
PHP
Raw Normal View History

<?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.
|
*/
2020-11-29 09:37:32 +01:00
'settings' => 'Configuración',
'account' => 'Cuenta',
'password' => 'Contraseña',
'options' => 'Opciones',
'confirm' => [
],
'general' => 'General',
2020-11-29 09:37:32 +01:00
'security' => 'Seguridad',
'data_input' => 'Datos de entrada',
'forms' => [
2020-11-29 09:37:32 +01:00
'edit_settings' => 'Modificar configuración',
'setting_saved' => 'Ajustes guardados',
'language' => [
2020-11-29 09:37:32 +01:00
'label' => 'Idioma',
'help' => 'Cambiar el idioma utilizado para traducir la interfaz de la aplicación.'
],
'show_token_as_dot' => [
2020-11-29 09:37:32 +01:00
'label' => 'Mostrar tokens generados como punto',
'help' => 'Sustituya los carácteres de token generados por *** para asegurar la confidencialidad. No afecta a la función de copiar/pegar.'
],
'close_token_on_copy' => [
2020-11-29 09:37:32 +01:00
'label' => 'Cerrar token después de la copia',
'help' => 'Cerrar automáticamente la ventana emergente mostrando el token generado después de que ha sido copiado'
],
'use_basic_qrcode_reader' => [
2020-11-29 09:37:32 +01:00
'label' => 'Usar lector de código QR básico',
'help' => 'Si experimenta problemas al capturar códigos QR habilita esta opción para cambiar a un lector de código QR más básico pero más fiable'
],
'display_mode' => [
2020-11-29 09:37:32 +01:00
'label' => 'Modo de visualización',
'help' => 'Elija si desea que las cuentas se muestren como una lista o como una cuadrícula'
],
2020-11-29 09:37:32 +01:00
'grid' => 'Cuadrícula',
'list' => 'Lista',
'show_accounts_icons' => [
2020-11-29 09:37:32 +01:00
'label' => 'Mostrar iconos',
'help' => 'Mostar iconos de aplicaciones en la vista principal'
],
'auto_lock' => [
2020-11-29 09:37:32 +01:00
'label' => 'Bloqueo automático',
'help' => 'Log out the user automatically in case of inactivity'
],
2020-11-23 00:53:03 +01:00
'use_encryption' => [
'label' => 'Protect sensible data',
'help' => 'Sensitive data, the 2FA secrets and emails, are stored encrypted in database. Be sure to backup the APP_KEY value of your .env file (or the whole file) as it serves as key encryption. There is no way to decypher encrypted data without this key.',
],
'default_group' => [
'label' => 'Default group',
'help' => 'The group to which the newly created accounts are associated',
],
'useDirectCapture' => [
'label' => 'Direct input',
'help' => 'Choose whether you want to be prompted to choose an input mode among those available or if you want to directly use the default input mode',
],
'defaultCaptureMode' => [
'label' => 'Default input mode',
'help' => 'Default input mode used when the Direct input option is On',
],
2020-11-24 23:29:50 +01:00
'remember_active_group' => [
'label' => 'Remember group filter',
'help' => 'Save the last group filter applied and restore it on your next visit',
],
'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',
2020-10-15 15:15:29 +02:00
'30_minutes' => 'After 30 minutes',
'1_hour' => 'After 1 hour',
'1_day' => 'After 1 day',
2020-11-23 00:53:03 +01:00
'livescan' => 'QR code livescan',
'upload' => 'QR code upload',
'advanced_form' => 'Advanced form',
],
];