Adding Spanish translation - thanks to bio!

This commit is contained in:
Kevin
2008-02-29 21:35:50 +00:00
parent 93027850c0
commit 0a8140d449
7 changed files with 674 additions and 0 deletions

81
languages/es.xml Normal file
View File

@@ -0,0 +1,81 @@
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<?xml-stylesheet type="text/xsl" href="../modx.prosilver.en.xsl"?>
<!--For security purposes, please check: http://www.phpbb.com/mods/ for the latest version of this MOD. Although MODs are checked before being allowed in the MODs Database there is no guarantee that there are no security problems within the MOD. No support will be given for MODs not found within the MODs Database which can be found at http://www.phpbb.com/mods/-->
<mod xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://www.phpbb.com/mods/xml/modx-1.0.xsd">
<header>
<license>http://opensource.org/licenses/gpl-license.php GNU General Public License v2</license>
<title lang="en-gb">board3 Portal - based on phpBB3 Portal</title>
<title lang="de">board3 Portal - basierend auf phpBB3 Portal</title>
<description lang="en-gb">Adds a portal to your forum.
It has several boxes wich can be turned on an off in the ACP and certain settings.
Included language files:
» English (en)
» German (de)
» Dutch (nl)
» Norwegian (nb)
» Spanish (es)
This portal is based on the phpBB3 Portal a.k.a canverPortal ( www.phpbb3portal.com )
</description>
<description lang="de">Fügt ein Portal deinem Forum hinzu.
Es hat diverse Boxen, die über das ACP an- / abgeschaltet und eingestellt werden können.
Dieses Portal basiert auf dem phpBB3 Portal a.k.a canverPortal ( www.phpbb3portal.com )
</description>
<author-notes lang="en-gb">i hope you get everything working. Further developement, new boxes for the portal or questions are welcome at www.board3.de</author-notes>
<author-notes lang="de">Ich hoffe ihr habt Spaß am Portal. Neuen Code, bzw neue Boxen und Fragen könnt ihr auf www.board3.de posten.</author-notes>
<author-group>
<author>
<realname>Ice</realname>
<email></email>
<username>avaren</username>
<homepage>http://www.board3.de</homepage>
<contributions />
</author>
<author>
<realname>Kevin</realname>
<email>nospam@breest.net</email>
<username>saint_hh</username>
<homepage>http://www.board3.de</homepage>
<contributions />
</author>
<author>
<realname>(N/A)</realname>
<email>nickvergessen@gmx.de</email>
<username>nickvergessen</username>
<homepage>http://mods.flying-bits.org/</homepage>
<contributions />
</author>
<author>
<realname>Walter</realname>
<email>w.bobeth@digitalfotografie-foren.de</email>
<username>Redbull254</username>
<homepage>http://www.digitalfotografie-foren.de</homepage>
<contributions />
</author>
</author-group>
<mod-version>
<major>0</major>
<minor>2</minor>
<revision>1</revision>
</mod-version>
<installation>
<level>easy</level>
<time>60</time>
<target-version>
<target-primary>3.0.0</target-primary>
<target-major allow="exact">3</target-major>
<target-minor allow="exact">0</target-minor>
</target-version>
</installation>
<meta name="generator" content="Phpbb.ModTeam.Tools (c#)" />
</header>
<action-group>
<copy>
<file from="languages/es/mods/*.*" to="language/es/mods/*.*" />
</copy>
<diy-instructions lang="en-gb">See general install.xml file</diy-instructions>
<diy-instructions lang="de">Siehe install.xml</diy-instructions>
</action-group>
</mod>

View File

View File

@@ -0,0 +1,57 @@
<?php
/**
*
* mods_info_acp_portal.php [Spanish]
*
* @package language
* @version $Id$
* @copyright (c) 2008 phpBB Group
* @author 2008-02-28 - HuanManwe
* @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();
}
// 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
$lang = array_merge($lang, array(
'ACP_PORTAL_INFO' => 'Portal',
'ACP_PORTAL_GENERAL_INFO' => 'Configuración general',
'ACP_PORTAL_ANNOUNCE_INFO' => 'Anuncio global',
'ACP_PORTAL_NEWS_INFO' => 'Noticias',
'ACP_PORTAL_RECENT_INFO' => 'Temas recientes',
'ACP_PORTAL_WORDGRAPH_INFO' => 'Wordgraph',
'ACP_PORTAL_PAYPAL_INFO' => 'Donaciones Paypal',
'ACP_PORTAL_ATTACHMENTS_NUMBER_INFO' => 'Adjuntos',
'ACP_PORTAL_MEMBERS_INFO' => 'Últimos miembros',
'ACP_PORTAL_POLLS_INFO' => 'Encuesta',
'ACP_PORTAL_BOTS_INFO' => 'Última visita bots',
'ACP_PORTAL_MOST_POSTER_INFO' => 'Mas escriben',
'ACP_PORTAL_WELCOME_INFO' => 'Mensaje de bienvenida',
'ACP_PORTAL_ADS_INFO' => 'Publicidad',
'ACP_PORTAL_MINICALENDAR_INFO' => 'Mini calendario',
));
?>

View File

@@ -0,0 +1,200 @@
<?php
/**
*
* mods_lang_portal.php [Spanish]
*
* @package language
* @version $Id$
* @copyright (c) 2008 phpBB Group
* @author 2008-02-29 - HuanManwe
* @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();
}
// 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
$lang = array_merge($lang, array(
'PORTAL' => 'Portal',
'WELCOME' => 'Bienvenido',
'PORTAL_ERROR' => 'Portal Error',
'PORTAL_DELETE_DIR' => 'Por favor, elimine el directorio de instalación del portal: %s',
'PORTAL_UPDATE' => 'Actualización del Portal',
'PORTAL_UPDATE_TEXT' => 'Hay una actualización para el portal a la espera de ser instalado! Instale <a href="%1$s">%2$s</a>!',
'LATEST_ANNOUNCEMENTS' => 'Últimos anuncios globales',
'GLOBAL_ANNOUNCEMENT' => 'Anuncio global',
'LATEST_NEWS' => 'Últimas noticias',
'READ_FULL' => 'Leer todo',
'NO_NEWS' => 'No hay noticias',
'NO_ANNOUNCEMENTS' => 'No hay anuncios globales ',
'POSTED_BY' => 'Escrito por',
'COMMENTS' => 'Comentarios',
'VIEW_COMMENTS' => 'Ver comentarios',
'POST_REPLY' => 'Escribir comentarios',
'TOPIC_VIEWS' => 'Vistas',
'JUMP_NEWEST' => 'Ir a mensaje reciente',
'JUMP_FIRST' => 'Ir al primer mensaje',
'JUMP_TO_POST' => 'Ir al mensaje',
'BACK' => 'Regresar',
'WIO_TOTAL' => 'Total',
'WIO_REGISTERED' => 'Registrado',
'WIO_HIDDEN' => 'Oculto',
'WIO_GUEST' => 'Invitado',
'BIRTHDAYS_AHEAD' => 'En los siguientes %s días',
'NO_BIRTHDAYS_AHEAD' => 'En este período, no hay miembros con cumpleaños.',
'USER_MENU' => 'Menú del Usuario',
'UM_LOG_ME_IN' => 'Recuerdame',
'UM_HIDE_ME' => 'Ocultame',
'UM_MAIN_SUBSCRIBED' => 'Suscripciones',
'UM_BOOKMARKS' => 'Marcadores',
'ST_TOP' => 'Total',
'ST_TOP_ANNS' => 'Total anuncios',
'ST_TOP_STICKYS' => 'Total fijos',
'ST_TOT_ATTACH' => 'Total adjuntos',
'SH' => 'ir',
'SH_SITE' => 'foro',
'SH_POSTS' => 'mensajes',
'SH_AUTHOR' => 'Autor',
'SH_ENGINE' => 'Motores de búsqueda',
'SH_ADV' => 'Búsqueda avanzada',
'RECENT_NEWS' => 'Recientes',
'RECENT_TOPIC' => 'Mensajes recientes',
'RECENT_ANN' => 'Anuncios recientes',
'RECENT_HOT_TOPIC' => 'Recientes temas popular',
'RND_MEMBER' => 'Usuario aleatorio',
'RND_JOIN' => 'Unirse',
'RND_POSTS' => 'Mensajes',
'RND_OCC' => 'Ocupación',
'RND_FROM' => 'Lugar',
'RND_WWW' => 'Web page',
'TOP_POSTER' => 'Mas escriben',
'DOWNLOADS' => 'Descargas',
'LINKS' => 'Enlaces',
'LATEST_MEMBERS' => 'Últimos miembros',
'DONATION' => 'Haz una donación',
'DONATION_TEXT' => 'Es una formación que prestan servicios sin la intención de los eventuales ingresos. Todo aquel que quiera apoyar a esta formación pueden hacerlo donando a fin de que el costo del servidor, el dominio y se puede pagar, etc.',
'PAY_MSG' => 'Después de seleccionar la cantidad que desea donar en el menú, puede ir haciendo clic en la imagen de PayPal.',
'PAY_ITEM' => 'Haz una donación',
'M_MENU' => 'Menu',
'M_CONTENT' => 'Contenido',
'M_ACP' => 'ACP',
'M_HELP' => 'Ayuda',
'M_BBCODE' => 'BBCode FAQ',
'M_TERMS' => 'Terminos de uso',
'M_PRV' => 'Política de privacidad',
'M_SEARCH' => 'Buscar',
'LINK_US' => 'Enlacese a nosotros',
'LINK_US_TXT' => 'Por favor, siéntase libre para vincular a <strong>%s</strong>. Utilice el siguiente HTML:',
'FRIENDS' => 'Amigos',
'FRIENDS_OFFLINE' => 'Offline',
'FRIENDS_ONLINE' => 'Online',
'NO_FRIENDS' => 'No hay amigos definidos en la actualidad',
'NO_FRIENDS_OFFLINE' => 'No hay amigos offline',
'NO_FRIENDS_ONLINE' => 'No hay amigos online',
'LAST_VISITED_BOTS' => 'Última %s visita de bots',
'WORDGRAPH' => 'Wordgraph',
'BOARD_STYLE' => 'Estilo del foro',
'STYLE_CHOOSE' => 'Selecciona un estilo',
'NO_ADMINISTRATORS_P' => 'No hay administradores',
'NO_MODERATORS_P' => 'No hay moderadores',
'TOPICS_PER_DAY_OTHER' => 'Temas por día: <strong>%d</strong>',
'TOPICS_PER_DAY_ZERO' => 'Temas por día: <strong>0</strong>',
'POSTS_PER_DAY_OTHER' => 'Mensajes por día: <strong>%d</strong>',
'POSTS_PER_DAY_ZERO' => 'Mensajes por día: <strong>0</strong>',
'USERS_PER_DAY_OTHER' => 'Usuarios por día: <strong>%d</strong>',
'USERS_PER_DAY_ZERO' => 'Usuarios por día: <strong>0</strong>',
'TOPICS_PER_USER_OTHER' => 'Temas por usuario: <strong>%d</strong>',
'TOPICS_PER_USER_ZERO' => 'Temas por usuario: <strong>0</strong>',
'POSTS_PER_USER_OTHER' => 'Mensajes por usuario: <strong>%d</strong>',
'POSTS_PER_USER_ZERO' => 'Mensajes por usuario: <strong>0</strong>',
'POSTS_PER_TOPIC_OTHER' => 'Mensajes por temas: <strong>%d</strong>',
'POSTS_PER_TOPIC_ZERO' => 'Mensajes por temas: <strong>0</strong>',
'POLL' => 'Encuesta',
'LATEST_POLLS' => 'Últimas encuestas',
'NO_OPTIONS' => 'Esta encuesta no tiene opciones disponibles.',
'NO_POLL' => 'No hay encuestas disponibles.',
'RETURN_PORTAL' => '%sRegresar al portall%s',
'CLOCK' => 'Reloj',
'SPONSOR' => 'Patrocinadores',
'PORTAL_COPY' => '<a href="http://www.board3.de" title="board3.de">board3 Portal</a> - based on <a href="http://www.phpbb3portal.com" title="phpBB3 Portal">phpBB3 Portal</a>',
'Mini_Cal_calendar' => 'Calendario',
'Mini_Cal_add_event' => 'Agregar evento',
'Mini_Cal_events' => 'Próximos eventos',
'Mini_Cal_no_events' => 'Ninguno',
'Mini_cal_this_event' => 'Este mes de vacaciones eventos',
'View_next_month' => 'Mes siguiente',
'View_previous_month' => 'Mes anterior',
'Mini_Cal_date_format' => '%b %e',
'Mini_Cal_date_format_Time' => '%H:%i',
'mini_cal' => array(
'day' => array(
'1' => 'Lu',
'2' => 'Ma',
'3' => 'Mi',
'4' => 'Ju',
'5' => 'Vi',
'6' => 'Sa',
'7' => 'Do',
),
'month' => array(
'1' => 'Ene',
'2' => 'Feb',
'3' => 'Mar',
'4' => 'Abr',
'5' => 'May',
'6' => 'Jun',
'7' => 'Jul',
'8' => 'Ago',
'9' => 'Sep',
'10' => 'Oct',
'11' => 'Nov',
'12' => 'Dic',
),
'long_month' => array(
'1' => 'Enero',
'2' => 'Febrero',
'3' => 'Marzo',
'4' => 'Abril',
'5' => 'Mayo',
'6' => 'Junio',
'7' => 'Julio',
'8' => 'Agosto',
'9' => 'Septiembre',
'10' => 'Octubre',
'11' => 'Noviembre',
'12' => 'Diciembre',
),
),
));
?>

View File

@@ -0,0 +1,206 @@
<?php
/**
*
* mods_lang_portal_acp.php [Spanish]
*
* @package language
* @version $Id$
* @copyright (c) 2008 phpBB Group
* @author 2008-02-29 - HuanManwe
* @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();
}
// 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
$lang = array_merge($lang, array(
'ACP_PORTAL_INFO_SETTINGS' => 'Configuración general',
'ACP_PORTAL_INFO_SETTINGS_EXPLAIN' => 'Gracias por elegir board3 Portal. En esta página usted puede administrar el portal de su foro. Las pantallas de aquí le dará un panorama general de todos los distintos ajustes del portal. Los enlaces en la parte izquierda de esta pantalla le permiten controlar cada aspecto de su experiencia con el portal.',
'ACP_PORTAL_SETTINGS' => 'Configuración del Portal',
'ACP_PORTAL_SETTINGS_EXPLAIN' => 'Gracias por elegir board3 Portal. En esta página usted puede administrar el portal de su foro. Las pantallas de aquí le dará un panorama general de todos los distintos ajustes del portal. Los enlaces en la parte izquierda de esta pantalla le permiten controlar cada aspecto de su experiencia con el portal.',
'ACP_PORTAL_GENERAL_INFO' => 'Administración del Portal',
'ACP_PORTAL_GENERAL_INFO_EXPLAIN' => 'Gracias por elegir board3 Portal. En esta página usted puede administrar el portal de su foro. Las pantallas de aquí le dará un panorama general de todos los distintos ajustes del portal. Los enlaces en la parte izquierda de esta pantalla le permiten controlar cada aspecto de su experiencia con el portal.',
'ACP_PORTAL_GENERAL_SETTINGS' => 'Configuración general',
'ACP_PORTAL_GENERAL_SETTINGS_EXPLAIN' => 'Aquí tu puedes cambiar la configuración general y ciertas opciones especificas.',
'PORTAL_ADVANCED_STAT' => 'Bloque de estadísticas avanzadas.',
'PORTAL_ADVANCED_STAT_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_LEADERS' => 'Bloque de Lideres / equipo',
'PORTAL_LEADERS_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_CLOCK' => 'Bloque del reloj',
'PORTAL_CLOCK_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_LINK_US' => 'Bloque de enlácese con nosotros',
'PORTAL_LINK_US_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_LINKS' => 'Bloque de enlaces',
'PORTAL_LINKS_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_BIRTHDAYS' => 'Bloque de cumpleaños',
'PORTAL_BIRTHDAYS_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_BIRTHDAYS_AHEAD' => 'Cumpleaños próximos días',
'PORTAL_BIRTHDAYS_AHEAD_EXPLAIN' => '¿Cuántos días para mostrar los cumpleaños por delante?',
'PORTAL_SEARCH' => 'Bloque de búsqueda',
'PORTAL_SEARCH_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_WELCOME' => 'Bloque de Centro de Bienvenida',
'PORTAL_WELCOME_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_WHOIS_ONLINE' => '¿Quién está conectado?',
'PORTAL_WHOIS_ONLINE_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_CHANGE_STYLE' => 'Cambiar estilos',
'PORTAL_CHANGE_STYLE_EXPLAIN' => 'Mostrar este bloque en el portal.<br /><span style="color:red">Porfavor tome nota:</span> Si "Sobreescribe el estilo de usuario:" en la configuración del foro is esta puesto en "Si", este bloque <u>no sera mostrado</u>, independientemente de esta configuración.',
'PORTAL_FRIENDS' => 'Mostrar bloque de amigos',
'PORTAL_FRIENDS_EXPLAIN' => 'Muestra bloque de adjuntos',
'PORTAL_MAX_ONLINE_FRIENDS' => 'Límite de amigos a mostrar',
'PORTAL_MAX_ONLINE_FRIENDS_EXPLAIN' => 'Límite de la cantidad a mostrar amigos dale un valor.',
'PORTAL_MAIN_MENU' => 'Menú principal',
'PORTAL_MAIN_MENU_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_USER_MENU' => 'Menú del Usuario / caja de logueo',
'PORTAL_USER_MENU_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_RANDOM_MEMBER' => 'Bloque de miembro aleatorio',
'PORTAL_RANDOM_MEMBER_EXPLAIN' => 'Mostrar este bloque en el portal.',
'ACP_PORTAL_ANNOUNCE_INFO' => 'Anuncio global',
'ACP_PORTAL_ANNOUNCE_SETTINGS' => 'Configuración de anuncio global',
'ACP_PORTAL_ANNOUNCE_SETTINGS_EXPLAIN' => 'Aquí tu puedes cambiar la configuración e información de anuncio global y ciertas opciones especificas.',
'PORTAL_ANNOUNCEMENTS' => 'Mostrar anuncios globales',
'PORTAL_ANNOUNCEMENTS_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_ANNOUNCEMENTS_STYLE' => 'Compactar el estilo del bloque anuncio global',
'PORTAL_ANNOUNCEMENTS_STYLE_EXPLAIN' => 'Si selecciona si use el estilo compacto para anuncio global, no es estilo grande',
'PORTAL_NUMBER_OF_ANNOUNCEMENTS' => 'Número de anuncios en el portal',
'PORTAL_NUMBER_OF_ANNOUNCEMENTS_EXPLAIN' => '0 significa infinito',
'PORTAL_ANNOUNCEMENTS_DAY' => 'Número de días para mostrar el anuncio',
'PORTAL_ANNOUNCEMENTS_DAY_EXPLAIN' => '0 significa infinito',
'PORTAL_ANNOUNCEMENTS_LENGTH' => 'Max longitud de anuncio global',
'PORTAL_ANNOUNCEMENTS_LENGTH_EXPLAIN' => '0 significa infinito',
'PORTAL_GLOBAL_ANNOUNCEMENTS_FORUM' => 'Global anuncio global de la ID de los foros',
'PORTAL_GLOBAL_ANNOUNCEMENTS_FORUM_EXPLAIN' => 'Nosotros jalaremos artículos de los foros, dejar en blanco para jalar de todos los foros, separar con coma para multi-foros, ej. 1,2,5',
'ACP_PORTAL_NEWS_INFO' => 'Noticias',
'ACP_PORTAL_NEWS_SETTINGS' => 'Configuración de noticias',
'ACP_PORTAL_NEWS_SETTINGS_EXPLAIN' => 'Aquí usted puede cambiar su información de noticias y algunas opciones específicas.',
'PORTAL_NEWS' => 'Mostrar bloque de noticias',
'PORTAL_NEWS_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_NEWS_STYLE' => 'Compactar estilo de bloque de noticias',
'PORTAL_NEWS_STYLE_EXPLAIN' => 'Si selecciona si use el estilo compacto para noticias, no es estilo grande',
'PORTAL_SHOW_ALL_NEWS' => 'Mostrar todos los artículos en este foro',
'PORTAL_SHOW_ALL_NEWS_EXPLAIN' => 'Incluyendo fijos y anuncios.',
'PORTAL_NUMBER_OF_NEWS' => 'Número de artículos de noticias en el portal',
'PORTAL_NUMBER_OF_NEWS_EXPLAIN' => '0 significa infinito',
'PORTAL_NEWS_LENGTH' => 'Max longitud de un artículo de noticias',
'PORTAL_NEWS_LENGTH_EXPLAIN' => '0 significa infinito',
'PORTAL_NEWS_FORUM' => 'Noticias Foro ID',
'PORTAL_NEWS_FORUM_EXPLAIN' => 'Nosotros jalaremos artículos de los foros, dejar en blanco para jalar de todos los foros, separar con coma para multi-foros, ej. 1,2,5',
'PORTAL_EXCLUDE_FORUM' => 'Excluir Foro ID',
'PORTAL_EXCLUDE_FORUM_EXPLAIN' => 'Nosotros jalaremos artículos de los foros, dejar en blanco para jalar de todos los foros, separar con coma para multi-foros, ej. 1,2,5',
'ACP_PORTAL_RECENT_INFO' => 'Los temas más recientes',
'ACP_PORTAL_RECENT_SETTINGS' => 'La configuración de los temas más recientes',
'ACP_PORTAL_RECENT_SETTINGS_EXPLAIN' => 'Aquí usted puede cambiar su información de los últimos temas y algunas opciones específicas.',
'PORTAL_RECENT' => 'Mostrar bloque de los últimos temas',
'PORTAL_RECENT_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_MAX_TOPIC' => 'Límite de los recientes anuncios / temas candentes',
'PORTAL_MAX_TOPIC_EXPLAIN' => '0 significa infinito',
'PORTAL_RECENT_TITLE_LIMIT' => 'Límite de caracteres de los últimos tema',
'PORTAL_RECENT_TITLE_LIMIT_EXPLAIN' => '0 significa infinito',
'ACP_PORTAL_PAYPAL_INFO' => 'Paypal',
'ACP_PORTAL_PAYPAL_SETTINGS' => 'Configuración Paypal',
'ACP_PORTAL_PAYPAL_SETTINGS_EXPLAIN' => 'Aquí usted puede cambiar su información de Paypal y ciertas opciones específicas.',
'PORTAL_PAY_C_BLOCK' => 'Mostrar bloque de centro paypal',
'PORTAL_PAY_C_BLOCK_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_PAY_S_BLOCK' => 'Mostrar bloque pequeño paypal',
'PORTAL_PAY_S_BLOCK_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_PAY_ACC' => 'Paypal cuenta a utilizar',
'PORTAL_PAY_ACC_EXPLAIN' => 'Ingrese su dirección de correo electrónico utilizado en paypal ej. xxx@xxx.com',
'ACP_PORTAL_MEMBERS_INFO' => 'Últimos miembros',
'ACP_PORTAL_MEMBERS_SETTINGS' => 'Configuración de últimos miembros',
'ACP_PORTAL_MEMBERS_SETTINGS_EXPLAIN' => 'Aquí usted puede cambiar su información de los miembros más recientes y algunas opciones específicas.',
'PORTAL_LATEST_MEMBERS' => 'Mostrar bloque de los miembros más recientes',
'PORTAL_LATEST_MEMBERS_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_MAX_LAST_MEMBER' => 'Límite de mostrar de miembros más recientes ',
'PORTAL_MAX_LAST_MEMBER_EXPLAIN' => '0 significa infinito',
'ACP_PORTAL_BOTS_INFO' => 'Bots visitandonos',
'ACP_PORTAL_BOTS_SETTINGS' => 'Configuración de bots visitando',
'ACP_PORTAL_BOTS_SETTINGS_EXPLAIN' => 'Aquí puede cambiar la información de bots visitando, y ciertas opciones específicas.',
'PORTAL_LOAD_LAST_VISITED_BOTS' => 'Mostrar bloque visitar bots ',
'PORTAL_LOAD_LAST_VISITED_BOTS_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_LAST_VISITED_BOTS_NUMBER' => '¿Cuantos bots para mostrar?',
'PORTAL_LAST_VISITED_BOTS_NUMBER_EXPLAIN' => '0 significa infinito',
'ACP_PORTAL_POLLS_INFO' => 'Encuesta',
'ACP_PORTAL_POLLS_SETTINGS' => 'Configuración de encuesta',
'ACP_PORTAL_POLLS_SETTINGS_EXPLAIN' => 'Aquí puede cambiar su información de la encuesta y algunas opciones específicas.',
'PORTAL_POLL_TOPIC' => 'Mostrar bloques de encuesta ',
'PORTAL_POLL_TOPIC_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_POLL_TOPIC_ID' => 'Encuesta foro id(s)',
'PORTAL_POLL_TOPIC_ID_EXPLAIN' => 'Las id(s) de los foros donde cuales encuestas deberian ser mostradas.Use una coma para separar varios foros, o deje en blanco para utilizar todos los foros disponibles.',
'PORTAL_POLL_LIMIT' => 'Mostrar límite de encuesta',
'PORTAL_POLL_LIMIT_EXPLAIN' => 'El número de encuestas que le gustaría mostrar en la página del portal.',
'PORTAL_POLL_ALLOW_VOTE' => 'Permitir votar',
'PORTAL_POLL_ALLOW_VOTE_EXPLAIN' => 'Permitir a los usuarios con los permisos necesarios para votar desde la página del portal.',
'ACP_PORTAL_MOST_POSTER_INFO' => 'Mas escriben',
'ACP_PORTAL_MOST_POSTER_SETTINGS' => 'Configuración de mas escriben',
'ACP_PORTAL_MOST_POSTER_SETTINGS_EXPLAIN' => 'Aquí puede cambiar su información de mas escriben y algunas opciones específicas.',
'PORTAL_TOP_POSTERS' => 'Mostrar bloque más / top escriben',
'PORTAL_TOP_POSTERS_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_MAX_MOST_POSTER' => 'Cuántos más escriben para mostrar',
'PORTAL_MAX_MOST_POSTER_EXPLAIN' => '0 significa infinito',
'ACP_PORTAL_COLLUMN_WIDTH_INFO' => 'Ancho de columna',
'ACP_PORTAL_COLLUMN_WIDTH_SETTINGS' => 'Izquierda y derecha la configuración de ancho de columna',
'PORTAL_LEFT_COLLUMN_WIDTH' => 'Ancho valor de la columna de la izquierda',
'PORTAL_LEFT_COLLUMN_WIDTH_EXPLAIN' => 'Cambiar el ancho de la columna de la izquierda en píxel, valor recomendado 180',
'PORTAL_RIGHT_COLLUMN_WIDTH' => 'Ancho valor de la columna derecha',
'PORTAL_RIGHT_COLLUMN_WIDTH_EXPLAIN' => 'Cambiar el ancho de columna derecha de píxel, valor recomendado 180',
'ACP_PORTAL_ATTACHMENTS_NUMBER_INFO' => 'Adjuntos',
'ACP_PORTAL_ATTACHMENTS_NUMBER_SETTINGS' => 'La configuración de los archivos adjuntos',
'ACP_PORTAL_ATTACHMENTS_NUMBER_SETTINGS_EXPLAIN' => 'Aquí puede cambiar sus archivos adjuntos de información y ciertas opciones específicas.',
'PORTAL_ATTACHMENTS' => 'Mostrar el bloque de adjuntos ',
'PORTAL_ATTACHMENTS_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_ATTACHMENTS_NUMBER' => 'Límite de archivos adjuntos a mostrar',
'PORTAL_ATTACHMENTS_NUMBER_EXPLAIN' => '0 significa infinito',
'ACP_PORTAL_FRIENDS_INFO' => 'Amigos',
'ACP_PORTAL_FRIENDS_SETTINGS' => 'Configuración de amigos',
'ACP_PORTAL_FRIENDS_SETTINGS_EXPLAIN' => 'Aquí usted puede cambiar su información de amigos y de algunas opciones específicas.',
'ACP_PORTAL_WORDGRAPH_INFO' => 'Wordgraph',
'ACP_PORTAL_WORDGRAPH_SETTINGS' => 'Configuración de Wordgraph',
'ACP_PORTAL_WORDGRAPH_SETTINGS_EXPLAIN' => 'Aquí puede cambiar su información de wordgraph y ciertas opciones específicas.',
'PORTAL_WORDGRAPH' => 'Mostrar el bloque de wordgraph',
'PORTAL_WORDGRAPH_EXPLAIN' => 'Mostrar este bloque en el portal.<br /><strong>Wordgraph no funciona con texto completo mysql es seleccionada como la búsqueda de backend.</strong>',
'PORTAL_WORDGRAPH_MAX_WORDS' => '¿Cuantas palabras a mostrar?',
'PORTAL_WORDGRAPH_MAX_WORDS_EXPLAIN' => '0 significa infinito',
'PORTAL_WORDGRAPH_WORD_COUNTS' => 'Incluir contar con valores para mostrar',
'PORTAL_WORDGRAPH_WORD_COUNTS_EXPLAIN' => 'Mostrar contar valores por palabra ej. (25).',
'PORTAL_WORDGRAPH_RATIO' => 'Usado relación de aspecto palabra tamaño',
'PORTAL_WORDGRAPH_RATIO_EXPLAIN' => 'Cambio de la relación de aspecto (grande/pequeño) Tamaño de la palabra (Por defecto=18)',
'ACP_PORTAL_WELCOME_INFO' => 'Bienvenido',
'ACP_PORTAL_WELCOME_SETTINGS' => 'Configuración de bienvenido',
'ACP_PORTAL_WELCOME_SETTINGS_EXPLAIN' => 'Aquí puede cambiar los mensajes de bienvenida y algunas opciones específicas',
'PORTAL_WELCOME_INTRO' => 'Mensaje de bievenida',
'PORTAL_WELCOME_GUEST' => '¿Mensaje de bienvenida solo para invitados??',
'PORTAL_WELCOME_INTRO_EXPLAIN' => 'Cambie el mensaje de bienvenida (Sólo texto plano). Max. 600 characteres!',
'ACP_PORTAL_MINICALENDAR_INFO' => 'Mini calendario',
'ACP_PORTAL_MINICALENDAR_SETTINGS' => 'Configuración de Mini calendario',
'ACP_PORTAL_MINICALENDAR_SETTINGS_EXPLAIN' => 'Aquí puede cambiar información de su mini calendario y ciertas opciones específicas.',
'PORTAL_MINICALENDAR' => 'Mostrar el bloque de mini calendario ',
'PORTAL_MINICALENDAR_EXPLAIN' => 'Mostrar este bloque en el portal.',
'PORTAL_MINICALENDAR_TODAY_COLOR' => 'Activo día de colores',
'PORTAL_MINICALENDAR_TODAY_COLOR_EXPLAIN' => 'HEX o colores con nombre se permiten tales como # FFFFFF para blanco, el color o nombres como viloleta.',
'PORTAL_MINICALENDAR_DAY_LINK_COLOR' => 'Colo de enlace día',
'PORTAL_MINICALENDAR_DAY_LINK_COLOR_EXPLAIN' => 'HEX o colores con nombre se permiten tales como # FFFFFF para blanco, el color o nombres como viloleta.',
));
?>

View File

@@ -0,0 +1,55 @@
<?php
/**
*
* mods_lang_portal_acp_logs.php [Spanish]
*
* @package language
* @version $Id$
* @copyright (c) 2008 phpBB Group
* @author 2008-02-29 - HuanManwe
* @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();
}
// 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
$lang = array_merge($lang, array(
'LOG_CONFIG_GENERAL' => '<strong>Portal: Altereda la configuración general</strong>',
'LOG_CONFIG_NEWS' => '<strong>Portal: Altereda la configuración de noticias</strong>',
'LOG_CONFIG_ANNOUNCEMENTS' => '<strong>Portal: Altereda la configuración de anuncios</strong>',
'LOG_CONFIG_WELCOME' => '<strong>Portal: Altereda la configuración de mensajes de bienvenida</strong>',
'LOG_CONFIG_RECENT' => '<strong>Portal: Altereda la configuración de mensajes recientes</strong>',
'LOG_CONFIG_WORDGRAPH' => '<strong>Portal: Altereda la configuración de wordgraph</strong>',
'LOG_CONFIG_PAYPAL' => '<strong>Portal: Altereda la configuración de donaciones paypal</strong>',
'LOG_CONFIG_ATTACHMENTS' => '<strong>Portal: Altereda la configuración de adjuntos</strong>',
'LOG_CONFIG_MEMBERS' => '<strong>Portal: Altereda la configuración Últimos miembros</strong>',
'LOG_CONFIG_POLLS' => '<strong>Portal: Altereda la configuración de encuesta</strong>',
'LOG_CONFIG_BOTS' => '<strong>Portal: Altereda la configuración Últimas visitas de bots</strong>',
'LOG_CONFIG_POSTER' => '<strong>Portal: Altereda la configuración Mas escriben</strong>',
'LOG_CONFIG_MINICALENDAR' => '<strong>Portal: Altereda configuración del mini calendario</strong>',
));
?>

View File

@@ -0,0 +1,75 @@
<?php
/**
*
* mods_portal_install.php [Spanish]
*
* @package language
* @version $Id$
* @copyright (c) 2008 phpBB Group
* @author 2008-02-29 - HuanManwe
* @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();
}
// 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
$lang = array_merge($lang, array(
'INSTALLER_MENU' => 'PInUp Menú',
'INSTALLER_MENU_START' => 'Iniciar',
'INSTALLER_UNINSTALL' => 'Desinstalar',
'INSTALLER_UPDATE' => 'Actualizar',
'INSTALLER_INSTALL' => 'Instalar',
'INSTALLER_INTRO_TITLE' => 'Portal de Instalación/Utilidad de actualización',
'INSTALLER_INTRO_NOTE' => 'Bienvenido al Portal de Instalación / utilidad de actualización, conocida como PInUp',
'INSTALLER_MENU_DONE' => 'Última version',
'INSTALLER_MENU_DONE_TEXT' => 'Usted ya tiene instalada la versión %s , porfavor elimine la carpeta install_portal y regrese a su <a href="%s">foro</a>.',
'INSTALLER_INSTALL_TITLE' => 'PInUp Instalador',
'INSTALLER_INSTALL_NOTE' => 'Cuando usted elige instalar el MOD, cualquier base de datos de versiones anteriores, se eliminará.',
'INSTALLER_INSTALL_MENU' => 'Menú de Instalación',
'INSTALLER_INSTALL_SUCCESSFUL' => 'La instalación del MOD v%s tuvo éxito.',
'INSTALLER_INSTALL_UNSUCCESSFUL' => 'La instalación del MOD v%s <strong>no</strong> fue exitosa.',
'INSTALLER_INSTALL_VERSION' => 'Instalar MOD v%s',
'INSTALLER_INSTALL_START' => 'Por favor, haga clic <a href="%s">Instalar</a> para iniciar la utilidad de instalación.',
'INSTALLER_UPDATE_TITLE' => 'PInUp Actualizar',
'INSTALLER_UPDATE_NOTE' => 'Actualiza el MOD de v%s hacia v%s',
'INSTALLER_UNINSTALL_TITLE' => 'PInUp Desinstalar',
'INSTALLER_UNINSTALL_NOTE' => 'Bienvenido al menú de actualización',
'INSTALLER_UNINSTALL_SUCCESSFUL' => 'La instalación del MOD v%s fue un éxito.',
'INSTALLER_NEEDS_ADMIN' => 'Debe iniciar sesión como administrador. <br /><a href="../ucp.php?mode=login"><strong>Ir al inicio de sesión</strong>',
'INSTALLER_UPDATE_MENU' => 'Menú de actualización',
'INSTALLER_UPDATE_SUCCESSFUL' => 'Actualización del MOD de v%s hacia v%s tuvo éxito.',
'INSTALLER_UPDATE_UNSUCCESSFUL' => 'Actualización del MOD de v%s hacia v%s <strong>no</strong> fue exitosa.',
'INSTALLER_UPDATE_VERSION' => 'Actualización del MOD de v%s',
'INSTALLER_UPDATE_TO' => 'Actualizar a',
'INSTALLER_UPDATE_START' => 'Por favor, haga clic <a href="%s">Actualizar</a> para iniciar la utilidad de actualizar.',
'INSTALLER_UNINSTALL_OLDVERSION' => 'Lo siento, PInUp No admite la desinstalación de la versión original del phpBB3 Portal.',
'INSTALLER_ERROR' => 'PInUp Error',
'INSTALLER_USEFUL_INFO' => 'Por favor, borrar el directorio o carpeta /install_portal',
'INSTALLER_UNINSTALL_USEFUL_INFO' => 'Recuerde eliminar los archivos del portal y remover los archivos editados.',
'WARNING' => 'Advertencia',
));
?>