Code: Select all
<?php
/**
*
* External Links [Spanish]
*
* @package info_acp_exlinks.php
* @copyright (c) 2014 Anvar http://bb3.mobi
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
exit;
}
if (empty($lang) || !is_array($lang))
{
$lang = array();
}
$lang = array_merge($lang, array(
'ACP_MODED_LINKS_TITLE' => 'Enlaces Externos',
'ACP_MODED_LINKS' => 'Gestionar enlaces',
'ACP_MODED_LINKS_EXPLAIN' => 'Anvar (c) <a href="http://bb3.mobi">BB3.Mobi</a>',
'ACP_MODED_LINKS_DESCRIPTION' => 'Aquí puede personalizar la visualización de todos los enlaces externos publicados en el foro.',
'ACP_MODED_LINKS_SETTINGS' => 'Ajustes básicos de enlaces',
'ACP_TARGET_ATTRIBUTE' => '¿Usar el atributo «target»?',
'ACP_TARGET_ATTRIBUTE_EXPLAIN' => 'Si está desactivada, se utilizará OnClick JavaScript.',
'ACP_HIDE_LINKS_GUESTS' => '¿Ocultar enlaces externos a invitados?',
'ACP_HIDE_LINKS_GUESTS_EXPLAIN' => 'Introduzca el texto, y nombres de los enlaces que desea reemplazados.',
'ACP_EXTERNAL_LINK_PREFIX' => 'Prefijo antes del enlace',
'ACP_INTERNAL_LINK_DOMAINS' => 'Lista de los dominios que no están cubiertos por el mantenimiento anteriormente, utilizando ";" (punto y coma para separar)',
'ACP_FORBIDDEN_DOMAINS' => 'Lista de los dominios que no se muestran enlaces, utilizando ";" (punto y coma para separar)',
'ACP_FORBIDDEN_DOMAINS_TEXT' => 'Texto en lugar de URL bloqueada',
'ACP_FORBIDDEN_NEW_URL' => 'URL en lugar de los enlaces remotos',
'ACP_MODED_LINKS_ATTRIBUTES' => 'Atributos de enlaces',
'ACP_INTERNAL_LINK_REL' => 'El atributo rel de enlaces internos',
'ACP_EXTERNAL_LINK_REL' => 'El atributo rel de enlaces externos',
'ACP_INTERNAL_LINK_TARGET' => 'Tipo de target para enlaces internos',
'ACP_EXTERNAL_LINK_TARGET' => 'Tipo de target para enlaces externos',
'ACP_INTERNAL_LINK_CLASS' => 'Clase de los enlaces internos',
'ACP_EXTERNAL_LINK_CLASS' => 'Clase de los enlaces externos',
'ACP_EXTERNAL_LINK_NOINDEX' => '¿Cerrar noindex en enlaces externos?',
'MESSAGE_TEXT' => '<strong>Usted va a un enlace externo: <span class="error">%s</span></strong><p>Asegúrese de que el enlace es de plena confianza y protegido de influencias nocivas.<br />Si el enlace muestra algo sospechoso, informe respetuosamente a la Administración.</p>',
'URL_LINK' => '%sIr al enlace%s',
));
Yes you can.thoomas wrote:tnx for the mod. But is it possible to disable "Showing page with a warning before proceeding"?
thanks!janus_zonstraal wrote:Yes you can.thoomas wrote:tnx for the mod. But is it possible to disable "Showing page with a warning before proceeding"?
Leaf "Prefix before the link:" blank
Thanks. Do you mean that signatures are no longer affected?[email protected] wrote:Volksdevil, Updated archive.
Separate signature will not work.
'MESSAGE_TEXT'
?'MESSAGE_TEXT' => '<strong>You have chosen to visit an external link at: <span class="error">%s</span></strong><p>Are you sure you wish to proceed?<br />If the link is suspicious, please let the Admin or Moderator team know.</p>',
language/en/info_acp_exlinks.php
at the bottom I added:'CLOSE_PAGE' => '%sClose this page%s',
controller/url.php
I changed this:$message .= sprintf($this->user->lang['RETURN_INDEX'], ' <a href="' . generate_board_url() . '" class="button">', '</a> ');
// return to index button $message .= sprintf($this->user->lang['RETURN_INDEX'], ' <a href="' . generate_board_url() . '" class="button">', '</a> ');
// close window button
$message .= sprintf($this->user->lang['CLOSE_PAGE'], ' <a class="button" onclick="self.close()">', '</a> ');