News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

"Register" doesn't work

Started by nitroglicerino, January 13, 2009, 08:14:39 AM

Previous topic - Next topic

nitroglicerino

Hi everybody.

When a guest tries to register using the upper link, located in the sentence "Please login or register", he goes to a 404 page. Actually, the link for those "login" and "register" are:

http://www.fororol.com/foros/%27%20.%20$scripturl%20.%20%27?action=login
http://www.fororol.com/foros/%27%20.%20$scripturl%20.%20%27?action=register

The users have to register down those lines, by clicking the "register" in the box.

How can I fix those links?

My website is: http://www.fororol.com/

Burke ♞ Knight

I went to your site, clicked the register from main menu, and it went right to the register page.

http://www.fororol.com/foros/index.php?action=register

nitroglicerino

Quote from: BurkeKnight on January 13, 2009, 08:17:52 AM
I went to your site, clicked the register from main menu, and it went right to the register page.

http://www.fororol.com/foros/index.php?action=register

I mean the "register" just below the "Welcome Guest" (Bienvenido visitante)

Burke ♞ Knight

Somehow, the template file got edited in the area for that. Here is what the link shows:

http://www.fororol.com/foros/'; ,$scripturl, '?action=register

Looks like when editing the index.template.php file, you ended up having ' ,$scripturl, ' in the code for those 2 links, twice.

nitroglicerino

Quote from: BurkeKnight on January 13, 2009, 08:26:14 AM
Somehow, the template file got edited in the area for that. Here is what the link shows:

http://www.fororol.com/foros/'; ,$scripturl, '?action=register

Looks like when editing the index.template.php file, you ended up having ' ,$scripturl, ' in the code for those 2 links, twice.

Weird. I haven't edited that code. How can I fix that?

Burke ♞ Knight

Here is the default for that section in the index.template.php file:

// Otherwise they're a guest - this time ask them to either register or login - lazy bums...
else
{
echo '
<script language="JavaScript" type="text/javascript" src="', $settings['default_theme_url'], '/scripts/sha1.js"></script>
<form class="windowbg" id="guest_form" action="', $scripturl, '?action=login2" method="post" accept-charset="', $context['character_set'], '" ', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' . $context['session_id'] . '\');"' : '', '>
' , $txt['login_or_register'], '<br />
<input type="text" name="user" size="10" />
<input type="password" name="passwrd" size="10" />
<select name="cookielength">
<option value="60">', $txt['one_hour'], '</option>
<option value="1440">', $txt['one_day'], '</option>
<option value="10080">', $txt['one_week'], '</option>
<option value="43200">', $txt['one_month'], '</option>
<option value="-1" selected="selected">', $txt['forever'], '</option>
</select>
<input type="submit" value="', $txt['login'], '" /><br />
', $txt['quick_login_dec'];

if (!empty($modSettings['enableOpenID']))
echo'
<br />
<input type="text" name="openid_url" id="openid_url" size="25" class="openid_login" />';

echo '
<input type="hidden" name="hash_passwrd" value="" />
</form>';


Find this line in yours:

// Otherwise they're a guest - this time ask them to either register or login - lazy bums...

and select all the way to </form>';

Then paste the above code, replacing what you have.
Make a copy of the file first, in case you make a mistake. (I copy before I even change one measly letter....LOL)

nitroglicerino

Did it, but still not working. I go to the same 404 page :(

Marcus Forsberg

Please let us see your index.template.php file

nitroglicerino

Quote from: Nascar on January 13, 2009, 08:46:13 AM
Please let us see your index.template.php file

<?php
// Version: 2.0 Beta 4; index

/* This template is, perhaps, the most important template in the theme. It
contains the main template layer that displays the header and footer of
the forum, namely with main_above and main_below. It also contains the
menu sub template, which appropriately displays the menu; the init sub
template, which is there to set the theme up; (init can be missing.) and
the linktree sub template, which sorts out the link tree.

The init sub template should load any data and set any hardcoded options.

The main_above sub template is what is shown above the main content, and
should contain anything that should be shown up there.

The main_below sub template, conversely, is shown after the main content.
It should probably contain the copyright statement and some other things.

The linktree sub template should display the link tree, using the data
in the $context['linktree'] variable.

The menu sub template should display all the relevant buttons the user
wants and or needs.

For more information on the templating system, please see the site at:
http://www.simplemachines.org/
*/

// Initialize the template... mainly little settings.
function template_init()
{
global $context$settings$options$txt;

/* Use images from default theme when using templates from the default theme?
if this is 'always', images from the default theme will be used.
if this is 'defaults', images from the default theme will only be used with default templates.
if this is 'never' or isn't set at all, images from the default theme will not be used. */
$settings['use_default_images'] = 'never';

/* What document type definition is being used? (for font size and other issues.)
'xhtml' for an XHTML 1.0 document type definition.
'html' for an HTML 4.01 document type definition. */
$settings['doctype'] = 'xhtml';

/* The version this template/theme is for.
This should probably be the version of SMF it was created for. */
$settings['theme_version'] = '2.0 Beta 4';

/* Set a setting that tells the theme that it can render the tabs. */
$settings['use_tabs'] = true;

/* Use plain buttons - as oppossed to text buttons? */
$settings['use_buttons'] = true;

/* Show sticky and lock status separate from topic icons? */
$settings['separate_sticky_lock'] = true;

/* Does this theme use the strict doctype? */
$settings['strict_doctype'] = false;

/* Does this theme use post previews on the message index? */
$settings['message_index_preview'] = false;
}

// The main sub template above the content.
function template_html_above()
{
global $context$settings$options$scripturl$txt$modSettings;

// Show right to left and the character set for ease of translating.
echo '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"'
$context['right_to_left'] ? ' dir="rtl"' '''><head>
<meta http-equiv="Content-Type" content="text/html; charset='
$context['character_set'], '" />
<meta name="description" content="'
$context['page_title_html_safe'], '" />
<meta name="keywords" content="'
$context['meta_keywords'], '" />
<script language="JavaScript" type="text/javascript" src="'
$settings['default_theme_url'], '/scripts/script.js?b4"></script>
<script language="JavaScript" type="text/javascript" src="'
$settings['default_theme_url'], '/scripts/theme.js?b4"></script>
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
var smf_theme_url = "'
$settings['theme_url'], '";
var smf_default_theme_url = "'
$settings['default_theme_url'], '";
var smf_images_url = "'
$settings['images_url'], '";
var smf_scripturl = "'
$scripturl'";
var smf_iso_case_folding = '
$context['server']['iso_case_folding'] ? 'true' 'false'';
var smf_charset = "'
$context['character_set'], '";'$context['show_pm_popup'] ? '
if (confirm("' 
$txt['show_personal_messages'] . '"))
window.open("' 
$scripturl '?action=pm");' '''
var ajax_notification_text = "'
$txt['ajax_in_progress'], '";
var ajax_notification_cancel_text = "'
$txt['modify_cancel'], '";
// ]]></script>
<title>'
$context['page_title_html_safe'], '</title>';

// Please don't index these Mr Robot.
if (!empty($context['robot_no_index']))
echo '
<meta name="robots" content="noindex" />'
;

// The ?b4 part of this link is just here to make sure browsers don't cache it wrongly.
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['theme_url'], '/style'$context['theme_variant'], '.css?b4" />';

echo '
<link rel="stylesheet" type="text/css" href="'
$settings['default_theme_url'], '/css/print.css?b4" media="print" />';

// IE7 needs some fixes for styles.
if ($context['browser']['is_ie7'])
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['default_theme_url'], '/css/ie7.css" />';
// ..and IE6!
elseif ($context['browser']['is_ie6'])
echo '
<link rel="stylesheet" type="text/css" href="'
$settings['default_theme_url'], '/css/ie6.css" />';

// Show all the relative links, such as help, search, contents, and the like.
echo '
<link rel="help" href="'
$scripturl'?action=help" />
<link rel="search" href="' 
$scripturl '?action=search" />
<link rel="contents" href="'
$scripturl'" />';

// If RSS feeds are enabled, advertise the presence of one.
if (!empty($modSettings['xmlnews_enable']))
echo '
<link rel="alternate" type="application/rss+xml" title="'
$context['forum_name_html_safe'], ' - RSS" href="'$scripturl'?type=rss;action=.xml" />';

// If we're viewing a topic, these should be the previous and next topics, respectively.
if (!empty($context['current_topic']))
echo '
<link rel="prev" href="'
$scripturl'?topic='$context['current_topic'], '.0;prev_next=prev" />
<link rel="next" href="'
$scripturl'?topic='$context['current_topic'], '.0;prev_next=next" />';

// If we're in a board, or a topic for that matter, the index will be the board's index.
if (!empty($context['current_board']))
echo '
<link rel="index" href="'
$scripturl'?board='$context['current_board'], '.0" />';

// We'll have to use the cookie to remember the header...
if ($context['user']['is_guest'])
{
$options['collapse_header'] = !empty($_COOKIE['upshrink']);
$options['collapse_header_ic'] = !empty($_COOKIE['upshrinkIC']);
}

// Output any remaining HTML headers. (from mods, maybe?)
echo $context['html_headers'], '
<script language="JavaScript" type="text/javascript"><!-- // --><![CDATA[
// Create the main header object.
var mainHeader = new smfToggle("upshrink", '
, empty($options['collapse_header']) ? 'false' 'true'');
mainHeader.useCookie('
$context['user']['is_guest'] ? 0');
mainHeader.setOptions("collapse_header", "'
$context['session_id'], '");
mainHeader.addToggleImage("upshrink", "/upshrink.gif", "/upshrink2.gif");
mainHeader.addTogglePanel("user_section");
mainHeader.addTogglePanel("news_section");
// ]]></script>'
;

echo '
</head>
<body>'
;
}

function 
template_body_above()
{
global $context$settings$options$scripturl$txt$modSettings;

echo '
<div id="mainframe">
<div class="tborder">
<div class="catbg">
<h1>'
;

if (empty($settings['header_logo_url']))
echo $context['forum_name'];
else
echo '
<img src="'
$settings['header_logo_url'], '" alt="'$context['forum_name'], '" />';

echo '
</h1>
</div>'
;

// Display user name and time.
echo '
<ul id="greeting_section" class="titlebg2">
<li id="time" class="smalltext floatright">
$context['current_time'], '
<a href="#" onclick="mainHeader.toggle(); return false;"><img id="upshrink" src="'
$settings['images_url'], '/', empty($options['collapse_header']) ? 'upshrink.gif' 'upshrink2.gif''" alt="*" title="'$txt['upshrink_description'], '" align="bottom" /></a>
</li>'
;

if ($context['user']['is_logged'])
echo '
<li id="name">'
$txt['hello_member_ndt'], ' <em>'$context['user']['name'], '</em></li>';
else
echo '
<li id="name">'
$txt['hello_guest'], ' <em>'$txt['guest'], '</em></li>';

echo '
</ul>
<div id="user_section" class="bordercolor"'
, empty($options['collapse_header']) ? '' ' style="display: none;"''>
<div class="windowbg2 clearfix">'
;

if (!empty($context['user']['avatar']))
echo '
<div id="myavatar">'
$context['user']['avatar']['image'], '</div>';

// If the user is logged in, display stuff like their name, new messages, etc.
if ($context['user']['is_logged'])
{
echo '
<ul>
<li><a href="'
$scripturl'?action=unread">'$txt['unread_since_visit'], '</a></li>
<li><a href="'
$scripturl'?action=unreadreplies">'$txt['show_unread_replies'], '</a></li>';

// Is the forum in maintenance mode?
if ($context['in_maintenance'] && $context['user']['is_admin'])
echo '
<li class="notice">'
$txt['maintain_mode_on'], '</li>';

// Are there any members waiting for approval?
if (!empty($context['unapproved_members']))
echo '
<li>'
$context['unapproved_members'] == $txt['approve_thereis'] : $txt['approve_thereare'], ' <a href="'$scripturl'?action=admin;area=viewmembers;sa=browse;type=approve">'$context['unapproved_members'] == $txt['approve_member'] : $context['unapproved_members'] . ' ' $txt['approve_members'], '</a> '$txt['approve_members_waiting'], '</li>';

// Show the total time logged in?
if (!empty($context['user']['total_time_logged_in']))
{
echo '
<li>'
$txt['totalTimeLogged1'];

// If days is just zero, don't bother to show it.
if ($context['user']['total_time_logged_in']['days'] > 0)
echo $context['user']['total_time_logged_in']['days'] . $txt['totalTimeLogged2'];

// Same with hours - only show it if it's above zero.
if ($context['user']['total_time_logged_in']['hours'] > 0)
echo $context['user']['total_time_logged_in']['hours'] . $txt['totalTimeLogged3'];

// But, let's always show minutes - Time wasted here: 0 minutes ;).
echo $context['user']['total_time_logged_in']['minutes'], $txt['totalTimeLogged4'], '
</li>'
;
}

if (!empty($context['open_mod_reports']) && $context['show_open_reports'])
echo '
<li><a href="'
$scripturl'?action=moderate;area=reports">'sprintf($txt['mod_reports_waiting'], $context['open_mod_reports']), '</a></li>';
echo '
</ul>'
;
}
// Otherwise they're a guest - this time ask them to either register or login - lazy bums...
   
else
   {
      echo 
'
            <script language="JavaScript" type="text/javascript" src="'
$settings['default_theme_url'], '/scripts/sha1.js"></script>
            <form class="windowbg" id="guest_form" action="'
$scripturl'?action=login2" method="post" accept-charset="'$context['character_set'], '" ', empty($context['disable_login_hashing']) ? ' onsubmit="hashLoginPassword(this, \'' $context['session_id'] . '\');"' '''>
               ' 
$txt['login_or_register'], '<br />
               <input type="text" name="user" size="10" />
               <input type="password" name="passwrd" size="10" />
               <select name="cookielength">
                  <option value="60">'
$txt['one_hour'], '</option>
                  <option value="1440">'
$txt['one_day'], '</option>
                  <option value="10080">'
$txt['one_week'], '</option>
                  <option value="43200">'
$txt['one_month'], '</option>
                  <option value="-1" selected="selected">'
$txt['forever'], '</option>
               </select>
               <input type="submit" value="'
$txt['login'], '" /><br />
               '
$txt['quick_login_dec'];

      if (!empty(
$modSettings['enableOpenID']))
         echo
'
               <br />
               <input type="text" name="openid_url" id="openid_url" size="25" class="openid_login" />'
;

      echo 
'
               <input type="hidden" name="hash_passwrd" value="" />
            </form>'
;
}

echo '
</div>
</div>
<div id="news_section" class="titlebg2 clearfix"'
, empty($options['collapse_header']) ? '' ' style="display: none;"''>
<form class="floatright" id="search_form" action="'
$scripturl'?action=search2" method="post" accept-charset="'$context['character_set'], '">
<a href="'
$scripturl'?action=search;advanced" title="'$txt['search_advanced'], '"><img id="advsearch" src="'.$settings['images_url'].'/filter.gif" align="middle" alt="'$txt['search_advanced'], '" /></a>
<input type="text" name="search" value="" style="width: 190px;" />&nbsp;
<input type="submit" name="submit" value="'
$txt['search'], '" style="width: 11ex;" />
<input type="hidden" name="advanced" value="0" />'
;

// Search within current topic?
if (!empty($context['current_topic']))
echo '
<input type="hidden" name="topic" value="'
$context['current_topic'], '" />';
// If we're on a certain board, limit it to this board ;).
elseif (!empty($context['current_board']))
echo '
<input type="hidden" name="brd['
$context['current_board'], ']" value="'$context['current_board'], '" />';

echo '
</form>'
;

// Show a random news item? (or you could pick one from news_lines...)
if (!empty($settings['enable_news']))
echo '
<div id="random_news"><h3>'
$txt['news'], ':</h3><p>'$context['random_news_line'], '</p></div>';

echo '
</div>
</div>'
;


// Show the menu here, according to the menu sub template.
template_menu();

// Show the navigation tree.
theme_linktree();

// The main content should go here.
echo '
<div id="bodyarea">'
;
}

function 
template_body_below()
{
global $context$settings$options$scripturl$txt;

echo '
</div>'
;

// Show the "Powered by" and "Valid" logos, as well as the copyright. Remember, the copyright must be somewhere!
echo '
<div id="footerarea" class="headerpadding topmargin clearfix">
<ul class="smalltext">
<li class="copywrite">'
theme_copyright(), '</li>
<li><a id="button_xhtml" href="http://validator.w3.org/check/referer" target="_blank" class="new_win" title="'
$txt['valid_html'], '"><span>XHTML</span></a></li>
<li><a id="button_rss" href="'
$scripturl '?type=rss;action=.xml" class="new_win"><span>RSS</span></a></li>
<li class="last"><a id="button_wap2" href="'
$scripturl '?wap2" class="new_win"><span>WAP2</span></a></li>
</ul>'
;

// Show the load time?
if ($context['show_load_time'])
echo '
<p class="smalltext" id="show_loadtime">'
$txt['page_created'], $context['load_time'], $txt['seconds_with'], $context['load_queries'], $txt['queries'], '</p>';

echo '
</div>
</div>'
;
}

function 
template_html_below()
{
global $context$settings$options$scripturl$txt$modSettings;

echo '

<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src=\" + gaJsHost + "google-analytics.com/ga.js\ type=\text/javascript\%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-2985482-2");
pageTracker._trackPageview();
} catch(err) {}</script>
</body></html>'
;
}

// Show a linktree. This is that thing that shows "My Community | General Category | General Discussion"..
function theme_linktree($force_show false)
{
global $context$settings$options$shown_linktree;

// If linktree is empty, just return - also allow an override.
if (empty($context['linktree']) || (!empty($context['dont_default_linktree']) && !$force_show))
return;

//!!! Temporarily don't do it twice.
if (!empty($shown_linktree))
return;
$shown_linktree true;

echo '
<ul id="linktree">'
;

// Each tree item has a URL and name. Some may have extra_before and extra_after.
foreach ($context['linktree'] as $link_num => $tree)
{
echo '
<li'
, ($link_num == count($context['linktree']) - 1) ? ' class="last"' '''>';
// Show something before the link?
if (isset($tree['extra_before']))
echo $tree['extra_before'];

// Show the link, including a URL if it should have one.
echo $settings['linktree_link'] && isset($tree['url']) ? '
<a href="' 
$tree['url'] . '"><span>' $tree['name'] . '</span></a>' '<span>' $tree['name'] .'</span>';

// Show something after the link...?
if (isset($tree['extra_after']))
echo $tree['extra_after'];

// Don't show a separator for the last one.
if ($link_num != count($context['linktree']) - 1)
echo '&nbsp;>';

echo '
</li>'
;
}
echo '
</ul>'
;
}

// Show the menu up top. Something like [home] [help] [profile] [logout]...
function template_menu()
{
global $context$settings$options$scripturl$txt;

echo '
<div id="main_menu">
<ul class="clearfix">'
;

foreach ($context['menu_buttons'] as $act => $button)
{
echo '
<li id="button_'
$act'">
<a'
$button['active_button'] ? ' class="active"' ''' title="'$act '" href="'$button['href'], '">
<span'
, isset($button['is_last']) ? ' class="last"' '''>', ($button['active_button'] ? '<em>' ''), $button['title'], ($button['active_button'] ? '</em>' ''), '</span>
</a>
</li>'
;
}

echo '
</ul>
</div>'
;
}

// Generate a strip of buttons.
function template_button_strip($button_strip$direction 'top'$force_reset false$custom_td '')
{
global $settings$context$txt$scripturl;

// Create the buttons...
$buttons = array();
foreach ($button_strip as $key => $value)
{
if (!isset($value['test']) || !empty($context[$value['test']]))
$buttons[] = '<a href="' $value['url'] . '" ' . (isset($value['custom']) ? $value['custom'] : '') . '><span>' $txt[$value['text']] . '</span></a>';
}

if (empty($buttons))
return '';

// Make the last one, as easy as possible.
$buttons[count($buttons) - 1] = str_replace('<span>''<span class="last">'$buttons[count($buttons) - 1]);

echo '
<div class="buttonlist'
$direction != 'top' '_bottom' '''">
<ul class="clearfix">
<li>'
implode('</li><li>'$buttons), '</li>
</ul>
</div>'
;

}

?>



Marcus Forsberg

Oh, I should have though about this..

The issue is not in index.template.php, but in index.{language}.php. Please let us se this file.

nitroglicerino

<?php
// Version: 2.0 Beta 4; Index

global $forum_copyright$forum_version$webmaster_email$scripturl$context$boardurl;

/* Important note about language files in SMF 2.0 upwards:
1) All language entries in SMF 2.0 are cached. All edits should therefore be made through the admin menu. If you do
   edit a language file manually you will not see the changes in SMF until the cache refreshes. To manually refresh
   the cache go to Admin => Maintenance => Clean Cache.

2) Please also note that strings should use single quotes, not double quotes for enclosing the string
   except for line breaks.

*/
// Locale (strftime, pspell_new) and spelling. (pspell_new, can be left as '' normally.)
// For more information see:
//   - http://www.php.net/function.pspell-new
//   - http://www.php.net/function.setlocale
// Again, SPELLING SHOULD BE '' 99% OF THE TIME!!  Please read this!
$txt['lang_locale'] = 'es_ES.utf8';
$txt['days'] = array('Domingo''Lunes''Martes''Mi&eacute;rcoles''Jueves''Viernes''S&aacute;bado');
$txt['lang_dictionary'] = 'es';
$txt['days_short'] = array('Dom''Lun''Mar''Mi&eacute;''Jue''Vie''S&aacute;b');
$txt['lang_spelling'] = 'spanish';
// Months must start with 1 => 'January'. (or translated, of course.)
$txt['months'] = array(=> 'Enero''Febrero''Marzo''Abril''Mayo''Junio''Julio''Agosto''Septiembre''Octubre''Noviembre''Diciembre');

// Ensure you remember to use uppercase for character set strings.
$txt['lang_character_set'] = 'UTF-8';
$txt['months_titles'] = array(=> 'Enero''Febrero''Marzo''Abril''Mayo''Junio''Julio''Agosto''Septiembre''Octubre''Noviembre''Diciembre');
// Character set and right to left?
$txt['lang_rtl'] = false;
$txt['months_short'] = array(=> 'Ene''Feb''Mar''Abr''May''Jun''Jul''Ago''Sep''Oct''Nov''Dic');

$txt['newmessages0'] = 'es nuevo';
$txt['newmessages1'] = 'son nuevos';
$txt['newmessages3'] = 'Nuevo(s)';
$txt['newmessages4'] = ',';

$txt['admin'] = 'Administraci&oacute;n';
$txt['moderate'] = 'Moderar';

$txt['save'] = 'Guardar';

$txt['modify'] = 'Modificar';
$txt['forum_index'] = $context['forum_name'] . ' - Indice';
$txt['members'] = 'Usuarios';
$txt['board_name'] = 'Nombre del foro';
$txt['posts'] = 'Mensajes';

$txt['member_postcount'] = 'Mensajes';
$txt['no_subject'] = '(Sin asunto)';
$txt['view_profile'] = 'Ver Perfil';
$txt['guest_title'] = 'Visitante';
$txt['author'] = 'Autor';
$txt['on'] = '';
$txt['remove'] = 'Eliminar';
$txt['start_new_topic'] = 'Crear nuevo tema';

$txt['login'] = 'Ingresar';
// Use numeric entities in the below string.
$txt['username'] = 'Usuario';
$txt['password'] = 'Contrase&ntilde;a';

$txt['username_no_exist'] = 'Nombre de usuario no existente.';
$txt['no_user_with_email'] = 'No hay usuarios asociados a este email.';

$txt['board_moderator'] = 'Moderador del Foro';
$txt['remove_topic'] = 'Eliminar Tema';
$txt['topics'] = 'Temas';
$txt['modify_msg'] = 'Modificar mensaje';
$txt['name'] = 'Nombre';
$txt['email'] = 'Email';
$txt['subject'] = 'Asunto';
$txt['message'] = 'Mensaje';
$txt['redirects'] = 'Redirects';
$txt['quick_modify'] = 'Modificaci&oacute;n R&aacute;pida';

$txt['choose_pass'] = 'Escoge contrase&ntilde;a';
$txt['verify_pass'] = 'Verifica contrase&ntilde;a';
$txt['position'] = 'Grupo';

$txt['profile_of'] = 'Ver perfil de';
$txt['total'] = 'Total';
$txt['posts_made'] = 'Mensajes';
$txt['website'] = 'Web';
$txt['register'] = 'Registrarse';
$txt['warning_status'] = 'Estado de Advertencia';
$txt['user_warn_watch'] = 'El usuario est&#38;#225; en la lista de vigilados';
$txt['user_warn_moderate'] = 'Cola de aprobaci&#38;#243;n de mensajes de usuarios';
$txt['user_warn_mute'] = 'El usuario tiene restringida la publicaci&#38;#243;n de mensajes';
$txt['warn_watch'] = 'Vigilado';
$txt['warn_moderate'] = 'Moderado';
$txt['warn_mute'] = 'Enmudecido';

$txt['message_index'] = '&Iacute;ndice de Mensajes';
$txt['news'] = 'Noticias';
$txt['home'] = 'Inicio';

$txt['lock_unlock'] = 'Bloquear/Desbloquear Tema';
$txt['post'] = 'Publicar';
$txt['error_occured'] = '&iexcl;Un error ha ocurrido!';
$txt['at'] = 'a las';
$txt['logout'] = 'Salir';
$txt['started_by'] = 'Iniciado por';
$txt['replies'] = 'Respuestas';
$txt['last_post'] = '&Uacute;ltimo mensaje';
$txt['admin_login'] = 'Ingresar a Administraci&oacute;n';
// Use numeric entities in the below string.
$txt['topic'] = 'Tema';
$txt['help'] = 'Ayuda';
$txt['remove_message'] = 'Eliminar mensaje';
$txt['notify'] = 'Notificar';
$txt['notify_request'] = '&#38;#191;Deseas una notificaci&oacute;n por email si alguien responde a este tema?';
// Use numeric entities in the below string.
$txt['regards_team'] = "Saludos,\nEl equipo " $context['forum_name'] . '.';
$txt['notify_replies'] = 'Notificar respuestas';
$txt['move_topic'] = 'Mover tema';
$txt['move_to'] = 'Mover a';
$txt['pages'] = 'P&aacute;ginas';
$txt['users_active'] = 'Usuarios activos en los &uacute;ltimos %s minutos';
$txt['personal_messages'] = 'Mensajes Privados';
$txt['reply_quote'] = 'Responder con cita';
$txt['reply'] = 'Respuesta';
$txt['reply_noun'] = 'Reply';
$txt['approve'] = 'Aprobar';
$txt['approve_all'] = 'aprobar todo';
$txt['awaiting_approval'] = 'Esperando Aprobaci&#38;#243;n';
$txt['attach_awaiting_approve'] = 'Adjuntos esperando aprobaci&#38;#243;n';
$txt['post_awaiting_approval'] = 'Nota: Este mensaje est&#38;#225; esperando la aprobaci&#38;#243;n de un moderador.';
$txt['there_are_unapproved_topics'] = 'Hay %1$s temas y %2$s mensajes esperando aprobaci&#38;#243;n en este foro. Pulsa <a href="%3$s">aqu&#38;#237;</a> para verlos todos.';

$txt['msg_alert_none'] = 'No tienes mensajes...';
$txt['msg_alert_you_have'] = 'tienes';
$txt['msg_alert_messages'] = 'mensajes';

$txt['online_users'] = 'Usuarios en L&iacute;nea';
$txt['personal_message'] = 'Mensaje Privado';
$txt['jump_to'] = 'Ir a';
$txt['go'] = 'ir';
$txt['are_sure_remove_topic'] = '&#38;#191;Est&aacute;s seguro de borrar este tema?';
$txt['yes'] = 'S&iacute;';
$txt['no'] = 'No';

$txt['search_end_results'] = 'Fin de resultados';
$txt['search_no_results'] = 'Lo siento, no se encontraron mensajes';
$txt['search_on'] = 'en';

$txt['search'] = 'Buscar';
$txt['all'] = 'Todos';

$txt['back'] = 'Atr&aacute;s';
$txt['password_reminder'] = 'Contrase&ntilde;a recordatorio';
$txt['topic_started'] = 'Mensaje iniciado por';
$txt['title'] = 'T&iacute;tulo';
$txt['post_by'] = 'Publicado por';
$txt['memberlist_searchable'] = 'Lista (con opci&oacute;n de b&uacute;squeda) de todos los usuarios registrados.';
$txt['welcome_member'] = 'Por favor, da la bienvenida a';
$txt['admin_center'] = 'Centro de Administraci&oacute;n SMF';
$txt['last_edit'] = '&Uacute;ltima modificaci&oacute;n';
$txt['notify_deactivate'] = '&iquest;Deseas desactivar la notificaci&oacute;n en este tema?';

$txt['recent_posts'] = 'Mensajes recientes';

$txt['location'] = 'Ubicaci&oacute;n';
$txt['gender'] = 'Sexo';
$txt['date_registered'] = 'Fecha de registro';

$txt['recent_view'] = 'Ver los mensajes m&aacute;s recientes del foro.';
$txt['recent_updated'] = 'es el tema actualizado m&aacute;s recientemente';

$txt['male'] = 'Masculino';
$txt['female'] = 'Femenino';

$txt['error_invalid_characters_username'] = 'Car&aacute;cter inv&aacute;lido en el nombre de usuario.';

$txt['welcome_guest'] = 'Bienvenido(a), <b>%s</b>. Por favor, <a href="' $scripturl '?action=login">ingresa</a> o <a href="' $scripturl '?action=register">reg&iacute;strate</a>.';
$txt['login_or_register'] = '\'Por favor <a href="\' . $scripturl . \'?action=login">ingresa</a> o <a href="\' . $scripturl . \'?action=register">reg&iacute;strese</a>.\'
'
;
$txt['welcome_guest_activate'] = '<br />&iquest;Perdiste tu  <a href="' $scripturl '?action=activate">email de activaci&oacute;n?</a>';
$txt['hello_member'] = 'Hola,';
// Use numeric entities in the below string.
$txt['hello_guest'] = 'Bienvenido(a),';
$txt['welmsg_hey'] = 'Hola,';
$txt['welmsg_welcome'] = 'Bienvenido(a),';
$txt['welmsg_please'] = 'Por favor';
$txt['select_destination'] = 'Por favor selecciona un destino';

// Escape any single quotes in here twice.. 'it\'s' -> 'it\\\'s'.
$txt['posted_by'] = 'Publicado por';

$txt['icon_smiley'] = 'Sonrisa';
$txt['icon_angry'] = 'Enojado';
$txt['icon_cheesy'] = 'Cheesy';
$txt['icon_laugh'] = 'Risa';
$txt['icon_sad'] = 'Triste';
$txt['icon_wink'] = 'Gi&ntilde;ar';
$txt['icon_grin'] = 'Sonreir';
$txt['icon_shocked'] = 'Impresionado';
$txt['icon_cool'] = 'Cool';
$txt['icon_huh'] = 'Huh';
$txt['icon_rolleyes'] = 'Girar ojos';
$txt['icon_tongue'] = 'Lengua';
$txt['icon_embarrassed'] = 'Avergonzado';
$txt['icon_lips'] = 'Labios sellados';
$txt['icon_undecided'] = 'Indeciso';
$txt['icon_kiss'] = 'Beso';
$txt['icon_cry'] = 'Llorar';

$txt['moderator'] = 'Moderador';
$txt['moderators'] = 'Moderadores';

$txt['mark_board_read'] = 'Marcar Temas como le&iacute;dos para este foro';
$txt['views'] = 'Vistas';
$txt['new'] = 'Nuevo';

$txt['view_all_members'] = 'Ver todos los usuarios';
$txt['view'] = 'Ver';

$txt['viewing_members'] = 'Viendo usuarios de %1$s a %2$s';
$txt['of_total_members'] = 'de %1$s usuarios totales';

$txt['forgot_your_password'] = '&iquest;Olvidaste tu contrase&ntilde;a?';

$txt['date'] = 'Fecha';
// Use numeric entities in the below string.
$txt['from'] = 'De';
$txt['check_new_messages'] = 'Recibir Nuevos Mensajes';
$txt['to'] = 'Para';

$txt['board_topics'] = 'Temas';
$txt['members_title'] = 'Usuarios';
$txt['members_list'] = 'Lista de usuarios';
$txt['new_posts'] = 'Nuevos Mensajes';
$txt['old_posts'] = 'No hay nuevos Mensajes';

$txt['sendtopic_send'] = 'Enviar';

$txt['time_offset'] = 'Diferencia Horaria';
$txt['or'] = 'o';

$txt['no_matches'] = 'Lo siento, no se encontraron mensajes';

$txt['notification'] = 'Notificaci&oacute;n';

$txt['your_ban'] = 'Lo siento %s, tienes el acceso denegado a este foro!';
$txt['your_ban_expires'] = 'Tu bloqueo de acceso expira %s';
$txt['your_ban_expires_never'] = 'Tu bloqueo de acceso es permanente.';
$txt['ban_continue_browse'] = 'Puedes continuar navegando por el foro como invitado.';

$txt['mark_as_read'] = 'Marcar TODOS los mensajes como le&iacute;dos';

$txt['hot_topics'] = 'Tema candente (M&aacute;s de %s respuestas)';
$txt['very_hot_topics'] = 'Tema muy candente (M&aacute;s de %s respuestas)';
$txt['locked_topic'] = 'Tema bloqueado';
$txt['normal_topic'] = 'Tema normal';
$txt['participation_caption'] = 'Temas en los que has publicado';

$txt['go_caps'] = 'IR';

$txt['print'] = 'Imprimir';
$txt['profile'] = 'Editar Perfil';
$txt['topic_summary'] = 'Sumario de Temas';
$txt['not_applicable'] = 'N/D';
$txt['message_lowercase'] = 'mensaje';
$txt['name_in_use'] = 'Este nombre est&aacute; en uso por otro usuario.';

$txt['total_members'] = 'Total de Usuarios';
$txt['total_posts'] = 'Total de Mensajes';
$txt['total_topics'] = 'Total de Temas';

$txt['mins_logged_in'] = 'Duraci&oacute;n de la sesi&oacute;n en minutos';

$txt['preview'] = 'Previsualizar';
$txt['always_logged_in'] = 'Recordar siempre Usuario/Contrase&ntilde;a';

$txt['logged'] = 'En l&iacute;nea';
// Use numeric entities in the below string.
$txt['ip'] = 'IP';

$txt['www'] = 'WWW';

$txt['by'] = 'por';

$txt['hours'] = 'horas';
$txt['days_word'] = 'd&iacute;as';

$txt['newest_member'] = ', nuestro usuario m&aacute;s reciente.';

$txt['search_for'] = 'Buscar por';

$txt['aim'] = 'AIM';
// In this string, please use +'s for spaces.
$txt['aim_default_message'] = '&iquest;Est&aacute;s.+ahi?';
$txt['aim_title'] = 'AOL Instant Messenger';
$txt['icq'] = 'ICQ';
$txt['icq_title'] = 'ICQ Messenger';
$txt['msn'] = 'MSN';
$txt['msn_title'] = 'MSN Messenger';
$txt['yim'] = 'YIM';
$txt['yim_title'] = 'Yahoo Instant Messenger';

$txt['maintain_mode_on'] = 'Recuerda, este foro est&aacute; en \'Modo de Mantenimiento\'.';

$txt['read'] = 'Le&iacute;do';
$txt['times'] = 'veces';

$txt['forum_stats'] = 'Estad&iacute;sticas SMF';
$txt['latest_member'] = '&Uacute;ltimo usuario';
$txt['total_cats'] = 'Total de Categor&iacute;as';
$txt['latest_post'] = '&Uacute;ltimo mensaje';

$txt['you_have'] = 'Tienes';
$txt['click'] = 'Haz clic';
$txt['here'] = 'aqu&iacute;';
$txt['to_view'] = 'para verlos.';

$txt['total_boards'] = 'Total de Foros';

$txt['print_page'] = 'Imprimir P&aacute;gina';

$txt['valid_email'] = 'Debe ser una direcci&oacute;n v&aacute;lida de email.';

$txt['geek'] = 'un mont&oacute;n';
$txt['info_center_title'] = $context['forum_name'] . ' - Centro de Informaci&oacute;n';

$txt['send_topic'] = 'Enviar tema';

$txt['sendtopic_title'] = 'Enviar tema &#38;#171; %s &#38;#187; a un amigo.';
$txt['sendtopic_sender_name'] = 'Tu nombre';
$txt['sendtopic_sender_email'] = 'Tu direcci&oacute;n de email';
$txt['sendtopic_receiver_name'] = 'Nombre del destinatario';
$txt['sendtopic_receiver_email'] = 'Direcci&oacute;n email del destinatario';
$txt['sendtopic_comment'] = 'Agregar un comentario';

$txt['allow_user_email'] = '&#38;#191;Permitir a los usuarios enviarte emails?';

$txt['check_all'] = 'Seleccionar todo';

// Use numeric entities in the below string.
$txt['database_error'] = 'Error en la Base de Datos';
$txt['try_again'] = 'Por favor intenta nuevamente.  Si esta pantalla aparece nuevamente, notifica del error a un administrador.';
$txt['file'] = 'Archivo';
$txt['line'] = 'L&iacute;nea';
// Use numeric entities in the below string.
$txt['tried_to_repair'] = 'SMF ha detectado errores en la base de datos, y los ha tratado de corregir autom&#38;#225;ticamente.  Si los problemas persisten, o sigues obteniendo estos correos, por favor, contacta con tu proveedor de alojamiento web.';
$txt['database_error_versions'] = '<b>Nota:</b> Parece que tu base de datos puede necesitar una actualizaci&oacute;n. La versi&oacute;n de los archivos de tu foro est&aacute;n en la versi&oacute;n %s, mientras que tu base de datos est&aacute; en la versi&oacute;n de SMF %s. Te recomendamos que ejecutes la &uacute;ltima versi&oacuten de upgrade.php.';
$txt['template_parse_error'] = '&iexcl;Error al analizar la Plantilla!';
$txt['template_parse_error_message'] = 'Parece que algo se ha estropeado en el foro con el sistema de temas.  Este problema puede que solamente sea temporal, por favor, regresa en unos momentos e intentalo nuevamente.  Si continuas viendo este mensaje, por favor contacta al administrador.<br /><br />Puedes intentar <a href="javascript:location.reload();">actualizar esta p&aacute;gina</a>.';
$txt['template_parse_error_details'] = 'Hubo un problema cargando el tema o archivo de idioma <tt><b>%1$s</b></tt>.  Por favor revisa la sintaxis e intenta nuevamente - recuerda, los ap&oacute;strofes (<tt>\'</tt>) por lo general deben tener una secuencia de escape con la diagonal invertida (<tt>\\</tt>).  Para ver informaci&#38;#243;n especifica del error del sitio de PHP intenta <a href="' $boardurl '%1$s">acceder al archivo directamente</a>.<br /><br />Puedes intentar <a href="javascript:location.reload();">actualizar esta p&aacute;gina</a> o <a href="' $scripturl '?theme=1">usar el tema de default</a>.';

$txt['today'] = '<b>Hoy a las</b> ';
$txt['yesterday'] = '<b>Ayer</b> a las ';
$txt['new_poll'] = 'Publicar Nueva Encuesta';
$txt['poll_question'] = 'Pregunta';
$txt['poll_vote'] = 'Enviar voto';
$txt['poll_total_voters'] = 'Total de votos';
$txt['shortcuts'] = 'acceso r&aacute;pido: presiona alt+s para publicar o alt+p para previsualizar';
$txt['poll_results'] = 'Ver resultados';
$txt['poll_lock'] = 'Bloquear Encuesta';
$txt['poll_unlock'] = 'Desbloquear Encuesta';
$txt['poll_edit'] = 'Editar Encuesta';
$txt['poll'] = 'Encuesta';
$txt['one_day'] = '1 D&iacute;a';
$txt['one_week'] = '1 Semana';
$txt['one_month'] = '1 Mes';
$txt['forever'] = 'Siempre';
$txt['quick_login_dec'] = 'Ingresar con nombre de usuario, contrase&ntilde;a y duraci&oacute;n de la sesi&oacute;n';
$txt['one_hour'] = '1 Hora';
$txt['moved'] = 'MOVIDO';
$txt['moved_why'] = 'Por favor introduce una breve descripci&oacute;n de<br />por qu&eacute; este tema se est&aacute; moviendo.';
$txt['board'] = 'Foro';
$txt['in'] = 'en';
$txt['sticky_topic'] = 'Sticky Topic';

$txt['delete'] = 'Borrar';

$txt['your_pms'] = 'Tus Mensajes privados';

$txt['kilobyte'] = 'KB';

$txt['more_stats'] = '[M&aacute;s Estad&iacute;sticas]';

// Use numeric entities in the below three strings.
$txt['code'] = 'C&#38;#243;digo';
$txt['code_select'] = '[Seleccionar]';
$txt['quote_from'] = 'Cita de';
$txt['quote'] = 'Citar';

$txt['merge_to_topic_id'] = 'ID del tema de destino';
$txt['split'] = 'Dividir Tema';
$txt['merge'] = 'Combinar Temas';
$txt['subject_new_topic'] = 'Asunto para el nuevo tema';
$txt['split_this_post'] = 'S&oacute;lo dividir este mensaje.';
$txt['split_after_and_this_post'] = 'Dividir tema a partir de este mensaje (incluy&eacute;ndolo).';
$txt['select_split_posts'] = 'Selecciona los mensajes a dividir.';
$txt['new_topic'] = 'Nuevo Mensaje';
$txt['split_successful'] = 'El tema se ha dividido satisfactoriamente en dos temas.';
$txt['origin_topic'] = 'Tema de Origen';
$txt['please_select_split'] = 'Por favor selecciona qu&eacute; mensajes deseas dividir.';
$txt['merge_successful'] = 'Los temas han sido satisfactoriamente combinados.';
$txt['new_merged_topic'] = 'Nuevo Tema Combinado';
$txt['topic_to_merge'] = 'Tema a ser combinado';
$txt['target_board'] = 'Foro destino';
$txt['target_topic'] = 'Tema destino';
$txt['merge_confirm'] = '&iquest;Est&aacute;s seguro que deseas combinar?';
$txt['with'] = 'con';
$txt['merge_desc'] = 'Esta funci&oacute;n combinar&aacute; los mensajes de dos temas en un tema. Los mensajes ser&aacute;n ordenados de acuerdo con la fecha en que se publicaron. Por lo tanto, el mensaje publicado m&aacute;s recientemente ser&aacute; el primer mensaje del tema combinado.';

$txt['set_sticky'] = 'Fijar tema';
$txt['set_nonsticky'] = 'Desfijar tema';
$txt['set_lock'] = 'Bloquear tema';
$txt['set_unlock'] = 'Desbloquear tema';

$txt['search_advanced'] = 'B&uacute;squeda Avanzada';

$txt['security_risk'] = 'RIESGO MAYOR DE SEGURIDAD:';
$txt['not_removed'] = 'No has borrado ';

$txt['cache_writable_head'] = 'Aviso de Rendiento';
$txt['cache_writable'] = 'No se puede escribir en el directorio cach&#38;#233; - afectar&#38;#225; negativamente al rendimiento de tu foro.';

$txt['page_created'] = 'P&aacute;gina creada en ';
$txt['seconds_with'] = ' segundos con ';
$txt['queries'] = ' consultas.';

$txt['report_to_mod_func'] = 'Usa esta funci&oacute;n para informar a los moderadores y administradores de un mensaje abusivo, o publicado incorrectamente.<br /><i>Es importante mencionar que tu direcci&oacute;n de email ser&aacute; revelada al moderador si usas esta funci&oacute;n.</i>';

$txt['online'] = 'Conectado';
$txt['offline'] = 'Desconectado';
$txt['pm_online'] = 'Mensaje Privado (Conectado)';
$txt['pm_offline'] = 'Mensaje Privado (Desconectado)';
$txt['status'] = 'Estado';

$txt['go_up'] = 'Ir Arriba';
$txt['go_down'] = 'Ir Abajo';

$forum_copyright '<a href="http://www.simplemachines.org/" title="Simple Machines Forum" target="_blank">Powered by %s</a> | 
<a href="http://www.simplemachines.org/about/copyright.php" title="Free Forum Software" target="_blank">SMF &copy; 2006, Simple Machines LLC</a>'
;

$txt['birthdays'] = 'Cumplea&ntilde;os:';
$txt['events'] = 'Eventos:';
$txt['birthdays_upcoming'] = 'Cumplea&ntilde;os pr&oacute;ximos:';
$txt['events_upcoming'] = 'Eventos pr&oacute;ximos:';
// Prompt for holidays in the calendar, leave blank to just display the holiday's name.
$txt['calendar_prompt'] = '';
$txt['calendar_month'] = 'Mes:';
$txt['calendar_year'] = 'A&ntilde;o:';
$txt['calendar_day'] = 'D&iacute;a:';
$txt['calendar_event_title'] = 'T&iacute;tulo del Evento:';
$txt['calendar_post_in'] = 'Publicar en:';
$txt['calendar_edit'] = 'Editar evento';
$txt['event_delete_confirm'] = '&iquest;Borrar este evento?';
$txt['event_delete'] = 'Borrar evento';
$txt['calendar_post_event'] = 'Publicar evento';
$txt['calendar'] = 'Calendario';
$txt['calendar_link'] = 'Enlazar al calendario';
$txt['calendar_upcoming'] = 'Calendario de eventos pr&oacute;ximos';
$txt['calendar_today'] = 'Calendario de Hoy';
$txt['calendar_week'] = 'Semana';
$txt['calendar_numb_days'] = 'N&uacute;mero de D&iacute;as:';
$txt['calendar_how_edit'] = '&iquest;c&oacute;mo editas esos eventos?';
$txt['calendar_link_event'] = 'Enlazar evento';
$txt['calendar_confirm_delete'] = '&#38;#191;Est&#38;#225;s seguro que deseas borrar este evento?';
$txt['calendar_linked_events'] = 'Eventos Vinculados';
$txt['calendar_click_all'] = 'Pulsa para verlos todos %1$s';

$txt['moveTopic1'] = 'Publicar un tema de redireccionamiento';
$txt['moveTopic2'] = 'Cambiar el t&iacute;tulo del tema';
$txt['moveTopic3'] = 'Nuevo asunto';
$txt['moveTopic4'] = 'Cambiar el asunto de cada mensaje';
$txt['move_topic_unapproved_js'] = '&#38;#161;Advertencia! Este tema a&#38;#250;n no ha sido aprobado.\\n\\nNo se recomienda que crees un tema de redirecci&#38;#243;n a menos que tengas la intenci&#38;#243;n de aprobar el mensaje inmediatamente despu&#38;#233;s de moverlo.';

$txt['theme_template_error'] = 'No se pudo cargar la plantilla \'%s\'.';
$txt['theme_language_error'] = 'No se pudo cargar el archivo de idioma \'%s\'.';

$txt['parent_boards'] = 'Subforos';

$txt['smtp_no_connect'] = 'No fue posible conectarse al servidor SMTP';
$txt['smtp_port_ssl'] = 'Puerto SMTP configurado incorrectamente; deber&iacute;a ser 465 en servidores SSL.';
$txt['smtp_bad_response'] = 'No se pudieron obterer los codigos de respuesta del servidor de mail';
$txt['smtp_error'] = 'Hubo problemas al enviar el mail. Error: ';
$txt['mail_send_unable'] = 'No se le pudo enviar el email a la direcci&oacute;n \'%s\'';

$txt['mlist_search'] = 'Buscar por usuarios';
$txt['mlist_search_again'] = 'Buscar nuevamente';
$txt['mlist_search_email'] = 'Buscar por direcci&oacute;n de email';
$txt['mlist_search_messenger'] = 'Buscar por nick de messenger';
$txt['mlist_search_group'] = 'Buscar por grupo';
$txt['mlist_search_name'] = 'Buscar por nombre';
$txt['mlist_search_website'] = 'Buscar por sitio Web';
$txt['mlist_search_results'] = 'Buscar resultados por';
$txt['mlist_search_by'] = 'Buscar %1$s';
$txt['mlist_menu_view'] = 'Ver la lista de usuarios';

$txt['attach_downloaded'] = 'descargado';
$txt['attach_viewed'] = 'visto';
$txt['attach_times'] = 'veces';

$txt['settings'] = 'Configuraci&oacute;n';
$txt['never'] = 'Nunca';
$txt['more'] = 'm&aacute;s';

$txt['hostname'] = 'Nombre del servidor';
$txt['you_are_post_banned'] = 'Lo sentimos %s, tienes el restringido el poder publicar mensajes o enviar mensajes privados en el foro.';
$txt['ban_reason'] = 'Raz&oacute;n';

$txt['tables_optimized'] = 'Tablas de la base de datos optimizadas';

$txt['add_poll'] = 'Agregar encuesta';
$txt['poll_options6'] = 'Puedes seleccionar hasta %s opciones.';
$txt['poll_remove'] = 'Eliminar encuesta';
$txt['poll_remove_warn'] = '&iquest;Est&aacute;s seguro que deseas eliminar esta encuesta del tema?';
$txt['poll_results_expire'] = 'Los resultados se mostrar&aacute;n una vez que la encuesta se haya cerrado';
$txt['poll_expires_on'] = 'La votaci&oacute;n se cierra';
$txt['poll_expired_on'] = 'Votaci&oacute;n cerrada';
$txt['poll_change_vote'] = 'Eliminar Voto';
$txt['poll_return_vote'] = 'Opciones de votaci&oacute;n';
$txt['poll_cannot_see'] = 'No puedes ver los resultados de la encuesta en este momento';

$txt['quick_mod_approve'] = 'Aprobar los seleccionados';
$txt['quick_mod_remove'] = 'Eliminar seleccionado(s)';
$txt['quick_mod_lock'] = 'Bloquear seleccionado(s)';
$txt['quick_mod_sticky'] = 'Fijar seleccionado(s)';
$txt['quick_mod_move'] = 'Mover seleccionado(s) a';
$txt['quick_mod_merge'] = 'Combinar seleccionado(s)';
$txt['quick_mod_markread'] = 'Marcar seleccionados como le&iacute;dos';
$txt['quick_mod_go'] = '&iexcl;Ir!';
$txt['quickmod_confirm'] = '&#38;#191;Est&#38;#225;s seguro que deseas hacer esto?';

$txt['spell_check'] = 'Revisar Ortograf&iacute;a';

$txt['quick_reply'] = 'Respuesta r&aacute;pida';
$txt['quick_reply_desc'] = 'En la <i>Respuesta r&aacute;pida</i> puedes usar BBC y smileys como lo har&iacute;as en un mensaje normal, pero de una manera m&aacute;s conveniente.';
$txt['quick_reply_warning'] = '&iexcl;Advertencia: el tema est&aacute; bloqueado!<br />Solamente admins y moderadores pueden responder.';
$txt['quick_reply_verification'] = 'After submitting your post you will be directed to the regular post page to verify your post %1$s.';
$txt['quick_reply_verification_guests'] = '(requerido para todos los invitados)';
$txt['quick_reply_verification_posts'] = '(required for all users with less than %1$d posts)';
$txt['wait_for_approval'] = 'Nota: este mensaje no se mostrar&#38;#225; hasta que sea aprobado por un moderador.';

$txt['notification_enable_board'] = '&iquest;Est&aacute;s seguro que deseas activar la notificaci&oacute;n de nuevos temas para este foro?';
$txt['notification_disable_board'] = '&iquest;Est&aacute;s seguro que deseas desactivar la notificaci&oacute;n de nuevos temas para este foro?';
$txt['notification_enable_topic'] = '&iquest;Est&aacute;s seguro que deseas activar la notificaci&oacute;n de nuevas respuestas para este tema?';
$txt['notification_disable_topic'] = '&iquest;Est&aacute;s seguro que deseas desactivar la notificaci&oacute;n de nuevas respuestas para este tema?';

$txt['report_to_mod'] = 'Reportar al moderador';
$txt['issue_warning_post'] = 'Issue a warning because of this message';

$txt['unread_topics_visit'] = 'Nuevos temas no le&iacute;dos';
$txt['unread_topics_visit_none'] = 'No se han encontrado temas no le&iacute;dos desde tu &uacute;ltima visita.  <a href="' $scripturl '?action=unread;all">Haz <i>clic</i> aqu&iacute; para intentar todos los temas no le&iacute;dos</a>.';
$txt['unread_topics_all'] = 'Todos los temas no le&iacute;dos';
$txt['unread_replies'] = 'Temas actualizados';

$txt['who_title'] = 'Qui&eacute;n est&aacute; en l&iacute;nea';
$txt['who_and'] = ' y ';
$txt['who_viewing_topic'] = ' est&aacute;n viendo este tema.';
$txt['who_viewing_board'] = ' est&aacute;n viendo este foro.';
$txt['who_member'] = 'Usuario';

$txt['powered_by_php'] = 'Impulsado por PHP';
$txt['powered_by_mysql'] = 'Impulsado por MySQL';
$txt['valid_html'] = 'HTML 4.01 v&aacute;lido';
$txt['valid_xhtml'] = 'XHTML 1.0 v&aacute;lido!';
$txt['valid_css'] = 'CSS v&aacute;lido!';

$txt['guest'] = 'Visitante';
$txt['guests'] = 'Visitantes';
$txt['user'] = 'Usuario';
$txt['users'] = 'Usuarios';
$txt['hidden'] = 'Oculto(s)';
$txt['buddy'] = 'Amigo';
$txt['buddies'] = 'Amigos';
$txt['most_online_ever'] = 'M&aacute;ximo en linea siempre';
$txt['most_online_today'] = 'M&aacute;ximo en linea hoy';

$txt['merge_select_target_board'] = 'Selecciona el foro destino del tema combinado';
$txt['merge_select_poll'] = 'Selecciona cual encuesta tendr&aacute; el tema combinado';
$txt['merge_topic_list'] = 'Selecciona los temas a combinar';
$txt['merge_select_subject'] = 'Selecciona el t&iacute;tulo del tema combinado';
$txt['merge_custom_subject'] = 'T&iacute;tulo personalizado';
$txt['merge_enforce_subject'] = 'Cambiar el t&iacute;tulo de todos los mensajes';
$txt['merge_include_notifications'] = '&iquest;Incluir notificaciones?';
$txt['merge_check'] = '&iquest;Combinar?';
$txt['merge_no_poll'] = 'Sin encuesta';

$txt['response_prefix'] = 'Re:';
$txt['current_icon'] = 'Icono actual';
$txt['message_icon'] = 'Message Icon';

$txt['smileys_current'] = 'Conjunto actual de Smileys';
$txt['smileys_none'] = 'Sin Smileys';
$txt['smileys_forum_board_default'] = 'Las que el foro est&eacute; utilizando por defecto';

$txt['search_results'] = 'Resultados de la b&uacute;squeda';

$txt['totalTimeLogged1'] = 'Tiempo total en l&iacute;nea: ';
$txt['totalTimeLogged2'] = ' d&iacute;as, ';
$txt['totalTimeLogged3'] = ' horas y ';
$txt['totalTimeLogged4'] = ' minutos.';
$txt['totalTimeLogged5'] = 'd';
$txt['totalTimeLogged6'] = 'h';
$txt['totalTimeLogged7'] = 'm';

$txt['approve_thereis'] = 'Hay';
$txt['approve_thereare'] = 'Hay';
$txt['approve_member'] = 'un usuario';
$txt['approve_members'] = 'usuarios';
$txt['approve_members_waiting'] = 'esperando aprobaci&oacute;n.';

$txt['notifyboard_turnon'] = '&iquest;Deseas una notificaci&oacute;n por email cuando alguien publique un nuevo tema en este foro?';
$txt['notifyboard_turnoff'] = '&iquest;Est&aacute;s seguro que NO deseas recibir notificaciones de temas nuevos en este foro?';

$txt['activate_code'] = 'Tu c&#38;#243;digo de activaci&#38;#243;n es';

$txt['find_members'] = 'Buscar usuarios';
$txt['find_username'] = 'Nombre, nombre de usuario, o direcci&oacute;n de email';
$txt['find_buddies'] = '&iquest;Mostrar amigos solamente?';
$txt['find_wildcards'] = 'C&oacute;modines permitidos: *, ?';
$txt['find_no_results'] = 'No se encontraron resultados';
$txt['find_results'] = 'Resultados';
$txt['find_close'] = 'Cerrar';

$txt['unread_since_visit'] = 'Mostrar mensajes no le&iacute;dos desde la &uacute;ltima visita.';
$txt['show_unread_replies'] = 'Mostrar nuevas respuestas a tus mensajes.';

$txt['change_color'] = 'Cambiar Color';

$txt['quickmod_delete_selected'] = 'Borrar seleccionados';

// In this string, don't use entities. (&amp;, etc.)
$txt['show_personal_messages'] = 'Has recibido uno o más mensajes privados.\\n¿Deseas verlos ahora (en una nueva ventana)?';

$txt['previous_next_back'] = '&laquo; anterior';
$txt['previous_next_forward'] = 'pr&oacute;ximo &raquo;';

$txt['movetopic_auto_board'] = '[FORO]';
$txt['movetopic_auto_topic'] = '[URL DEL TEMA]';
$txt['movetopic_default'] = 'El tema ha sido movido a ' $txt['movetopic_auto_board'] . ".\n\n" $txt['movetopic_auto_topic'];

$txt['upshrink_description'] = 'Encoger o expandir encabezado.';

$txt['mark_unread'] = 'Marcar como no le&iacute;dos';

$txt['ssi_not_direct'] = 'Por favor no accedas a SSI.php usando directamente la URL; mejor utiliza la ruta (%s) o agrega ?ssi_function=algun_valor.';
$txt['ssi_session_broken'] = '&iexcl;SSI.php no pudo cargar una sesi&oacute;n!  Esto puede causar problemas con algunas funciones, tales como ingresar o salir - &iexcl;Por favor, aseg&uacute;rate de que SSI.php est&eacute; inclu&iacute;do siempre al principio *antes de cualquier otro c&oacute;digo* en todos tus scripts!';

// Escape any single quotes in here twice.. 'it\'s' -> 'it\\\'s'.
$txt['preview_title'] = 'Previsualizar mensaje';
$txt['preview_fetch'] = 'Obteniendo la previsualizaci&oacute;n...';
$txt['preview_new'] = 'Mensaje Nuevo';
$txt['error_while_submitting'] = 'Hubo un error mientras se enviaba este mensaje.';
$txt['error_old_topic'] = 'Advertencia: No se ha publicado ninguna respuesta a este tema desde hace %d d&#38;#237;as como m&#38;#237;nimo.<br />A menos que est&#38;#233;s seguro de que quieres responder, por favor, considera el empezar un nuevo tema.';

$txt['split_selected_posts'] = 'Mensajes seleccionados';
$txt['split_selected_posts_desc'] = 'Los mensajes mostrados a continuaci&oacute;n formar&aacute;n un nuevo tema una vez divididos.';
$txt['split_reset_selection'] = 'reinicializar selecci&oacute;n';

$txt['modify_cancel'] = 'Cancelar';
$txt['mark_read_short'] = 'Marcar como leido';

$txt['pm_short'] = 'Mis mensajes';
$txt['pm_menu_read'] = 'Leer tus mensajes';
$txt['pm_menu_send'] = 'Enviar un mensaje';

$txt['hello_member_ndt'] = 'Hola';

$txt['unapproved_posts'] = 'Mensajes no aprobados (Temas: %d, Mensajes: %d)';

$txt['ajax_in_progress'] = 'Cargando...';

$txt['mod_reports_waiting'] = 'Actualmente hay %1$d informes de moderador abiertos.';

$txt['view_unread_category'] = 'Mensajes no le&#38;#237;dos';
$txt['verification'] = 'Verificaci&oacute;n';
$txt['visual_verification_description'] = 'Escribe las letras mostradas en la im&aacute;gen';
$txt['visual_verification_sound'] = 'Escuchar el texto';
$txt['visual_verification_request_new'] = 'Solicitar otra imagen';

// Sub menu labels
$txt['summary'] = 'Resumen';
$txt['account'] = 'Configuraci&#38;#243;n de Cuenta';
$txt['forumProfile'] = 'Perfil del Foro';

$txt['modSettings_title'] = 'Caracter&#38;#237;sticas y Opciones';
$txt['package'] = 'Paquetes';
$txt['errlog'] = 'Log de Errores';
$txt['edit_permissions'] = 'Permisos';
$txt['mc_unapproved_attachments'] = 'Adjuntos no aprobados';
$txt['mc_unapproved_poststopics'] = 'Mensajes y Temas no aprobados';
$txt['mc_reported_posts'] = 'Mensajes Informados';
$txt['modlog_view'] = 'Log de Moderaci&#38;#243;n';
$txt['calendar_menu'] = 'Ver el Calendario';

//!!! Send email strings - should move?
$txt['send_email'] = 'Enviar Email';
$txt['send_email_disclosed'] = 'Ten en cuenta que ser&#38;#225; visible por el destinatario.';
$txt['send_email_subject'] = 'Asunto del Email';

$txt['ignoring_user'] = 'Est&#38;#225;s ignorando a este usuario.';
$txt['show_ignore_user_post'] = 'Mu&#38;#233;strame el mensaje.';

$txt['spider'] = 'Ara&ntilde;a';
$txt['spiders'] = 'Ara&ntilde;as';
$txt['openid'] = 'OpenID';

$txt['downloads'] = 'Descargas';
$txt['filesize'] = 'Tama&ntilde;o';
$txt['subscribe_webslice'] = 'Subscribe to Webslice';

// Restore topic
$txt['restore_topic'] = 'Restaurar Tema';
$txt['restore_message'] = 'Restaurar Mensaje';
$txt['quick_mod_restore'] = 'Restaurar Seleccionado';

// Editor prompt.
$txt['prompt_text_email'] = 'Por favor introduce la direcci&oacute;n de email.';
$txt['prompt_text_ftp'] = 'Por favor, introduce la direcci&oacute;n FTP';
$txt['prompt_text_url'] = 'Por favor, introduce la URL a la que quieres enlazar';
$txt['prompt_text_img'] = 'Introduce la direcci&oacute;n de la im&aacute;gen';

?>

nitroglicerino


greyknight17

Shouldn't be in those files.....I think it's /Sources/Subs.php with the problem. Attach that file here please. The lines we want to look for should be:

'register' => array(
'title' => $txt['register'],
'href' => $scripturl . '?action=register',
'show' => $user_info['is_guest'],
'sub_buttons' => array(
),
'is_last' => true,
),

nitroglicerino

Quote from: greyknight17 on January 31, 2009, 12:54:08 PM
Shouldn't be in those files.....I think it's /Sources/Subs.php with the problem. Attach that file here please. The lines we want to look for should be:

'register' => array(
'title' => $txt['register'],
'href' => $scripturl . '?action=register',
'show' => $user_info['is_guest'],
'sub_buttons' => array(
),
'is_last' => true,
),



'login' => array(
'title' => $txt['login'],
'href' => $scripturl . '?action=login',
'show' => $user_info['is_guest'],
'sub_buttons' => array(
),
),
'register' => array(
'title' => $txt['register'],
'href' => $scripturl . '?action=register',
'show' => $user_info['is_guest'],
'sub_buttons' => array(
),
'is_last' => true,
),
'logout' => array(
'title' => $txt['logout'],
'href' => $scripturl . '?action=logout;sesc=%1$s',
'show' => !$user_info['is_guest'],
'sub_buttons' => array(
),
'is_last' => true,
),
);

nitroglicerino


greyknight17

nitroglicerino, sorry for the late reply. It looks like you resolved the issue. What did you do to resolve the problem?

I will mark this topic as solved. If it's not solved yet, feel free to mark it back as unresolved.

myforum.co.in

I got following error in signing up through openid

"The signature from the identity provider is invalid."

my url is hxxp:www.myforum.co.in/community [nonactive]
and board is SMF 2.0 RC1-1

Advertisement: