mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
More lang related cleanups
git-svn-id: file:///svn/phpbb/trunk@1355 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
bfa98e0e3a
commit
939e985571
31 changed files with 75 additions and 84 deletions
|
@ -202,7 +202,7 @@ $template->assign_vars(array(
|
||||||
"L_PASSWORD" => $lang['Password'],
|
"L_PASSWORD" => $lang['Password'],
|
||||||
"L_LOGIN" => $lang['Login'],
|
"L_LOGIN" => $lang['Login'],
|
||||||
"L_LOG_ME_IN" => $lang['Log_me_in'],
|
"L_LOG_ME_IN" => $lang['Log_me_in'],
|
||||||
"L_INDEX" => $lang['Forum_Index'],
|
"L_INDEX" => sprintf($lang['Forum_Index'], $board_config['sitename']),
|
||||||
"L_REGISTER" => $lang['Register'],
|
"L_REGISTER" => $lang['Register'],
|
||||||
"L_PROFILE" => $lang['Profile'],
|
"L_PROFILE" => $lang['Profile'],
|
||||||
"L_SEARCH" => $lang['Search'],
|
"L_SEARCH" => $lang['Search'],
|
||||||
|
@ -234,6 +234,7 @@ $template->assign_vars(array(
|
||||||
"L_BY" => $lang['by'],
|
"L_BY" => $lang['by'],
|
||||||
"L_LOGIN_LOGOUT" => $l_login_logout,
|
"L_LOGIN_LOGOUT" => $l_login_logout,
|
||||||
"L_SEARCH_UNANSWERED" => $lang['Search_unanswered'],
|
"L_SEARCH_UNANSWERED" => $lang['Search_unanswered'],
|
||||||
|
"L_SEARCH_SELF" => $lang['Search_your_posts'],
|
||||||
|
|
||||||
"U_INDEX" => append_sid("index.".$phpEx),
|
"U_INDEX" => append_sid("index.".$phpEx),
|
||||||
"U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"),
|
"U_REGISTER" => append_sid("profile.".$phpEx."?mode=register"),
|
||||||
|
@ -247,7 +248,7 @@ $template->assign_vars(array(
|
||||||
"U_MEMBERSLIST" => append_sid("memberlist.".$phpEx),
|
"U_MEMBERSLIST" => append_sid("memberlist.".$phpEx),
|
||||||
"U_GROUP_CP" => append_sid("groupcp.".$phpEx),
|
"U_GROUP_CP" => append_sid("groupcp.".$phpEx),
|
||||||
"U_SEARCH_UNANSWERED" => append_sid("search.".$phpEx."?search_id=unanswered"),
|
"U_SEARCH_UNANSWERED" => append_sid("search.".$phpEx."?search_id=unanswered"),
|
||||||
|
"U_SEARCH_SELF" => append_sid("search.".$phpEx."?search_id=egosearch"),
|
||||||
|
|
||||||
"S_CONTENT_DIRECTION" => $lang['DIRECTION'],
|
"S_CONTENT_DIRECTION" => $lang['DIRECTION'],
|
||||||
"S_CONTENT_ENCODING" => $lang['ENCODING'],
|
"S_CONTENT_ENCODING" => $lang['ENCODING'],
|
||||||
|
@ -308,15 +309,6 @@ if( !$userdata['session_logged_in'] )
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
$template->assign_block_vars("switch_user_logged_in", array());
|
$template->assign_block_vars("switch_user_logged_in", array());
|
||||||
//
|
|
||||||
// Bart's quick ego search
|
|
||||||
//
|
|
||||||
$template->assign_block_vars("egosearch", array(
|
|
||||||
"L_SEARCH_SELF" => $lang['Search_your_posts'],
|
|
||||||
"U_SEARCH_SELF" => append_sid("search.".$phpEx."?search_id=egosearch"))
|
|
||||||
);
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
header ("Cache-Control: no-store, no-cache, must-revalidate");
|
header ("Cache-Control: no-store, no-cache, must-revalidate");
|
||||||
|
|
|
@ -31,8 +31,8 @@
|
||||||
// varies ... give it your best guess!
|
// varies ... give it your best guess!
|
||||||
//
|
//
|
||||||
|
|
||||||
setlocale(LC_ALL, "en");
|
//setlocale(LC_ALL, "en");
|
||||||
$lang['ENCODING'] = "iso-8859-1";
|
$lang['ENCODING'] = "utf-8";
|
||||||
$lang['DIRECTION'] = "LTR";
|
$lang['DIRECTION'] = "LTR";
|
||||||
$lang['LEFT'] = "LEFT";
|
$lang['LEFT'] = "LEFT";
|
||||||
$lang['RIGHT'] = "RIGHT";
|
$lang['RIGHT'] = "RIGHT";
|
||||||
|
@ -59,6 +59,7 @@ $lang['Author'] = "Author";
|
||||||
$lang['Time'] = "Time";
|
$lang['Time'] = "Time";
|
||||||
$lang['Hours'] = "Hours";
|
$lang['Hours'] = "Hours";
|
||||||
$lang['Message'] = "Message";
|
$lang['Message'] = "Message";
|
||||||
|
|
||||||
$lang['1_Day'] = "1 Day";
|
$lang['1_Day'] = "1 Day";
|
||||||
$lang['7_Days'] = "7 Days";
|
$lang['7_Days'] = "7 Days";
|
||||||
$lang['2_Weeks'] = "2 Weeks";
|
$lang['2_Weeks'] = "2 Weeks";
|
||||||
|
@ -99,6 +100,13 @@ $lang['Post_new_topic'] = "Post new topic";
|
||||||
$lang['Reply_to_topic'] = "Reply to topic";
|
$lang['Reply_to_topic'] = "Reply to topic";
|
||||||
$lang['Reply_with_quote'] = "Reply with quote";
|
$lang['Reply_with_quote'] = "Reply with quote";
|
||||||
|
|
||||||
|
$lang['Click_return_topic'] = "Click %sHere%s to return to the topic"; // %s's here are for uris, do not remove!
|
||||||
|
$lang['Click_return_login'] = "Click %sHere%s to try again";
|
||||||
|
$lang['Click_return_forum'] = "Click %sHere%s to return to the forum";
|
||||||
|
$lang['Click_view_message'] = "Click %sHere%s to view your message";
|
||||||
|
$lang['Click_return_modcp'] = "Click %sHere%s to return to the Moderator Control Panel";
|
||||||
|
$lang['Click_return_group'] = "Click %sHere%s to return to group information";
|
||||||
|
|
||||||
$lang['Admin_panel'] = "Go to Administration Panel";
|
$lang['Admin_panel'] = "Go to Administration Panel";
|
||||||
|
|
||||||
|
|
||||||
|
@ -163,7 +171,7 @@ $lang['Log_me_in'] = "Log me on automatically each visit";
|
||||||
// Index page
|
// Index page
|
||||||
//
|
//
|
||||||
$lang['No_Posts'] = "No Posts";
|
$lang['No_Posts'] = "No Posts";
|
||||||
$lang['Forum_Index'] = "Forum Index";
|
$lang['Forum_Index'] = "%s Forum Index"; // eg. sitename Forum Index, %s can be removed if you prefer
|
||||||
$lang['No_forums'] = "This board has no forums";
|
$lang['No_forums'] = "This board has no forums";
|
||||||
|
|
||||||
$lang['Private_Message'] = "Private Message";
|
$lang['Private_Message'] = "Private Message";
|
||||||
|
@ -229,14 +237,18 @@ $lang['Oldest_First'] = "Oldest First";
|
||||||
|
|
||||||
$lang['Return_to_top'] = "Return to top";
|
$lang['Return_to_top'] = "Return to top";
|
||||||
|
|
||||||
$lang['Read_profile'] = "Read profile users profile"; // Followed by username of poster
|
$lang['Read_profile'] = "View users profile";
|
||||||
$lang['Send_email'] = "Send email to user"; // Followed by username of poster
|
$lang['Send_email'] = "Send email to user";
|
||||||
$lang['Visit_website'] = "Visit posters website";
|
$lang['Visit_website'] = "Visit posters website";
|
||||||
$lang['ICQ_status'] = "ICQ Status";
|
$lang['ICQ_status'] = "ICQ Status";
|
||||||
$lang['Edit_delete_post'] = "Edit/Delete this post";
|
$lang['Edit_delete_post'] = "Edit/Delete this post";
|
||||||
$lang['View_IP'] = "View IP of poster";
|
$lang['View_IP'] = "View IP of poster";
|
||||||
$lang['Delete_post'] = "Delete this post";
|
$lang['Delete_post'] = "Delete this post";
|
||||||
|
|
||||||
|
$lang['wrote'] = "wrote"; // proceeds the username and is followed by the quoted text
|
||||||
|
$lang['Quote'] = "Quote"; // comes before bbcode quote output.
|
||||||
|
$lang['Code'] = "Code"; // comes before bbcode code output.
|
||||||
|
|
||||||
$lang['Edited_time_total'] = "Last edited by %s on %s, edited %d time in total"; // Last edited by me on 12 Oct 2001, edited 1 time in total
|
$lang['Edited_time_total'] = "Last edited by %s on %s, edited %d time in total"; // Last edited by me on 12 Oct 2001, edited 1 time in total
|
||||||
$lang['Edited_times_total'] = "Last edited by %s on %s, edited %d times in total"; // Last edited by me on 12 Oct 2001, edited 2 times in total
|
$lang['Edited_times_total'] = "Last edited by %s on %s, edited %d times in total"; // Last edited by me on 12 Oct 2001, edited 2 times in total
|
||||||
|
|
||||||
|
@ -324,22 +336,11 @@ $lang['Attach_signature'] = "Attach signature (signatures can be changed in prof
|
||||||
$lang['Notify'] = "Notify me when a reply is posted";
|
$lang['Notify'] = "Notify me when a reply is posted";
|
||||||
$lang['Delete_post'] = "Delete this post";
|
$lang['Delete_post'] = "Delete this post";
|
||||||
|
|
||||||
$lang['wrote'] = "wrote"; // proceeds the username and is followed by the quoted text
|
|
||||||
$lang['Quote'] = "Quote"; // comes before bbcode quote output.
|
|
||||||
$lang['Code'] = "Code"; // comes before bbcode code output.
|
|
||||||
|
|
||||||
$lang['Stored'] = "Your message has been entered successfully";
|
$lang['Stored'] = "Your message has been entered successfully";
|
||||||
$lang['Deleted'] = "Your message has been deleted successfully";
|
$lang['Deleted'] = "Your message has been deleted successfully";
|
||||||
$lang['Poll_delete'] = "Your poll has been deleted successfully";
|
$lang['Poll_delete'] = "Your poll has been deleted successfully";
|
||||||
$lang['Vote_cast'] = "Your vote has been cast";
|
$lang['Vote_cast'] = "Your vote has been cast";
|
||||||
|
|
||||||
$lang['Click_return_topic'] = "Click %sHere%s to return to the topic"; // %s's here are for uris, do not remove!
|
|
||||||
$lang['Click_return_login'] = "Click %sHere%s to try again";
|
|
||||||
$lang['Click_return_forum'] = "Click %sHere%s to return to the forum";
|
|
||||||
$lang['Click_view_message'] = "Click %sHere%s to view your message";
|
|
||||||
$lang['Click_return_modcp'] = "Click %sHere%s to return to the Moderator Control Panel";
|
|
||||||
$lang['Click_return_group'] = "Click %sHere%s to return to group information";
|
|
||||||
|
|
||||||
$lang['Topic_reply_notification'] = "Topic Reply Notification";
|
$lang['Topic_reply_notification'] = "Topic Reply Notification";
|
||||||
|
|
||||||
|
|
||||||
|
@ -355,8 +356,8 @@ $lang['No_new_pm'] = "You have no new messages";
|
||||||
|
|
||||||
$lang['Inbox'] = "Inbox";
|
$lang['Inbox'] = "Inbox";
|
||||||
$lang['Outbox'] = "Outbox";
|
$lang['Outbox'] = "Outbox";
|
||||||
$lang['Savedbox'] = "Saved box";
|
$lang['Savebox'] = "Savebox";
|
||||||
$lang['Sentbox'] = "Sent box";
|
$lang['Sentbox'] = "Sentbox";
|
||||||
$lang['Flag'] = "Flag";
|
$lang['Flag'] = "Flag";
|
||||||
$lang['Subject'] = "Subject";
|
$lang['Subject'] = "Subject";
|
||||||
$lang['From'] = "From";
|
$lang['From'] = "From";
|
||||||
|
|
|
@ -53,9 +53,9 @@ if( isset($HTTP_POST_VARS['login']) || isset($HTTP_GET_VARS['login']) || isset($
|
||||||
|
|
||||||
if( count($rowresult) )
|
if( count($rowresult) )
|
||||||
{
|
{
|
||||||
if( (md5($password) == $rowresult['user_password']) && $rowresult['user_active'] != 0 )
|
if( md5($password) == $rowresult['user_password'] && $rowresult['user_active'] )
|
||||||
{
|
{
|
||||||
$autologin = (isset($HTTP_POST_VARS['autologin'])) ? TRUE : 0;
|
$autologin = ( isset($HTTP_POST_VARS['autologin']) ) ? TRUE : 0;
|
||||||
|
|
||||||
$session_id = session_begin($rowresult['user_id'], $user_ip, PAGE_INDEX, $session_length, TRUE, $autologin);
|
$session_id = session_begin($rowresult['user_id'], $user_ip, PAGE_INDEX, $session_length, TRUE, $autologin);
|
||||||
|
|
||||||
|
@ -189,6 +189,7 @@ else
|
||||||
$template->assign_vars(array(
|
$template->assign_vars(array(
|
||||||
"USERNAME" => $username,
|
"USERNAME" => $username,
|
||||||
|
|
||||||
|
"L_ENTER_PASSWORD" => $lang['Enter_password'],
|
||||||
"L_SEND_PASSWORD" => $lang['Forgotten_password'],
|
"L_SEND_PASSWORD" => $lang['Forgotten_password'],
|
||||||
|
|
||||||
"U_SEND_PASSWORD" => append_sid("profile.$phpEx?mode=sendpassword"),
|
"U_SEND_PASSWORD" => append_sid("profile.$phpEx?mode=sendpassword"),
|
||||||
|
|
|
@ -106,11 +106,11 @@ $inbox_url = ($folder != "inbox" || $mode != "") ? '<a href="' . append_sid("pri
|
||||||
$outbox_img = ($folder != "outbox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=outbox") . '"><img src="' . $images['pm_outbox'] . '" border="0" alt="' . $lang['Outbox'] . '" /></a>' : '<img src="' . $images['pm_outbox'] . '" border="0" alt="' . $lang['Outbox'] . '" />';
|
$outbox_img = ($folder != "outbox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=outbox") . '"><img src="' . $images['pm_outbox'] . '" border="0" alt="' . $lang['Outbox'] . '" /></a>' : '<img src="' . $images['pm_outbox'] . '" border="0" alt="' . $lang['Outbox'] . '" />';
|
||||||
$outbox_url = ($folder != "outbox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=outbox") . '">' . $lang['Outbox'] . '</a>' : $lang['Outbox'];
|
$outbox_url = ($folder != "outbox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=outbox") . '">' . $lang['Outbox'] . '</a>' : $lang['Outbox'];
|
||||||
|
|
||||||
$sentbox_img = ($folder != "sentbox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=sentbox") . '"><img src="' . $images['pm_sentbox'] . '" border="0" alt="' . $lang['Sent'] . '" /></a>' : '<img src="' . $images['pm_sentbox'] . '" border="0" alt="' . $lang['Sent'] . '" />';
|
$sentbox_img = ($folder != "sentbox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=sentbox") . '"><img src="' . $images['pm_sentbox'] . '" border="0" alt="' . $lang['Sentbox'] . '" /></a>' : '<img src="' . $images['pm_sentbox'] . '" border="0" alt="' . $lang['Sentbox'] . '" />';
|
||||||
$sentbox_url = ($folder != "sentbox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=sentbox") . '">' . $lang['Sent'] . '</a>' : $lang['Sent'];
|
$sentbox_url = ($folder != "sentbox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=sentbox") . '">' . $lang['Sentbox'] . '</a>' : $lang['Sentbox'];
|
||||||
|
|
||||||
$savebox_img = ($folder != "savebox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=savebox") . '"><img src="' . $images['pm_savebox'] . '" border="0" alt="' . $lang['Savebox'] . '" /></a>' : '<img src="' . $images['pm_savebox'] . '" border="0" alt="' . $lang['Saved'] . '" />';
|
$savebox_img = ($folder != "savebox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=savebox") . '"><img src="' . $images['pm_savebox'] . '" border="0" alt="' . $lang['Savebox'] . '" /></a>' : '<img src="' . $images['pm_savebox'] . '" border="0" alt="' . $lang['Savebox'] . '" />';
|
||||||
$savebox_url = ($folder != "savebox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=savebox") . '">' . $lang['Saved'] . '</a>' : $lang['Saved'];
|
$savebox_url = ($folder != "savebox" || $mode != "") ? '<a href="' . append_sid("privmsg.$phpEx?folder=savebox") . '">' . $lang['Savebox'] . '</a>' : $lang['Savebox'];
|
||||||
|
|
||||||
// ----------
|
// ----------
|
||||||
// Start main
|
// Start main
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table width="100%" border="0" cellspacing="1" cellpadding="3" class="forumline">
|
<table width="100%" border="0" cellspacing="1" cellpadding="3" class="forumline">
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" valign="bottom" nowrap="nowrap"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left" valign="bottom" nowrap="nowrap"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<form method="post" action="{S_GROUPCP_ACTION}">
|
<form method="post" action="{S_GROUPCP_ACTION}">
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
|
|
||||||
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="0" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" valign="bottom"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left" valign="bottom"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
<td align="right" class="gensmall">
|
<td align="right" class="gensmall">
|
||||||
<!-- BEGIN egosearch -->
|
<!-- BEGIN switch_user_logged_in -->
|
||||||
<a href="{egosearch.U_SEARCH_SELF}" class="gensmall">{egosearch.L_SEARCH_SELF}</a><br />
|
<a href="{U_SEARCH_SELF}" class="gensmall">{L_SEARCH_SELF}</a><br />
|
||||||
<!-- END egosearch -->
|
<!-- END switch_user_logged_in -->
|
||||||
<a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a><br />
|
<a href="{U_SEARCH_UNANSWERED}" class="gensmall">{L_SEARCH_UNANSWERED}</a><br />
|
||||||
<a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br />{LAST_VISIT_DATE}</td>
|
<a href="{U_SEARCH_NEW}" class="gensmall">{L_SEARCH_NEW}</a><br />{LAST_VISIT_DATE}</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
|
@ -1,18 +1,18 @@
|
||||||
|
|
||||||
|
<form action="{S_LOGIN_ACTION}" method="post">
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></td>
|
<td align="left" class="nav"><a href="{U_INDEX}" class="nav"{{L_INDEX}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
|
|
||||||
|
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<th height="25" class="thHead">Please enter your username and password
|
<th height="25" class="thHead">{L_ENTER_PASSWORD}</th>
|
||||||
to login</th>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row1">
|
<td class="row1"><table border="0" cellpadding="3" cellspacing="1" width="100%">
|
||||||
<form action="{S_LOGIN_ACTION}" method="post">
|
|
||||||
<table border="0" cellpadding="3" cellspacing="1" width="100%">
|
|
||||||
<tr>
|
<tr>
|
||||||
<td colspan="2" align="center"> </td>
|
<td colspan="2" align="center"> </td>
|
||||||
</tr>
|
</tr>
|
||||||
|
@ -29,9 +29,7 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="center">
|
<tr align="center">
|
||||||
<td colspan="2"><span class="gen">{L_AUTO_LOGIN}:
|
<td colspan="2"><span class="gen">{L_AUTO_LOGIN}: <input type="checkbox" name="autologin" /></span></td>
|
||||||
<input type="checkbox" name="autologin" />
|
|
||||||
</span> </td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr align="center">
|
<tr align="center">
|
||||||
<td colspan="2">{S_HIDDEN_FIELDS}<input type="submit" name="login" class="mainoption" value="{L_LOGIN}" /></td>
|
<td colspan="2">{S_HIDDEN_FIELDS}<input type="submit" name="login" class="mainoption" value="{L_LOGIN}" /></td>
|
||||||
|
@ -39,9 +37,8 @@
|
||||||
<tr align="center">
|
<tr align="center">
|
||||||
<td colspan="2"><span class="gensmall"><a href="{U_SEND_PASSWORD}" class="gensmall">{L_SEND_PASSWORD}</a></span></td>
|
<td colspan="2"><span class="gensmall"><a href="{U_SEND_PASSWORD}" class="gensmall">{L_SEND_PASSWORD}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table></td>
|
||||||
</form>
|
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br />
|
|
||||||
|
</form>
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<form method="post" action="{S_MODE_ACTION}">
|
<form method="post" action="{S_MODE_ACTION}">
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
<td align="right" nowrap="nowrap"><span class="genmed">{L_SELECT_SORT_METHOD}: {S_MODE_SELECT} {L_ORDER} {S_ORDER_SELECT}
|
<td align="right" nowrap="nowrap"><span class="genmed">{L_SELECT_SORT_METHOD}: {S_MODE_SELECT} {L_ORDER} {S_ORDER_SELECT}
|
||||||
<input type="submit" name="submit" value="{L_SUBMIT}" class="liteoption" />
|
<input type="submit" name="submit" value="{L_SUBMIT}" class="liteoption" />
|
||||||
</span></td>
|
</span></td>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></td>
|
<td align="left" class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
|
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<form method="post" action="{S_MODCP_ACTION}">
|
<form method="post" action="{S_MODCP_ACTION}">
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a> -> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a> -> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<form action="{S_MODCP_ACTION}" method="post">
|
<form action="{S_MODCP_ACTION}" method="post">
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></td>
|
<td align="left" class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
|
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<form method="post" action="{S_SPLIT_ACTION}">
|
<form method="post" action="{S_SPLIT_ACTION}">
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a><span class="nav">
|
<td align="left" class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a><span class="nav">
|
||||||
-> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
|
-> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -1,9 +1,10 @@
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
|
<table width="100%" cellpadding="3" cellspacing="1" border="0" class="forumline">
|
||||||
<tr>
|
<tr>
|
||||||
<th height="25" class="thHead">{L_IP_INFO}</th>
|
<th height="25" class="thHead">{L_IP_INFO}</th>
|
||||||
|
@ -43,15 +44,15 @@
|
||||||
</tr>
|
</tr>
|
||||||
<!-- BEGIN iprow -->
|
<!-- BEGIN iprow -->
|
||||||
<tr>
|
<tr>
|
||||||
<td class="{iprow.ROW_CLASS}">
|
<td class="{iprow.ROW_CLASS}"><table width="100%" cellspacing="0" cellpadding="0" border="0">
|
||||||
<table width="100%" cellspacing="0" cellpadding="0" border="0">
|
|
||||||
<tr>
|
<tr>
|
||||||
<td> <span class="gen">{iprow.IP}</span></td>
|
<td> <span class="gen">{iprow.IP}</span></td>
|
||||||
<td align="right"><span class="gen">[ <a href="{iprow.U_LOOKUP_IP}">{L_LOOKUP_IP}</a>
|
<td align="right"><span class="gen">[ <a href="{iprow.U_LOOKUP_IP}">{L_LOOKUP_IP}</a>
|
||||||
] </span></td>
|
] </span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table></td>
|
||||||
</td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<!-- END iprow -->
|
<!-- END iprow -->
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
<br clear="all" />
|
||||||
|
|
|
@ -192,7 +192,7 @@ function bbstyle(formObj, bbnumber) {
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a>
|
||||||
-> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
|
-> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -60,7 +60,7 @@
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" valign="middle">{POST_PM_IMG}</td>
|
<td align="left" valign="middle">{POST_PM_IMG}</td>
|
||||||
<td align="left" width="100%"> <span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left" width="100%"> <span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
<td align="right" nowrap="nowrap"><span class="gensmall">{L_DISPLAY_MESSAGES}:
|
<td align="right" nowrap="nowrap"><span class="gensmall">{L_DISPLAY_MESSAGES}:
|
||||||
<select name="msgdays">{S_MSG_DAYS_OPTIONS}
|
<select name="msgdays">{S_MSG_DAYS_OPTIONS}
|
||||||
</select>
|
</select>
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td valign="middle">{REPLY_PM_IMG}</td>
|
<td valign="middle">{REPLY_PM_IMG}</td>
|
||||||
<td width="100%"><span class="nav"> <a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td width="100%"><span class="nav"> <a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<form action="{S_PROFILE_ACTION}" method="post">
|
<form action="{S_PROFILE_ACTION}" method="post">
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -33,7 +33,7 @@ function checkForm(formObj) {
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
<form action="{S_PROFILE_ACTION}" method="post">
|
<form action="{S_PROFILE_ACTION}" method="post">
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
|
<table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
@ -47,8 +47,7 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="catLeft" align="center" height="28"><b><span class="gen">{L_CONTACT}
|
<td class="catLeft" align="center" height="28"><b><span class="gen">{L_CONTACT} {USERNAME} </span></b></td>
|
||||||
{USERNAME} </span></b></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td class="row1" valign="top">
|
<td class="row1" valign="top">
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<form action="{S_SEARCH_ACTION}" method="POST">
|
<form action="{S_SEARCH_ACTION}" method="POST">
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table border="0" cellpadding="4" cellspacing="1" width="100%" class="forumline">
|
<table border="0" cellpadding="4" cellspacing="1" width="100%" class="forumline">
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
</table>
|
</table>
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
|
<table border="0" cellpadding="3" cellspacing="1" width="100%" class="forumline">
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
</table>
|
</table>
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
|
<table width="100%" cellpadding="4" cellspacing="1" border="0" class="forumline">
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" valign="middle" width="50"><a href="{U_POST_NEW_TOPIC}"><img src="{IMG_POST}" border="0" alt="{L_POST_NEW_TOPIC}" width="82" height="25" /></a></td>
|
<td align="left" valign="middle" width="50"><a href="{U_POST_NEW_TOPIC}"><img src="{IMG_POST}" border="0" alt="{L_POST_NEW_TOPIC}" width="82" height="25" /></a></td>
|
||||||
<td align="left" valign="middle" class="nav" width="100%"><span class="nav"> <a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a> -> {FORUM_NAME}</span></td>
|
<td align="left" valign="middle" class="nav" width="100%"><span class="nav"> <a href="{U_INDEX}" class="nav">{L_INDEX}</a> -> {FORUM_NAME}</span></td>
|
||||||
<td align="right" valign="bottom" class="nav" nowrap="nowrap"><span class="gensmall"><a href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a></span></td>
|
<td align="right" valign="bottom" class="nav" nowrap="nowrap"><span class="gensmall"><a href="{U_MARK_READ}">{L_MARK_TOPICS_READ}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
|
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0" align="center">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a></span></td>
|
<td align="left"><span class="nav"><a href="{U_INDEX}" class="nav">{L_INDEX}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<table width="100%" cellspacing="2" cellpadding="2" border="0">
|
<table width="100%" cellspacing="2" cellpadding="2" border="0">
|
||||||
<tr>
|
<tr>
|
||||||
<td align="left" valign="bottom" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{IMG_POST}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" width="82" height="25" /></a> <a href="{U_POST_REPLY_TOPIC}"><img src="{IMG_REPLY}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" width="82" height="25" /></a></span></td>
|
<td align="left" valign="bottom" nowrap="nowrap"><span class="nav"><a href="{U_POST_NEW_TOPIC}"><img src="{IMG_POST}" border="0" alt="{L_POST_NEW_TOPIC}" align="middle" width="82" height="25" /></a> <a href="{U_POST_REPLY_TOPIC}"><img src="{IMG_REPLY}" border="0" alt="{L_POST_REPLY_TOPIC}" align="middle" width="82" height="25" /></a></span></td>
|
||||||
<td align="left" valign="middle" width="100%"><span class="nav"> <a href="{U_INDEX}" class="nav">{SITENAME} {L_INDEX}</a>
|
<td align="left" valign="middle" width="100%"><span class="nav"> <a href="{U_INDEX}" class="nav">{L_INDEX}</a>
|
||||||
-> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
|
-> <a href="{U_VIEW_FORUM}" class="nav">{FORUM_NAME}</a></span></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
|
@ -231,7 +231,7 @@ else
|
||||||
// handle pagination) and alter the main query
|
// handle pagination) and alter the main query
|
||||||
//
|
//
|
||||||
$previous_days = array(0, 1, 7, 14, 30, 90, 180, 364);
|
$previous_days = array(0, 1, 7, 14, 30, 90, 180, 364);
|
||||||
$previous_days_text = array($lang['All_Posts'], $lang['1_Day'], $lang['7_Days'], $lang['2_Weeks'], $lang['1_Month'], $lang['3_Months'], $lang['6_Months'], $lang['1_Year']);
|
$previous_days_text = array($lang['All_Topics'], $lang['1_Day'], $lang['7_Days'], $lang['2_Weeks'], $lang['1_Month'], $lang['3_Months'], $lang['6_Months'], $lang['1_Year']);
|
||||||
|
|
||||||
if( !empty($HTTP_POST_VARS['topicdays']) || !empty($HTTP_GET_VARS['topicdays']) )
|
if( !empty($HTTP_POST_VARS['topicdays']) || !empty($HTTP_GET_VARS['topicdays']) )
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue