Code: Select all
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3526: Cannot modify header information - headers already sent by (output started at /language/en/acp/common.php:1)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3528: Cannot modify header information - headers already sent by (output started at /language/en/acp/common.php:1)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3529: Cannot modify header information - headers already sent by (output started at /language/en/acp/common.php:1)
[phpBB Debug] PHP Notice: in file /includes/functions.php on line 3530: Cannot modify header information - headers already sent by (output started at /language/en/acp/common.php:1)
Code: Select all
[phpBB Debug] PHP Notice: in file /includes/session.php on line 916: Cannot modify header information - headers already sent by (output started at /language/en/acp/common.php:1)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 916: Cannot modify header information - headers already sent by (output started at /language/en/acp/common.php:1)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 916: Cannot modify header information - headers already sent by (output started at /language/en/acp/common.php:1)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 916: Cannot modify header information - headers already sent by (output started at /language/en/acp/common.php:1)
[phpBB Debug] PHP Notice: in file /includes/session.php on line 916: Cannot modify header information - headers already sent by (output started at /language/en/acp/common.php:1)
Warning: Cannot modify header information - headers already sent by (output started at */language/en/acp/common.php:1) in *includes/functions.php on line 3526
Warning: Cannot modify header information - headers already sent by (output started at *language/en/acp/common.php:1) in *includes/functions.php on line 3528
Warning: Cannot modify header information - headers already sent by (output started at */language/en/acp/common.php:1) in */includes/functions.php on line 3529
Warning: Cannot modify header information - headers already sent by (output started at */language/en/acp/common.php:1) in *includes/functions.php on line 3530
language/es/acp/board.php
Find:Replace with:Code: Select all
// 'ACC_USER_ADMIN' => 'Usuario + Admin',
language/es/acp/common.phpCode: Select all
'ACC_USER_ADMIN' => 'Usuario + Admin',
Find:Add after:Code: Select all
'ACP_USER_SIG' => 'Firma',
language/es/acp/users.phpCode: Select all
'ACP_USER_VERIFY' => 'Verificar',
Find:Add before:Code: Select all
));
language/es/email/admin_activate.txtCode: Select all
'VERIFY' => 'Verificar', 'USER_VERIFY' => 'Verificar nuevo usuario', 'USER_VERIFY_EXPLAIN' => 'Borrar o activar nuevo usuario o banear usuario u otros valores.', 'USER_DELETE' => 'Click aqui para borrar usuario.', 'USER_IS_ACTIVE' => 'Usuario está activo', 'USER_ACTIVATE' => 'Activar este usuario', 'USER_ACTIVATE_EXPLAIN' => 'Click aquí para activar este usuario.', 'PROFILE_INFO' => 'Detalles de perfil', 'ADD_DISALLOW_VERIFY' => 'Prohibir este nombre de usuario', 'ADD_DISALLOW_VERIFY_EXPLAIN' => 'Click aquí para prohibir este nombre de usuario.', 'BAN_USERNAME_VERIFY' => 'Banear este usuario(nombre)', 'BAN_USERNAME_VERIFY_EXPLAIN' => 'Click aquí para banear este usuario(nombre).', 'BAN_EMAIL_VERIFY' => 'Banear esta cuenta de correo', 'BAN_EMAIL_VERIFY_EXPLAIN' => 'Click aquí para banear esta cuenta de correo.', 'BAN_DOMAIN_VERIFY' => 'Banear este dominio de correo', 'BAN_DOMAIN_VERIFY_EXPLAIN' => 'Click aquí para banear este dominio de correo. Por favor tenga cuidado con esta opción!', 'BAN_IP_VERIFY' => 'Banear esta dirección IP', 'BAN_IP_VERIFY_EXPLAIN' => 'Click aquí para banear esta dirección IP. Por favor tenga cuidado con esta opción!', 'TIMEZONE_VERIFY' => 'Tiempo local', 'TIMEZONE_VERIFY_EXPLAIN' => 'La mayoría de las cuentas SPAM usan tiempo local [UTC - 12].', 'USER_BAN_REASON_VERIFY' => 'Baneado al verificar la cuenta de usuario',
Find:Add before:Code: Select all
La cuenta de "{USERNAME}" ha sido desactivada o creada nuevamente, debería verificar los detalles de este usuario (si se requiere) y proceder según sea apropiado.
language/es/memberlist.phpCode: Select all
Use este enlace para ver el perfil del usuario y activar la cuenta: {U_VERIFY}
Find:Add after:Code: Select all
'USER_PRESENCE' => 'Presente en el foro',
language/es/ucp.phpCode: Select all
'USER_VERIFY' => 'Usuario verificado',
Find:Add after:Code: Select all
'ACCOUNT_INACTIVE_ADMIN' => 'Su cuenta ha sido creada. Sin embargo, este foro requiere activación de cuenta por el administrador. Un email le ha sido enviado y se le informará cuando haya sido activada su cuenta',
Find:Code: Select all
'ACCOUNT_INACTIVE_USER_ADMIN' => 'Su correo ha sido verificado. Ahora la cuenta necesita ser activada por un administrador. Otro correo de activación ha sido enviado a las direcciones de correo de los administradores.',
Add After:Code: Select all
'LINK_REMOTE_SIZE_EXPLAIN' => 'Especifique el ancho y alto del avatar, déjelo en blanco para intentar una verificación automática.',
Find:Code: Select all
'LOGIN_ACTIVATE' => 'Por favor logueese si quiere activar su cuenta de usuario.',
Add after:Code: Select all
'WRONG_ACTIVATION' => 'La contraseña de activación proporcionada no coincide con ninguna en la base de datos',
Code: Select all
'WRONG_USER' => 'Su cuenta tiene que ser activada de forma manual por un administrador. Los administradores son informados sobre esto automáticamente.',
Code: Select all
/**
* Select account activation method
*/
function select_acc_activation($value, $key = '')
{
global $user, $config;
$radio_ary = array(USER_ACTIVATION_DISABLE => 'ACC_DISABLE', USER_ACTIVATION_NONE => 'ACC_NONE');
if ($config['email_enable'])
{
$radio_ary += array(USER_ACTIVATION_SELF => 'ACC_USER', USER_ACTIVATION_ADMIN => 'ACC_ADMIN', USER_ACTIVATION_USER_ADMIN => 'ACC_USER_ADMIN');
}
return h_radio('config[require_activation]', $radio_ary, $value, $key);
}
Code: Select all
/**
* Select account activation method
*/
function select_acc_activation($value, $key = '')
{
global $user, $config;
$radio_ary = array(USER_ACTIVATION_DISABLE => 'ACC_DISABLE', USER_ACTIVATION_NONE => 'ACC_NONE', USER_ACTIVATION_USER_ADMIN => 'ACC_USER_ADMIN');
if ($config['email_enable'])
{
$radio_ary += array(USER_ACTIVATION_SELF => 'ACC_USER', USER_ACTIVATION_ADMIN => 'ACC_ADMIN');
}
return h_radio('config[require_activation]', $radio_ary, $value, $key);
}