Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Spanish translations... #30

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
88 changes: 88 additions & 0 deletions language/es/paul999/tfa/language/es/acp_tfa.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
<?php
/**
*
* 2FA extension for the phpBB Forum Software package.
*
* @copyright (c) 2015 Paul Sohier
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//

$lang = array_merge(
$lang, array(
'ACP_TFA_SETTINGS' => 'Ajustes de Autenticación de dos factores',

// As we are re-using the acp_board template, we can't add custom stuff to that page.
// As such, we do need to have some HTML here :(.
'ACP_TFA_SETTINGS_EXPLAIN' => 'Aquí puede establecer la configuración de dos factores.
La opción de configuración sugerida para el requisito es no requerir autenticación de dos factores,
o solo requerir para el inicio de sesión de PCA. <br /><br />
Existen algunos requisitos del navegador para la clave de seguridad U2F:
<ul>
<li>Google Chrome (Al menos versión 41)</li>
</ul>
No soportado:
<ul>
<li>Internet Explorer</li>
<li>Edge</li>
<li>Firefox</li>
<li>Safari</li>
</ul>
<p>Sin embargo, varios proveedores de navegadores prometieron que podría ser compatible con una versión más reciente.
Cuando un navegador no cumple con estos requisitos, el usuario no podrá seleccionar U2F.</p>

<h2>Recibir soporte</h2>
<p>El soporte solo se proporciona en www.phpbb.com, en la extensión <a href="https://www.phpbb.com/customise/db/extension/phpbb_two_factor_authentication/" target="_blank">CDB</a>. Asegúrese de leer las FAQ antes de hacer sus preguntas.</p>

<h2>¿Quiere apoyar el desarrollo de esta extensión?</h2>
<p>Esta extensión se desarrolla al completo en mi tiempo libre, sin embargo, puede ayudarme proporcionando una pequeña donación para que esta extensión se desarrolle.</p>
<ul>
<li>Conviértese en un patrocinador en GitHub: <a href="https://github.com/sponsors/paul999" target="_blank">https://github.com/sponsors/paul999</a></li>
<li>Haga una donación con PayPal: <a href="https://paypal.me/sohier" target="_blank">https://paypal.me/sohier</a></li>
<li>Haga una donación a través de Bunq: <a href="https://bunq.me/Paul999" target="_blank">https://bunq.me/Paul999</a></li>
</ul>
',
'TFA_REQUIRES_SSL' => 'Parece que está utilizando una conexión no segura. Esta extensión requiere una conexión SSL segura para que funcionen algunas claves de seguridad. Los usuarios no podrán elegir estas opciones a menos que habilite una conexión segura a su foro.',

'TFA_MODE' => 'Modo de Autenticación de dos factores',
'TFA_MODE_EXPLAIN' => 'Aquí puede seleccionar qué usuarios son necesarios (si los hay) para usar el modo de autenticación de dos factores. Si selecciona "Autenticación de dos factores deshabilitada", se desactivará la funcionalidad por completo.',
'TFA_DISABLED' => 'Autenticación de dos factores deshabilitada',
'TFA_NOT_REQUIRED' => 'No requiere autenticación de dos factores',
'TFA_REQUIRED_FOR_ACP_LOGIN' => 'Requiere autenticación de dos factores solo para el inicio de sesión de PCA',
'TFA_REQUIRED_FOR_ADMIN' => 'Requiere autenticación de dos factores para todos los Administradores',
'TFA_REQUIRED_FOR_MODERATOR' => 'Requerir autenticación de dos factores para todos los Moderadores y Administradores',
'TFA_REQUIRED' => 'Requiere autenticación de dos factores para todos los usuarios',

'TFA_ACP' => 'Requiere autenticación de dos factores para el Panel de Administración',
'TFA_ACP_EXPLAIN' => 'Cuando se establece en no, los Administradores no necesitan usar una clave de autenticación de dos factores al iniciar sesión para el PCA. Es posible que no se sugiera deshabilitar esto.'
)
);
101 changes: 101 additions & 0 deletions language/es/paul999/tfa/language/es/common.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,101 @@
<?php
/**
*
* 2FA extension for the phpBB Forum Software package.
*
* @copyright (c) 2015 Paul Sohier
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//

$lang = array_merge(
$lang, array(
'TFA_REQUIRED_KEY_MISSING' => 'El Administrador de este foro requiere que haya añadido una clave de autenticación de dos factores para acceder a partes (limitadas) de este foro, sin embargo, actualmente no tiene claves (compatibles) registradas en su cuenta. Puede añadir una nueva clave de seguridad %saquí%s.
<br />Por razones de seguridad, el foro se ha desactivado hasta que añada una clave de seguridad a su cuenta. ¡Es posible que deba ingresar su contraseña mientras añade una clave de seguridad!
<br />Tenga en cuenta que ahora también se cerrará la sesión.',

'TFA_REQUIRED_KEY_AVAILABLE_BUT_UNUSABLE' => 'El Administrador de este foro requiere que haya añadido claves de autenticación de dos factores para su cuenta a partes (limitadas) de este foro. Ha registrado claves de autenticación de dos factores, sin embargo, actualmente no son (compatibles) con su navegador, configuración actual, o no están disponibles de otra manera.
<br />Por razones de seguridad, no permitimos que los usuarios con claves ya registradas agreguen una nueva sin haber iniciado sesión por completo. Puede intentar iniciar sesión con un navegador que funcionó antes o, de lo contrario, contacte con el %sAdministrador del Foro%s para solicitar reinicios de sus claves de autenticación de dos factores.',
// Controller
'ERR_NO_MATCHING_REQUEST' => 'No se encontró ninguna solicitud coincidente',
'ERR_NO_MATCHING_REGISTRATION' => 'No se encontró ningún registro coincidente',
'ERR_AUTHENTICATION_FAILURE' => 'Error de autenticación',
'ERR_UNMATCHED_CHALLENGE' => 'El desafío de registro no coincide',
'ERR_ATTESTATION_SIGNATURE' => 'La firma de atestación no coincide',
'ERR_ATTESTATION_VERIFICATION' => 'El certificado de atestación no se puede validar',
'ERR_BAD_RANDOM' => 'No se puede obtener una buena fuente de aleatoriedad',
'ERR_COUNTER_TOO_LOW' => 'Contador demasiado bajo',
'ERR_PUBKEY_DECODE' => 'Falló la decodificación de la clave pública',
'ERR_BAD_UA_RETURNING' => 'El usuario-agente devolvió el error',
'ERR_OLD_OPENSSL' => 'OpenSSL tiene que ser al menos la versión 1.0.0, esto es %s',
'UNKNOWN_ERROR' => 'Ocurrió un error desconocido durante la validación de su clave de seguridad. Por favor, inténtelo de nuevo más tarde.',

'ERR_TFA_NO_REQUEST_FOUND_IN_SESSION' => 'No se encontró ninguna solicitud en la sesión actual. ¿Lo envió a través de una página diferente?',
'TFA_NOT_REGISTERED' => 'La clave de seguridad utilizada no se registró en su cuenta',

'FTA_NO_RESPONSE' => 'No se recibió respuesta',
'TFA_SELECT_KEY' => 'Seleccionar tipo de clave',
'TFA_NO_RESPONSE_RECEIVED' => 'No recibimos una respuesta de su clave de seguridad U2F. ¿Pulsó el botón?',
'TFA_NOT_SUPPORTED' => 'Navegador no compatible',
'TFA_BROWSER_SEEMS_NOT_SUPPORTED' => 'Lo sentimos, actualmente solo se admite Google Chrome.',
'TFA_INSERT_KEY' => 'Introducir su clave de seguridad',
'TFA_INSERT_KEY_EXPLAIN' => 'Introduzca su clave de seguridad en su ordenador y haga clic en “Insertar clave”.',
'TFA_START_AUTH' => 'Insertar clave',
'TFA_NO_ACCESS' => '¿Parece que no tiene acceso a esta página?',
'TFA_UNABLE_TO_UPDATE_SESSION' => 'No se pudo actualizar la sesión. Por favor, contacte con el Administrador del foro',
'TFA_DISABLED' => 'La autenticación de dos factores ha sido deshabilitada',

'TFA_OTP_KEY_LOG' => 'Clave OTP',
'TFA_OTP_KEY_LOG_EXPLAIN' => 'Abra la aplicación de autenticación y tome la clave que se muestra actualmente en el campo de texto a continuación',
'TFA_INCORRECT_KEY' => 'La clave proporcionada era incorrecta.',
'TFA_NO_KEY_PROVIDED' => 'No se proporcionó clave',
'TFA_KEY_REQUIRED' => 'Proporcione su clave de seguridad',

'TFA_BACKUP_KEY' => 'Claves de respaldo',
'TFA_OTP' => 'OTP',
'TFA_U2F' => 'U2F',

'TFA_CP_TXT' => 'phpBB Two Factor Authentication',
'TFA_CP_NAME' => 'paul999',

'TFA_BACKUP_KEY_LOG' => 'Clave de respaldo',
'TFA_BACKUP_KEY_LOG_EXPLAIN' => 'Proporcione una clave de respaldo, que no se haya utilizado antes.',

'TFA_DOUBLE_PRIORITY' => 'La prioridad elegida (%d) para el módulo %s ya está en uso para el módulo %s',

'TFA_SOMETHING_WENT_WRONG' => 'Algo salió mal durante la solicitud. Por favor, inténtelo de nuevo más tarde',

// Module names
'MODULE_U2F' => 'U2F',

)
);
49 changes: 49 additions & 0 deletions language/es/paul999/tfa/language/es/info_acp_tfa.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
<?php
/**
*
* 2FA extension for the phpBB Forum Software package.
*
* @copyright (c) 2015 Paul Sohier
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//

$lang = array_merge(
$lang, array(
'ACP_TFA' => 'Autenticación de dos factores',
'ACP_TFA_MANAGE' => 'Autenticación de dos factores',

'LOG_TFA_CONFIG_MANAGE' => '<strong>Ajustes de Autenticación de dos factores actualizados</strong>',
'LOG_TFA_EXCEPTION' => '<strong>Ocurrió un error cuando un usuario intentó usar su clave de Autenticación de dos factores</strong><br />» %s',

)
);
46 changes: 46 additions & 0 deletions language/es/paul999/tfa/language/es/info_ucp_tfa.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
<?php
/**
*
* 2FA extension for the phpBB Forum Software package.
*
* @copyright (c) 2015 Paul Sohier
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//

$lang = array_merge(
$lang, array(
'UCP_TFA' => 'Autenticación de dos factores',
'UCP_TFA_MANAGE' => 'Autenticación de dos factores',

)
);
45 changes: 45 additions & 0 deletions language/es/paul999/tfa/language/es/permissions_tfa.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php
/**
*
* 2FA extension for the phpBB Forum Software package.
*
* @copyright (c) 2015 Paul Sohier
* @license GNU General Public License, version 2 (GPL-2.0)
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste:
// ’ » “ ” …
//

$lang = array_merge(
$lang, array(
'ACL_A_TFA' => 'Puede gestionar la autenticación de dos factores',

)
);
Loading