You can subscribe to this list here.
| 2005 |
Jan
|
Feb
|
Mar
(95) |
Apr
(270) |
May
(111) |
Jun
|
Jul
|
Aug
(64) |
Sep
(130) |
Oct
(319) |
Nov
(17) |
Dec
(191) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2006 |
Jan
(53) |
Feb
|
Mar
|
Apr
|
May
(6) |
Jun
(387) |
Jul
(102) |
Aug
(247) |
Sep
(120) |
Oct
(1) |
Nov
(8) |
Dec
(21) |
| 2007 |
Jan
(38) |
Feb
(36) |
Mar
|
Apr
(32) |
May
(135) |
Jun
(523) |
Jul
(192) |
Aug
(103) |
Sep
(533) |
Oct
(77) |
Nov
(23) |
Dec
(203) |
| 2008 |
Jan
(312) |
Feb
(1193) |
Mar
(404) |
Apr
(67) |
May
(62) |
Jun
(497) |
Jul
(297) |
Aug
(110) |
Sep
(335) |
Oct
(256) |
Nov
(50) |
Dec
(118) |
| 2009 |
Jan
(67) |
Feb
(10) |
Mar
(1) |
Apr
(1) |
May
|
Jun
(10) |
Jul
(61) |
Aug
|
Sep
(16) |
Oct
(45) |
Nov
(12) |
Dec
(14) |
| 2010 |
Jan
(30) |
Feb
|
Mar
|
Apr
(4) |
May
|
Jun
|
Jul
(7) |
Aug
(7) |
Sep
(5) |
Oct
(5) |
Nov
|
Dec
|
| 2011 |
Jan
(7) |
Feb
(3) |
Mar
(89) |
Apr
(11) |
May
(5) |
Jun
|
Jul
(8) |
Aug
(1) |
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(89) |
| 2012 |
Jan
(7) |
Feb
(1) |
Mar
(1) |
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(3) |
Oct
(42) |
Nov
(1) |
Dec
|
| 2013 |
Jan
|
Feb
|
Mar
(19) |
Apr
(90) |
May
(38) |
Jun
(235) |
Jul
(38) |
Aug
(10) |
Sep
|
Oct
(29) |
Nov
|
Dec
|
| 2014 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(52) |
Jun
|
Jul
(7) |
Aug
|
Sep
(17) |
Oct
|
Nov
|
Dec
|
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:16:44
|
Update of /cvsroot/mxbb/phpbb2mxp/install/schemas In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11197/schemas Log Message: Directory /cvsroot/mxbb/phpbb2mxp/install/schemas added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:07:50
|
Update of /cvsroot/mxbb/phpbb2mxp/includes/utf/data In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv11037/data Log Message: Directory /cvsroot/mxbb/phpbb2mxp/includes/utf/data added to the repository |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:07:42
|
Update of /cvsroot/mxbb/phpbb2mxp/cache In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/cache Added Files: .htaccess index.htm Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: .htaccess --- <Limit GET POST PUT> Order Allow,Deny Deny from All </Limit> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:07:19
|
Update of /cvsroot/mxbb/phpbb2mxp In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742 Added Files: common.php config.php extension.inc faq.php groupcp.php index.php login.php memberlist.php modcp.php posting.php privmsg.php profile.php robots.txt search.php viewforum.php viewonline.php viewtopic.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: login.php --- <?php /*************************************************************************** * login.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: login.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ // // Allow people to reach login page if // board is shut down // define("IN_LOGIN", true); define('IN_PHPBB', true); $phpbb_root_path = './'; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); // // Set page ID for session management // $userdata = session_pagestart($user_ip, PAGE_LOGIN); init_userprefs($userdata); // // End session management // // session id check if (!empty($HTTP_POST_VARS['sid']) || !empty($HTTP_GET_VARS['sid'])) { $sid = (!empty($HTTP_POST_VARS['sid'])) ? $HTTP_POST_VARS['sid'] : $HTTP_GET_VARS['sid']; } else { $sid = ''; } if( isset($HTTP_POST_VARS['login']) || isset($HTTP_GET_VARS['login']) || isset($HTTP_POST_VARS['logout']) || isset($HTTP_GET_VARS['logout']) ) { if( ( isset($HTTP_POST_VARS['login']) || isset($HTTP_GET_VARS['login']) ) && (!$userdata['session_logged_in'] || isset($HTTP_POST_VARS['admin'])) ) { $username = isset($HTTP_POST_VARS['username']) ? phpbb_clean_username($HTTP_POST_VARS['username']) : ''; $password = isset($HTTP_POST_VARS['password']) ? $HTTP_POST_VARS['password'] : ''; $sql = "SELECT user_id, username, user_password, user_active, user_level, user_login_tries, user_last_login_try FROM " . USERS_TABLE . " WHERE username = '" . str_replace("\\'", "''", $username) . "'"; if ( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Error in obtaining userdata', '', __LINE__, __FILE__, $sql); } if( $row = $db->sql_fetchrow($result) ) { if( $row['user_level'] != ADMIN && $board_config['board_disable'] ) { redirect(append_sid("index.$phpEx", true)); } else { // If the last login is more than x minutes ago, then reset the login tries/time if ($row['user_last_login_try'] && $board_config['login_reset_time'] && $row['user_last_login_try'] < (time() - ($board_config['login_reset_time'] * 60))) { $db->sql_query('UPDATE ' . USERS_TABLE . ' SET user_login_tries = 0, user_last_login_try = 0 WHERE user_id = ' . $row['user_id']); $row['user_last_login_try'] = $row['user_login_tries'] = 0; } // Check to see if user is allowed to login again... if his tries are exceeded if ($row['user_last_login_try'] && $board_config['login_reset_time'] && $board_config['max_login_attempts'] && $row['user_last_login_try'] >= (time() - ($board_config['login_reset_time'] * 60)) && $row['user_login_tries'] >= $board_config['max_login_attempts'] && $userdata['user_level'] != ADMIN) { message_die(GENERAL_MESSAGE, sprintf($lang['Login_attempts_exceeded'], $board_config['max_login_attempts'], $board_config['login_reset_time'])); } if( md5($password) == $row['user_password'] && $row['user_active'] ) { $autologin = ( isset($HTTP_POST_VARS['autologin']) ) ? TRUE : 0; $admin = (isset($HTTP_POST_VARS['admin'])) ? 1 : 0; $session_id = session_begin($row['user_id'], $user_ip, PAGE_INDEX, FALSE, $autologin, $admin); // Reset login tries $db->sql_query('UPDATE ' . USERS_TABLE . ' SET user_login_tries = 0, user_last_login_try = 0 WHERE user_id = ' . $row['user_id']); if( $session_id ) { $url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "index.$phpEx"; redirect(append_sid($url, true)); } else { message_die(CRITICAL_ERROR, "Couldn't start session : login", "", __LINE__, __FILE__); } } // Only store a failed login attempt for an active user - inactive users can't login even with a correct password elseif( $row['user_active'] ) { // Save login tries and last login if ($row['user_id'] != ANONYMOUS) { $sql = 'UPDATE ' . USERS_TABLE . ' SET user_login_tries = user_login_tries + 1, user_last_login_try = ' . time() . ' WHERE user_id = ' . $row['user_id']; $db->sql_query($sql); } } $redirect = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : ''; $redirect = str_replace('?', '&', $redirect); if (strstr(urldecode($redirect), "\n") || strstr(urldecode($redirect), "\r") || strstr(urldecode($redirect), ';url')) { message_die(GENERAL_ERROR, 'Tried to redirect to potentially insecure url.'); } $template->assign_vars(array( 'META' => "<meta http-equiv=\"refresh\" content=\"3;url=login.$phpEx?redirect=$redirect\">") ); $message = $lang['Error_login'] . '<br /><br />' . sprintf($lang['Click_return_login'], "<a href=\"login.$phpEx?redirect=$redirect\">", '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>'); message_die(GENERAL_MESSAGE, $message); } } else { $redirect = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : ""; $redirect = str_replace("?", "&", $redirect); if (strstr(urldecode($redirect), "\n") || strstr(urldecode($redirect), "\r") || strstr(urldecode($redirect), ';url')) { message_die(GENERAL_ERROR, 'Tried to redirect to potentially insecure url.'); } $template->assign_vars(array( 'META' => "<meta http-equiv=\"refresh\" content=\"3;url=login.$phpEx?redirect=$redirect\">") ); $message = $lang['Error_login'] . '<br /><br />' . sprintf($lang['Click_return_login'], "<a href=\"login.$phpEx?redirect=$redirect\">", '</a>') . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a>'); message_die(GENERAL_MESSAGE, $message); } } else if( ( isset($HTTP_GET_VARS['logout']) || isset($HTTP_POST_VARS['logout']) ) && $userdata['session_logged_in'] ) { // session id check if ($sid == '' || $sid != $userdata['session_id']) { message_die(GENERAL_ERROR, 'Invalid_session'); } if( $userdata['session_logged_in'] ) { session_end($userdata['session_id'], $userdata['user_id']); } if (!empty($HTTP_POST_VARS['redirect']) || !empty($HTTP_GET_VARS['redirect'])) { $url = (!empty($HTTP_POST_VARS['redirect'])) ? htmlspecialchars($HTTP_POST_VARS['redirect']) : htmlspecialchars($HTTP_GET_VARS['redirect']); $url = str_replace('&', '&', $url); redirect(append_sid($url, true)); } else { redirect(append_sid("index.$phpEx", true)); } } else { $url = ( !empty($HTTP_POST_VARS['redirect']) ) ? str_replace('&', '&', htmlspecialchars($HTTP_POST_VARS['redirect'])) : "index.$phpEx"; redirect(append_sid($url, true)); } } else { // // Do a full login page dohickey if // user not already logged in // if( !$userdata['session_logged_in'] || (isset($HTTP_GET_VARS['admin']) && $userdata['session_logged_in'] && $userdata['user_level'] == ADMIN)) { $page_title = $lang['Login']; include($phpbb_root_path . 'includes/page_header.'.$phpEx); $template->set_filenames(array( 'body' => 'login_body.tpl') ); $forward_page = ''; if( isset($HTTP_POST_VARS['redirect']) || isset($HTTP_GET_VARS['redirect']) ) { $forward_to = $HTTP_SERVER_VARS['QUERY_STRING']; if( preg_match("/^redirect=([a-z0-9\.#\/\?&=\+\-_]+)/si", $forward_to, $forward_matches) ) { $forward_to = ( !empty($forward_matches[3]) ) ? $forward_matches[3] : $forward_matches[1]; $forward_match = explode('&', $forward_to); if(count($forward_match) > 1) { for($i = 1; $i < count($forward_match); $i++) { if( !ereg("sid=", $forward_match[$i]) ) { if( $forward_page != '' ) { $forward_page .= '&'; } $forward_page .= $forward_match[$i]; } } $forward_page = $forward_match[0] . '?' . $forward_page; } else { $forward_page = $forward_match[0]; } } } $username = ( $userdata['user_id'] != ANONYMOUS ) ? $userdata['username'] : ''; $s_hidden_fields = '<input type="hidden" name="redirect" value="' . $forward_page . '" />'; $s_hidden_fields .= (isset($HTTP_GET_VARS['admin'])) ? '<input type="hidden" name="admin" value="1" />' : ''; make_jumpbox('viewforum.'.$phpEx); $template->assign_vars(array( 'USERNAME' => $username, 'L_ENTER_PASSWORD' => (isset($HTTP_GET_VARS['admin'])) ? $lang['Admin_reauthenticate'] : $lang['Enter_password'], 'L_SEND_PASSWORD' => $lang['Forgotten_password'], 'U_SEND_PASSWORD' => append_sid("profile.$phpEx?mode=sendpassword"), 'S_HIDDEN_FIELDS' => $s_hidden_fields) ); $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); } else { redirect(append_sid("index.$phpEx", true)); } } ?> --- NEW FILE: extension.inc --- <?php /*************************************************************************** * extension.inc * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: extension.inc,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } // // Change this if your extension is not .php! // $phpEx = "php"; $starttime = 0; ?> --- NEW FILE: posting.php --- <?php /*************************************************************************** * posting.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: posting.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. [...1130 lines suppressed...] $template->assign_var_from_handle('POLLBOX', 'pollbody'); } // // Topic review // if( $mode == 'reply' && $is_auth['auth_read'] ) { require($phpbb_root_path . 'includes/topic_review.'.$phpEx); topic_review($topic_id, true); $template->assign_block_vars('switch_inline_mode', array()); $template->assign_var_from_handle('TOPIC_REVIEW_BOX', 'reviewbody'); } $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?> --- NEW FILE: search.php --- <?php /*************************************************************************** * search.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: search.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. [...1415 lines suppressed...] 'L_SEARCH_PREVIOUS' => $lang['Search_previous'], 'L_DISPLAY_RESULTS' => $lang['Display_results'], 'L_FORUM' => $lang['Forum'], 'L_TOPICS' => $lang['Topics'], 'L_POSTS' => $lang['Posts'], 'S_SEARCH_ACTION' => append_sid("search.$phpEx?mode=results"), 'S_CHARACTER_OPTIONS' => $s_characters, 'S_FORUM_OPTIONS' => $s_forums, 'S_CATEGORY_OPTIONS' => $s_categories, 'S_TIME_OPTIONS' => $s_time, 'S_SORT_OPTIONS' => $s_sort_by, 'S_HIDDEN_FIELDS' => '') ); $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?> --- NEW FILE: index.php --- <?php /*************************************************************************** * index.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: index.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ define('IN_PHPBB', true); $phpbb_root_path = './'; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); // // Start session management // $userdata = session_pagestart($user_ip, PAGE_INDEX); init_userprefs($userdata); // // End session management // $viewcat = ( !empty($HTTP_GET_VARS[POST_CAT_URL]) ) ? $HTTP_GET_VARS[POST_CAT_URL] : -1; if( isset($HTTP_GET_VARS['mark']) || isset($HTTP_POST_VARS['mark']) ) { $mark_read = ( isset($HTTP_POST_VARS['mark']) ) ? $HTTP_POST_VARS['mark'] : $HTTP_GET_VARS['mark']; } else { $mark_read = ''; } // // Handle marking posts // if( $mark_read == 'forums' ) { if( $userdata['session_logged_in'] ) { setcookie($board_config['cookie_name'] . '_f_all', time(), 0, $board_config['cookie_path'], $board_config['cookie_domain'], $board_config['cookie_secure']); } $template->assign_vars(array( "META" => '<meta http-equiv="refresh" content="3;url=' .append_sid("index.$phpEx") . '">') ); $message = $lang['Forums_marked_read'] . '<br /><br />' . sprintf($lang['Click_return_index'], '<a href="' . append_sid("index.$phpEx") . '">', '</a> '); message_die(GENERAL_MESSAGE, $message); } // // End handle marking posts // $tracking_topics = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_t']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . "_t"]) : array(); $tracking_forums = ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f']) ) ? unserialize($HTTP_COOKIE_VARS[$board_config['cookie_name'] . "_f"]) : array(); // // If you don't use these stats on your index you may want to consider // removing them // $total_posts = get_db_stat('postcount'); $total_users = get_db_stat('usercount'); $newest_userdata = get_db_stat('newestuser'); $newest_user = $newest_userdata['username']; $newest_uid = $newest_userdata['user_id']; if( $total_posts == 0 ) { $l_total_post_s = $lang['Posted_articles_zero_total']; } else if( $total_posts == 1 ) { $l_total_post_s = $lang['Posted_article_total']; } else { $l_total_post_s = $lang['Posted_articles_total']; } if( $total_users == 0 ) { $l_total_user_s = $lang['Registered_users_zero_total']; } else if( $total_users == 1 ) { $l_total_user_s = $lang['Registered_user_total']; } else { $l_total_user_s = $lang['Registered_users_total']; } // // Start page proper // $sql = "SELECT c.cat_id, c.cat_title, c.cat_order FROM " . CATEGORIES_TABLE . " c ORDER BY c.cat_order"; if( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Could not query categories list', '', __LINE__, __FILE__, $sql); } $category_rows = array(); while ($row = $db->sql_fetchrow($result)) { $category_rows[] = $row; } $db->sql_freeresult($result); // Begin Simple Subforums MOD $subforums_list = array(); // End Simple Subforums MOD if( ( $total_categories = count($category_rows) ) ) { // // Define appropriate SQL // switch(SQL_LAYER) { case 'postgresql': $sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id FROM " . FORUMS_TABLE . " f, " . POSTS_TABLE . " p, " . USERS_TABLE . " u WHERE p.post_id = f.forum_last_post_id AND u.user_id = p.poster_id UNION ( SELECT f.*, NULL, NULL, NULL, NULL FROM " . FORUMS_TABLE . " f WHERE NOT EXISTS ( SELECT p.post_time FROM " . POSTS_TABLE . " p WHERE p.post_id = f.forum_last_post_id ) ) ORDER BY cat_id, forum_order"; break; case 'oracle': $sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id FROM " . FORUMS_TABLE . " f, " . POSTS_TABLE . " p, " . USERS_TABLE . " u WHERE p.post_id = f.forum_last_post_id(+) AND u.user_id = p.poster_id(+) ORDER BY f.cat_id, f.forum_order"; break; default: $sql = "SELECT f.*, p.post_time, p.post_username, u.username, u.user_id FROM (( " . FORUMS_TABLE . " f LEFT JOIN " . POSTS_TABLE . " p ON p.post_id = f.forum_last_post_id ) LEFT JOIN " . USERS_TABLE . " u ON u.user_id = p.poster_id ) ORDER BY f.cat_id, f.forum_order"; break; } if ( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Could not query forums information', '', __LINE__, __FILE__, $sql); } $forum_data = array(); while( $row = $db->sql_fetchrow($result) ) { $forum_data[] = $row; } $db->sql_freeresult($result); if ( !($total_forums = count($forum_data)) ) { message_die(GENERAL_MESSAGE, $lang['No_forums']); } // // Obtain a list of topic ids which contain // posts made since user last visited // if ($userdata['session_logged_in']) { // 60 days limit if ($userdata['user_lastvisit'] < (time() - 5184000)) { $userdata['user_lastvisit'] = time() - 5184000; } $sql = "SELECT t.forum_id, t.topic_id, p.post_time FROM " . TOPICS_TABLE . " t, " . POSTS_TABLE . " p WHERE p.post_id = t.topic_last_post_id AND p.post_time > " . $userdata['user_lastvisit'] . " AND t.topic_moved_id = 0"; if ( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Could not query new topic information', '', __LINE__, __FILE__, $sql); } $new_topic_data = array(); while( $topic_data = $db->sql_fetchrow($result) ) { $new_topic_data[$topic_data['forum_id']][$topic_data['topic_id']] = $topic_data['post_time']; } $db->sql_freeresult($result); } // // Obtain list of moderators of each forum // First users, then groups ... broken into two queries // $sql = "SELECT aa.forum_id, u.user_id, u.username FROM " . AUTH_ACCESS_TABLE . " aa, " . USER_GROUP_TABLE . " ug, " . GROUPS_TABLE . " g, " . USERS_TABLE . " u WHERE aa.auth_mod = " . TRUE . " AND g.group_single_user = 1 AND ug.group_id = aa.group_id AND g.group_id = aa.group_id AND u.user_id = ug.user_id GROUP BY u.user_id, u.username, aa.forum_id ORDER BY aa.forum_id, u.user_id"; if ( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Could not query forum moderator information', '', __LINE__, __FILE__, $sql); } $forum_moderators = array(); while( $row = $db->sql_fetchrow($result) ) { $forum_moderators[$row['forum_id']][] = '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=" . $row['user_id']) . '">' . $row['username'] . '</a>'; } $db->sql_freeresult($result); $sql = "SELECT aa.forum_id, g.group_id, g.group_name FROM " . AUTH_ACCESS_TABLE . " aa, " . USER_GROUP_TABLE . " ug, " . GROUPS_TABLE . " g WHERE aa.auth_mod = " . TRUE . " AND g.group_single_user = 0 AND g.group_type <> " . GROUP_HIDDEN . " AND ug.group_id = aa.group_id AND g.group_id = aa.group_id GROUP BY g.group_id, g.group_name, aa.forum_id ORDER BY aa.forum_id, g.group_id"; if ( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Could not query forum moderator information', '', __LINE__, __FILE__, $sql); } while( $row = $db->sql_fetchrow($result) ) { $forum_moderators[$row['forum_id']][] = '<a href="' . append_sid("groupcp.$phpEx?" . POST_GROUPS_URL . "=" . $row['group_id']) . '">' . $row['group_name'] . '</a>'; } $db->sql_freeresult($result); // // Find which forums are visible for this user // $is_auth_ary = array(); $is_auth_ary = auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata, $forum_data); // // Start output of page // define('SHOW_ONLINE', true); $page_title = $lang['Index']; include($phpbb_root_path . 'includes/page_header.'.$phpEx); $template->set_filenames(array( 'body' => 'index_body.tpl') ); $template->assign_vars(array( 'TOTAL_POSTS' => sprintf($l_total_post_s, $total_posts), 'TOTAL_USERS' => sprintf($l_total_user_s, $total_users), 'NEWEST_USER' => sprintf($lang['Newest_user'], '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$newest_uid") . '">', $newest_user, '</a>'), 'FORUM_IMG' => $images['forum'], 'FORUM_NEW_IMG' => $images['forum_new'], 'FORUM_LOCKED_IMG' => $images['forum_locked'], 'L_FORUM' => $lang['Forum'], // Begin Simple Subforums MOD 'L_SUBFORUMS' => $lang['Subforums'], // End Simple Subforums MOD 'L_TOPICS' => $lang['Topics'], 'L_REPLIES' => $lang['Replies'], 'L_VIEWS' => $lang['Views'], 'L_POSTS' => $lang['Posts'], 'L_LASTPOST' => $lang['Last_Post'], 'L_NO_NEW_POSTS' => $lang['No_new_posts'], 'L_NEW_POSTS' => $lang['New_posts'], 'L_NO_NEW_POSTS_LOCKED' => $lang['No_new_posts_locked'], 'L_NEW_POSTS_LOCKED' => $lang['New_posts_locked'], 'L_ONLINE_EXPLAIN' => $lang['Online_explain'], 'L_MODERATOR' => $lang['Moderators'], 'L_FORUM_LOCKED' => $lang['Forum_is_locked'], 'L_MARK_FORUMS_READ' => $lang['Mark_all_forums'], 'U_MARK_READ' => append_sid("index.$phpEx?mark=forums")) ); // // Let's decide which categories we should display // $display_categories = array(); for ($i = 0; $i < $total_forums; $i++ ) { if ($is_auth_ary[$forum_data[$i]['forum_id']]['auth_view']) { $display_categories[$forum_data[$i]['cat_id']] = true; } } // // Okay, let's build the index // for($i = 0; $i < $total_categories; $i++) { $cat_id = $category_rows[$i]['cat_id']; // // Yes, we should, so first dump out the category // title, then, if appropriate the forum list // if (isset($display_categories[$cat_id]) && $display_categories[$cat_id]) { $template->assign_block_vars('catrow', array( 'CAT_ID' => $cat_id, 'CAT_DESC' => $category_rows[$i]['cat_title'], 'U_VIEWCAT' => append_sid("index.$phpEx?" . POST_CAT_URL . "=$cat_id")) ); if ( $viewcat == $cat_id || $viewcat == -1 ) { for($j = 0; $j < $total_forums; $j++) { if ( $forum_data[$j]['cat_id'] == $cat_id ) { $forum_id = $forum_data[$j]['forum_id']; if ( $is_auth_ary[$forum_id]['auth_view'] ) { if ( $forum_data[$j]['forum_status'] == FORUM_LOCKED ) { $folder_image = $images['forum_locked']; $folder_alt = $lang['Forum_locked']; // Begin Simple Subforums MOD $unread_topics = false; $folder_images = array( 'default' => $folder_image, 'new' => $images['forum_locked'], 'sub' => ( isset($images['forums_locked']) ) ? $images['forums_locked'] : $images['forum_locked'], 'subnew' => ( isset($images['forums_locked']) ) ? $images['forums_locked'] : $images['forum_locked'], 'subalt' => $lang['Forum_locked'], 'subaltnew' => $lang['Forum_locked'], ); // End Simple Subforums MOD } else { $unread_topics = false; if ( $userdata['session_logged_in'] ) { if ( !empty($new_topic_data[$forum_id]) ) { $forum_last_post_time = 0; while( list($check_topic_id, $check_post_time) = @each($new_topic_data[$forum_id]) ) { if ( empty($tracking_topics[$check_topic_id]) ) { $unread_topics = true; $forum_last_post_time = max($check_post_time, $forum_last_post_time); } else { if ( $tracking_topics[$check_topic_id] < $check_post_time ) { $unread_topics = true; $forum_last_post_time = max($check_post_time, $forum_last_post_time); } } } if ( !empty($tracking_forums[$forum_id]) ) { if ( $tracking_forums[$forum_id] > $forum_last_post_time ) { $unread_topics = false; } } if ( isset($HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all']) ) { if ( $HTTP_COOKIE_VARS[$board_config['cookie_name'] . '_f_all'] > $forum_last_post_time ) { $unread_topics = false; } } } } $folder_image = ( $unread_topics ) ? $images['forum_new'] : $images['forum']; $folder_alt = ( $unread_topics ) ? $lang['New_posts'] : $lang['No_new_posts']; // Begin Simple Subforums MOD $folder_images = array( 'default' => $folder_image, 'new' => $images['forum_new'], 'sub' => ( isset($images['forums']) ) ? $images['forums'] : $images['forum'], 'subnew' => ( isset($images['forums_new']) ) ? $images['forums_new'] : $images['forum_new'], 'subalt' => $lang['No_new_posts'], 'subaltnew' => $lang['New_posts'], ); // End Simple Subforums MOD } $posts = $forum_data[$j]['forum_posts']; $topics = $forum_data[$j]['forum_topics']; if ( $forum_data[$j]['forum_last_post_id'] ) { $last_post_time = create_date($board_config['default_dateformat'], $forum_data[$j]['post_time'], $board_config['board_timezone']); $last_post = $last_post_time . '<br />'; $last_post .= ( $forum_data[$j]['user_id'] == ANONYMOUS ) ? ( ($forum_data[$j]['post_username'] != '' ) ? $forum_data[$j]['post_username'] . ' ' : $lang['Guest'] . ' ' ) : '<a href="' . append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $forum_data[$j]['user_id']) . '">' . $forum_data[$j]['username'] . '</a> '; $last_post .= '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . $images['icon_latest_reply'] . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; // Begin Simple Subforums MOD $last_post_sub = '<a href="' . append_sid("viewtopic.$phpEx?" . POST_POST_URL . '=' . $forum_data[$j]['forum_last_post_id']) . '#' . $forum_data[$j]['forum_last_post_id'] . '"><img src="' . ($unread_topics ? $images['icon_newest_reply'] : $images['icon_latest_reply']) . '" border="0" alt="' . $lang['View_latest_post'] . '" title="' . $lang['View_latest_post'] . '" /></a>'; $last_post_time = $forum_data[$j]['post_time']; // End Simple Subforums MOD } else { $last_post = $lang['No_Posts']; // Begin Simple Subforums MOD $last_post_sub = '<img src="' . $images['icon_minipost'] . '" border="0" alt="' . $lang['No_Posts'] . '" title="' . $lang['No_Posts'] . '" />'; $last_post_time = 0; // End Simple Subforums MOD } if ( count($forum_moderators[$forum_id]) > 0 ) { $l_moderators = ( count($forum_moderators[$forum_id]) == 1 ) ? $lang['Moderator'] : $lang['Moderators']; $moderator_list = implode(', ', $forum_moderators[$forum_id]); } else { $l_moderators = ' '; $moderator_list = ''; } $row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2']; $template->assign_block_vars('catrow.forumrow', array( 'ROW_COLOR' => '#' . $row_color, 'ROW_CLASS' => $row_class, 'FORUM_FOLDER_IMG' => $folder_image, 'FORUM_NAME' => $forum_data[$j]['forum_name'], 'FORUM_DESC' => $forum_data[$j]['forum_desc'], 'POSTS' => $forum_data[$j]['forum_posts'], 'TOPICS' => $forum_data[$j]['forum_topics'], 'LAST_POST' => $last_post, 'MODERATORS' => $moderator_list, 'L_MODERATOR' => $l_moderators, 'L_FORUM_FOLDER_ALT' => $folder_alt, // Begin Simple Subforums MOD 'FORUM_FOLDERS' => serialize($folder_images), 'HAS_SUBFORUMS' => 0, 'PARENT' => $forum_data[$j]['forum_parent'], 'ID' => $forum_data[$j]['forum_id'], 'UNREAD' => intval($unread_topics), 'TOTAL_UNREAD' => intval($unread_topics), 'TOTAL_POSTS' => $forum_data[$j]['forum_posts'], 'TOTAL_TOPICS' => $forum_data[$j]['forum_topics'], 'LAST_POST_FORUM' => $last_post, 'LAST_POST_TIME' => $last_post_time, 'LAST_POST_TIME_FORUM' => $last_post_time, // End Simple Subforums MOD 'U_VIEWFORUM' => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . "=$forum_id")) ); // Begin Simple Subforums MOD if( $forum_data[$j]['forum_parent'] ) { $subforums_list[] = array( 'forum_data' => $forum_data[$j], 'folder_image' => $folder_image, 'last_post' => $last_post, 'last_post_sub' => $last_post_sub, 'moderator_list' => $moderator_list, 'unread_topics' => $unread_topics, 'l_moderators' => $l_moderators, 'folder_alt' => $folder_alt, 'last_post_time' => $last_post_time, 'desc' => $forum_data[$j]['forum_desc'], ); } // End Simple Subforums MOD } } } } } } // for ... categories }// if ... total_categories else { message_die(GENERAL_MESSAGE, $lang['No_forums']); } // Begin Simple Subforums MOD unset($data); unset($item); unset($cat_item); unset($row_item); for( $i = 0; $i < count($subforums_list); $i++ ) { $forum_data = $subforums_list[$i]['forum_data']; $parent_id = $forum_data['forum_parent']; // Find parent item if( isset($template->_tpldata['catrow.']) ) { $data = &$template->_tpldata['catrow.']; $count = count($data); for( $j = 0; $j < $count; $j++) { $cat_item = &$data[$j]; $row_item = &$cat_item['forumrow.']; $count2 = count($row_item); for( $k = 0; $k < $count2; $k++) { if( $row_item[$k]['ID'] == $parent_id ) { $item = &$row_item[$k]; break; } } if( isset($item) ) { break; } } } if( isset($item) ) { if( isset($item['sub.']) ) { $num = count($item['sub.']); $data = &$item['sub.']; } else { $num = 0; $item[] = 'sub.'; $data = &$item['sub.']; } // Append new entry $data[] = array( 'NUM' => $num, 'FORUM_FOLDER_IMG' => $subforums_list[$i]['folder_image'], 'FORUM_NAME' => $forum_data['forum_name'], 'FORUM_DESC' => $forum_data['forum_desc'], 'FORUM_DESC_HTML' => htmlspecialchars(preg_replace('@<[\/\!]*?[^<>]*?>@si', '', $forum_data['forum_desc'])), 'POSTS' => $forum_data['forum_posts'], 'TOPICS' => $forum_data['forum_topics'], 'LAST_POST' => $subforums_list[$i]['last_post'], 'LAST_POST_SUB' => $subforums_list[$i]['last_post_sub'], 'LAST_TOPIC' => $forum_data['topic_title'], 'MODERATORS' => $subforums_list[$i]['moderator_list'], 'PARENT' => $forum_data['forum_parent'], 'ID' => $forum_data['forum_id'], 'UNREAD' => intval($subforums_list[$i]['unread_topics']), 'L_MODERATOR' => $subforums_list[$i]['l_moderators'], 'L_FORUM_FOLDER_ALT' => $subforums_list[$i]['folder_alt'], 'U_VIEWFORUM' => append_sid("viewforum.$phpEx?" . POST_FORUM_URL . '=' . $forum_data['forum_id']) ); $item['HAS_SUBFORUMS'] ++; $item['TOTAL_UNREAD'] += intval($subforums_list[$i]['unread_topics']); // Change folder image $images = unserialize($item['FORUM_FOLDERS']); $item['FORUM_FOLDER_IMG'] = $item['TOTAL_UNREAD'] ? $images['subnew'] : $images['sub']; $item['L_FORUM_FOLDER_ALT'] = $item['TOTAL_UNREAD'] ? $images['subaltnew'] : $images['subalt']; // Check last post if( $item['LAST_POST_TIME'] < $subforums_list[$i]['last_post_time'] ) { $item['LAST_POST'] = $subforums_list[$i]['last_post']; $item['LAST_POST_TIME'] = $subforums_list[$i]['last_post_time']; } if( !$item['LAST_POST_TIME_FORUM'] ) { $item['LAST_POST_FORUM'] = $item['LAST_POST']; } // Add topics/posts $item['TOTAL_POSTS'] += $forum_data['forum_posts']; $item['TOTAL_TOPICS'] += $forum_data['forum_topics']; } unset($item); unset($data); unset($cat_item); unset($row_item); } // End Simple Subforums MOD // // Generate the page // $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?> --- NEW FILE: viewonline.php --- <?php /*************************************************************************** * viewonline.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: viewonline.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ define('IN_PHPBB', true); $phpbb_root_path = './'; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); // // Start session management // $userdata = session_pagestart($user_ip, PAGE_VIEWONLINE); init_userprefs($userdata); // // End session management // // // Output page header and load viewonline template // $page_title = $lang['Who_is_Online']; include($phpbb_root_path . 'includes/page_header.'.$phpEx); $template->set_filenames(array( 'body' => 'viewonline_body.tpl') ); make_jumpbox('viewforum.'.$phpEx); $template->assign_vars(array( 'L_WHOSONLINE' => $lang['Who_is_Online'], 'L_ONLINE_EXPLAIN' => $lang['Online_explain'], 'L_USERNAME' => $lang['Username'], 'L_FORUM_LOCATION' => $lang['Forum_Location'], 'L_LAST_UPDATE' => $lang['Last_updated']) ); // // Forum info // $sql = "SELECT forum_name, forum_id FROM " . FORUMS_TABLE; if ( $result = $db->sql_query($sql) ) { while( $row = $db->sql_fetchrow($result) ) { $forum_data[$row['forum_id']] = $row['forum_name']; } } else { message_die(GENERAL_ERROR, 'Could not obtain user/online forums information', '', __LINE__, __FILE__, $sql); } // // Get auth data // $is_auth_ary = array(); $is_auth_ary = auth(AUTH_VIEW, AUTH_LIST_ALL, $userdata); // // Get user list // $sql = "SELECT u.user_id, u.username, u.user_allow_viewonline, u.user_level, s.session_logged_in, s.session_time, s.session_page, s.session_ip FROM ".USERS_TABLE." u, ".SESSIONS_TABLE." s WHERE u.user_id = s.session_user_id AND s.session_time >= ".( time() - 300 ) . " ORDER BY u.username ASC, s.session_ip ASC"; if ( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Could not obtain regd user/online information', '', __LINE__, __FILE__, $sql); } $guest_users = 0; $registered_users = 0; $hidden_users = 0; $reg_counter = 0; $guest_counter = 0; $prev_user = 0; $prev_ip = ''; while ( $row = $db->sql_fetchrow($result) ) { $view_online = false; if ( $row['session_logged_in'] ) { $user_id = $row['user_id']; if ( $user_id != $prev_user ) { $username = $row['username']; $style_color = ''; if ( $row['user_level'] == ADMIN ) { $username = '<b style="color:#' . $theme['fontcolor3'] . '">' . $username . '</b>'; } else if ( $row['user_level'] == MOD ) { $username = '<b style="color:#' . $theme['fontcolor2'] . '">' . $username . '</b>'; } if ( !$row['user_allow_viewonline'] ) { $view_online = ( $userdata['user_level'] == ADMIN ) ? true : false; $hidden_users++; $username = '<i>' . $username . '</i>'; } else { $view_online = true; $registered_users++; } $which_counter = 'reg_counter'; $which_row = 'reg_user_row'; $prev_user = $user_id; } } else { if ( $row['session_ip'] != $prev_ip ) { $username = $lang['Guest']; $view_online = true; $guest_users++; $which_counter = 'guest_counter'; $which_row = 'guest_user_row'; } } $prev_ip = $row['session_ip']; if ( $view_online ) { if ( $row['session_page'] < 1 || !$is_auth_ary[$row['session_page']]['auth_view'] ) { switch( $row['session_page'] ) { case PAGE_INDEX: $location = $lang['Forum_index']; $location_url = "index.$phpEx"; break; case PAGE_POSTING: $location = $lang['Posting_message']; $location_url = "index.$phpEx"; break; case PAGE_LOGIN: $location = $lang['Logging_on']; $location_url = "index.$phpEx"; break; case PAGE_SEARCH: $location = $lang['Searching_forums']; $location_url = "search.$phpEx"; break; case PAGE_PROFILE: $location = $lang['Viewing_profile']; $location_url = "index.$phpEx"; break; case PAGE_VIEWONLINE: $location = $lang['Viewing_online']; $location_url = "viewonline.$phpEx"; break; case PAGE_VIEWMEMBERS: $location = $lang['Viewing_member_list']; $location_url = "memberlist.$phpEx"; break; case PAGE_PRIVMSGS: $location = $lang['Viewing_priv_msgs']; $location_url = "privmsg.$phpEx"; break; case PAGE_FAQ: $location = $lang['Viewing_FAQ']; $location_url = "faq.$phpEx"; break; default: $location = $lang['Forum_index']; $location_url = "index.$phpEx"; } } else { $location_url = append_sid("viewforum.$phpEx?" . POST_FORUM_URL . '=' . $row['session_page']); $location = $forum_data[$row['session_page']]; } $row_color = ( $$which_counter % 2 ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( $$which_counter % 2 ) ? $theme['td_class1'] : $theme['td_class2']; $template->assign_block_vars("$which_row", array( 'ROW_COLOR' => '#' . $row_color, 'ROW_CLASS' => $row_class, 'USERNAME' => $username, 'LASTUPDATE' => create_date($board_config['default_dateformat'], $row['session_time'], $board_config['board_timezone']), 'FORUM_LOCATION' => $location, 'U_USER_PROFILE' => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . '=' . $user_id), 'U_FORUM_LOCATION' => append_sid($location_url)) ); $$which_counter++; } } if( $registered_users == 0 ) { $l_r_user_s = $lang['Reg_users_zero_online']; } else if( $registered_users == 1 ) { $l_r_user_s = $lang['Reg_user_online']; } else { $l_r_user_s = $lang['Reg_users_online']; } if( $hidden_users == 0 ) { $l_h_user_s = $lang['Hidden_users_zero_online']; } else if( $hidden_users == 1 ) { $l_h_user_s = $lang['Hidden_user_online']; } else { $l_h_user_s = $lang['Hidden_users_online']; } if( $guest_users == 0 ) { $l_g_user_s = $lang['Guest_users_zero_online']; } else if( $guest_users == 1 ) { $l_g_user_s = $lang['Guest_user_online']; } else { $l_g_user_s = $lang['Guest_users_online']; } $template->assign_vars(array( 'TOTAL_REGISTERED_USERS_ONLINE' => sprintf($l_r_user_s, $registered_users) . sprintf($l_h_user_s, $hidden_users), 'TOTAL_GUEST_USERS_ONLINE' => sprintf($l_g_user_s, $guest_users)) ); if ( $registered_users + $hidden_users == 0 ) { $template->assign_vars(array( 'L_NO_REGISTERED_USERS_BROWSING' => $lang['No_users_browsing']) ); } if ( $guest_users == 0 ) { $template->assign_vars(array( 'L_NO_GUESTS_BROWSING' => $lang['No_users_browsing']) ); } $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?> --- NEW FILE: robots.txt --- User-agent: * Disallow: /admin/ Disallow: /cache/ Disallow: /images/ Disallow: /includes/ Disallow: /language/ Disallow: /templates/ --- NEW FILE: viewtopic.php --- <?php /*************************************************************************** * viewtopic.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: viewtopic.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. [...1203 lines suppressed...] 'EDIT' => $edit, 'QUOTE_IMG' => $quote_img, 'QUOTE' => $quote, 'IP_IMG' => $ip_img, 'IP' => $ip, 'DELETE_IMG' => $delpost_img, 'DELETE' => $delpost, 'L_MINI_POST_ALT' => $mini_post_alt, 'U_MINI_POST' => $mini_post_url, 'U_POST_ID' => $postrow[$i]['post_id']) ); } $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?> --- NEW FILE: faq.php --- <?php /*************************************************************************** * faq.php * ------------------- * begin : Sunday, Jul 8, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: faq.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ define('IN_PHPBB', true); $phpbb_root_path = './'; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); // // Start session management // $userdata = session_pagestart($user_ip, PAGE_FAQ); init_userprefs($userdata); // // End session management // // Set vars to prevent naughtiness $faq = array(); // // Load the appropriate faq file // if( isset($HTTP_GET_VARS['mode']) ) { switch( $HTTP_GET_VARS['mode'] ) { case 'bbcode': $lang_file = 'lang_bbcode'; $l_title = $lang['BBCode_guide']; break; default: $lang_file = 'lang_faq'; $l_title = $lang['FAQ']; break; } } else { $lang_file = 'lang_faq'; $l_title = $lang['FAQ']; } include($phpbb_root_path . 'language/lang_' . $board_config['default_lang'] . '/' . $lang_file . '.' . $phpEx); // // Pull the array data from the lang pack // $j = 0; $counter = 0; $counter_2 = 0; $faq_block = array(); $faq_block_titles = array(); for($i = 0; $i < count($faq); $i++) { if( $faq[$i][0] != '--' ) { $faq_block[$j][$counter]['id'] = $counter_2; $faq_block[$j][$counter]['question'] = $faq[$i][0]; $faq_block[$j][$counter]['answer'] = $faq[$i][1]; $counter++; $counter_2++; } else { $j = ( $counter != 0 ) ? $j + 1 : 0; $faq_block_titles[$j] = $faq[$i][1]; $counter = 0; } } // // Lets build a page ... // $page_title = $l_title; include($phpbb_root_path . 'includes/page_header.'.$phpEx); $template->set_filenames(array( 'body' => 'faq_body.tpl') ); make_jumpbox('viewforum.'.$phpEx); $template->assign_vars(array( 'L_FAQ_TITLE' => $l_title, 'L_BACK_TO_TOP' => $lang['Back_to_top']) ); for($i = 0; $i < count($faq_block); $i++) { if( count($faq_block[$i]) ) { $template->assign_block_vars('faq_block', array( 'BLOCK_TITLE' => $faq_block_titles[$i]) ); $template->assign_block_vars('faq_block_link', array( 'BLOCK_TITLE' => $faq_block_titles[$i]) ); for($j = 0; $j < count($faq_block[$i]); $j++) { $row_color = ( !($j % 2) ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( !($j % 2) ) ? $theme['td_class1'] : $theme['td_class2']; $template->assign_block_vars('faq_block.faq_row', array( 'ROW_COLOR' => '#' . $row_color, 'ROW_CLASS' => $row_class, 'FAQ_QUESTION' => $faq_block[$i][$j]['question'], 'FAQ_ANSWER' => $faq_block[$i][$j]['answer'], 'U_FAQ_ID' => $faq_block[$i][$j]['id']) ); $template->assign_block_vars('faq_block_link.faq_row_link', array( 'ROW_COLOR' => '#' . $row_color, 'ROW_CLASS' => $row_class, 'FAQ_LINK' => $faq_block[$i][$j]['question'], 'U_FAQ_LINK' => '#' . $faq_block[$i][$j]['id']) ); } } } $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?> --- NEW FILE: config.php --- <?php // phpBB 2.x auto-generated config file // Do not change anything in this file! $dbms = 'mysqli'; $dbhost = ''; $dbname = ''; $dbuser = ''; $dbpasswd = ''; $table_prefix = ''; ?> --- NEW FILE: memberlist.php --- <?php /*************************************************************************** * memberlist.php * ------------------- * begin : Friday, May 11, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: memberlist.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ define('IN_PHPBB', true); $phpbb_root_path = './'; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); // // Start session management // $userdata = session_pagestart($user_ip, PAGE_VIEWMEMBERS); init_userprefs($userdata); // // End session management // $start = ( isset($HTTP_GET_VARS['start']) ) ? intval($HTTP_GET_VARS['start']) : 0; $start = ($start < 0) ? 0 : $start; if ( isset($HTTP_GET_VARS['mode']) || isset($HTTP_POST_VARS['mode']) ) { $mode = ( isset($HTTP_POST_VARS['mode']) ) ? htmlspecialchars($HTTP_POST_VARS['mode']) : htmlspecialchars($HTTP_GET_VARS['mode']); } else { $mode = 'joined'; } if(isset($HTTP_POST_VARS['order'])) { $sort_order = ($HTTP_POST_VARS['order'] == 'ASC') ? 'ASC' : 'DESC'; } else if(isset($HTTP_GET_VARS['order'])) { $sort_order = ($HTTP_GET_VARS['order'] == 'ASC') ? 'ASC' : 'DESC'; } else { $sort_order = 'ASC'; } // // Memberlist sorting // $mode_types_text = array($lang['Sort_Joined'], $lang['Sort_Username'], $lang['Sort_Location'], $lang['Sort_Posts'], $lang['Sort_Email'], $lang['Sort_Website'], $lang['Sort_Top_Ten']); $mode_types = array('joined', 'username', 'location', 'posts', 'email', 'website', 'topten'); $select_sort_mode = '<select name="mode">'; for($i = 0; $i < count($mode_types_text); $i++) { $selected = ( $mode == $mode_types[$i] ) ? ' selected="selected"' : ''; $select_sort_mode .= '<option value="' . $mode_types[$i] . '"' . $selected . '>' . $mode_types_text[$i] . '</option>'; } $select_sort_mode .= '</select>'; $select_sort_order = '<select name="order">'; if($sort_order == 'ASC') { $select_sort_order .= '<option value="ASC" selected="selected">' . $lang['Sort_Ascending'] . '</option><option value="DESC">' . $lang['Sort_Descending'] . '</option>'; } else { $select_sort_order .= '<option value="ASC">' . $lang['Sort_Ascending'] . '</option><option value="DESC" selected="selected">' . $lang['Sort_Descending'] . '</option>'; } $select_sort_order .= '</select>'; // // Generate page // $page_title = $lang['Memberlist']; include($phpbb_root_path . 'includes/page_header.'.$phpEx); $template->set_filenames(array( 'body' => 'memberlist_body.tpl') ); make_jumpbox('viewforum.'.$phpEx); $template->assign_vars(array( 'L_SELECT_SORT_METHOD' => $lang['Select_sort_method'], 'L_EMAIL' => $lang['Email'], 'L_WEBSITE' => $lang['Website'], 'L_FROM' => $lang['Location'], 'L_ORDER' => $lang['Order'], 'L_SORT' => $lang['Sort'], 'L_SUBMIT' => $lang['Sort'], 'L_AIM' => $lang['AIM'], 'L_YIM' => $lang['YIM'], 'L_MSNM' => $lang['MSNM'], 'L_ICQ' => $lang['ICQ'], 'L_JOINED' => $lang['Joined'], 'L_POSTS' => $lang['Posts'], 'L_PM' => $lang['Private_Message'], 'S_MODE_SELECT' => $select_sort_mode, 'S_ORDER_SELECT' => $select_sort_order, 'S_MODE_ACTION' => append_sid("memberlist.$phpEx")) ); switch( $mode ) { case 'joined': $order_by = "user_regdate $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; case 'username': $order_by = "username $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; case 'location': $order_by = "user_from $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; case 'posts': $order_by = "user_posts $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; case 'email': $order_by = "user_email $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; case 'website': $order_by = "user_website $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; case 'topten': $order_by = "user_posts $sort_order LIMIT 10"; break; default: $order_by = "user_regdate $sort_order LIMIT $start, " . $board_config['topics_per_page']; break; } $sql = "SELECT username, user_id, user_viewemail, user_posts, user_regdate, user_from, user_website, user_email, user_icq, user_aim, user_yim, user_msnm, user_avatar, user_avatar_type, user_allowavatar FROM " . USERS_TABLE . " WHERE user_id <> " . ANONYMOUS . " ORDER BY $order_by"; if( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Could not query users', '', __LINE__, __FILE__, $sql); } if ( $row = $db->sql_fetchrow($result) ) { $i = 0; do { $username = $row['username']; $user_id = $row['user_id']; $from = ( !empty($row['user_from']) ) ? $row['user_from'] : ' '; $joined = create_date($lang['DATE_FORMAT'], $row['user_regdate'], $board_config['board_timezone']); $posts = ( $row['user_posts'] ) ? $row['user_posts'] : 0; $poster_avatar = ''; if ( $row['user_avatar_type'] && $user_id != ANONYMOUS && $row['user_allowavatar'] ) { switch( $row['user_avatar_type'] ) { case USER_AVATAR_UPLOAD: $poster_avatar = ( $board_config['allow_avatar_upload'] ) ? '<img src="' . $board_config['avatar_path'] . '/' . $row['user_avatar'] . '" alt="" border="0" />' : ''; break; case USER_AVATAR_REMOTE: $poster_avatar = ( $board_config['allow_avatar_remote'] ) ? '<img src="' . $row['user_avatar'] . '" alt="" border="0" />' : ''; break; case USER_AVATAR_GALLERY: $poster_avatar = ( $board_config['allow_avatar_local'] ) ? '<img src="' . $board_config['avatar_gallery_path'] . '/' . $row['user_avatar'] . '" alt="" border="0" />' : ''; break; } } if ( !empty($row['user_viewemail']) || $userdata['user_level'] == ADMIN ) { $email_uri = ( $board_config['board_email_form'] ) ? append_sid("profile.$phpEx?mode=email&" . POST_USERS_URL .'=' . $user_id) : 'mailto:' . $row['user_email']; $email_img = '<a href="' . $email_uri . '"><img src="' . $images['icon_email'] . '" alt="' . $lang['Send_email'] . '" title="' . $lang['Send_email'] . '" border="0" /></a>'; $email = '<a href="' . $email_uri . '">' . $lang['Send_email'] . '</a>'; } else { $email_img = ' '; $email = ' '; } $temp_url = append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id"); $profile_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_profile'] . '" alt="' . $lang['Read_profile'] . '" title="' . $lang['Read_profile'] . '" border="0" /></a>'; $profile = '<a href="' . $temp_url . '">' . $lang['Read_profile'] . '</a>'; $temp_url = append_sid("privmsg.$phpEx?mode=post&" . POST_USERS_URL . "=$user_id"); $pm_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_pm'] . '" alt="' . $lang['Send_private_message'] . '" title="' . $lang['Send_private_message'] . '" border="0" /></a>'; $pm = '<a href="' . $temp_url . '">' . $lang['Send_private_message'] . '</a>'; $www_img = ( $row['user_website'] ) ? '<a href="' . $row['user_website'] . '" target="_userwww"><img src="' . $images['icon_www'] . '" alt="' . $lang['Visit_website'] . '" title="' . $lang['Visit_website'] . '" border="0" /></a>' : ''; $www = ( $row['user_website'] ) ? '<a href="' . $row['user_website'] . '" target="_userwww">' . $lang['Visit_website'] . '</a>' : ''; if ( !empty($row['user_icq']) ) { $icq_status_img = '<a href="http://wwp.icq.com/' . $row['user_icq'] . '#pager"><img src="http://web.icq.com/whitepages/online?icq=' . $row['user_icq'] . '&img=5" width="18" height="18" border="0" /></a>'; $icq_img = '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $row['user_icq'] . '"><img src="' . $images['icon_icq'] . '" alt="' . $lang['ICQ'] . '" title="' . $lang['ICQ'] . '" border="0" /></a>'; $icq = '<a href="http://wwp.icq.com/scripts/search.dll?to=' . $row['user_icq'] . '">' . $lang['ICQ'] . '</a>'; } else { $icq_status_img = ''; $icq_img = ''; $icq = ''; } $aim_img = ( $row['user_aim'] ) ? '<a href="aim:goim?screenname=' . $row['user_aim'] . '&message=Hello+Are+you+there?"><img src="' . $images['icon_aim'] . '" alt="' . $lang['AIM'] . '" title="' . $lang['AIM'] . '" border="0" /></a>' : ''; $aim = ( $row['user_aim'] ) ? '<a href="aim:goim?screenname=' . $row['user_aim'] . '&message=Hello+Are+you+there?">' . $lang['AIM'] . '</a>' : ''; $temp_url = append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id"); $msn_img = ( $row['user_msnm'] ) ? '<a href="' . $temp_url . '"><img src="' . $images['icon_msnm'] . '" alt="' . $lang['MSNM'] . '" title="' . $lang['MSNM'] . '" border="0" /></a>' : ''; $msn = ( $row['user_msnm'] ) ? '<a href="' . $temp_url . '">' . $lang['MSNM'] . '</a>' : ''; $yim_img = ( $row['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $row['user_yim'] . '&.src=pg"><img src="' . $images['icon_yim'] . '" alt="' . $lang['YIM'] . '" title="' . $lang['YIM'] . '" border="0" /></a>' : ''; $yim = ( $row['user_yim'] ) ? '<a href="http://edit.yahoo.com/config/send_webmesg?.target=' . $row['user_yim'] . '&.src=pg">' . $lang['YIM'] . '</a>' : ''; $temp_url = append_sid("search.$phpEx?search_author=" . urlencode($username) . "&showresults=posts"); $search_img = '<a href="' . $temp_url . '"><img src="' . $images['icon_search'] . '" alt="' . sprintf($lang['Search_user_posts'], $username) . '" title="' . sprintf($lang['Search_user_posts'], $username) . '" border="0" /></a>'; $search = '<a href="' . $temp_url . '">' . sprintf($lang['Search_user_posts'], $username) . '</a>'; $row_color = ( !($i % 2) ) ? $theme['td_color1'] : $theme['td_color2']; $row_class = ( !($i % 2) ) ? $theme['td_class1'] : $theme['td_class2']; $template->assign_block_vars('memberrow', array( 'ROW_NUMBER' => $i + ( $start + 1 ), 'ROW_COLOR' => '#' . $row_color, 'ROW_CLASS' => $row_class, 'USERNAME' => $username, 'FROM' => $from, 'JOINED' => $joined, 'POSTS' => $posts, 'AVATAR_IMG' => $poster_avatar, 'PROFILE_IMG' => $profile_img, 'PROFILE' => $profile, 'SEARCH_IMG' => $search_img, 'SEARCH' => $search, 'PM_IMG' => $pm_img, 'PM' => $pm, 'EMAIL_IMG' => $email_img, 'EMAIL' => $email, 'WWW_IMG' => $www_img, 'WWW' => $www, 'ICQ_STATUS_IMG' => $icq_status_img, 'ICQ_IMG' => $icq_img, 'ICQ' => $icq, 'AIM_IMG' => $aim_img, 'AIM' => $aim, 'MSN_IMG' => $msn_img, 'MSN' => $msn, 'YIM_IMG' => $yim_img, 'YIM' => $yim, 'U_VIEWPROFILE' => append_sid("profile.$phpEx?mode=viewprofile&" . POST_USERS_URL . "=$user_id")) ); $i++; } while ( $row = $db->sql_fetchrow($result) ); $db->sql_freeresult($result); } if ( $mode != 'topten' || $board_config['topics_per_page'] < 10 ) { $sql = "SELECT count(*) AS total FROM " . USERS_TABLE . " WHERE user_id <> " . ANONYMOUS; if ( !($result = $db->sql_query($sql)) ) { message_die(GENERAL_ERROR, 'Error getting total users', '', __LINE__, __FILE__, $sql); } if ( $total = $db->sql_fetchrow($result) ) { $total_members = $total['total']; $pagination = generate_pagination("memberlist.$phpEx?mode=$mode&order=$sort_order", $total_members, $board_config['topics_per_page'], $start). ' '; } $db->sql_freeresult($result); } else { $pagination = ' '; $total_members = 10; } $template->assign_vars(array( 'PAGINATION' => $pagination, 'PAGE_NUMBER' => sprintf($lang['Page_of'], ( floor( $start / $board_config['topics_per_page'] ) + 1 ), ceil( $total_members / $board_config['topics_per_page'] )), 'L_GOTO_PAGE' => $lang['Goto_page']) ); $template->pparse('body'); include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?> --- NEW FILE: groupcp.php --- <?php /*************************************************************************** * groupcp.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: groupcp.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. [...1259 lines suppressed...] 'S_USERGROUP_ACTION' => append_sid("groupcp.$phpEx"), 'S_HIDDEN_FIELDS' => $s_hidden_fields, 'GROUP_LIST_SELECT' => $s_group_list, 'GROUP_PENDING_SELECT' => $s_pending_groups, 'GROUP_MEMBER_SELECT' => $s_member_groups) ); $template->pparse('user'); } else { message_die(GENERAL_MESSAGE, $lang['No_groups_exist']); } } include($phpbb_root_path . 'includes/page_tail.'.$phpEx); ?> --- NEW FILE: viewforum.php --- <?php /*************************************************************************** * viewforum.php * ------------------- * begin ... [truncated message content] |
Update of /cvsroot/mxbb/phpbb2mxp/develop In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/develop Added Files: README.html bbcode_conversion.php benchmark.php convert_avatars.php convert_bbcodeuid.php convert_conf.php convert_privmsgs.php convert_sigs.php convert_user_regdates.php convert_usernames.php dbinformer.php encoding_emails.php fix_files.sh fixfiles.sh insert_server_info.php most_users_update.php nuke-db.php revar_lang_files.php search_fill.php template_db_cache.php template_file_cache.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: fix_files.sh --- #!/bin/bash # # Remove all those annoying ^M characters that Winblows editor's like to add # from all files in the current directory and all subdirectories. # # Written by: Jonathan Haase. # # UPDATE: 7/31/2001: fix so that it doesn't touch things in the images directory # find . > FILELIST.$$ grep -sv FILELIST FILELIST.$$ > FILELIST2.$$ grep -sv $(basename $0) FILELIST2.$$ > FILELIST.$$ grep -sv "^\.$" FILELIST.$$ > FILELIST2.$$ grep -sv "images" FILELIST2.$$ > FILELIST rm FILELIST2.$$ rm FILELIST.$$ for i in $(cat FILELIST); do if [ -f $i ]; then sed -e s/ //g $i > $i.tmp mv $i.tmp $i fi done rm FILELIST --- NEW FILE: dbinformer.php --- <?php /*************************************************************************** * dbinformer.php * ------------------- * begin : Saturday, May 05, 2002 * copyright : (C) 2002 The phpBB Group * email : n/a * * $Id: dbinformer.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * Coded by AL, Techie-Micheal, Blade, and Black Fluffy Lion. * http://www.phpbb.com/phpBB/groupcp.php?g=7330 * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ /* magic quotes, borrowed from install.php */ set_magic_quotes_runtime(0); if (!get_magic_quotes_gpc()) { if (is_array($HTTP_POST_VARS)) { while (list($k, $v) = each($HTTP_POST_VARS)) { if (is_array($HTTP_POST_VARS[$k])) { while (list($k2, $v2) = each($HTTP_POST_VARS[$k])) { $HTTP_POST_VARS[$k][$k2] = addslashes($v2); } @reset($HTTP_POST_VARS[$k]); } else { $HTTP_POST_VARS[$k] = addslashes($v); } } @reset($HTTP_POST_VARS); } } $all_connected = false; $error = false; $error_msg = ''; $select = false; $connect = false; function make_config($dbms, $dbhost, $dbname, $dbuser, $dbpasswd, $table_prefix) { $config_file = '<?php<br />' . "\n"; $config_file .= '<br />' . "\n"; $config_file .= '//<br />' . "\n"; $config_file .= '// phpBB 2.x auto-generated config file<br />' . "\n"; $config_file .= '// Do not change anything in this file!<br />' . "\n"; $config_file .= '//<br />' . "\n"; $config_file .= '<br />' . "\n"; $config_file .= '$dbms = \'' . $dbms . '\';<br /><br />' . "\n\n"; $config_file .= '$dbhost = \'' . $dbhost . '\';<br />' . "\n"; $config_file .= '$dbname = \'' . $dbname . '\';<br />' . "\n"; $config_file .= '$dbuser = \'' . $dbuser . '\';<br />' . "\n"; $config_file .= '$dbpasswd = \'' . $dbpasswd . '\';<br /><br />' . "\n\n"; $config_file .= '$table_prefix = \'' . $table_prefix . '\';<br /><br />' . "\n\n"; $config_file .= 'define(\'PHPBB_INSTALLED\', true);<br /><br />' . "\n\n"; $config_file .= '?>'; return $config_file; } function make_download($dbms, $dbhost, $dbname, $dbuser, $dbpasswd, $table_prefix) { $config_file = '<?php' . "\n\n"; $config_file .= '//' . "\n"; $config_file .= '// phpBB 2.x auto-generated config file' . "\n"; $config_file .= '// Do not change anything in this file!' . "\n"; $config_file .= '//' . "\n\n"; $config_file .= '$dbms = \'' . $dbms . '\';' . "\n\n"; $config_file .= '$dbhost = \'' . $dbhost . '\';' . "\n"; $config_file .= '$dbname = \'' . $dbname . '\';' . "\n"; $config_file .= '$dbuser = \'' . $dbuser . '\';' . "\n"; $config_file .= '$dbpasswd = \'' . $dbpasswd . '\';' . "\n\n"; $config_file .= '$table_prefix = \'' . $table_prefix . '\';' . "\n\n"; $config_file .= 'define(\'PHPBB_INSTALLED\', true);' . "\n\n"; $config_file .= '?>'; return $config_file; } /* make all the vars safe to display in form inputs and on the user's screen. Borrowed from usercp_register.php */ $check_var_list = array('dbms' => 'dbms', 'dbhost' => 'dbhost', 'dbname' => 'dbname', 'dbuser' => 'dbuser', 'dbpasswd' => 'dbpasswd', 'table_prefix' => 'table_prefix'); while (list($var, $param) = each($check_var_list)) { if (!empty($HTTP_POST_VARS[$param])) { $$var = stripslashes(htmlspecialchars(strip_tags($HTTP_POST_VARS[$param]))); } } $available_dbms = array( 'mysql' => 'MySQL 3.x', 'mysql4' => 'MySQL 4.x', 'postgres' => 'PostgreSQL 7.x', 'mssql' => 'MS SQL Server 7/2000', 'msaccess' => 'MS Access [ ODBC ]', 'mssql-odbc' => 'MS SQL Server [ OBDC ]', ); if (isset($HTTP_POST_VARS['download_config']) && $HTTP_POST_VARS['download_config'] == true && isset($HTTP_POST_VARS['submit_download_config']) && $HTTP_POST_VARS['submit_download_config'] == 'Download') { /* borrowed from install.php */ header('Content-Type: text/x-delimtext; name="config.php"'); header('Content-disposition: attachment; filename=config.php'); echo make_download($dbms, $dbhost, $dbname, $dbuser, $dbpasswd, $table_prefix); return; } ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <meta http-equiv="Content-Type" content="text/html" /> <meta http-equiv="Content-Style-Type" content="text/css" /> <title>phpBB :: dbinformer.php</title> <link rel="stylesheet" href="../templates/subSilver/subSilver.css" type="text/css" /> <style type="text/css"> <!-- p,ul,td {font-size:10pt;} h3 {font-size:12pt;color:blue} //--> </style> </head> <body> <table width="100%" border="0" cellspacing="0" cellpadding="10" align="center"> <tr> <td class="bodyline"><table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td><img src="../templates/subSilver/images/logo_phpBB.gif" border="0" alt="phpBB2 : Creating Communities" vspace="1" /></a></td> <td align="center" width="100%" valign="middle"><span class="maintitle">dbinformer.php</span> </td> </tr> </table> <br /><b><div align="center"> <a href="#what">What you entered</a> | <a href="#connect">Connection to database</a> | <a href="#tables">Tables in database</a> | <a href="#config">Config file</a> </b></div> <table width="100%" border="0" cellspacing="0" cellpadding="10" align="center"> <tr> <td align="center" width="100%" valign="middle"><span class="maintitle"></span></td> </tr> <tr> <td width="100%"> <table width="100%" cellpadding="2" cellspacing="1" border="0" class="forumline"> <tr> <th colspan="2">Database Configuration</th> </tr> <tr> <td class="row1" align="right"><span class="gen">Database type: </span></td> <td class="row2"> <form action="<?php echo htmlspecialchars($HTTP_SERVER_VARS['PHP_SELF']); ?>" method="post"> <select name="dbms"> <?php /* loop through the dbms, with the correct one selected (hopefully!) */ while (list($var, $param) = each($available_dbms)) { $selected = ($dbms == $var) ? ' selected="selected"' : ''; echo '<option value="' . $var . '"' . $selected . '>' . $param . '</option>'; } ?> </select></td> </tr> <tr> <td class="row1" align="right"><span class="gen">Database Server Hostname / DSN: </span></td> <td class="row2"><input type="text" name="dbhost" value="<?php echo @$dbhost; ?>" /></td> </tr> <tr> <td class="row1" align="right"><span class="gen">Your Database Name: </span></td> <td class="row2"><input type="text" name="dbname" value="<?php echo @$dbname; ?>" /></td> </tr> <tr> <td class="row1" align="right"><span class="gen">Database Username: </span></td> <td class="row2"><input type="text" name="dbuser" value="<?php echo @$dbuser; ?>" /></td> </tr> <tr> <td class="row1" align="right"><span class="gen">Database Password: </span></td> <td class="row2"><input type="password" name="dbpasswd" value="<?php echo @$dbpasswd; ?>" /></td> </tr> <tr> <td class="row1" align="right"><span class="gen">Chosen Prefix: </span></td> <td class="row2"><input type="text" name="table_prefix" value="<?php echo @$table_prefix; ?>" /></td> </tr> <tr> <td class="row1" align="right"><span class="gen">Generate a config file: </span></td> </td> <td class="row2"><input type="checkbox" name="generate_config" value="true" <?php $checked = (isset($HTTP_POST_VARS['generate_config']) && $HTTP_POST_VARS['generate_config'] == true) ? 'checked="checked"' : ''; echo $checked; ?> /></td> </tr> <tr> <td class="catbottom" align="center" colspan="2"> <input class="mainoption" type="submit" name="submit" value="Submit" /></td> </tr> </form></td> </tr> </table> <?php if (!isset($HTTP_POST_VARS['submit'])) { echo '<br />Please enter your data.<br />'; } else { /* dbal added by Techie-Micheal [and then obliterated by BFL]. weeeeeee! */ switch ($dbms) { case 'mysql': if (function_exists(@mysql_connect)) { $db = array( 'choice' => 'MySQL 3.x', 'connect' => @mysql_connect($dbhost, $dbuser, $dbpasswd), 'select' => @mysql_select_db($dbname), 'error' => @mysql_error(), 'list' => @mysql_list_tables($dbname), 'fetch' => @mysql_fetch_row, 'close' => @mysql_close() ); } else { $error = true; $error_msg = 'You do not have the needed functions available for ' . $available_dbms[$dbms] . '.'; } break; case 'mysql4': if (function_exists(@mysql_connect)) { $db = array( 'choice' => 'MySQL 4.x', 'connect' => @mysql_connect($dbhost, $dbuser, $dbpasswd), 'select' => @mysql_select_db($dbname), 'error' => @mysql_error(), 'list' => @mysql_list_tables($dbname), 'fetch' => @mysql_fetch_row, 'close' => @mysql_close() ); } else { $error = true; $error_msg = 'You do not have the needed functions available for ' . $available_dbms[$dbms] . '.'; } break; case 'msaccess': if (function_exists(@odbc_connect)) { $db = array( 'choice' => 'MS Access [ ODBC ]', 'connect' => @odbc_connect($dbhost, $dbuser, $dbpasswd), 'select' => 'na', 'error' => @odbc_errormsg(), 'list' => 'na', /* odbc_tables() */ 'fetch' => 'na', /* odbc_fetch_row(), odbc_result_all() */ 'close' => @odbc_close() ); } else { $error = true; $error_msg = 'You do not have the needed functions available for ' . $available_dbms[$dbms] . '.'; } break; case 'postgres': if (function_exists(@pg_connect)) { $db = array( 'choice' => 'PostgreSQL 7.x', 'connect' => @pg_connect('host=' . $dbhost . ' user=' . $dbuser . ' dbname=' . $dbname . ' password=' . $dbpasswd), 'select' => 'na', 'error' => @pg_last_error(), 'list' => @pg_exec("SELECT relname FROM pg_class WHERE relkind = 'r' AND relname NOT LIKE 'pg\_%'"), /* provided by SuGa */ 'fetch' => @pg_fetch_row, 'close' => @pg_close() ); } else { $error = true; $error_msg = 'You do not have the needed functions available for ' . $available_dbms[$dbms] . '.'; } break; case 'mssql': if (function_exists(@mssql_connect)) { $db = array( 'choice' => 'MS SQL Server 7/2000', 'connect' => @mssql_connect($dbhost, $dbuser, $dbpasswd), 'select' => @mssql_select_db($dbname), 'error' => @mssql_get_last_message(), 'list' => 'na', 'fetch' => 'na', /* mssql_fetch_row() */ 'close' => @mssql_close() ); } else { $error = true; $error_msg = 'You do not have the needed functions available for ' . $available_dbms[$dbms] . '.'; } break; case 'mssql-odbc': if (function_exists(@odbc_connect)) { $db = array( 'choice' => 'MS SQL Server [ ODBC ]', 'connect' => @odbc_connect($dbhost, $dbuser, $dbpasswd), 'select' => 'na', 'error' => @odbc_errormsg(), 'list' => 'na', /* odbc_tables() */ 'fetch' => 'na', /* odbc_fetch_row(), odbc_result_all() */ 'close' => @odbc_close() ); } else { $error = true; $error_msg = 'You do not have the needed functions available for ' . $available_dbms[$dbms] . '.'; } break; default: $error = true; $error_msg = 'Unrecognised DBMS.'; break; } if ($error == true && $error_msg != '') { echo '<br /><b>ERROR:</b> ' . $error_msg . '<br />'; } else { echo '<a name="what"><h3><u>What you entered</u></h3></a>'; echo 'Database Type: <b>' . $db['choice'] . '</b><br />'; echo 'Database Server Hostname / DSN: <b>' . $dbhost . '</b><br />'; echo 'Your Database Name: <b>' . $dbname . '</b><br />'; echo 'Database Username: <b>' . $dbuser . '</b><br />'; echo 'Database Password: <b>' . $dbpasswd . '</b><br />'; echo '<a name="connect"><h3><u>Connection to database</u></h3></a>'; if (!$db['connect']) { echo 'You have not established a connection to <b>' . $db['choice'] . '</b>.<br />'; echo '<b>ERROR:</b> <i>' . $db['error'] . '</i><br /><br />'; } else { echo 'You have established a connection to <b>' . $db['choice'] . '</b>.<br /><br />'; $connect = true; } if ($dbms == 'msaccess' || $dbms == 'postgres' || $dbms == 'mssql-odbc') { /* for dbmses which have no db select function */ $select = true; } else { if (!$db['select']) { echo 'Your database was not found.<br />'; echo '<b>ERROR:</b> <i>' . htmlspecialchars($db['error']) . '</i><br />'; } else { echo 'Your database was found.<br />'; $select = true; } } if ($connect == true && $select == true) { echo '<a name="tables"><h3><u>Tables in database</u></h3></a>'; if ($dbms == 'mysql' || $dbms == 'mysql4' || $dbms == 'postgres') { echo '<i>Tables with the table prefix you specified are in bold.</i>'; echo '<ul>'; while ($table = $db['fetch']($db['list'])) { /* Highlight tables with the table_prefix specified */ if (preg_match("/^$HTTP_POST_VARS[table_prefix]/i", $table[0])) { echo '<li><b>' . htmlspecialchars($table[0]) . '</b></li><br />'; } else { echo '<li>' . htmlspecialchars($table[0]) . '</li><br />'; } } echo '</ul>'; } else { echo 'Sorry, this feature isn\'t available with ' . $db['choice'] . '.'; } /* defined a var which is only there if successfully connected to the database and the database is found */ $all_connected = true; } /* Create a config file if checked and if the connection went OK */ if (isset($HTTP_POST_VARS['generate_config']) && $HTTP_POST_VARS['generate_config'] == true) { echo '<a name="config"><h3><u>Config file</u></h3></a>'; if ($all_connected != true) { echo 'The database has not been successfully connected to so no config file has been generated.<br />'; } else { echo 'Either copy the <b>19</b> lines below and save them as <u>config.php</u> or click on the <u>Download</u> button below. Then upload the file to your phpBB2 root directory (phpBB2/ by default). Make sure that there is nothing (this includes blank spaces) after the <u>?></u>.<br /><br />'; /* Create our config file */ echo '<form action="' . htmlspecialchars($HTTP_SERVER_VARS['PHP_SELF']) . '" method="post"><table cellspacing="1" cellpadding="3" border="0"><tr><td class="code">'; echo make_config($dbms, $dbhost, $dbname, $dbuser, $dbpasswd, $table_prefix); echo '</td></tr></table>'; echo '<input type="hidden" name="dbms" value="' . $dbms . '" />'; echo '<input type="hidden" name="dbhost" value="' . $dbhost . '" />'; echo '<input type="hidden" name="dbname" value="' . $dbname . '" />'; echo '<input type="hidden" name="dbuser" value="' . $dbuser . '" />'; echo '<input type="hidden" name="dbpasswd" value="' . $dbpasswd . '" />'; echo '<input type="hidden" name="table_prefix" value="' . $table_prefix . '" />'; echo '<input type="hidden" name="download_config" value="true" />'; echo '<br /><input type="submit" name="submit_download_config" value="Download" class="mainoption" /><br />'; } } /* close the connection */ if ($all_connected == true) { $db['close']; } } } /* And they all lived happily ever after... The End */ ?> <br /><a href="javascript:scrollTo('0','0');"><b>Return to top</b></a> </td> </tr> </table> <div align="center"><span class="copyright">© Copyright 2002 The <a href="http://www.phpbb.com/about.php" target="_phpbb" class="copyright">phpBB Group</a></span></div> </td> </tr> </table> </body> </html> --- NEW FILE: convert_avatars.php --- <?php // // Security message: // // This script is potentially dangerous. // Remove or comment the next line (die(".... ) to enable this script. // Do NOT FORGET to either remove this script or disable it after you have used it. // die("Please read the first lines of this script for instructions on how to enable it"); // // Do not change anything below this line. // $phpbb_root_path = "../"; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'config.'.$phpEx); include($phpbb_root_path . 'includes/constants.'.$phpEx); include($phpbb_root_path . 'includes/db.'.$phpEx); $sql = "ALTER TABLE " . USERS_TABLE . " ADD user_avatar_type TINYINT(4) DEFAULT '0' NOT NULL"; if( !$result = $db->sql_query($sql) ) { die("Couldn't alter users table"); } $sql = "SELECT user_id, user_avatar FROM " . USERS_TABLE; if( $result = $db->sql_query($sql) ) { $rowset = $db->sql_fetchrowset($result); for($i = 0; $i < count($rowset); $i++) { if( ereg("^http", $rowset[$i]['user_avatar'])) { $sql_type = USER_AVATAR_REMOTE; } else if( $rowset[$i]['user_avatar'] != "" ) { $sql_type = USER_AVATAR_UPLOAD; } else { $sql_type = USER_AVATAR_NONE; } $sql = "UPDATE " . USERS_TABLE . " SET user_avatar_type = $sql_type WHERE user_id = " . $rowset[$i]['user_id']; if( !$result = $db->sql_query($sql) ) { die("Couldn't update users table- " . $i); } } } echo "<BR><BR>COMPLETE<BR>"; ?> --- NEW FILE: template_db_cache.php --- <?php /*************************************************************************** * template.inc * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: template_db_cache.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ /** * Template class. By Nathan Codding of the phpBB group. * The interface was originally inspired by PHPLib templates, * and the template file formats are quite similar. * */ class Template { var $classname = "Template"; // variable that holds all the data we'll be substituting into // the compiled templates. // ... // This will end up being a multi-dimensional array like this: // $this->_tpldata[block.][iteration#][child.][iteration#][child2.][iteration#][variablename] == value // if it's a root-level variable, it'll be like this: // $this->_tpldata[.][0][varname] == value var $_tpldata = array(); // Hash of filenames for each template handle. var $files = array(); // Root template directory. var $root = ""; // this will hash handle names to the compiled code for that handle. var $compiled_code = array(); // This will hold the uncompiled code for that handle. var $uncompiled_code = array(); /** * Constructor. Simply sets the root dir. * */ function Template($root = '.') { global $db; $this->set_rootdir($root); $this->db = &$db; $this->pparse_order = array(); } /** * Destroys this template object. Should be called when you're done with it, in order * to clear out the template data so you can load/parse a new template set. */ function destroy() { $this->_tpldata = array(); } /** * Sets the template root directory for this Template object. */ function set_rootdir($dir) { if (!is_dir($dir)) { return false; } $this->root = $dir; return true; } /** * Sets the template filenames for handles. $filename_array * should be a hash of handle => filename pairs. */ function set_filenames($filename_array) { global $table_prefix; if ( !is_array($filename_array) ) { return false; } $template_names = ''; @reset($filename_array); while ( list($handle, $filename) = @each($filename_array) ) { $this->files[$handle] = $this->make_filename($filename); $template_names .= ( $template_names != '' ) ? ", '" . addslashes($this->files[$handle]) . "'" : "'" . addslashes($this->files[$handle]) . "'"; } $sql = "SELECT * FROM " . $table_prefix . "template_cache WHERE template_name IN ($template_names)"; if ( $result = $this->db->sql_query($sql) ) { while( $row = $this->db->sql_fetchrow($result) ) { if( $row['template_cached'] == filemtime($row['template_name']) ) { $this->compiled_code[$row['template_handle']] = $row['template_compile']; $this->echo_compiled[$row['template_handle']] = $row['template_echo']; } } } $this->db->sql_freeresult(); return true; } /** * Load the file for the handle, compile the file, * and run the compiled code. This will print out * the results of executing the template. */ function pparse($handle) { global $table_prefix; if( empty($this->compiled_code[$handle]) ) { if ( !$this->loadfile($handle) ) { die("Template->pparse(): Couldn't load template file for handle $handle"); } // // Actually compile the code now. // $this->echo_compiled[$handle] = 1; $this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle]); $sql = "REPLACE INTO " . $table_prefix . "template_cache (template_name, template_handle, template_cached, template_compile) VALUES ('" . addslashes($this->files[$handle]) . "', '" . addslashes($handle) . "', " . filemtime($this->files[$handle]) . ", '" . addslashes($this->compiled_code[$handle]) . "')"; if ( !($result = $this->db->sql_query($sql)) ) { die("Couldn't insert template into cache!"); } } $_str = ""; eval($this->compiled_code[$handle]); if( $_str != "" ) { echo $_str; } return true; } /** * Inserts the uncompiled code for $handle as the * value of $varname in the root-level. This can be used * to effectively include a template in the middle of another * template. * Note that all desired assignments to the variables in $handle should be done * BEFORE calling this function. */ function assign_var_from_handle($varname, $handle) { global $table_prefix; if( empty($this->compiled_code[$handle]) ) { if ( !$this->loadfile($handle) ) { die("Template->pparse(): Couldn't load template file for handle $handle"); } $code = $this->compile($this->uncompiled_code[$handle], true, '_str'); $sql = "REPLACE INTO " . $table_prefix . "template_cache (template_name, template_handle, template_echo, template_cached, template_compile) VALUES ('" . addslashes($this->files[$handle]) . "', '" . addslashes($handle) . "', 0, " . filemtime($this->files[$handle]) . ", '" . addslashes($code) . "')"; if ( !($result = $this->db->sql_query($sql)) ) { die("Couldn't insert template into cache!"); } } else { $code = $this->compiled_code[$handle]; } // Compile It, With The "no Echo Statements" Option On. $_str = ""; // evaluate the variable assignment. eval($code); // assign the value of the generated variable to the given varname. $this->assign_var($varname, $_str); return true; } /** * Block-level variable assignment. Adds a new block iteration with the given * variable assignments. Note that this should only be called once per block * iteration. */ function assign_block_vars($blockname, $vararray) { if (strstr($blockname, '.')) { // Nested block. $blocks = explode('.', $blockname); $blockcount = sizeof($blocks) - 1; $str = '$this->_tpldata'; for ($i = 0; $i < $blockcount; $i++) { $str .= '[\'' . $blocks[$i] . '.\']'; eval('$lastiteration = sizeof(' . $str . ') - 1;'); $str .= '[' . $lastiteration . ']'; } // Now we add the block that we're actually assigning to. // We're adding a new iteration to this block with the given // variable assignments. $str .= '[\'' . $blocks[$blockcount] . '.\'][] = $vararray;'; // Now we evaluate this assignment we've built up. eval($str); } else { // Top-level block. // Add a new iteration to this block with the variable assignments // we were given. $this->_tpldata[$blockname . '.'][] = $vararray; } return true; } /** * Root-level variable assignment. Adds to current assignments, overriding * any existing variable assignment with the same name. */ function assign_vars($vararray) { reset ($vararray); while (list($key, $val) = each($vararray)) { $this->_tpldata['.'][0][$key] = $val; } return true; } /** * Root-level variable assignment. Adds to current assignments, overriding * any existing variable assignment with the same name. */ function assign_var($varname, $varval) { $this->_tpldata['.'][0][$varname] = $varval; return true; } /** * Generates a full path+filename for the given filename, which can either * be an absolute name, or a name relative to the rootdir for this Template * object. */ function make_filename($filename) { // Check if it's an absolute or relative path. if (substr($filename, 0, 1) != '/') { $filename = $this->root . '/' . $filename; } if (!file_exists($filename)) { die("Template->make_filename(): Error - file $filename does not exist"); } return $filename; } /** * If not already done, load the file for the given handle and populate * the uncompiled_code[] hash with its code. Do not compile. */ function loadfile($handle) { // If the file for this handle is already loaded and compiled, do nothing. if ( !empty($this->uncompiled_code[$handle]) ) { return true; } // If we don't have a file assigned to this handle, die. if (!isset($this->files[$handle])) { die("Template->loadfile(): No file specified for handle $handle"); } $filename = $this->files[$handle]; $str = implode("", @file($filename)); if (empty($str)) { die("Template->loadfile(): File $filename for handle $handle is empty"); } $this->uncompiled_code[$handle] = $str; return true; } /** * Compiles the given string of code, and returns * the result in a string. * If "do_not_echo" is true, the returned code will not be directly * executable, but can be used as part of a variable assignment * for use in assign_code_from_handle(). */ function compile($code, $do_not_echo = false, $retvar = '') { // replace \ with \\ and then ' with \'. $code = str_replace('\\', '\\\\', $code); $code = str_replace('\'', '\\\'', $code); // change template varrefs into PHP varrefs // This one will handle varrefs WITH namespaces $varrefs = array(); preg_match_all('#\{(([a-z0-9\-_]+?\.)+?)([a-z0-9\-_]+?)\}#is', $code, $varrefs); $varcount = sizeof($varrefs[1]); for ($i = 0; $i < $varcount; $i++) { $namespace = $varrefs[1][$i]; $varname = $varrefs[3][$i]; $new = $this->generate_block_varref($namespace, $varname); $code = str_replace($varrefs[0][$i], $new, $code); } // This will handle the remaining root-level varrefs $code = preg_replace('#\{([a-z0-9\-_]*?)\}#is', '\' . ( ( isset($this->_tpldata[\'.\'][0][\'\1\']) ) ? $this->_tpldata[\'.\'][0][\'\1\'] : \'\' ) . \'', $code); // Break it up into lines. $code_lines = explode("\n", $code); $block_nesting_level = 0; $block_names = array(); $block_names[0] = "."; // Second: prepend echo ', append ' . "\n"; to each line. $line_count = sizeof($code_lines); for ($i = 0; $i < $line_count; $i++) { $code_lines[$i] = chop($code_lines[$i]); if (preg_match('#<!-- BEGIN (.*?) -->#', $code_lines[$i], $m)) { $n[0] = $m[0]; $n[1] = $m[1]; // Added: dougk_ff7-Keeps templates from bombing if begin is on the same line as end.. I think. :) if ( preg_match('#<!-- END (.*?) -->#', $code_lines[$i], $n) ) { $block_nesting_level++; $block_names[$block_nesting_level] = $m[1]; if ($block_nesting_level < 2) { // Block is not nested. $code_lines[$i] = '$_' . $a[1] . '_count = ( isset($this->_tpldata[\'' . $n[1] . '.\']) ) ? sizeof($this->_tpldata[\'' . $n[1] . '.\']) : 0;'; $code_lines[$i] .= "\n" . 'for ($_' . $n[1] . '_i = 0; $_' . $n[1] . '_i < $_' . $n[1] . '_count; $_' . $n[1] . '_i++)'; $code_lines[$i] .= "\n" . '{'; } else { // This block is nested. // Generate a namespace string for this block. $namespace = implode('.', $block_names); // strip leading period from root level.. $namespace = substr($namespace, 2); // Get a reference to the data array for this block that depends on the // current indices of all parent blocks. $varref = $this->generate_block_data_ref($namespace, false); // Create the for loop code to iterate over this block. $code_lines[$i] = '$_' . $a[1] . '_count = ( isset(' . $varref . ') ) ? sizeof(' . $varref . ') : 0;'; $code_lines[$i] .= "\n" . 'for ($_' . $n[1] . '_i = 0; $_' . $n[1] . '_i < $_' . $n[1] . '_count; $_' . $n[1] . '_i++)'; $code_lines[$i] .= "\n" . '{'; } // We have the end of a block. unset($block_names[$block_nesting_level]); $block_nesting_level--; $code_lines[$i] .= '} // END ' . $n[1]; $m[0] = $n[0]; $m[1] = $n[1]; } else { // We have the start of a block. $block_nesting_level++; $block_names[$block_nesting_level] = $m[1]; if ($block_nesting_level < 2) { // Block is not nested. $code_lines[$i] = '$_' . $m[1] . '_count = ( isset($this->_tpldata[\'' . $m[1] . '.\']) ) ? sizeof($this->_tpldata[\'' . $m[1] . '.\']) : 0;'; $code_lines[$i] .= "\n" . 'for ($_' . $m[1] . '_i = 0; $_' . $m[1] . '_i < $_' . $m[1] . '_count; $_' . $m[1] . '_i++)'; $code_lines[$i] .= "\n" . '{'; } else { // This block is nested. // Generate a namespace string for this block. $namespace = implode('.', $block_names); // strip leading period from root level.. $namespace = substr($namespace, 2); // Get a reference to the data array for this block that depends on the // current indices of all parent blocks. $varref = $this->generate_block_data_ref($namespace, false); // Create the for loop code to iterate over this block. $code_lines[$i] = '$_' . $m[1] . '_count = ( isset(' . $varref . ') ) ? sizeof(' . $varref . ') : 0;'; $code_lines[$i] .= "\n" . 'for ($_' . $m[1] . '_i = 0; $_' . $m[1] . '_i < $_' . $m[1] . '_count; $_' . $m[1] . '_i++)'; $code_lines[$i] .= "\n" . '{'; } } } else if (preg_match('#<!-- END (.*?) -->#', $code_lines[$i], $m)) { // We have the end of a block. unset($block_names[$block_nesting_level]); $block_nesting_level--; $code_lines[$i] = '} // END ' . $m[1]; } else { // We have an ordinary line of code. if (!$do_not_echo) { $code_lines[$i] = 'echo \'' . $code_lines[$i] . '\' . "\\n";'; } else { $code_lines[$i] = '$' . $retvar . '.= \'' . $code_lines[$i] . '\' . "\\n";'; } } } // Bring it back into a single string of lines of code. $code = implode("\n", $code_lines); return $code ; } /** * Generates a reference to the given variable inside the given (possibly nested) * block namespace. This is a string of the form: * ' . $this->_tpldata['parent'][$_parent_i]['$child1'][$_child1_i]['$child2'][$_child2_i]...['varname'] . ' * It's ready to be inserted into an "echo" line in one of the templates. * NOTE: expects a trailing "." on the namespace. */ function generate_block_varref($namespace, $varname) { // Strip the trailing period. $namespace = substr($namespace, 0, strlen($namespace) - 1); // Get a reference to the data block for this namespace. $varref = $this->generate_block_data_ref($namespace, true); // Prepend the necessary code to stick this in an echo line. // Append the variable reference. $varref .= '[\'' . $varname . '\']'; $varref = '\' . ( ( isset(' . $varref . ') ) ? ' . $varref . ' : \'\' ) . \''; return $varref; } /** * Generates a reference to the array of data values for the given * (possibly nested) block namespace. This is a string of the form: * $this->_tpldata['parent'][$_parent_i]['$child1'][$_child1_i]['$child2'][$_child2_i]...['$childN'] * * If $include_last_iterator is true, then [$_childN_i] will be appended to the form shown above. * NOTE: does not expect a trailing "." on the blockname. */ function generate_block_data_ref($blockname, $include_last_iterator) { // Get an array of the blocks involved. $blocks = explode(".", $blockname); $blockcount = sizeof($blocks) - 1; $varref = '$this->_tpldata'; // Build up the string with everything but the last child. for ($i = 0; $i < $blockcount; $i++) { $varref .= '[\'' . $blocks[$i] . '.\'][$_' . $blocks[$i] . '_i]'; } // Add the block reference for the last child. $varref .= '[\'' . $blocks[$blockcount] . '.\']'; // Add the iterator for the last child if requried. if ($include_last_iterator) { $varref .= '[$_' . $blocks[$blockcount] . '_i]'; } return $varref; } } ?> --- NEW FILE: convert_usernames.php --- <html> <body> <?php // // Security message: // // This script is potentially dangerous. // Remove or comment the next line (die(".... ) to enable this script. // Do NOT FORGET to either remove this script or disable it after you have used it. // die("Please read the first lines of this script for instructions on how to enable it"); // // Do not change anything below this line. // // // Convert 2.0.x Usernames to the new 2.0.5 Username format. // chdir("../"); define('IN_PHPBB', true); include('extension.inc'); include('config.'.$phpEx); include('includes/constants.'.$phpEx); include('includes/db.'.$phpEx); $sql = "SELECT user_id, username FROM " . USERS_TABLE; $result = $db->sql_query($sql); if(!$result) { die("Unable to get users"); } while ($row = $db->sql_fetchrow($result)) { if (!preg_match('#(>)|(<)|(")|(&)#', $row['username'])) { if ($row['username'] != htmlspecialchars($row['username'])) { flush(); $sql = "UPDATE " . USERS_TABLE . " SET username = '" . str_replace("'", "''", htmlspecialchars($row['username'])) . "' WHERE user_id = " . $row['user_id']; if (!$db->sql_query($sql)) { echo "ERROR: Unable to rename user " . htmlspecialchars($row['username']) . " with ID " . $row['user_id'] . "<br>"; echo "<pre>" . print_r($db->sql_error()) . "</pre><br />$sql"; } else { echo "Renamed User " . htmlspecialchars($row['username']) . " with ID " . $row['user_id'] . "<br>"; } } } } echo "<br>That's All Folks!"; ?> </body> </html> --- NEW FILE: search_fill.php --- <?php // // Security message: // // This script is potentially dangerous. // Remove or comment the next line (die(".... ) to enable this script. // Do NOT FORGET to either remove this script or disable it after you have used it. // // // Do not change anything below this line. // set_time_limit(0); $phpbb_root_path = "../"; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'common.'.$phpEx); include($phpbb_root_path . 'includes/search.'.$phpEx); $common_percent = 0.4; // Percentage of posts in which a word has to appear to be marked as common print "<html>\n<body>\n"; // // Try and load stopword and synonym files // // This needs fixing! Shouldn't be hardcoded to English files! $stopword_array = file($phpbb_root_path . "language/lang_english/search_stopwords.txt"); $synonym_array = file($phpbb_root_path . "language/lang_english/search_synonyms.txt"); // // Fetch a batch of posts_text entries // $sql = "SELECT COUNT(*) as total, MAX(post_id) as max_post_id FROM ". POSTS_TEXT_TABLE; if ( !($result = $db->sql_query($sql)) ) { $error = $db->sql_error(); die("Couldn't get maximum post ID :: " . $sql . " :: " . $error['message']); } $max_post_id = $db->sql_fetchrow($result); $totalposts = $max_post_id['total']; $max_post_id = $max_post_id['max_post_id']; $postcounter = (!isset($HTTP_GET_VARS['batchstart'])) ? 0 : $HTTP_GET_VARS['batchstart']; $batchsize = 200; // Process this many posts per loop $batchcount = 0; for(;$postcounter <= $max_post_id; $postcounter += $batchsize) { $batchstart = $postcounter + 1; $batchend = $postcounter + $batchsize; $batchcount++; $sql = "SELECT * FROM " . POSTS_TEXT_TABLE . " WHERE post_id BETWEEN $batchstart AND $batchend"; if( !($result = $db->sql_query($sql)) ) { $error = $db->sql_error(); die("Couldn't get post_text :: " . $sql . " :: " . $error['message']); } $rowset = $db->sql_fetchrowset($result); $db->sql_freeresult($result); $post_rows = count($rowset); if( $post_rows ) { // $sql = "LOCK TABLES ".POST_TEXT_TABLE." WRITE"; // $result = $db->sql_query($sql); print "\n<p>\n<a href='$PHP_SELF?batchstart=$batchstart'>Restart from posting $batchstart</a><br>\n"; // For every post in the batch: for($post_nr = 0; $post_nr < $post_rows; $post_nr++ ) { print "."; flush(); $post_id = $rowset[$post_nr]['post_id']; $matches = array(); $matches['text'] = split_words(clean_words("post", $rowset[$post_nr]['post_text'], $stopword_array, $synonym_array)); $matches['title'] = split_words(clean_words("post", $rowset[$post_nr]['post_subject'], $stopword_array, $synonym_array)); while( list($match_type, $match_ary) = @each($matches) ) { $title_match = ( $match_type == 'title' ) ? 1 : 0; $num_matches = count($match_ary); if ( $num_matches < 1 ) { // Skip this post if no words where found continue; } // For all words in the posting $sql_in = ""; $sql_insert = ''; $sql_select = ''; $word = array(); $word_count = array(); for($j = 0; $j < $num_matches; $j++) { $this_word = strtolower(trim($match_ary[$j])); if ( $this_word != '' ) { $word_count[$this_word] = ( isset($word_count[$this_word]) ) ? $word_count[$this_word] + 1 : 0; $comma = ($sql_insert != '')? ', ': ''; $sql_insert .= "$comma('" . $this_word . "')"; $sql_select .= "$comma'" . $this_word . "'"; } } if ( $sql_insert == '' ) { die("no words found"); } $sql = 'INSERT IGNORE INTO ' . SEARCH_WORD_TABLE . " (word_text) VALUES $sql_insert"; if ( !$result = $db->sql_query($sql) ) { $error = $db->sql_error(); die("Couldn't INSERT words :: " . $sql . " :: " . $error['message']); } // Get the word_id's out of the DB (to see if they are already there) $sql = "SELECT word_id, word_text FROM " . SEARCH_WORD_TABLE . " WHERE word_text IN ($sql_select) GROUP BY word_text"; $result = $db->sql_query($sql); if ( !$result ) { $error = $db->sql_error(); die("Couldn't select words :: " . $sql . " :: " . $error['message']); } $sql_insert = array(); while( $row = $db->sql_fetchrow($result) ) { $sql_insert[] = "($post_id, " . $row['word_id'] . ", $title_match)"; } $db->sql_freeresult($result); $sql = "INSERT INTO " . SEARCH_MATCH_TABLE . " (post_id, word_id, title_match) VALUES " . implode(", ", $sql_insert); $result = $db->sql_query($sql); if ( !$result ) { $error = $db->sql_error(); die("Couldn't insert new word match :: " . $sql . " :: " . $error['message']); } } // All posts } // $sql = "UNLOCK TABLES"; // $result = $db->sql_query($sql); } // Remove common words after the first 2 batches and after every 4th batch after that. if( $batchcount % 4 == 3 ) { print "<br>Removing common words (words that appear in more than $common_percent of the posts)<br>\n"; flush(); print "Removed ". remove_common("global", $common_percent) ." words that where too common.<br>"; } } echo "<br>Done"; ?> </body> </html> --- NEW FILE: convert_privmsgs.php --- <?php // // Security message: // // This script is potentially dangerous. // Remove or comment the next line (die(".... ) to enable this script. // Do NOT FORGET to either remove this script or disable it after you have used it. // die("Please read the first lines of this script for instructions on how to enable it"); // // Do not change anything below this line. // $phpbb_root_path = "../"; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'config.'.$phpEx); include($phpbb_root_path . 'includes/constants.'.$phpEx); include($phpbb_root_path . 'includes/db.'.$phpEx); // // Alter table ... // echo "Alter tables ... "; echo $sql = "ALTER TABLE " . PRIVMSGS_TABLE . " ADD privmsgs_enable_bbcode TINYINT(1) DEFAULT '1' NOT NULL, ADD privmsgs_enable_html TINYINT(1) DEFAULT '0' NOT NULL, ADD privmsgs_enable_smilies TINYINT(1) DEFAULT '1' NOT NULL, ADD privmsgs_attach_sig TINYINT(1) DEFAULT '1' NOT NULL"; if( !$result = $db->sql_query($sql) ) { die("Couldn't alter privmsgs table"); } echo $sql = "ALTER TABLE " . PRIVMSGS_TEXT_TABLE . " ADD privmsgs_bbcode_uid CHAR(10) AFTER privmsgs_text_id"; if( !$result = $db->sql_query($sql) ) { die("Couldn't alter privmsgs text table"); } echo "COMPLETE<BR>"; // // Move bbcode ... // echo "Move bbcode uid's ... "; $sql = "SELECT privmsgs_id, privmsgs_bbcode_uid FROM " . PRIVMSGS_TABLE; if( $result = $db->sql_query($sql) ) { $rowset = $db->sql_fetchrowset($result); for($i = 0; $i < count($rowset); $i++) { $sql = "UPDATE " . PRIVMSGS_TEXT_TABLE . " SET privmsgs_bbcode_uid = '" . $rowset[$i]['privmsgs_bbcode_uid'] . "' WHERE privmsgs_text_id = " . $rowset[$i]['privmsgs_id']; if( !$result = $db->sql_query($sql) ) { die("Couldn't update privmsgs text bbcode - " . $i); } } $sql = "ALTER TABLE " . PRIVMSGS_TABLE . " DROP privmsgs_bbcode_uid"; if( !$result = $db->sql_query($sql) ) { die("Couldn't alter privmsgs table - drop privmsgs_bbcode_uid"); } } echo "COMPLETE<BR>"; // // Stripslashes from titles // echo "Strip subject slashes ... "; $sql = "SELECT privmsgs_subject , privmsgs_id, privmsgs_to_userid, privmsgs_from_userid FROM " . PRIVMSGS_TABLE; if( $result = $db->sql_query($sql) ) { $rowset = $db->sql_fetchrowset($result); for($i = 0; $i < count($rowset); $i++) { $sql = "UPDATE " . PRIVMSGS_TABLE . " SET privmsgs_subject = '" . addslashes(stripslashes($rowset[$i]['privmsgs_subject'])) . "' WHERE privmsgs_id = " . $rowset[$i]['privmsgs_id']; if( !$result = $db->sql_query($sql) ) { die("Couldn't update subjects - $i"); } } } echo "COMPLETE<BR>"; // // Update sigs // echo "Remove [addsig], stripslashes and update privmsgs table sig enable ..."; $sql = "SELECT privmsgs_text_id , privmsgs_text FROM " . PRIVMSGS_TEXT_TABLE; if( $result = $db->sql_query($sql) ) { $rowset = $db->sql_fetchrowset($result); $attach_sql = ""; $non_attach_sql = ""; for($i = 0; $i < count($rowset); $i++) { if( ereg("\[addsig]$", $rowset[$i]['privmsgs_text'])) { if( $attach_sql != "" ) { $attach_sql .= ", "; } $attach_sql .= $rowset[$i]['privmsgs_text_id']; $sql = "UPDATE " . PRIVMSGS_TEXT_TABLE . " SET privmsgs_text = '" . addslashes(preg_replace("/\[addsig\]/is", "", stripslashes($rowset[$i]['privmsgs_text']))) . "' WHERE privmsgs_text_id = " . $rowset[$i]['privmsgs_text_id']; if( !$result = $db->sql_query($sql) ) { die("Couldn't update privmsgs text - " . $i); } } else { $sql = "UPDATE " . PRIVMSGS_TEXT_TABLE . " SET privmsgs_text = '" . addslashes(stripslashes($rowset[$i]['privmsgs_text'])) . "' WHERE privmsgs_text_id = " . $rowset[$i]['privmsgs_text_id']; if( !$result = $db->sql_query($sql) ) { die("Couldn't update privmsgs text - " . $i); } if( $non_attach_sql != "" ) { $non_attach_sql .= ", "; } $non_attach_sql .= $rowset[$i]['privmsgs_text_id']; } } if( $attach_sql != "" ) { $sql = "UPDATE " . PRIVMSGS_TABLE . " SET privmsgs_attach_sig = 1 WHERE privmsgs_id IN ($attach_sql)"; if( !$result = $db->sql_query($sql) ) { die("Couldn't update privmsgs table attach_sig - "); } } if( $non_attach_sql != "" ) { $sql = "UPDATE " . PRIVMSGS_TABLE . " SET privmsgs_attach_sig = 0 WHERE privmsgs_id IN ($non_attach_sql)"; if( !$result = $db->sql_query($sql) ) { die("Couldn't update privmsgs table non_attach_sig - "); } } } echo "COMPLETE<BR>"; $db->sql_close(); ?> --- NEW FILE: convert_sigs.php --- <?php // // Security message: // // This script is potentially dangerous. // Remove or comment the next line (die(".... ) to enable this script. // Do NOT FORGET to either remove this script or disable it after you have used it. // die("Please read the first lines of this script for instructions on how to enable it"); // // Do not change anything below this line. // $phpbb_root_path = "../"; include($phpbb_root_path . 'extension.inc'); include($phpbb_root_path . 'config.'.$phpEx); include($phpbb_root_path . 'includes/constants.'.$phpEx); include($phpbb_root_path . 'includes/db.'.$phpEx); $sql = "SELECT post_id, post_text FROM " . POSTS_TEXT_TABLE; if( $result = $db->sql_query($sql) ) { $rowset = $db->sql_fetchrowset($result); $attach_sql = ""; $non_attach_sql = ""; for($i = 0; $i < count($rowset); $i++) { if( ereg("\[addsig]$", $rowset[$i]['post_text'])) { if( $attach_sql != "" ) { $attach_sql .= ", "; } $attach_sql .= $rowset[$i]['post_id']; $sql = "UPDATE " . POSTS_TEXT_TABLE . " SET post_text = '" . addslashes(preg_replace("/\[addsig\]/is", "", $rowset[$i]['post_text'])) . "' WHERE post_id = " . $rowset[$i]['post_id']; if( !$result = $db->sql_query($sql) ) { die("Couldn't update post_text - " . $i); } } else { if( $non_attach_sql != "" ) { $non_attach_sql .= ", "; } $non_attach_sql .= $rowset[$i]['post_id']; } } echo "<BR>"; if( $attach_sql != "" ) { echo $sql = "UPDATE " . POSTS_TABLE . " SET enable_sig = 1 WHERE post_id IN ($attach_sql)"; if( !$result = $db->sql_query($sql) ) { die("Couldn't update post table attach_sig - "); } } echo "<BR>"; if( $non_attach_sql != "" ) { echo $sql = "UPDATE " . POSTS_TABLE . " SET enable_sig = 0 WHERE post_id IN ($non_attach_sql)"; if( !$result = $db->sql_query($sql) ) { die("Couldn't update post table non_attach_sig - "); } } } $db->sql_close(); echo "<BR><BR>COMPLETE<BR>"; ?> --- NEW FILE: template_file_cache.php --- <?php /*************************************************************************** * template.php * ------------------- * begin : Saturday, Feb 13, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: template_file_cache.php,v 1.1 2008/12/31 01:43:48 orynider Exp $ * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ /** * Template class. By Nathan Codding of the phpBB group. * The interface was originally inspired by PHPLib templates, * and the template file formats are quite similar. * * Updated 9th June 2003 - psoTFX * Backported various aspects of 2.2 template class * */ class Template { var $classname = 'Template'; // variable that holds all the data we'll be substituting into // the compiled templates. var $_tpldata = array(); // Hash of filenames for each template handle. var $files = array(); // Root template directories var $cache_root = 'cache/'; var $root = ''; // this will hash handle names to the compiled code for that handle. var $compiled_code = array(); // This will hold the uncompiled code for that handle. var $uncompiled_code = array(); /** * Constructor. Simply sets the root dir. * */ function Template($root = '.') { global $board_config, $db; $this->set_rootdir($root); $this->db = $db; } /** * Destroys this template object. Should be called when you're done with it, in order * to clear out the template data so you can load/parse a new template set. */ function destroy() { $this->_tpldata = array(); } /** * Sets the template root directory for this Template object. */ function set_rootdir($dir) { global $phpbb_root_path; if (is_file($dir) || is_link($dir)) { return false; } $this->root = phpbb_realpath($dir); $this->cachedir = phpbb_realpath($phpbb_root_path . $this->cache_root) . substr($dir, strrpos($dir, '/')) . '/'; if (!file_exists($this->cachedir . 'admin/')) { @umask(0); if (!file_exists($this->cachedir)) { mkdir($this->cachedir, 0777); } mkdir($this->cachedir . 'admin/', 0777); } return true; } /** * Sets the template filenames for handles. $filename_array * should be a hash of handle => filename pairs. */ function set_filenames($filename_array) { if (!is_array($filename_array)) { return false; } $template_names = ''; @reset($filename_array); while (list($handle, $filename) = @each($filename_array)) { $this->filename[$handle] = $filename; $this->files[$handle] = $this->make_filename($filename); } return true; } /** * Load the file for the handle, compile the file, * and run the compiled code. This will print out * the results of executing the template. */ function pparse($handle) { global $phpEx; $cache_file = $this->cachedir . $this->filename[$handle] . '.' . $phpEx; if(@filemtime($cache_file) == @filemtime($this->files[$handle])) { $_str = ''; include($cache_file); if ($_str != '') { echo $_str; } } else { if (!$this->loadfile($handle)) { die("Template->pparse(): Couldn't load template file for handle $handle"); } // Actually compile the code now. $this->compiled_code[$handle] = $this->compile($this->uncompiled_code[$handle]); $fp = fopen($cache_file, 'w+'); fwrite ($fp, '<?php' . "\n" . $this->compiled_code[$handle] . "\n?" . '>'); fclose($fp); touch($cache_file, filemtime($this->files[$handle])); @chmod($cache_file, 0777); eval($this->compiled_code[$handle]); } return true; } /** * Inserts the uncompiled code for $handle as the * value of $varname in the root-level. This can be used * to effectively include a template in the middle of another * template. * Note that all desired assignments to the variables in $handle should be done * BEFORE calling this function. */ function assign_var_from_handle($varname, $handle) { global $phpEx; $cache_file = $this->cachedir . $this->filename[$handle] . '.' . $phpEx; if(@filemtime($cache_file) == @filemtime($this->files[$handle])) { $_str = ''; include($cache_file); } else { if (!$this->loadfile($handle)) { die("Template->pparse(): Couldn't load template file for handle $handle"); } $code = $this->compile($this->uncompiled_code[$handle], true, '_str'); $fp = fopen($cache_file, 'w+'); fwrite ($fp, '<?php' . "\n" . $code . "\n?" . '>'); fclose($fp); touch($cache_file, filemtime($this->files[$handle])); @chmod($cache_file, 0777); // Compile It, With The "no Echo Statements" Option On. $_str = ''; // evaluate the variable assignment. eval($code); } // assign the value of the generated variable to the given varname. $this->assign_var($varname, $_str); return true; } /** * Block-level variable assignment. Adds a new block iteration with the given * variable assignments. Note that this should only be called once per block * iteration. */ function assign_block_vars($blockname, $vararray) { if (strstr($blockname, '.')) { // Nested block. $blocks = explode('.', $blockname); $blockcount = sizeof($blocks) - 1; $str = &$this->_tpldata; for ($i = 0; $i < $blockcount; $i++) { $str = &$str[$blocks[$i]]; $str = &$str[sizeof($str) - 1]; } // Now we add the block that we're actually assigning to. // We're adding a new iteration to this block with the given // variable assignments. $str[$blocks[$blockcount]][] = $vararray; } else { // Top-level block. // Add a new iteration to this block with the variable assignments // we were given. $this->_tpldata[$blockname][] = $vararray; } return true; } /** * Root-level variable assignment. Adds to current assignments, overriding * any existing variable assignment with the same name. */ function assign_vars($vararray) { reset ($vararray); while (list($key, $val) = each($vararray)) { $this->_tpldata['.'][0][$key] = $val; } return true; } /** * Root-level variable assignment. Adds to current assignments, overriding * any existing variable assignment with the same name. */ function assign_var($varname, $varval) { $this->_tpldata['.'][0][$varname] = $varval; return true; } /** * Generates a full path+filename for the given filename, which can either * be an absolute name, or a name relative to the rootdir for this Template * object. */ function make_filename($filename) { // Check if it's an absolute or relative path. if (substr($filename, 0, 1) != '/') { $filename = phpbb_realpath($this->root . '/' . $filename); } if (!file_exists($filename)) { die("Template->make_filename(): Error - file $filename does not exist"); } return $filename; } /** * If not already done, load the file for the given handle and populate * the uncompiled_code[] hash with its code. Do not compile. */ function loadfile($handle) { // If the file for this handle is already loaded and compiled, do nothing. if (!empty($this->uncompiled_code[$handle])) { return true; } // If we don't have a file assigned to this handle, die. if (!isset($this->files[$handle])) { die("Template->loadfile(): No file specified for handle $handle"); } $filename = $this->files[$handle]; $str = implode('', @file($filename)); if (empty($str)) { die("Template->loadfile(): File $filename for handle $handle is empty"); } $this->uncompiled_code[$handle] = $str; return true; } /** * Compiles the given string of code, and returns * the result in a string. * If "do_not_echo" is true, the returned code will not be directly * executable, but can be used as part of a variable assignment * for use in assign_code_from_handle(). */ function compile($code, $do_not_echo = false, $retvar = '') { $concat = (!$do_not_echo) ? ',' : '.'; // replace \ with \\ and then ' with \'. $code = str_replace('\\', '\\\\', $code); $code = str_replace('\'', '\\\'', $code); // change template varrefs into PHP varrefs // This one will handle varrefs WITH namespaces $varrefs = array(); preg_match_all('#\{(([a-z0-9\-_]+?\.)+?)([a-z0-9\-_]+?)\}#is', $code, $varrefs); $varcount = sizeof($varrefs[1]); for ($i = 0; $i < $varcount; $i++) { $namespace = $varrefs[1][$i]; $varname = $varrefs[3][$i]; $new = $this->generate_block_varref($namespace, $varname, $concat); $code = str_replace($varrefs[0][$i], $new, $code); } // This will handle the remaining root-level varrefs $code = preg_replace('#\{([a-z0-9\-_]*?)\}#is', "' $concat ((isset(\$this->_tpldata['.'][0]['\\1'])) ? \$this->_tpldata['.'][0]['\\1'] : '') $concat '", $code); // Break it up into lines. $code_lines = explode("\n", $code); $block_nesting_level = 0; $block_names = array(); $block_names[0] = '.'; // Second: prepend echo ', append ' . "\n"; to each line. $line_count = sizeof($code_lines); for ($i = 0; $i < $line_count; $i++) { $code_lines[$i] = chop($code_lines[$i]); ... [truncated message content] |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:06:53
|
Update of /cvsroot/mxbb/phpbb2mxp/images/avatars/gallery In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/images/avatars/gallery Added Files: index.htm Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:06:44
|
Update of /cvsroot/mxbb/phpbb2mxp/images/avatars In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/images/avatars Added Files: index.htm Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:06:36
|
Update of /cvsroot/mxbb/phpbb2mxp/images In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/images Added Files: index.htm spacer.gif Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: spacer.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
Update of /cvsroot/mxbb/phpbb2mxp/images/smiles In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/images/smiles Added Files: icon_arrow.gif icon_biggrin.gif icon_confused.gif icon_cool.gif icon_cry.gif icon_eek.gif icon_evil.gif icon_exclaim.gif icon_frown.gif icon_idea.gif icon_lol.gif icon_mad.gif icon_mrgreen.gif icon_neutral.gif icon_question.gif icon_razz.gif icon_redface.gif icon_rolleyes.gif icon_sad.gif icon_smile.gif icon_surprised.gif icon_twisted.gif icon_wink.gif Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: icon_frown.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mad.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_question.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_redface.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_biggrin.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_razz.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_sad.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_exclaim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_eek.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_idea.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_twisted.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_rolleyes.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_cry.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_cool.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_surprised.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_smile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_confused.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_arrow.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_evil.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_neutral.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mrgreen.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_lol.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_wink.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:06:08
|
Update of /cvsroot/mxbb/phpbb2mxp/includes/db In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/includes/db Added Files: dbal.php firebird.php index.htm mssql.php mssql_odbc.php mysql.php mysql4.php mysqli.php oracle.php postgres.php sqlite.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: mysqli.php --- <?php /** * * @package DBal * @version $Id: mysqli.php,v 1.1 2008/12/31 01:44:18 orynider Exp $ * @copyright (c) 2005 phpBB Group * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @link http://www.mx-publisher.com * */ /** */ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } /** * @ignore */ //if (!defined('SQL_LAYER')) if (!is_object('dbal_mysqli')) { define('SQL_LAYER', 'mysqli'); include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections /** * @package DBal * MySQLi Database Abstraction Layer * mysqli-extension has to be compiled with: * MySQL 4.1+ or MySQL 5.0+ */ class dbal_mysqli extends dbal { var $multi_insert = true; /** * Connect to server */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false , $new_link = false) { $this->persistency = $persistency; $this->user = $sqluser; $this->server = $sqlserver; $this->dbname = $database; $port = (!$port) ? NULL : $port; // Persistant connections not supported by the mysqli extension? $this->db_connect_id = @mysqli_connect($this->server, $this->user, $sqlpassword, $this->dbname, $port); if ($this->db_connect_id && $this->dbname != '') { // mysqli only supported by phpBB3 //if (UTF_STATUS === 'phpbb3') //{ @mysqli_query($this->db_connect_id, "SET NAMES 'utf8'"); // enforce strict mode on databases that support it //} if (mysqli_get_server_version($this->db_connect_id) >= 50002) { $result = @mysqli_query($this->db_connect_id, 'SELECT @@session.sql_mode AS sql_mode'); $row = @mysqli_fetch_assoc($result); @mysqli_free_result($result); $modes = array_map('trim', explode(',', $row['sql_mode'])); // TRADITIONAL includes STRICT_ALL_TABLES and STRICT_TRANS_TABLES if (!in_array('TRADITIONAL', $modes)) { if (!in_array('STRICT_ALL_TABLES', $modes)) { $modes[] = 'STRICT_ALL_TABLES'; } if (!in_array('STRICT_TRANS_TABLES', $modes)) { $modes[] = 'STRICT_TRANS_TABLES'; } } $mode = implode(',', $modes); @mysqli_query($this->db_connect_id, "SET SESSION sql_mode='{$mode}'"); } return $this->db_connect_id; } return $this->sql_error(''); } /** * Version information about used database */ function sql_server_info() { return 'MySQL(i) ' . @mysqli_get_server_info($this->db_connect_id); } /** * sql transaction */ function sql_transaction($status = 'begin') { switch ($status) { case 'begin': $result = @mysqli_autocommit($this->db_connect_id, false); $this->transaction = true; break; case 'commit': $result = @mysqli_commit($this->db_connect_id); @mysqli_autocommit($this->db_connect_id, true); $this->transaction = false; if (!$result) { @mysqli_rollback($this->db_connect_id); @mysqli_autocommit($this->db_connect_id, true); } break; case 'rollback': $result = @mysqli_rollback($this->db_connect_id); @mysqli_autocommit($this->db_connect_id, true); $this->transaction = false; break; default: $result = true; } return $result; } /** * Base query method */ function sql_query($query = '', $cache_ttl = 0) { if ($query != '') { // EXPLAIN only in extra debug mode if (defined('DEBUG_EXTRA')) { $this->sql_report('start', $query); } $this->query_result = false; if (!$this->query_result) { $this->num_queries++; if (($this->query_result = @mysqli_query($this->db_connect_id, $query)) === false) { $this->sql_error($query); } if (defined('DEBUG_EXTRA')) { $this->sql_report('stop', $query); } } else if (defined('DEBUG_EXTRA')) { $this->sql_report('fromcache', $query); } } else { return false; } return ($this->query_result) ? $this->query_result : false; } /** * Build LIMIT query */ function sql_query_limit($query, $total, $offset = 0, $cache_ttl = 0) { if ($query != '') { $this->query_result = false; // if $total is set to 0 we do not want to limit the number of rows if ($total == 0) { // MySQL 4.1+ no longer supports -1 in limit queries $total = '18446744073709551615'; } $query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total); return $this->sql_query($query, $cache_ttl); } else { return false; } } /** * Return number of rows * Not used within core code */ function sql_numrows($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @mysqli_num_rows($query_id) : false; } /** * Return number of affected rows */ function sql_affectedrows() { return ($this->db_connect_id) ? @mysqli_affected_rows($this->db_connect_id) : false; } /** * Fetch current row */ function sql_fetchrow($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @mysqli_fetch_assoc($query_id) : false; } /** * Fetch field * if rownum is false, the current row is used, else it is pointing to the row (zero-based) */ function sql_fetchfield($field, $rownum = false, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if ($query_id) { if ($rownum !== false) { $this->sql_rowseek($rownum, $query_id); } $row = $this->sql_fetchrow($query_id); return isset($row[$field]) ? $row[$field] : false; } return false; } /** * Seek to given row number * rownum is zero-based */ function sql_rowseek($rownum, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @mysqli_data_seek($query_id, $rownum) : false; } /** * Get last inserted id after insert statement */ function sql_nextid() { return ($this->db_connect_id) ? @mysqli_insert_id($this->db_connect_id) : false; } /** * Free sql result */ function sql_freeresult($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } // Make sure it is not a cached query if (is_object($this->query_result)) { return @mysqli_free_result($query_id); } return false; } /** * Build LIKE expression * @access private */ function _sql_like_expression($expression) { return $expression; } /** * Build db-specific query data * @access private */ function _sql_custom_build($stage, $data) { switch ($stage) { case 'FROM': $data = '(' . $data . ')'; break; } return $data; } /** * Escape string used in sql query */ function sql_escape($msg) { return @mysqli_real_escape_string($this->db_connect_id, $msg); } /** * return sql error array * @private */ function _sql_error() { return array( 'message' => @mysqli_error($this->db_connect_id), 'code' => @mysqli_errno($this->db_connect_id) ); } /** * Close sql connection * @private */ function _sql_close() { return @mysqli_close($this->db_connect_id); } /** * Build db-specific report * @private */ function _sql_report($mode, $query = '') { switch ($mode) { case 'start': $explain_query = $query; if (preg_match('/UPDATE ([a-z0-9_]+).*?WHERE(.*)/s', $query, $m)) { $explain_query = 'SELECT * FROM ' . $m[1] . ' WHERE ' . $m[2]; } else if (preg_match('/DELETE FROM ([a-z0-9_]+).*?WHERE(.*)/s', $query, $m)) { $explain_query = 'SELECT * FROM ' . $m[1] . ' WHERE ' . $m[2]; } if (preg_match('/^SELECT/', $explain_query)) { $html_table = false; if ($result = @mysqli_query($this->db_connect_id, "EXPLAIN $explain_query")) { while ($row = @mysqli_fetch_assoc($result)) { $html_table = $this->sql_report('add_select_row', $query, $html_table, $row); } } @mysqli_free_result($result); if ($html_table) { $this->html_hold .= '</table>'; } } break; case 'fromcache': $endtime = explode(' ', microtime()); $endtime = $endtime[0] + $endtime[1]; $result = @mysqli_query($this->db_connect_id, $query); while ($void = @mysqli_fetch_assoc($result)) { // Take the time spent on parsing rows into account } @mysqli_free_result($result); $splittime = explode(' ', microtime()); $splittime = $splittime[0] + $splittime[1]; $this->sql_report('record_fromcache', $query, $endtime, $splittime); break; } } } } // if ... define // Connect to DB $db = new $sql_db(); if(!$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, false)) { mx_message_die(CRITICAL_ERROR, "Could not connect to the database"); } ?> --- NEW FILE: sqlite.php --- <?php /** * * @package DBal * @version $Id: sqlite.php,v 1.1 2008/12/31 01:44:18 orynider Exp $ * @copyright (c) 2005 phpBB Group * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @link http://www.mx-publisher.com * */ /** */ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } /** * @ignore */ //if (!defined('SQL_LAYER')) if (!is_object('dbal_sqlite')) { define('SQL_LAYER', 'sqlite'); include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections /** * @package DBal * Sqlite Database Abstraction Layer */ class dbal_sqlite extends dbal { /** * Connect to server */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false) { $this->persistency = $persistency; $this->user = $sqluser; $this->server = $sqlserver . (($port) ? ':' . $port : ''); $this->dbname = $database; $error = ''; $this->db_connect_id = ($this->persistency) ? @sqlite_popen($this->server, 0666, $error) : @sqlite_open($this->server, 0666, $error);; if ($this->db_connect_id) { @sqlite_query('PRAGMA short_column_names = 1', $this->db_connect_id); } return ($this->db_connect_id) ? true : array('message' => $error); } /** * Version information about used database */ function sql_server_info() { return 'SQLite ' . @sqlite_libversion(); } /** * sql transaction */ function sql_transaction($status = 'begin') { switch ($status) { case 'begin': $result = @sqlite_query('BEGIN', $this->db_connect_id); $this->transaction = true; break; case 'commit': $result = @sqlite_query('COMMIT', $this->db_connect_id); $this->transaction = false; if (!$result) { @sqlite_query('ROLLBACK', $this->db_connect_id); } break; case 'rollback': $result = @sqlite_query('ROLLBACK', $this->db_connect_id); $this->transaction = false; break; default: $result = true; } return $result; } /** * Base query method */ function sql_query($query = '', $cache_ttl = 0) { if ($query != '') { global $mx_cache; $query = preg_replace('#FROM \(([^)]*)\)(,|[\n\r\t ]+(?:WHERE|LEFT JOIN)) #', 'FROM \1\2 ', $query); // EXPLAIN only in extra debug mode if (defined('DEBUG_EXTRA')) { $this->sql_report('start', $query); } $this->query_result = ($cache_ttl && method_exists($mx_cache, 'sql_load')) ? $mx_cache->sql_load($query) : false; if (!$this->query_result) { $this->num_queries++; if (($this->query_result = @sqlite_query($query, $this->db_connect_id)) === false) { $this->sql_error($query); } if (defined('DEBUG_EXTRA')) { $this->sql_report('stop', $query); } if ($cache_ttl && method_exists($mx_cache, 'sql_save')) { $this->open_queries[(int) $this->query_result] = $this->query_result; $mx_cache->sql_save($query, $this->query_result, $cache_ttl); } else if (strpos($query, 'SELECT') === 0 && $this->query_result) { $this->open_queries[(int) $this->query_result] = $this->query_result; } } else if (defined('DEBUG_EXTRA')) { $this->sql_report('fromcache', $query); } } else { return false; } return ($this->query_result) ? $this->query_result : false; } /** * Build LIMIT query */ function sql_query_limit($query, $total, $offset = 0, $cache_ttl = 0) { if ($query != '') { $this->query_result = false; // if $total is set to 0 we do not want to limit the number of rows if ($total == 0) { $total = -1; } $query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total); return $this->sql_query($query, $cache_ttl); } else { return false; } } /** * Return number of rows * Not used within core code */ function sql_numrows($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @sqlite_num_rows($query_id) : false; } /** * Return number of affected rows */ function sql_affectedrows() { return ($this->db_connect_id) ? @sqlite_changes($this->db_connect_id) : false; } /** * Fetch current row */ function sql_fetchrow($query_id = false) { global $mx_cache; if (!$query_id) { $query_id = $this->query_result; } if (isset($mx_cache->sql_rowset[$query_id])) { return $mx_cache->sql_fetchrow($query_id); } return ($query_id) ? @sqlite_fetch_array($query_id, SQLITE_ASSOC) : false; } /** * Fetch field * if rownum is false, the current row is used, else it is pointing to the row (zero-based) */ function sql_fetchfield($field, $rownum = false, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if ($query_id) { if ($rownum === false) { return @sqlite_column($query_id, $field); } else { @sqlite_seek($query_id, $rownum); return @sqlite_column($query_id, $field); } } return false; } /** * Seek to given row number * rownum is zero-based */ function sql_rowseek($rownum, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @sqlite_seek($query_id, $rownum) : false; } /** * Get last inserted id after insert statement */ function sql_nextid() { return ($this->db_connect_id) ? @sqlite_last_insert_rowid($this->db_connect_id) : false; } /** * Free sql result */ function sql_freeresult($query_id = false) { return true; } /** * Escape string used in sql query */ function sql_escape($msg) { return @sqlite_escape_string($msg); } /** * Build db-specific query data * @access private */ function _sql_custom_build($stage, $data) { return $data; } /** * return sql error array * @private */ function _sql_error() { return array( 'message' => @sqlite_error_string(@sqlite_last_error($this->db_connect_id)), 'code' => @sqlite_last_error($this->db_connect_id) ); } /** * Close sql connection * @private */ function _sql_close() { return @sqlite_close($this->db_connect_id); } /** * Build db-specific report * @private */ function _sql_report($mode, $query = '') { switch ($mode) { case 'start': break; case 'fromcache': $endtime = explode(' ', microtime()); $endtime = $endtime[0] + $endtime[1]; $result = @sqlite_query($query, $this->db_connect_id); while ($void = @sqlite_fetch_array($result, SQLITE_ASSOC)) { // Take the time spent on parsing rows into account } $splittime = explode(' ', microtime()); $splittime = $splittime[0] + $splittime[1]; $this->sql_report('record_fromcache', $query, $endtime, $splittime); break; } } } } // if ... define // Connect to DB $db = new $sql_db(); if(!$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, false)) { mx_message_die(CRITICAL_ERROR, "Could not connect to the database"); } ?> --- NEW FILE: postgres.php --- <?php /** * * @package DBal * @version $Id: postgres.php,v 1.1 2008/12/31 01:44:18 orynider Exp $ * @copyright (c) 2005 phpBB Group * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @link http://www.mx-publisher.com * */ /** */ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } /** * @ignore */ //if (!defined('SQL_LAYER')) if (!is_object('dbal_postgres')) { define('SQL_LAYER', 'postgres'); include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections /** * @package DBal * PostgreSQL Database Abstraction Layer * Minimum Requirement is Version 7.3+ */ class dbal_postgres extends dbal { var $last_query_text = ''; var $pgsql_version; /** * Connect to server */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false, $new_link = false) { $connect_string = ''; if ($sqluser) { $connect_string .= "user=$sqluser "; } if ($sqlpassword) { $connect_string .= "password=$sqlpassword "; } if ($sqlserver) { if (strpos($sqlserver, ':') !== false) { list($sqlserver, $port) = explode(':', $sqlserver); } if ($sqlserver !== 'localhost') { $connect_string .= "host=$sqlserver "; } if ($port) { $connect_string .= "port=$port "; } } $schema = ''; if ($database) { $this->dbname = $database; if (strpos($database, '.') !== false) { list($database, $schema) = explode('.', $database); } $connect_string .= "dbname=$database"; } $this->persistency = $persistency; $this->db_connect_id = ($this->persistency) ? @pg_pconnect($connect_string, $new_link) : @pg_connect($connect_string, $new_link); if ($this->db_connect_id) { // determine what version of PostgreSQL is running, we can be more efficient if they are running 8.2+ if (version_compare(PHP_VERSION, '5.0.0', '>=')) { $this->pgsql_version = @pg_parameter_status($this->db_connect_id, 'server_version'); } else { $query_id = @pg_query($this->db_connect_id, 'SELECT VERSION()'); $row = @pg_fetch_assoc($query_id, null); @pg_free_result($query_id); if (!empty($row['version'])) { $this->pgsql_version = substr($row['version'], 10); } } if (!empty($this->pgsql_version) && $this->pgsql_version[0] >= '8' && $this->pgsql_version[2] >= '2') { $this->multi_insert = true; } if ($schema !== '') { @pg_query($this->db_connect_id, 'SET search_path TO ' . $schema); } return $this->db_connect_id; } return $this->sql_error(''); } /** * Version information about used database */ function sql_server_info() { return 'PostgreSQL ' . $this->pgsql_version; } /** * sql transaction */ function sql_transaction($status = 'begin') { switch ($status) { case 'begin': $result = @pg_query($this->db_connect_id, 'BEGIN'); $this->transaction = true; break; case 'commit': $result = @pg_query($this->db_connect_id, 'COMMIT'); $this->transaction = false; if (!$result) { @pg_query($this->db_connect_id, 'ROLLBACK'); } break; case 'rollback': $result = @pg_query($this->db_connect_id, 'ROLLBACK'); $this->transaction = false; break; default: $result = true; } return $result; } /** * Base query method */ function sql_query($query = '', $cache_ttl = 0) { if ($query != '') { global $mx_cache; if (strpos($query, 'SELECT') === 0 && strpos($query, 'FROM (') !== false) { $query = preg_replace('#FROM \(([^)]+)\)\s#', 'FROM \1 ', $query); } // EXPLAIN only in extra debug mode if (defined('DEBUG_EXTRA')) { $this->sql_report('start', $query); } $this->last_query_text = $query; $this->query_result = ($cache_ttl && method_exists($mx_cache, 'sql_load')) ? $mx_cache->sql_load($query) : false; if (!$this->query_result) { $this->num_queries++; if (($this->query_result = @pg_exec($this->db_connect_id, $query)) === false) { $this->sql_error($query); } if (defined('DEBUG_EXTRA')) { $this->sql_report('stop', $query); } if ($cache_ttl && method_exists($mx_cache, 'sql_save')) { $this->open_queries[(int) $this->query_result] = $this->query_result; $mx_cache->sql_save($query, $this->query_result, $cache_ttl); } else if (strpos($query, 'SELECT') === 0 && $this->query_result) { $this->open_queries[(int) $this->query_result] = $this->query_result; } } else if (defined('DEBUG_EXTRA')) { $this->sql_report('fromcache', $query); } } else { return false; } return ($this->query_result) ? $this->query_result : false; } /** * Build LIMIT query */ function sql_query_limit($query, $total, $offset = 0, $cache_ttl = 0) { if ($query != '') { $this->query_result = false; // if $total is set to 0 we do not want to limit the number of rows if ($total == 0) { $total = -1; } $query .= "\n LIMIT $total OFFSET $offset"; return $this->sql_query($query, $cache_ttl); } else { return false; } } /** * Return number of rows * Not used within core code */ function sql_numrows($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @pg_num_rows($query_id) : false; } /** * Return number of affected rows */ function sql_affectedrows() { return ($this->query_result) ? @pg_cmdtuples($this->query_result) : false; } /** * Fetch current row */ function sql_fetchrow($query_id = false) { global $mx_cache; if (!$query_id) { $query_id = $this->query_result; } if (isset($mx_cache->sql_rowset[$query_id])) { return $mx_cache->sql_fetchrow($query_id); } return ($query_id) ? @pg_fetch_assoc($query_id, NULL) : false; } /** * Fetch field * if rownum is false, the current row is used, else it is pointing to the row (zero-based) */ function sql_fetchfield($field, $rownum = false, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if ($query_id) { if ($rownum !== false) { $this->sql_rowseek($rownum, $query_id); } $row = $this->sql_fetchrow($query_id); return isset($row[$field]) ? $row[$field] : false; } return false; } /** * Seek to given row number * rownum is zero-based */ function sql_rowseek($rownum, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @pg_result_seek($query_id, $rownum) : false; } /** * Get last inserted id after insert statement */ function sql_nextid() { $query_id = $this->query_result; if ($query_id && $this->last_query_text != '') { if (preg_match("/^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)/is", $this->last_query_text, $tablename)) { $query = "SELECT currval('" . $tablename[1] . "_id_seq') AS last_value"; $temp_q_id = @pg_query($this->db_connect_id, $query); if (!$temp_q_id) { return false; } $temp_result = @pg_fetch_assoc($temp_q_id, NULL); @pg_free_result($query_id); return ($temp_result) ? $temp_result['last_value'] : false; } } return false; } /** * Free sql result */ function sql_freeresult($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if (isset($this->open_queries[(int) $query_id])) { unset($this->open_queries[(int) $query_id]); return @pg_free_result($query_id); } } /** * Escape string used in sql query */ function sql_escape($msg) { // Do not use for bytea values return @pg_escape_string($msg); } /** * Build LIKE expression * @access private */ function _sql_like_expression($expression) { return $expression; } /** * Build db-specific query data * @access private */ function _sql_custom_build($stage, $data) { return $data; } /** * return sql error array * @private */ function _sql_error() { return array( 'message' => (!$this->db_connect_id) ? @pg_last_error() : @pg_last_error($this->db_connect_id), 'code' => '' ); } /** * Close sql connection * @private */ function _sql_close() { return @pg_close($this->db_connect_id); } /** * Build db-specific report * @private */ function _sql_report($mode, $query = '') { switch ($mode) { case 'start': break; case 'fromcache': $endtime = explode(' ', microtime()); $endtime = $endtime[0] + $endtime[1]; $result = @pg_query($this->db_connect_id, $query); while ($void = @pg_fetch_assoc($result, NULL)) { // Take the time spent on parsing rows into account } @pg_free_result($result); $splittime = explode(' ', microtime()); $splittime = $splittime[0] + $splittime[1]; $this->sql_report('record_fromcache', $query, $endtime, $splittime); break; } } } } // if ... defined // Connect to DB $db = new $sql_db(); if(!$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, false)) { mx_message_die(CRITICAL_ERROR, "Could not connect to the database"); } ?> --- NEW FILE: mysql4.php --- <?php /** * * @package DBal * @version $Id: mysql4.php,v 1.1 2008/12/31 01:44:18 orynider Exp $ * @copyright (c) 2005 phpBB Group * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @link http://www.mx-publisher.com * */ /** */ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } /** * @ignore */ //if (!defined('SQL_LAYER')) if (!is_object('dbal_mysql4')) { define('SQL_LAYER', 'mysql4'); include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; /** * @package DBal * MySQL4 Database Abstraction Layer * Compatible with: * MySQL 4.0+ * MySQL 4.1+ * MySQL 5.0+ */ class dbal_mysql4 extends dbal { var $mysql_version; var $multi_insert = true; /** * Connect to server */ /** * Connect to server * @access public */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false, $new_link = false) { $this->persistency = $persistency; $this->user = $sqluser; $this->server = $sqlserver . (($port) ? ':' . $port : ''); $this->dbname = $database; $this->db_connect_id = ($this->persistency) ? @mysql_pconnect($this->server, $this->user, $sqlpassword, $new_link) : @mysql_connect($this->server, $this->user, $sqlpassword, $new_link); if ($this->db_connect_id && $this->dbname != '') { if (@mysql_select_db($this->dbname, $this->db_connect_id)) { // Determine what version we are using and if it natively supports UNICODE $this->mysql_version = mysql_get_server_info($this->db_connect_id); if (version_compare($this->mysql_version, '4.1.3', '>=')) { $this->sql_layer = 'mysql4'; @mysql_query("SET NAMES 'utf8'", $this->db_connect_id); // enforce strict mode on databases that support it if (version_compare($this->mysql_version, '5.0.2', '>=')) { $result = @mysql_query('SELECT @@session.sql_mode AS sql_mode', $this->db_connect_id); $row = @mysql_fetch_assoc($result); @mysql_free_result($result); $modes = array_map('trim', explode(',', $row['sql_mode'])); // TRADITIONAL includes STRICT_ALL_TABLES and STRICT_TRANS_TABLES if (!in_array('TRADITIONAL', $modes)) { if (!in_array('STRICT_ALL_TABLES', $modes)) { $modes[] = 'STRICT_ALL_TABLES'; } if (!in_array('STRICT_TRANS_TABLES', $modes)) { $modes[] = 'STRICT_TRANS_TABLES'; } } $mode = implode(',', $modes); @mysql_query("SET SESSION sql_mode='{$mode}'", $this->db_connect_id); } } else if (version_compare($this->mysql_version, '4.0.0', '>=')) { $this->sql_layer = 'mysql4'; } else //if (version_compare($this->mysql_version, '4.0.0', '<')) { $this->sql_layer = 'mysql'; } return $this->db_connect_id; } } return $this->sql_error(''); } /** * Version information about used database */ function sql_server_info() { return 'MySQL ' . $this->mysql_version; } /** * sql transaction */ function sql_transaction($status = 'begin') { switch ($status) { case 'begin': $result = @mysql_query('BEGIN', $this->db_connect_id); $this->transaction = true; break; case 'commit': $result = @mysql_query('COMMIT', $this->db_connect_id); $this->transaction = false; if (!$result) { @mysql_query('ROLLBACK', $this->db_connect_id); } break; case 'rollback': $result = @mysql_query('ROLLBACK', $this->db_connect_id); $this->transaction = false; break; default: $result = true; } return $result; } /** * Base query method */ function sql_query($query = '', $cache_ttl = 0) { if ($query != '') { global $mx_cache; // EXPLAIN only in extra debug mode if (defined('DEBUG_EXTRA')) { $this->sql_report('start', $query); } $this->query_result = ($cache_ttl && method_exists($mx_cache, 'sql_load')) ? $mx_cache->sql_load($query) : false; if (!$this->query_result) { $this->num_queries++; if (($this->query_result = @mysql_query($query, $this->db_connect_id)) === false) { $this->sql_error($query); } if (defined('DEBUG_EXTRA')) { $this->sql_report('stop', $query); } if ($cache_ttl && method_exists($mx_cache, 'sql_save')) { $this->open_queries[(int) $this->query_result] = $this->query_result; $mx_cache->sql_save($query, $this->query_result, $cache_ttl); } else if (strpos($query, 'SELECT') === 0 && $this->query_result) { $this->open_queries[(int) $this->query_result] = $this->query_result; } } else if (defined('DEBUG_EXTRA')) { $this->sql_report('fromcache', $query); } } else { return false; } return ($this->query_result) ? $this->query_result : false; } /** * Build LIMIT query */ function sql_query_limit($query, $total, $offset = 0, $cache_ttl = 0) { if ($query != '') { $this->query_result = false; // if $total is set to 0 we do not want to limit the number of rows if ($total == 0) { // Because MySQL 4.1+ no longer supports -1 in LIMIT queries we set it to the maximum value $total = '18446744073709551615'; } $query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total); return $this->sql_query($query, $cache_ttl); } else { return false; } } /** * Return number of rows * Not used within core code */ function sql_numrows($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @mysql_num_rows($query_id) : false; } /** * Return number of affected rows */ function sql_affectedrows() { return ($this->db_connect_id) ? @mysql_affected_rows($this->db_connect_id) : false; } /** * Fetch current row */ function sql_fetchrow($query_id = false) { global $mx_cache; if (!$query_id) { $query_id = $this->query_result; } if (isset($mx_cache->sql_rowset[$query_id])) { return $mx_cache->sql_fetchrow($query_id); } return ($query_id) ? @mysql_fetch_assoc($query_id) : false; } /** * Fetch field * if rownum is false, the current row is used, else it is pointing to the row (zero-based) */ function sql_fetchfield($field, $rownum = false, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if ($query_id) { if ($rownum === false) { $row = $this->sql_fetchrow($query_id); return isset($row[$field]) ? $row[$field] : false; } else { return @mysql_result($query_id, $rownum, $field); } } return false; } /** * Seek to given row number * rownum is zero-based */ function sql_rowseek($rownum, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @mysql_data_seek($query_id, $rownum) : false; } /** * Get last inserted id after insert statement */ function sql_nextid() { return ($this->db_connect_id) ? @mysql_insert_id($this->db_connect_id) : false; } /** * Free sql result */ function sql_freeresult($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if (isset($this->open_queries[(int) $query_id])) { unset($this->open_queries[(int) $query_id]); return @mysql_free_result($query_id); } return false; } /** * Escape string used in sql query */ function sql_escape($msg) { if (!$this->db_connect_id) { return @mysql_real_escape_string($msg); } return @mysql_real_escape_string($msg, $this->db_connect_id); } /** * Build LIKE expression * @access private */ function _sql_like_expression($expression) { return $expression; } /** * Build db-specific query data * @access private */ function _sql_custom_build($stage, $data) { switch ($stage) { case 'FROM': $data = '(' . $data . ')'; break; } return $data; } /** * return sql error array * @private */ function _sql_error() { if (!$this->db_connect_id) { return array( 'message' => @mysql_error(), 'code' => @mysql_errno() ); } return array( 'message' => @mysql_error($this->db_connect_id), 'code' => @mysql_errno($this->db_connect_id) ); } /** * Close sql connection * @private */ function _sql_close() { return @mysql_close($this->db_connect_id); } /** * Build db-specific report * @private */ function _sql_report($mode, $query = '') { switch ($mode) { case 'start': $explain_query = $query; if (preg_match('/UPDATE ([a-z0-9_]+).*?WHERE(.*)/s', $query, $m)) { $explain_query = 'SELECT * FROM ' . $m[1] . ' WHERE ' . $m[2]; } else if (preg_match('/DELETE FROM ([a-z0-9_]+).*?WHERE(.*)/s', $query, $m)) { $explain_query = 'SELECT * FROM ' . $m[1] . ' WHERE ' . $m[2]; } if (preg_match('/^SELECT/', $explain_query)) { $html_table = false; if ($result = @mysql_query("EXPLAIN $explain_query", $this->db_connect_id)) { while ($row = @mysql_fetch_assoc($result)) { $html_table = $this->sql_report('add_select_row', $query, $html_table, $row); } } @mysql_free_result($result); if ($html_table) { $this->html_hold .= '</table>'; } } break; case 'fromcache': $endtime = explode(' ', microtime()); $endtime = $endtime[0] + $endtime[1]; $result = @mysql_query($query, $this->db_connect_id); while ($void = @mysql_fetch_assoc($result)) { // Take the time spent on parsing rows into account } @mysql_free_result($result); $splittime = explode(' ', microtime()); $splittime = $splittime[0] + $splittime[1]; $this->sql_report('record_fromcache', $query, $endtime, $splittime); break; } } } } // if ... define // Connect to DB $db = new $sql_db(); if(!$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, false)) { message_die(CRITICAL_ERROR, "Could not connect to the database"); } ?> --- NEW FILE: firebird.php --- <?php /** * * @package DBal * @version $Id: firebird.php,v 1.1 2008/12/31 01:44:17 orynider Exp $ * @copyright (c) 2005 phpBB Group * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @link http://www.mx-publisher.com * */ /** */ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } /** * @ignore */ //if (!defined('SQL_LAYER')) if (!is_object('dbal_firebird')) { define('SQL_LAYER', 'firebird'); include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections /** * @package DBal * Firebird/Interbase Database Abstraction Layer * Minimum Requirement is Firebird 1.5+/Interbase 7.1+ */ class dbal_firebird extends dbal { var $last_query_text = ''; /** * Connect to server */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false) { $this->persistency = $persistency; $this->user = $sqluser; $this->server = $sqlserver . (($port) ? ':' . $port : ''); $this->dbname = $database; $this->db_connect_id = ($this->persistency) ? @ibase_pconnect($this->server . ':' . $this->dbname, $this->user, $sqlpassword, false, false, 3) : @ibase_connect($this->server . ':' . $this->dbname, $this->user, $sqlpassword, false, false, 3); return ($this->db_connect_id) ? $this->db_connect_id : $this->sql_error(''); } /** * Connect to server */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false, $new_link = false) { $this->persistency = $persistency; $this->user = $sqluser; $this->server = $sqlserver . (($port) ? ':' . $port : ''); $this->dbname = $database; $this->db_connect_id = ($this->persistency) ? @ibase_pconnect($this->server . ':' . $this->dbname, $this->user, $sqlpassword, false, false, 3) : @ibase_connect($this->server . ':' . $this->dbname, $this->user, $sqlpassword, false, false, 3); $this->service_handle = (function_exists('ibase_service_attach')) ? @ibase_service_attach($this->server, $this->user, $sqlpassword) : false; return ($this->db_connect_id) ? $this->db_connect_id : $this->sql_error(''); } /** * sql transaction */ function sql_transaction($status = 'begin') { switch ($status) { case 'begin': $this->transaction = true; break; case 'commit': $result = @ibase_commit(); $this->transaction = false; if (!$result) { @ibase_rollback(); } break; case 'rollback': $result = @ibase_rollback(); $this->transaction = false; break; default: $result = true; } return $result; } /** * Base query method */ function sql_query($query = '', $cache_ttl = 0) { if ($query != '') { global $mx_cache; $this->last_query_text = $query; $this->query_result = ($cache_ttl && method_exists($mx_cache, 'sql_load')) ? $mx_cache->sql_load($query) : false; if (!$this->query_result) { $this->num_queries++; if (($this->query_result = @ibase_query($this->db_connect_id, $query)) === false) { $this->sql_error($query); } // TODO: have to debug the commit states in firebird if (!$this->transaction) { @ibase_commit_ret(); } if ($cache_ttl && method_exists($mx_cache, 'sql_save')) { $this->open_queries[(int) $this->query_result] = $this->query_result; $mx_cache->sql_save($query, $this->query_result, $cache_ttl); } else if (strpos($query, 'SELECT') === 0 && $this->query_result) { $this->open_queries[(int) $this->query_result] = $this->query_result; } } } else { return false; } return ($this->query_result) ? $this->query_result : false; } /** * Build LIMIT query */ function sql_query_limit($query, $total, $offset = 0, $cache_ttl = 0) { if ($query != '') { $this->query_result = false; $query = 'SELECT FIRST ' . $total . ((!empty($offset)) ? ' SKIP ' . $offset : '') . substr($query, 6); return $this->sql_query($query, $cache_ttl); } else { return false; } } /** * Return number of rows * Not used within core code */ function sql_numrows($query_id = false) { return false; } /** * Return number of affected rows */ function sql_affectedrows() { // PHP 5+ function if (function_exists('ibase_affected_rows')) { return ($this->query_result) ? @ibase_affected_rows($this->query_result) : false; } else { return false; //($this->query_result) ? true : false; } } /** * Fetch current row */ function sql_fetchrow($query_id = false) { global $mx_cache; if (!$query_id) { $query_id = $this->query_result; } if (isset($mx_cache->sql_rowset[$query_id])) { return $mx_cache->sql_fetchrow($query_id); } $row = array(); $cur_row = @ibase_fetch_object($query_id, IBASE_TEXT); if (!$cur_row) { return false; } foreach (get_object_vars($cur_row) as $key => $value) { $row[strtolower($key)] = trim(str_replace("\\0", "\0", str_replace("\\n", "\n", $value))); } return (sizeof($row)) ? $row : false; } /** * Fetch field * if rownum is false, the current row is used, else it is pointing to the row (zero-based) */ function sql_fetchfield($field, $rownum = false, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if ($query_id) { if ($rownum !== false) { $this->sql_rowseek($rownum, $query_id); } $row = $this->sql_fetchrow($query_id); return isset($row[$field]) ? $row[$field] : false; } return false; } /** * Seek to given row number * rownum is zero-based */ function sql_rowseek($rownum, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } /* $this->sql_freeresult($query_id); $query_id = $this->sql_query($this->last_query_text); if (!$query_id) { return false; } */ // We do not fetch the row for rownum == 0 because then the next resultset would be the second row for ($i = 0; $i < $rownum; $i++) { if (!$this->sql_fetchrow($query_id)) { return false; } } return true; } /** * Get last inserted id after insert statement */ function sql_nextid() { $query_id = $this->query_result; if ($query_id && $this->last_query_text != '') { if ($this->query_result && preg_match('#^INSERT[\t\n ]+INTO[\t\n ]+([a-z0-9\_\-]+)#is', $this->last_query_text, $tablename)) { $query = "SELECT GEN_ID('" . $tablename[1] . "_gen', 0) AS new_id FROM RDB\$DATABASE"; if (!($temp_q_id = @ibase_query($this->db_connect_id, $query))) { return false; } $temp_result = @ibase_fetch_object($temp_q_id); @ibase_free_result($temp_q_id); return ($temp_result) ? $temp_result->last_value : false; } } return false; } /** * Free sql result */ function sql_freeresult($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if (!$this->transaction && $query_id) { $this->sql_transaction('commit'); } if (isset($this->open_queries[(int) $query_id])) { unset($this->open_queries[(int) $query_id]); return @ibase_free_result($query_id); } return false; } /** * Escape string used in sql query */ function sql_escape($msg) { return (@ini_get('magic_quotes_sybase') || strtolower(@ini_get('magic_quotes_sybase')) == 'on') ? str_replace('\\\'', '\'', addslashes($msg)) : str_replace('\'', '\'\'', stripslashes($msg)); } /** * return sql error array * @private */ function _sql_error() { return array( 'message' => @ibase_errmsg(), 'code' => '' ); } /** * Build LIKE expression * @access private */ function _sql_like_expression($expression) { return $expression . " ESCAPE '\\'"; } /** * Build db-specific query data * @access private */ function _sql_custom_build($stage, $data) { return $data; } /** * Close sql connection * @private */ function _sql_close() { return @ibase_close($this->db_connect_id); } /** * Build db-specific report * @private */ function _sql_report($mode, $query = '') { switch ($mode) { case 'start': break; case 'fromcache': $endtime = explode(' ', microtime()); $endtime = $endtime[0] + $endtime[1]; $result = @ibase_query($this->db_connect_id, $query); while ($void = @ibase_fetch_object($result, IBASE_TEXT)) { // Take the time spent on parsing rows into account } @ibase_freeresult($result); $splittime = explode(' ', microtime()); $splittime = $splittime[0] + $splittime[1]; $this->sql_report('record_fromcache', $query, $endtime, $splittime); break; } } } } // if ... define // Connect to DB $db = new $sql_db(); if(!$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, false)) { mx_message_die(CRITICAL_ERROR, "Could not connect to the database"); } ?> --- NEW FILE: mssql.php --- <?php /** * * @package DBal * @version $Id: mssql.php,v 1.1 2008/12/31 01:44:17 orynider Exp $ * @copyright (c) 2005 phpBB Group * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @link http://www.mx-publisher.com * */ /** */ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } /** * @ignore */ //if (!defined('SQL_LAYER')) if (!is_object('dbal_mssql')) { define('SQL_LAYER', 'mssql'); include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections /** * @package DBal * MSSQL Database Abstraction Layer * Minimum Requirement is MSSQL 2000+ */ class dbal_mssql extends dbal { /** * Connect to server */ /** * Connect to server */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false, $new_link = false) { $this->persistency = $persistency; $this->user = $sqluser; $this->server = $sqlserver . (($port) ? ':' . $port : ''); $this->dbname = $database; if (UTF_STATUS === 'phpbb3') { @ini_set('mssql.charset', 'UTF-8'); // enforce strict mode on databases that support it } @ini_set('mssql.textlimit', 2147483647); @ini_set('mssql.textsize', 2147483647); if (version_compare(PHP_VERSION, '5.1.0', '>=') || (version_compare(PHP_VERSION, '5.0.0-dev', '<=') && version_compare(PHP_VERSION, '4.4.1', '>='))) { $this->db_connect_id = ($this->persistency) ? @mssql_pconnect($this->server, $this->user, $sqlpassword, $new_link) : @mssql_connect($this->server, $this->user, $sqlpassword, $new_link); } else { $this->db_connect_id = ($this->persistency) ? @mssql_pconnect($this->server, $this->user, $sqlpassword) : @mssql_connect($this->server, $this->user, $sqlpassword); } if ($this->db_connect_id && $this->dbname != '') { if (!@mssql_select_db($this->dbname, $this->db_connect_id)) { @mssql_close($this->db_connect_id); return false; } } return ($this->db_connect_id) ? $this->db_connect_id : $this->sql_error(''); } /** * Version information about used database */ function sql_server_info() { $result_id = @mssql_query("SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY('productlevel'), SERVERPROPERTY('edition')", $this->db_connect_id); $row = false; if ($result_id) { $row = @mssql_fetch_assoc($result_id); @mssql_free_result($result_id); } if ($row) { return 'MSSQL<br />' . implode(' ', $row); } return 'MSSQL'; } /** * sql transaction */ function sql_transaction($status = 'begin') { switch ($status) { case 'begin': $result = @mssql_query('BEGIN TRANSACTION', $this->db_connect_id); $this->transaction = true; break; case 'commit': $result = @mssql_query('commit', $this->db_connect_id); $this->transaction = false; if (!$result) { @mssql_query('ROLLBACK', $this->db_connect_id); } break; case 'rollback': $result = @mssql_query('ROLLBACK', $this->db_connect_id); $this->transaction = false; break; default: $result = true; } return $result; } /** * Base query method */ function sql_query($query = '', $cache_ttl = 0) { if ($query != '') { global $mx_cache; // EXPLAIN only in extra debug mode if (defined('DEBUG_EXTRA')) { $this->sql_report('start', $query); } $this->query_result = ($cache_ttl && method_exists($mx_cache, 'sql_load')) ? $mx_cache->sql_load($query) : false; if (!$this->query_result) { $this->num_queries++; if (($this->query_result = @mssql_query($query, $this->db_connect_id)) === false) { $this->sql_error($query); } if (defined('DEBUG_EXTRA')) { $this->sql_report('stop', $query); } if ($cache_ttl && method_exists($mx_cache, 'sql_save')) { $this->open_queries[(int) $this->query_result] = $this->query_result; $mx_cache->sql_save($query, $this->query_result, $cache_ttl); } else if (strpos($query, 'SELECT') === 0 && $this->query_result) { $this->open_queries[(int) $this->query_result] = $this->query_result; } } else if (defined('DEBUG_EXTRA')) { $this->sql_report('fromcache', $query); } } else { return false; } return ($this->query_result) ? $this->query_result : false; } /** * Build LIMIT query */ function sql_query_limit($query, $total, $offset = 0, $cache_ttl = 0) { if ($query != '') { $this->query_result = false; // if $total is set to 0 we do not want to limit the number of rows if ($total == 0) { $total = -1; } $row_offset = ($total) ? $offset : ''; $num_rows = ($total) ? $total : $offset; $query = 'SELECT TOP ' . ($row_offset + $num_rows) . ' ' . substr($query, 6); return $this->sql_query($query, $cache_ttl); } else { return false; } } /** * Return number of rows * Not used within core code */ function sql_numrows($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @mssql_num_rows($query_id) : false; } /** * Return number of affected rows */ function sql_affectedrows() { return ($this->db_connect_id) ? @mssql_rows_affected($this->db_connect_id) : false; } /** * Fetch current row */ function sql_fetchrow($query_id = false) { global $mx_cache; if (!$query_id) { $query_id = $this->query_result; } if (isset($mx_cache->sql_rowset[$query_id])) { return $mx_cache->sql_fetchrow($query_id); } $row = @mssql_fetch_assoc($query_id); // I hope i am able to remove this later... hopefully only a PHP or MSSQL bug if ($row) { foreach ($row as $key => $value) { $row[$key] = ($value === ' ') ? '' : $value; } } return $row; } /** * Fetch field * if rownum is false, the current row is used, else it is pointing to the row (zero-based) */ function sql_fetchfield($field, $rownum = false, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if ($query_id) { if ($rownum !== false) { $this->sql_rowseek($rownum, $query_id); } $row = $this->sql_fetchrow($query_id); return isset($row[$field]) ? $row[$field] : false; } return false; } /** * Seek to given row number * rownum is zero-based */ function sql_rowseek($rownum, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @mssql_data_seek($query_id, $rownum) : false; } /** * Get last inserted id after insert statement */ function sql_nextid() { $result_id = @mssql_query('SELECT @@IDENTITY', $this->db_connect_id); if ($result_id) { if (@mssql_fetch_assoc($result_id)) { $id = @mssql_result($result_id, 1); @mssql_free_result($result_id); return $id; } @mssql_free_result($result_id); } return false; } /** * Free sql result */ function sql_freeresult($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if (isset($this->open_queries[$query_id])) { unset($this->open_queries[$query_id]); return @mssql_free_result($query_id); } return false; } /** * Escape string used in sql query */ function sql_escape($msg) { return str_replace("'", "''", str_replace('\\', '\\\\', $msg)); } /** * return sql error array * @private */ function _sql_error() { return array( 'message' => @mssql_get_last_message($this->db_connect_id), 'code' => '' ); } /** * Build LIKE expression * @access private */ function _sql_like_expression($expression) { return $expression . " ESCAPE '\\'"; } /** * Build db-specific query data * @access private */ function _sql_custom_build($stage, $data) { return $data; } /** * Close sql connection * @private */ function _sql_close() { return @mssql_close($this->db_connect_id); } /** * Build db-specific report * @private */ function _sql_report($mode, $query = '') { switch ($mode) { case 'start': break; case 'fromcache': $endtime = explode(' ', microtime()); $endtime = $endtime[0] + $endtime[1]; $result = @mssql_query($query, $this->db_connect_id); while ($void = @mssql_fetch_assoc($result)) { // Take the time spent on parsing rows into account } @mssql_free_result($result); $splittime = explode(' ', microtime()); $splittime = $splittime[0] + $splittime[1]; $this->sql_report('record_fromcache', $query, $endtime, $splittime); break; } } } } // if ... define // Connect to DB $db = new $sql_db(); if(!$db->sql_connect($dbhost, $dbuser, $dbpasswd, $dbname, false)) { mx_message_die(CRITICAL_ERROR, "Could not connect to the database"); } ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> --- NEW FILE: mysql.php --- <?php /** * * @package DBal * @version $Id: mysql.php,v 1.1 2008/12/31 01:44:18 orynider Exp $ * @copyright (c) 2005 phpBB Group * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU Public License * @link http://www.mx-publisher.com * */ /** */ if ( !defined('IN_PHPBB') ) { die("Hacking attempt"); } /** * @ignore */ //if (!defined('SQL_LAYER')) if (!is_object('dbal_mysql')) { define('SQL_LAYER', 'mysql'); include_once($phpbb_root_path . 'includes/db/dbal.' . $phpEx); $sql_db = 'dbal_' . $dbms; // Repopulated for multiple db connections /** * @package DBal * MySQL Database Abstraction Layer * Minimum Requirement is 3.23+/4.0+/4.1+ */ class dbal_mysql extends dbal { var $mysql_version; var $multi_insert = true; /** * Connect to server * @access public */ function sql_connect($sqlserver, $sqluser, $sqlpassword, $database, $port = false, $persistency = false, $new_link = false) { $this->persistency = $persistency; $this->user = $sqluser; $this->server = $sqlserver . (($port) ? ':' . $port : ''); $this->dbname = $database; $this->sql_layer = 'mysql4'; $this->db_connect_id = ($this->persistency) ? @mysql_pconnect($this->server, $this->user, $sqlpassword, $new_link) : @mysql_connect($this->server, $this->user, $sqlpassword, $new_link); if ($this->db_connect_id && $this->dbname != '') { if (@mysql_select_db($this->dbname, $this->db_connect_id)) { // Determine what version we are using and if it natively supports UNICODE $this->mysql_version = mysql_get_server_info($this->db_connect_id); if (version_compare($this->mysql_version, '4.1.3', '>=')) { if (UTF_STATUS === 'phpbb3') { @mysql_query("SET NAMES 'utf8'", $this->db_connect_id); // enforce strict mode on databases that support it } if (version_compare($this->mysql_version, '5.0.2', '>=')) { $result = @mysql_query('SELECT @@session.sql_mode AS sql_mode', $this->db_connect_id); $row = @mysql_fetch_assoc($result); @mysql_free_result($result); $modes = array_map('trim', explode(',', $row['sql_mode'])); // TRADITIONAL includes STRICT_ALL_TABLES and STRICT_TRANS_TABLES if (!in_array('TRADITIONAL', $modes)) { if (!in_array('STRICT_ALL_TABLES', $modes)) { $modes[] = 'STRICT_ALL_TABLES'; } if (!in_array('STRICT_TRANS_TABLES', $modes)) { $modes[] = 'STRICT_TRANS_TABLES'; } } $mode = implode(',', $modes); @mysql_query("SET SESSION sql_mode='{$mode}'", $this->db_connect_id); } } else if (version_compare($this->mysql_version, '4.0.0', '<')) { $this->sql_layer = 'mysql'; } return $this->db_connect_id; } } return $this->sql_error(); } /** * Version information about used database */ function sql_server_info() { return 'MySQL ' . $this->mysql_version; } /** * sql transaction */ function sql_transaction($status = 'begin') { switch ($status) { case 'begin': $result = @mysql_query('BEGIN', $this->db_connect_id); $this->transaction = true; break; case 'commit': $result = @mysql_query('COMMIT', $this->db_connect_id); $this->transaction = false; if (!$result) { @mysql_query('ROLLBACK', $this->db_connect_id); } break; case 'rollback': $result = @mysql_query('ROLLBACK', $this->db_connect_id); $this->transaction = false; break; default: $result = true; } return $result; } /** * Base query method */ function sql_query($query = '', $cache_ttl = 0) { if ($query != '') { global $mx_cache; // EXPLAIN only in extra debug mode if (defined('DEBUG_EXTRA')) { $this->sql_report('start', $query); } $this->query_result = ($cache_ttl && method_exists($mx_cache, 'sql_load')) ? $mx_cache->sql_load($query) : false; if (!$this->query_result) { $this->num_queries++; if (($this->query_result = @mysql_query($query, $this->db_connect_id)) === false) { $this->sql_error($query); } if (defined('DEBUG_EXTRA')) { $this->sql_report('stop', $query); } if ($cache_ttl && method_exists($mx_cache, 'sql_save')) { $this->open_queries[(int) $this->query_result] = $this->query_result; $mx_cache->sql_save($query, $this->query_result, $cache_ttl); } else if (strpos($query, 'SELECT') === 0 && $this->query_result) { $this->open_queries[(int) $this->query_result] = $this->query_result; } } else if (defined('DEBUG_EXTRA')) { $this->sql_report('fromcache', $query); } } else { return false; } return ($this->query_result) ? $this->query_result : false; } /** * Build LIMIT query */ function sql_query_limit($query, $total, $offset = 0, $cache_ttl = 0) { if ($query != '') { $this->query_result = false; // if $total is set to 0 we do not want to limit the number of rows if ($total == 0) { $total = -1; } $query .= "\n LIMIT " . ((!empty($offset)) ? $offset . ', ' . $total : $total); return $this->sql_query($query, $cache_ttl); } else { return false; } } /** * Return number of rows * Not used within core code */ function sql_numrows($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @mysql_num_rows($query_id) : false; } /** * Return number of affected rows */ function sql_affectedrows() { return ($this->db_connect_id) ? @mysql_affected_rows($this->db_connect_id) : false; } /** * Fetch current row */ function sql_fetchrow($query_id = false) { global $mx_cache; if (!$query_id) { $query_id = $this->query_result; } if (isset($mx_cache->sql_rowset[$query_id])) { return $mx_cache->sql_fetchrow($query_id); } return ($query_id) ? @mysql_fetch_assoc($query_id) : false; } /** * Fetch field * if rownum is false, the current row is used, else it is pointing to the row (zero-based) */ function sql_fetchfield($field, $rownum = false, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if ($query_id) { if ($rownum === false) { $row = $this->sql_fetchrow($query_id); return isset($row[$field]) ? $row[$field] : false; } else { return @mysql_result($query_id, $rownum, $field); } } return false; } /** * Seek to given row number * rownum is zero-based */ function sql_rowseek($rownum, $query_id = false) { if (!$query_id) { $query_id = $this->query_result; } return ($query_id) ? @mysql_data_seek($query_id, $rownum) : false; } /** * Get last inserted id after insert statement */ function sql_nextid() { return ($this->db_connect_id) ? @mysql_insert_id($this->db_connect_id) : false; } /** * Free sql result */ function sql_freeresult($query_id = false) { if (!$query_id) { $query_id = $this->query_result; } if (isset($this->open_queries[(int) $query_id])) { unset($this->open_queries[(int) $query_id]); return @mysql_free_result($query_id); } return false; } /** * Escape string used in sql query */ function sql_escape($msg) { if (!$this->db_connect_id) { return @mysql_real_escape_string($m... [truncated message content] |
Update of /cvsroot/mxbb/phpbb2mxp/includes/utf/data In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/includes/utf/data Added Files: case_fold_c.php case_fold_f.php case_fold_s.php confusables.php recode_basic.php search_indexer_0.php search_indexer_1.php search_indexer_19.php search_indexer_2.php search_indexer_20.php search_indexer_21.php search_indexer_26.php search_indexer_3.php search_indexer_31.php search_indexer_32.php search_indexer_33.php search_indexer_36.php search_indexer_4.php search_indexer_448.php search_indexer_5.php search_indexer_58.php search_indexer_6.php search_indexer_64.php search_indexer_84.php search_indexer_9.php search_indexer_95.php utf_canonical_comp.php utf_canonical_decomp.php utf_compatibility_decomp.php utf_nfc_qc.php utf_nfkc_qc.php utf_normalizer_common.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: search_indexer_58.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_36.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_84.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_21.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_2.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_0.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_19.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_20.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: recode_basic.php --- <?php function iso_8859_1($string) { return utf8_encode($string); } function iso_8859_2($string) { static $transform = array( "\x80" => "\xC2\x80", "\x81" => "\xC2\x81", "\x82" => "\xC2\x82", "\x83" => "\xC2\x83", "\x84" => "\xC2\x84", "\x85" => "\xC2\x85", "\x86" => "\xC2\x86", "\x87" => "\xC2\x87", "\x88" => "\xC2\x88", "\x89" => "\xC2\x89", [...1504 lines suppressed...] "\xC3\xB1" => "\xF1", "\xC3\xB2" => "\xF2", "\xC3\xB3" => "\xF3", "\xC3\xB4" => "\xF4", "\xC3\xB5" => "\xF5", "\xC3\xB6" => "\xF6", "\xC3\xB7" => "\xF7", "\xC3\xB8" => "\xF8", "\xC3\xB9" => "\xF9", "\xC3\xBA" => "\xFA", "\xC3\xBB" => "\xFB", "\xC3\xBC" => "\xFC", "\xC3\xBD" => "\xFD", "\xC3\xBE" => "\xFE", "\xC3\xBF" => "\xFF" ); return strtr($string, $transform); } ?> --- NEW FILE: utf_compatibility_decomp.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_6.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_32.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: case_fold_c.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: utf_canonical_comp.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: utf_canonical_decomp.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_1.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_3.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_448.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: utf_normalizer_common.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: case_fold_f.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_4.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: confusables.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_5.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_64.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_33.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: utf_nfkc_qc.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_31.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_95.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: utf_nfc_qc.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_26.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: case_fold_s.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: search_indexer_9.php --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:05:48
|
Update of /cvsroot/mxbb/phpbb2mxp/includes/utf In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/includes/utf Added Files: utf_normalizer.php utf_tools.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: utf_tools.php --- <?php /** * * @package utf * @version $Id: utf_tools.php,v 1.1 2008/12/31 01:44:31 orynider Exp $ * @copyright (c) 2006 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */ /** */ if (!defined('IN_PHPBB')) { exit; } // Enforce ASCII only string handling setlocale(LC_CTYPE, 'C'); [...1881 lines suppressed...] if (utf8_strlen($new_lines[$index] . $word) > $width) { $new_lines[$index] = substr($new_lines[$index], 0, -1); $index++; $new_lines[$index] = ''; } $new_lines[$index] .= $word . ' '; } $new_lines[$index] = substr($new_lines[$index], 0, -1); $index++; $new_lines[$index] = ''; } unset($new_lines[$index]); return implode($break, $new_lines); } ?> --- NEW FILE: utf_normalizer.php --- <?php /** * * @package utf * @version $Id: utf_normalizer.php,v 1.1 2008/12/31 01:44:31 orynider Exp $ * @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */ /** */ if (!defined('IN_PHPBB')) { exit; } /** * Some Unicode characters encoded in UTF-8 [...1477 lines suppressed...] { // If the $tmp_pos cursor was moved then at least one character was not in normal form. Replace $str with the fixed version if ($tmp_pos == $len) { // The $tmp_pos cursor is at the end of $str, therefore $tmp holds the whole $str return $tmp; } else { // The rightmost chunk of $str has not been appended to $tmp yet return $tmp . substr($str, $tmp_pos); } } // The string was already in normal form return $str; } } ?> |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:05:39
|
Update of /cvsroot/mxbb/phpbb2mxp/install In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/install Added Files: index.htm install.php update_to_latest.php upgrade.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: update_to_latest.php --- <?php /*************************************************************************** * update_to_xxx.php * ------------------- * begin : Wednesday, May 16, 2002 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: update_to_latest.php,v 1.1 2008/12/31 01:44:31 orynider Exp $ * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * [...1156 lines suppressed...] echo "SQL :: <b>" . $error_ary['sql'][$i] . "</b><br /><br /></li>"; } echo "</ul>\n<p>This is probably nothing to worry about, update will continue. Should this fail to complete you may need to seek help at our development board. See <a href=\"docs\README.html\">README</a> for details on how to obtain advice.</p>\n"; } else { echo "<b>No errors</b>\n"; } echo "<h2>Update completed</h2>\n"; echo "\n" . '<p style="color:red">Please make sure you have updated your board files too, this file is only updating your database.</p>'; echo "\n<p>You should now visit the General Configuration settings page in the <a href=\"../admin/\">Administration Panel</a> and check the General Configuration of the board. If you updated from versions prior to RC-3 you <b>must</b> update some entries. If you do not do this emails sent from the board will contain incorrect information. Don't forget to delete this file!</p>\n"; ?> <br clear="all" /> </body> </html> --- NEW FILE: install.php --- <?php /*************************************************************************** * install.php * ------------------- * begin : Tuesday, Sept 11, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: install.php,v 1.1 2008/12/31 01:44:31 orynider Exp $ * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * [...1032 lines suppressed...] exit; } // Ok we are basically done with the install process let's go on // and let the user configure their board now. We are going to do // this by calling the admin_board.php from the normal board admin // section. $s_hidden_fields = '<input type="hidden" name="username" value="' . $admin_name . '" />'; $s_hidden_fields .= '<input type="hidden" name="password" value="' . $admin_pass1 . '" />'; $s_hidden_fields .= '<input type="hidden" name="redirect" value="admin/index.'.$phpEx.'" />'; $s_hidden_fields .= '<input type="hidden" name="login" value="true" />'; page_header($lang['Inst_Step_2'], '../login.'.$phpEx); page_common_form($s_hidden_fields, $lang['Finish_Install']); page_footer(); exit; } } ?> --- NEW FILE: upgrade.php --- <?php /*************************************************************************** * upgrade.php * ------------------- * begin : Wed Sep 05 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: upgrade.php,v 1.1 2008/12/31 01:44:31 orynider Exp $ * ****************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * [...1904 lines suppressed...] $db->sql_freeresult($posts_result); // Remove common words after the first 2 batches and after every 4th batch after that. if ( $batchcount % 4 == 3 ) { remove_common('global', 4/10); } print " <span class=\"ok\"><b>OK</b></span><br />\n"; } echo "\n<br /><br />\n\n<font size=\"+3\"><b>UPGRADE COMPLETED</b></font><br />\n"; } } print "<br />If the upgrade completed without error you may click <a href=\"./../index.$phpEx\">Here</a> to proceed to the index<br />"; common_footer(); ?> --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:05:31
|
Update of /cvsroot/mxbb/phpbb2mxp/language In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/language Added Files: index.htm Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_english/email In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/language/lang_english/email Added Files: admin_activate.tpl admin_send_email.tpl admin_welcome_activated.tpl admin_welcome_inactive.tpl coppa_welcome_inactive.tpl group_added.tpl group_approved.tpl group_request.tpl index.htm link_add.tpl link_edit.tpl privmsg_notify.tpl profile_send_email.tpl topic_notify.tpl user_activate.tpl user_activate_passwd.tpl user_welcome.tpl user_welcome_inactive.tpl Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: user_activate.tpl --- Subject: Reactivate your account Charset: iso-8859-1 Hello {USERNAME}, Your account on "{SITENAME}" has been deactivated, most likely due to changes made to your profile. In order to reactivate your account you must click on the link below: {U_ACTIVATE} {EMAIL_SIG} --- NEW FILE: profile_send_email.tpl --- Charset: iso-8859-1 Hello {TO_USERNAME}, The following is an email sent to you by {FROM_USERNAME} via your account on {SITENAME}. If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address: {BOARD_EMAIL} Include this full email (particularly the headers). Please note that the reply address to this email has been set to that of {FROM_USERNAME}. Message sent to you follows ~~~~~~~~~~~~~~~~~~~~~~~~~~~ {MESSAGE} --- NEW FILE: privmsg_notify.tpl --- Subject: New Private Message has arrived Charset: iso-8859-1 Hello {USERNAME}, You have received a new private message to your account on "{SITENAME}" and you have requested that you be notified on this event. You can view your new message by clicking on the following link: {U_INBOX} Remember that you can always choose not to be notified of new messages by changing the appropriate setting in your profile. {EMAIL_SIG} --- NEW FILE: admin_send_email.tpl --- Charset: iso-8859-1 The following is an email sent to you by an administrator of "{SITENAME}". If this message is spam, contains abusive or other comments you find offensive please contact the webmaster of the board at the following address: {BOARD_EMAIL} Include this full email (particularly the headers). Message sent to you follows: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~ {MESSAGE} --- NEW FILE: group_request.tpl --- Subject: A request to join your group has been made Charset: iso-8859-1 Dear {GROUP_MODERATOR}, A user has requested to join a group you moderate on {SITENAME}. To approve or deny this request for group membership please visit the following link: {U_GROUPCP} {EMAIL_SIG} --- NEW FILE: admin_welcome_activated.tpl --- Subject: Account Activated Charset: iso-8859-1 Hello {USERNAME}, Your account on "{SITENAME}" has now been activated, you may login using the username and password you received in a previous email. {EMAIL_SIG} --- NEW FILE: user_welcome_inactive.tpl --- Subject: Welcome to {SITENAME} Forums Charset: iso-8859-1 {WELCOME_MSG} Please keep this email for your records. Your account information is as follows: ---------------------------- Username: {USERNAME} Password: {PASSWORD} ---------------------------- Your account is currently inactive. You cannot use it until you visit the following link: {U_ACTIVATE} Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account. Thank you for registering. {EMAIL_SIG} --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> --- NEW FILE: link_add.tpl --- Subject: Link added Charset: iso-8859-1 Dear Site Admin, Link {LINK_URL} added in forum {SITENAME}, please go to Links Management and validate it. If you no longer wish to receive such mail, you can go to Links Configuration Control. --- NEW FILE: user_welcome.tpl --- Subject: Welcome to {SITENAME} Forums Charset: iso-8859-1 {WELCOME_MSG} Please keep this email for your records. Your account information is as follows: ---------------------------- Username: {USERNAME} Password: {PASSWORD} ---------------------------- Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account. Thank you for registering. {EMAIL_SIG} --- NEW FILE: admin_welcome_inactive.tpl --- Subject: Welcome to {SITENAME} Forums Charset: iso-8859-1 {WELCOME_MSG} Please keep this email for your records. Your account information is as follows: ---------------------------- Username: {USERNAME} Password: {PASSWORD} ---------------------------- Your account is currently inactive, the administrator of the board will need to activate it before you can log in. You will receive another email when this has occured. Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account. Thank you for registering. {EMAIL_SIG} --- NEW FILE: topic_notify.tpl --- Subject: Topic Reply Notification - {TOPIC_TITLE} Charset: iso-8859-1 Hello, You are receiving this email because you are watching the topic, "{TOPIC_TITLE}" at {SITENAME}. This topic has received a reply since your last visit. You can use the following link to view the replies made, no more notifications will be sent until you visit the topic. {U_TOPIC} If you no longer wish to watch this topic you can either click the "Stop watching this topic link" found at the bottom of the topic above, or by clicking the following link: {U_STOP_WATCHING_TOPIC} {EMAIL_SIG} --- NEW FILE: coppa_welcome_inactive.tpl --- Subject: Welcome to {SITENAME} Forums Charset: iso-8859-1 {WELCOME_MSG} In compliance with the COPPA act your account is currently inactive. Please print this message out and have your parent or guardian sign and date it. Then fax it to: {FAX_INFO} OR mail it to: {MAIL_INFO} ------------------------------ CUT HERE ------------------------------ Permission to Participate at {SITENAME} Username: {USERNAME} Password: {PASSWORD} Email: {EMAIL_ADDRESS} ICQ Number: {ICQ} AIM Address: {AIM} MSN Messenger: {MSN} Yahoo Messenger: {YIM} Web Site: {WEB_SITE} From: {FROM} Occupation: {OCC} Interests: {INTERESTS} I HAVE REVIEWED THE INFORMATION PROVIDED BY MY CHILD AND HEREBY GRANT PERMISSION TO {SITENAME} TO STORE THIS INFORMATION. I UNDERSTAND THIS INFORMATION CAN BE CHANGED AT ANY TIME BY ENTERING A PASSWORD. I UNDERSTAND THAT I MAY REQUEST FOR THIS INFORMATION TO BE REMOVED FROM {SITENAME} AT ANY TIME. Parent or Guardian (print your name here): _____________________ (sign here): __________________ Date: _______________ ------------------------------ CUT HERE ------------------------------ Once the administrator has received the above form via fax or regular mail your account will be activated. Please do not forget your password as it has been encrypted in our database and we cannot retrieve it for you. However, should you forget your password you can request a new one which will be activated in the same way as this account. Thank you for registering. {EMAIL_SIG} --- NEW FILE: group_added.tpl --- Subject: You have been added to this usergroup Charset: iso-8859-1 Congratulations, You have been added to the "{GROUP_NAME}" group on {SITENAME}. This action was done by the group moderator or the site administrator, contact them for more information. You can view your groups information here: {U_GROUPCP} {EMAIL_SIG} --- NEW FILE: link_edit.tpl --- Subject: Link edited Charset: iso-8859-1 Dear Site Admin, Link {LINK_URL} was edited in forum {SITENAME}, please go to Links Management and validate it. If you no longer wish to receive such mail, you can go to Links Configuration Control. --- NEW FILE: admin_activate.tpl --- Subject: New user account Charset: iso-8859-1 Hello, The account owned by "{USERNAME}" has been deactivated or newly created, you should check the details of this user (if required) and activate it using the following link: {U_ACTIVATE} {EMAIL_SIG} --- NEW FILE: user_activate_passwd.tpl --- Subject: New password activation Charset: iso-8859-1 Hello {USERNAME} You are receiving this email because you have (or someone pretending to be you has) requested a new password be sent for your account on {SITENAME}. If you did not request this email then please ignore it, if you keep receiving it please contact the board administrator. To use the new password you need to activate it. To do this click the link provided below. {U_ACTIVATE} If successful you will be able to login using the following password: Password: {PASSWORD} You can of course change this password yourself via the profile page. If you have any difficulties please contact the board administrator. {EMAIL_SIG} --- NEW FILE: group_approved.tpl --- Subject: Your request has been approved Charset: iso-8859-1 Congratulations, Your request to join the "{GROUP_NAME}" group on {SITENAME} has been approved. Click on the following link to see your group membership. {U_GROUPCP} {EMAIL_SIG} |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:05:09
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_english In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/language/lang_english Added Files: index.htm lang_admin.php lang_bbcode.php lang_faq.php lang_main.php lang_meta.php search_stopwords.txt search_synonyms.txt Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: search_synonyms.txt --- abcense absence abridgement abridgment accomodate accommodate acknowledgment acknowledgement airplane aeroplane allright alright andy andrew anemia anaemia anemic anaemic anesthesia anaesthesia appologize appologise archean archaean archeology archaeology archeozoic archaeozoic armor armour artic arctic attachment attachement attendence attendance barbecue barbeque behavior behaviour biassed biased biol biology buletin bulletin calender calendar canceled cancelled car automobile catalog catalogue cenozoic caenozoic center centre check cheque color colour comission commission comittee committee commitee committee conceed concede creating createing curiculum curriculum defense defence develope develop discription description dulness dullness encyclopedia encyclopaedia enroll enrol esthetic aesthetic etiology aetiology exhorbitant exorbitant exhuberant exuberant existance existence favorite favourite fetus foetus ficticious fictitious flavor flavour flourescent fluorescent foriegn foreign fourty forty gage guage geneology genealogy grammer grammar gray grey guerilla guerrilla gynecology gynaecology harbor harbour heighth height hemaglobin haemaglobin hematin haematin hematite haematite hematology haematology honor honour innoculate inoculate installment instalment irrelevent irrelevant irrevelant irrelevant jeweler jeweller judgement judgment labeled labelled labor labour laborer labourer laborers labourers laboring labouring licence license liesure leisure liquify liquefy maintainance maintenance maintenence maintenance medieval mediaeval meter metre milage mileage millipede millepede miscelaneous miscellaneous morgage mortgage noticable noticeable occurence occurrence offense offence ommision omission ommission omission optimize optimize organise organize pajamas pyjamas paleography palaeography paleolithic palaeolithic paleontological palaeontological paleontologist palaeontologist paleontology palaeontology paleozoic palaeozoic pamplet pamphlet paralell parallel parl parliament parlt parliament pediatric paediatric pediatrician paediatrician pediatrics paediatrics pedodontia paedodontia pedodontics paedodontics personel personnel practise practice program programme psych psychology questionaire questionnaire rarify rarefy reccomend recommend recieve receive resistence resistance restaraunt restaurant savior saviour sep september seperate separate sept september sieze seize summarize summarise summerize summarise superceed supercede superintendant superintendent supersede supercede suprise surprise surprize surprise synchronise synchronize temperary temporary theater theatre threshhold threshold transfered transferred truely truly truley truly useable usable valor valour vigor vigour vol volume whack wack withold withhold yeild yield --- NEW FILE: lang_meta.php --- <?php /** * * @package MX-Publisher Core * @version $Id: lang_meta.php,v 1.1 2008/12/31 01:44:41 orynider Exp $ * @copyright (c) 2002-2008 MX-Publisher Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mx-publisher.com * */ // // This file contains lang entries related to META tags. // // // First level of all language codes are based on the ISO-639 standard // as pointed by the RFC3066 'Tags for the Identification of Languages', // which is referenced by the HTML 4.01 Specification. // // More information can be found here: // http://www.w3.org/TR/html401/struct/dirlang.html#h-8.1.1 // ftp://ftp.rfc-editor.org/in-notes/rfc3066.txt // http://www.loc.gov/standards/iso639-2/langhome.html // // Note: There might be some mistakes in second level codes. // Apologies in advance for any mistake here. Feel free to contact // us if you believe anything must be changed here. Thanks // $lang['mx_meta']['langcode']['ab'] = 'Abkhazian'; $lang['mx_meta']['langcode']['aa'] = 'Afar'; $lang['mx_meta']['langcode']['af'] = 'Afrikaans'; $lang['mx_meta']['langcode']['ak'] = 'Akan'; $lang['mx_meta']['langcode']['sq'] = 'Albanian'; $lang['mx_meta']['langcode']['am'] = 'Amharic'; $lang['mx_meta']['langcode']['ar'] = 'Arabic'; $lang['mx_meta']['langcode']['ar-ae'] = 'Arabic (Arab Emirates)'; $lang['mx_meta']['langcode']['ar-bh'] = 'Arabic (Bahrein)'; $lang['mx_meta']['langcode']['ar-eg'] = 'Arabic (Egypt)'; $lang['mx_meta']['langcode']['ar-iq'] = 'Arabic (Iraq)'; $lang['mx_meta']['langcode']['ar-jo'] = 'Arabic (Jordania)'; $lang['mx_meta']['langcode']['ar-kw'] = 'Arabic (Kuwait)'; $lang['mx_meta']['langcode']['ar-lb'] = 'Arabic (Libanon)'; $lang['mx_meta']['langcode']['ar-ly'] = 'Arabic (Lybia)'; $lang['mx_meta']['langcode']['ar-ma'] = 'Arabic (Morocco)'; $lang['mx_meta']['langcode']['ar-om'] = 'Arabic (Oman)'; $lang['mx_meta']['langcode']['ar-qa'] = 'Arabic (Qtar)'; $lang['mx_meta']['langcode']['ar-sa'] = 'Arabic (Saudi Arabia)'; $lang['mx_meta']['langcode']['ar-sy'] = 'Arabic (Syria)'; $lang['mx_meta']['langcode']['ar-tn'] = 'Arabic (Tunisia)'; $lang['mx_meta']['langcode']['ar-ye'] = 'Arabic (Yemen)'; $lang['mx_meta']['langcode']['an'] = 'Aragonese'; $lang['mx_meta']['langcode']['hy'] = 'Armenian'; $lang['mx_meta']['langcode']['as'] = 'Assamese'; $lang['mx_meta']['langcode']['av'] = 'Avaric'; $lang['mx_meta']['langcode']['ae'] = 'Avestan'; $lang['mx_meta']['langcode']['ay'] = 'Aymara'; $lang['mx_meta']['langcode']['az'] = 'Azerbaijani'; $lang['mx_meta']['langcode']['bm'] = 'Bambara'; $lang['mx_meta']['langcode']['ba'] = 'Bashkir'; $lang['mx_meta']['langcode']['eu'] = 'Basque'; $lang['mx_meta']['langcode']['be'] = 'Belarusian'; $lang['mx_meta']['langcode']['bn'] = 'Bengali'; $lang['mx_meta']['langcode']['bh'] = 'Bihari'; $lang['mx_meta']['langcode']['bi'] = 'Bislama'; $lang['mx_meta']['langcode']['bs'] = 'Bosnian'; $lang['mx_meta']['langcode']['br'] = 'Breton'; $lang['mx_meta']['langcode']['bg'] = 'Bulgarian'; $lang['mx_meta']['langcode']['my'] = 'Burmese'; $lang['mx_meta']['langcode']['ca'] = 'Catalan'; $lang['mx_meta']['langcode']['ch'] = 'Chamorro'; $lang['mx_meta']['langcode']['ce'] = 'Chechen'; $lang['mx_meta']['langcode']['zh'] = 'Chinese'; $lang['mx_meta']['langcode']['zh-hk'] = 'Chinese (Hong-Kong)'; $lang['mx_meta']['langcode']['zh-cn'] = 'Chinese (PRC)'; $lang['mx_meta']['langcode']['zh-sg'] = 'Chinese (Singapour)'; $lang['mx_meta']['langcode']['zh-tw'] = 'Chinese (Taiwan)'; $lang['mx_meta']['langcode']['cu'] = 'Church Slavonic'; $lang['mx_meta']['langcode']['cv'] = 'Chuvash'; $lang['mx_meta']['langcode']['kw'] = 'Cornish'; $lang['mx_meta']['langcode']['co'] = 'Corsican'; $lang['mx_meta']['langcode']['cr'] = 'Cree'; $lang['mx_meta']['langcode']['hr'] = 'Croatian'; $lang['mx_meta']['langcode']['cs'] = 'Czech'; $lang['mx_meta']['langcode']['da'] = 'Danish'; $lang['mx_meta']['langcode']['dv'] = 'Divehi'; $lang['mx_meta']['langcode']['nl'] = 'Dutch'; $lang['mx_meta']['langcode']['nl-be'] = 'Dutch (Belgian)'; $lang['mx_meta']['langcode']['dz'] = 'Dzongkha'; $lang['mx_meta']['langcode']['en'] = 'English'; $lang['mx_meta']['langcode']['en-au'] = 'English (Australia)'; $lang['mx_meta']['langcode']['en-bz'] = 'English (Belize)'; $lang['mx_meta']['langcode']['en-ca'] = 'English (Canada)'; $lang['mx_meta']['langcode']['en-ie'] = 'English (Ireland)'; $lang['mx_meta']['langcode']['en-jm'] = 'English (Jamaican)'; $lang['mx_meta']['langcode']['en-gb'] = 'English (Great Britain)'; $lang['mx_meta']['langcode']['en-nz'] = 'English (New Zeland)'; $lang['mx_meta']['langcode']['en-za'] = 'English (South Africa)'; $lang['mx_meta']['langcode']['eo'] = 'Esperanto'; $lang['mx_meta']['langcode']['et'] = 'Estonian'; $lang['mx_meta']['langcode']['ee'] = 'Ewe'; $lang['mx_meta']['langcode']['fo'] = 'Faroese'; $lang['mx_meta']['langcode']['fj'] = 'Fijian'; $lang['mx_meta']['langcode']['fi'] = 'Finnish'; $lang['mx_meta']['langcode']['fr'] = 'French'; $lang['mx_meta']['langcode']['fr-be'] = 'French (Belgian)'; $lang['mx_meta']['langcode']['fr-ca'] = 'French (Canada)'; $lang['mx_meta']['langcode']['fr-lu'] = 'French (Luxembourg)'; $lang['mx_meta']['langcode']['fr-ch'] = 'French (Switzerland)'; $lang['mx_meta']['langcode']['fy'] = 'Frisian'; $lang['mx_meta']['langcode']['ff'] = 'Fulah'; $lang['mx_meta']['langcode']['gl'] = 'Gallegan'; $lang['mx_meta']['langcode']['lg'] = 'Ganda'; $lang['mx_meta']['langcode']['ka'] = 'Georgian'; $lang['mx_meta']['langcode']['de'] = 'German'; $lang['mx_meta']['langcode']['de-li'] = 'German (Liechtenstein)'; $lang['mx_meta']['langcode']['de-lu'] = 'German (Luxembourg)'; $lang['mx_meta']['langcode']['de-ch'] = 'German (Switzerland)'; $lang['mx_meta']['langcode']['gn'] = 'Guarani'; $lang['mx_meta']['langcode']['gu'] = 'Gujarati'; $lang['mx_meta']['langcode']['ht'] = 'Haitian'; $lang['mx_meta']['langcode']['ha'] = 'Hausa'; $lang['mx_meta']['langcode']['he'] = 'Hebrew'; $lang['mx_meta']['langcode']['hz'] = 'Herero'; $lang['mx_meta']['langcode']['hi'] = 'Hindi'; $lang['mx_meta']['langcode']['ho'] = 'Hiri Motu'; $lang['mx_meta']['langcode']['hu'] = 'Hungarian'; $lang['mx_meta']['langcode']['is'] = 'Icelandic'; $lang['mx_meta']['langcode']['io'] = 'Ido'; $lang['mx_meta']['langcode']['ig'] = 'Igbo'; $lang['mx_meta']['langcode']['id'] = 'Indonesian'; $lang['mx_meta']['langcode']['ie'] = 'Interlingue'; $lang['mx_meta']['langcode']['iu'] = 'Inuktitut'; $lang['mx_meta']['langcode']['ik'] = 'Inupiaq'; $lang['mx_meta']['langcode']['ga'] = 'Irish'; $lang['mx_meta']['langcode']['it'] = 'Italian'; $lang['mx_meta']['langcode']['it-ch'] = 'Italian (Switzerland)'; $lang['mx_meta']['langcode']['ja'] = 'Japanese'; $lang['mx_meta']['langcode']['jv'] = 'Javanese'; $lang['mx_meta']['langcode']['kl'] = 'Kalaallisut'; $lang['mx_meta']['langcode']['kn'] = 'Kannada'; $lang['mx_meta']['langcode']['kr'] = 'Kanuri'; $lang['mx_meta']['langcode']['ks'] = 'Kashmiri'; $lang['mx_meta']['langcode']['kk'] = 'Kazakh'; $lang['mx_meta']['langcode']['km'] = 'Khmer'; $lang['mx_meta']['langcode']['ki'] = 'Kikuyu'; $lang['mx_meta']['langcode']['rw'] = 'Kinyarwanda'; $lang['mx_meta']['langcode']['ky'] = 'Kirghiz'; $lang['mx_meta']['langcode']['kv'] = 'Komi'; $lang['mx_meta']['langcode']['kg'] = 'Kongo'; $lang['mx_meta']['langcode']['ko'] = 'Korean'; $lang['mx_meta']['langcode']['ku'] = 'Kurdish'; $lang['mx_meta']['langcode']['kj'] = 'Kwanyama'; $lang['mx_meta']['langcode']['lo'] = 'Lao'; $lang['mx_meta']['langcode']['la'] = 'Latin'; $lang['mx_meta']['langcode']['lv'] = 'Latvian'; $lang['mx_meta']['langcode']['li'] = 'Limburgish'; $lang['mx_meta']['langcode']['ln'] = 'Lingala'; $lang['mx_meta']['langcode']['lt'] = 'Lithuanian'; $lang['mx_meta']['langcode']['lu'] = 'Luba-Katanga'; $lang['mx_meta']['langcode']['lb'] = 'Luxembourgish'; $lang['mx_meta']['langcode']['mk'] = 'Macedonian'; $lang['mx_meta']['langcode']['mg'] = 'Malagasy'; $lang['mx_meta']['langcode']['ms'] = 'Malay'; $lang['mx_meta']['langcode']['ml'] = 'Malayalam'; $lang['mx_meta']['langcode']['mt'] = 'Maltese'; $lang['mx_meta']['langcode']['gv'] = 'Manx'; $lang['mx_meta']['langcode']['mi'] = 'Maori'; $lang['mx_meta']['langcode']['mr'] = 'Marathi'; $lang['mx_meta']['langcode']['mh'] = 'Marshallese'; $lang['mx_meta']['langcode']['el'] = 'Modern Greek'; $lang['mx_meta']['langcode']['mo'] = 'Moldavian'; $lang['mx_meta']['langcode']['mn'] = 'Mongolian'; $lang['mx_meta']['langcode']['na'] = 'Nauru'; $lang['mx_meta']['langcode']['nv'] = 'Navajo'; $lang['mx_meta']['langcode']['nd'] = 'Ndebele, North'; $lang['mx_meta']['langcode']['ng'] = 'Ndonga'; $lang['mx_meta']['langcode']['ne'] = 'Nepali'; $lang['mx_meta']['langcode']['nb'] = 'Norwegian'; $lang['mx_meta']['langcode']['nn'] = 'Norwegian Nynorsk'; $lang['mx_meta']['langcode']['ny'] = 'Nyanja'; $lang['mx_meta']['langcode']['oc'] = 'Occitan'; $lang['mx_meta']['langcode']['oj'] = 'Ojibwa'; $lang['mx_meta']['langcode']['or'] = 'Oriya'; $lang['mx_meta']['langcode']['om'] = 'Oromo'; $lang['mx_meta']['langcode']['os'] = 'Ossetian'; $lang['mx_meta']['langcode']['pi'] = 'Pali'; $lang['mx_meta']['langcode']['pa'] = 'Panjabi'; $lang['mx_meta']['langcode']['fa'] = 'Persian'; $lang['mx_meta']['langcode']['pl'] = 'Polish'; $lang['mx_meta']['langcode']['pt'] = 'Portuguese'; $lang['mx_meta']['langcode']['pt-br'] = 'Portuguese (Brazil)'; $lang['mx_meta']['langcode']['ps'] = 'Pushto'; $lang['mx_meta']['langcode']['qu'] = 'Quechua'; $lang['mx_meta']['langcode']['rm'] = 'Raeto-Romance'; $lang['mx_meta']['langcode']['ro'] = 'Romanian'; $lang['mx_meta']['langcode']['ro-mo'] = 'Romanian (Moldavia)'; $lang['mx_meta']['langcode']['rn'] = 'Rundi'; $lang['mx_meta']['langcode']['ru'] = 'Russian'; $lang['mx_meta']['langcode']['ru-mo'] = 'Russian (Moldavia)'; $lang['mx_meta']['langcode']['sm'] = 'Samoan'; $lang['mx_meta']['langcode']['sg'] = 'Sango'; $lang['mx_meta']['langcode']['sa'] = 'Sanskrit'; $lang['mx_meta']['langcode']['sc'] = 'Sardinian'; $lang['mx_meta']['langcode']['gd'] = 'Scottish Gaelic'; $lang['mx_meta']['langcode']['sr'] = 'Serbian'; $lang['mx_meta']['langcode']['sn'] = 'Shona'; $lang['mx_meta']['langcode']['ii'] = 'Sichuan Yi'; $lang['mx_meta']['langcode']['sd'] = 'Sindhi'; $lang['mx_meta']['langcode']['si'] = 'Sinhalese'; $lang['mx_meta']['langcode']['sk'] = 'Slovak'; $lang['mx_meta']['langcode']['sl'] = 'Slovenian'; $lang['mx_meta']['langcode']['so'] = 'Somali'; $lang['mx_meta']['langcode']['st'] = 'Sotho'; $lang['mx_meta']['langcode']['nr'] = 'South Ndebele'; $lang['mx_meta']['langcode']['es'] = 'Spanish'; $lang['mx_meta']['langcode']['es-ar'] = 'Spanish (Argentina)'; $lang['mx_meta']['langcode']['es-bo'] = 'Spanish (Bolivia)'; $lang['mx_meta']['langcode']['es-cl'] = 'Spanish (Chile)'; $lang['mx_meta']['langcode']['es-co'] = 'Spanish (Colombia)'; $lang['mx_meta']['langcode']['es-cr'] = 'Spanish (Costa Rica)'; $lang['mx_meta']['langcode']['es-sv'] = 'Spanish (El Salvador)'; $lang['mx_meta']['langcode']['es-ec'] = 'Spanish (Ecuador)'; $lang['mx_meta']['langcode']['es-gt'] = 'Spanish (Guatemala)'; $lang['mx_meta']['langcode']['es-hn'] = 'Spanish (Honduras)'; $lang['mx_meta']['langcode']['es-mx'] = 'Spanish (Mexico)'; $lang['mx_meta']['langcode']['es-ni'] = 'Spanish (Nicaragua)'; $lang['mx_meta']['langcode']['es-pa'] = 'Spanish (Panama)'; $lang['mx_meta']['langcode']['es-py'] = 'Spanish (Paraguay)'; $lang['mx_meta']['langcode']['es-pr'] = 'Spanish (Puerto Rico)'; $lang['mx_meta']['langcode']['es-pe'] = 'Spanish (Peru)'; $lang['mx_meta']['langcode']['es-tt'] = 'Spanish (Trinidad)'; $lang['mx_meta']['langcode']['es-uy'] = 'Spanish (Uruguay)'; $lang['mx_meta']['langcode']['es-ve'] = 'Spanish (Venezuela)'; $lang['mx_meta']['langcode']['su'] = 'Sundanese'; $lang['mx_meta']['langcode']['sw'] = 'Swahili'; $lang['mx_meta']['langcode']['ss'] = 'Swati'; $lang['mx_meta']['langcode']['sv'] = 'Swedish'; $lang['mx_meta']['langcode']['sv-fi'] = 'Swedish (Finland)'; $lang['mx_meta']['langcode']['tl'] = 'Tagalog'; $lang['mx_meta']['langcode']['ty'] = 'Tahitian'; $lang['mx_meta']['langcode']['tg'] = 'Tajik'; $lang['mx_meta']['langcode']['ta'] = 'Tamil'; $lang['mx_meta']['langcode']['tt'] = 'Tatar'; $lang['mx_meta']['langcode']['te'] = 'Telugu'; $lang['mx_meta']['langcode']['th'] = 'Thai'; $lang['mx_meta']['langcode']['bo'] = 'Tibetan'; $lang['mx_meta']['langcode']['ti'] = 'Tigrinya'; $lang['mx_meta']['langcode']['to'] = 'Tonga'; $lang['mx_meta']['langcode']['ts'] = 'Tsonga'; $lang['mx_meta']['langcode']['tn'] = 'Tswana'; $lang['mx_meta']['langcode']['tr'] = 'Turkish'; $lang['mx_meta']['langcode']['tk'] = 'Turkmen'; $lang['mx_meta']['langcode']['tw'] = 'Twi'; $lang['mx_meta']['langcode']['uk'] = 'Ukrainian'; $lang['mx_meta']['langcode']['ur'] = 'Urdu'; $lang['mx_meta']['langcode']['ug'] = 'Uyghur'; $lang['mx_meta']['langcode']['uz'] = 'Uzbek'; $lang['mx_meta']['langcode']['ve'] = 'Venda'; $lang['mx_meta']['langcode']['vi'] = 'Vietnamese'; $lang['mx_meta']['langcode']['vo'] = 'Volapük'; $lang['mx_meta']['langcode']['wa'] = 'Walloon'; $lang['mx_meta']['langcode']['cy'] = 'Welsh'; $lang['mx_meta']['langcode']['wo'] = 'Wolof'; $lang['mx_meta']['langcode']['xh'] = 'Xhosa'; $lang['mx_meta']['langcode']['yi'] = 'Yiddish'; $lang['mx_meta']['langcode']['yo'] = 'Yoruba'; $lang['mx_meta']['langcode']['za'] = 'Zhuang'; $lang['mx_meta']['langcode']['zu'] = 'Zulu'; // // Other related META tag entries follow... // $lang['mx_meta']['rating']['general'] = 'General'; $lang['mx_meta']['rating']['14 years'] = '14 years'; $lang['mx_meta']['rating']['restricted']= 'Restricted'; $lang['mx_meta']['rating']['mature'] = 'Mature'; $lang['mx_meta']['index']['index'] = 'Index'; $lang['mx_meta']['index']['noindex'] = 'No index'; $lang['mx_meta']['follow']['follow'] = 'Follow'; $lang['mx_meta']['follow']['nofollow'] = 'No follow'; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: search_stopwords.txt --- a about after ago all almost along alot also am an and answer any anybody anybodys anywhere are arent around as ask askd at bad be because been before being best better between big btw but by can cant come could couldnt day days days did didnt do does doesnt dont down each etc either else even ever every everybody everybodys everyone far find for found from get go going gone good got gotten had has have havent having her here hers him his home how hows href I Ive if in ini into is isnt it its its just know large less like liked little looking look looked looking lot maybe many me more most much must mustnt my near need never new news no none not nothing now of off often old on once only oops or other our ours out over page please put question questions questioned quote rather really recent said saw say says she see sees should sites small so some something sometime somewhere soon take than true thank that thatd thats the their theirs theres theirs them then there these they theyll theyd theyre this those though through thus time times to too under until untrue up upon use users version very via want was way we well went were werent what when where which who whom whose why wide will with within without wont world worse worst would wrote www yes yet you youd youll your youre yours AFAIK IIRC LOL ROTF ROTFLMAO YMMV --- NEW FILE: lang_faq.php --- <?php /*************************************************************************** * lang_faq.php [english] * ------------------- * begin : Wednesday Oct 3, 2001 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_faq.php,v 1.1 2008/12/31 01:44:41 orynider Exp $ * * ***************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ /* CONTRIBUTORS: 2002-12-15 Philip M. White (pw...@ma...) Fixed many minor grammatical problems. */ // // To add an entry to your FAQ simply add a line to this file in this format: // $faq[] = array("question", "answer"); // If you want to separate a section enter $faq[] = array("--","Block heading goes here if wanted"); // Links will be created automatically // // DO NOT forget the ; at the end of the line. // Do NOT put double quotes (") in your FAQ entries, if you absolutely must then escape them ie. \"something\" // // The FAQ items will appear on the FAQ page in the same order they are listed in this file // $faq[] = array("--","Login and Registration Issues"); $faq[] = array("Why can't I log in?", "Have you registered? Seriously, you must register in order to log in. Have you been banned from the board? (A message will be displayed if you have.) If so, you should contact the webmaster or board administrator to find out why. If you have registered and are not banned and you still cannot log in then check and double-check your username and password. Usually this is the problem; if not, contact the board administrator -- they may have incorrect configuration settings for the board."); $faq[] = array("Why do I need to register at all?", "You may not have to -- it is up to the administrator of the board as to whether you need to register in order to post messages. However, registration will give you access to additional features not available to guest users such as definable avatar images, private messaging, emailing to fellow users, usergroup subscription, etc. It only takes a few minutes to register so it is recommended you do so."); $faq[] = array("Why do I get logged off automatically?", "If you do not check the <i>Log me in automatically</i> box when you log in, the board will only keep you logged in for a preset time. This prevents misuse of your account by anyone else. To stay logged in, check the box during login. This is not recommended if you access the board from a shared computer, e.g. library, internet cafe, university cluster, etc."); $faq[] = array("How do I prevent my username from appearing in the online user listings?", "In your profile you will find an option <i>Hide your online status</i>; if you switch this <i>on</i> you'll only appear to board administrators or to yourself. You will be counted as a hidden user."); $faq[] = array("I've lost my password!", "Don't panic! While your password cannot be retrieved it can be reset. To do this go to the login page and click <u>I've forgotten my password</u>. Follow the instructions and you should be back online in no time."); $faq[] = array("I registered but cannot log in!", "First check that you are entering the correct username and password. If they are okay then one of two things may have happened: if COPPA support is enabled and you clicked the <u>I am under 13 years old</u> link while registering then you will have to follow the instructions you received. If this is not the case then maybe your account need activating. Some boards will require all new registrations be activated, either by yourself or by the administrator before you can log on. When you registered it would have told you whether activation was required. If you were sent an email then follow the instructions; if you did not receive the email then check that your email address is valid. One reason activation is used is to reduce the possibility of <i>rogue</i> users abusing the board anonymously. If you are sure the email address you used is valid then try contacting the board administrator."); $faq[] = array("I registered in the past but cannot log in anymore!", "The most likely reasons for this are: you entered an incorrect username or password (check the email you were sent when you first registered) or the administrator has deleted your account for some reason. If it is the latter case then perhaps you did not post anything? It is usual for boards to periodically remove users who have not posted anything so as to reduce the size of the database. Try registering again and get involved in discussions."); $faq[] = array("--","User Preferences and settings"); $faq[] = array("How do I change my settings?", "All your settings (if you are registered) are stored in the database. To alter them click the <u>Profile</u> link (generally shown at the top of pages but this may not be the case). This will allow you to change all your settings."); $faq[] = array("The times are not correct!", "The times are almost certainly correct; however, what you may be seeing are times displayed in a timezone different from the one you are in. If this is the case, you should change your profile setting for the timezone to match your particular area, e.g. London, Paris, New York, Sydney, etc. Please note that changing the timezone, like most settings, can only be done by registered users. So if you are not registered, this is a good time to do so, if you pardon the pun!"); $faq[] = array("I changed the timezone and the time is still wrong!", "If you are sure you have set the timezone correctly and the time is still different, the most likely answer is daylight savings time (or summer time as it is known in the UK and other places). The board is not designed to handle the changeovers between standard and daylight time so during summer months the time may be an hour different from the real local time."); $faq[] = array("My language is not in the list!", "The most likely reasons for this are either the administrator did not install your language or someone has not translated this board into your language. Try asking the board administrator if they can install the language pack you need or if it does not exist, please feel free to create a new translation. More information can be found at the phpBB Group website (see link at bottom of pages)"); $faq[] = array("How do I show an image below my username?", "There may be two images below a username when viewing posts. The first is an image associated with your rank; generally these take the form of stars or blocks indicating how many posts you have made or your status on the forums. Below this may be a larger image known as an avatar; this is generally unique or personal to each user. It is up to the board administrator to enable avatars and they have a choice over the way in which avatars can be made available. If you are unable to use avatars then this is the decision of the board admin and you should ask them their reasons (we're sure they'll be good!)"); $faq[] = array("How do I change my rank?", "In general you cannot directly change the wording of any rank (ranks appear below your username in topics and on your profile depending on the style used). Most boards use ranks to indicate the number of posts you have made and to identify certain users. For example, moderators and administrators may have a special rank. Please do not abuse the board by posting unnecessarily just to increase your rank -- you will probably find the moderator or administrator will simply lower your post count."); $faq[] = array("When I click the email link for a user it asks me to log in.", "Sorry, but only registered users can send email to people via the built-in email form (if the admin has enabled this feature). This is to prevent malicious use of the email system by anonymous users."); $faq[] = array("--","Posting Issues"); $faq[] = array("How do I post a topic in a forum?", "Easy -- click the relevant button on either the forum or topic screens. You may need to register before you can post a message. The facilities available to you are listed at the bottom of the forum and topic screens (the <i>You can post new topics, You can vote in polls, etc.</i> list)"); $faq[] = array("How do I edit or delete a post?", "Unless you are the board admin or forum moderator you can only edit or delete your own posts. You can edit a post (sometimes for only a limited time after it was made) by clicking the <i>edit</i> button for the relevant post. If someone has already replied to the post, you will find a small piece of text output below the post when you return to the topic that lists the number of times you edited it. This will only appear if no one has replied; it also will not appear if moderators or administrators edit the post (they should leave a message saying what they altered and why). Please note that normal users cannot delete a post once someone has replied."); $faq[] = array("How do I add a signature to my post?", "To add a signature to a post you must first create one; this is done via your profile. Once created you can check the <i>Add Signature</i> box on the posting form to add your signature. You can also add a signature by default to all your posts by checking the appropriate radio box in your profile. You can still prevent a signature being added to individual posts by un-checking the add signature box on the posting form."); $faq[] = array("How do I create a poll?", "Creating a poll is easy -- when you post a new topic (or edit the first post of a topic, if you have permission) you should see a <i>Add Poll</i> form below the main posting box. If you cannot see this then you probably do not have rights to create polls. You should enter a title for the poll and then at least two options -- to set an option type in the poll question and click the <i>Add option</i> button. You can also set a time limit for the poll, 0 being an infinite amount. There will be a limit to the number of options you can list, which is set by the board administrator"); $faq[] = array("How do I edit or delete a poll?", "As with posts, polls can only be edited by the original poster, a moderator, or board administrator. To edit a poll, click the first post in the topic, which always has the poll associated with it. If no one has cast a vote then users can delete the poll or edit any poll option. However, if people have already placed votes only moderators or administrators can edit or delete it; this is to prevent people rigging polls by changing options mid-way through a poll"); $faq[] = array("Why can't I access a forum?", "Some forums may be limited to certain users or groups. To view, read, post, etc. you may need special authorization which only the forum moderator and board administrator can grant, so you should contact them."); $faq[] = array("Why can't I vote in polls?", "Only registered users can vote in polls so as to prevent spoofing of results. If you have registered and still cannot vote then you probably do not have appropriate access rights."); $faq[] = array("--","Formatting and Topic Types"); $faq[] = array("What is BBCode?", "BBCode is a special implementation of HTML. Whether you can use BBCode is determined by the administrator. You can also disable it on a per post basis from the posting form. BBCode itself is similar in style to HTML: tags are enclosed in square braces [ and ] rather than < and > and it offers greater control over what and how something is displayed. For more information on BBCode see the guide which can be accessed from the posting page."); $faq[] = array("Can I use HTML?", "That depends on whether the administrator allows you to; they have complete control over it. If you are allowed to use it, you will probably find only certain tags work. This is a <i>safety</i> feature to prevent people from abusing the board by using tags which may destroy the layout or cause other problems. If HTML is enabled you can disable it on a per post basis from the posting form."); $faq[] = array("What are Smileys?", "Smileys, or Emoticons, are small graphical images which can be used to express some feeling using a short code, e.g. :) means happy, :( means sad. The full list of emoticons can be seen via the posting form. Try not to overuse smileys, though, as they can quickly render a post unreadable and a moderator may decide to edit them out or remove the post altogether."); $faq[] = array("Can I post Images?", "Images can indeed be shown in your posts. However, there is no facility at present for uploading images directly to this board. Therefore you must link to an image stored on a publicly accessible web server, e.g. http://www.some-unknown-place.net/my-picture.gif. You cannot link to pictures stored on your own PC (unless it is a publicly accessible server) nor to images stored behind authentication mechanisms such as Hotmail or Yahoo mailboxes, password-protected sites, etc. To display the image use either the BBCode [img] tag or appropriate HTML (if allowed)."); $faq[] = array("What are Announcements?", "Announcements often contain important information and you should read them as soon as possible. Announcements appear at the top of every page in the forum to which they are posted. Whether or not you can post an announcement depends on the permissions required, which are set by the administrator."); $faq[] = array("What are Sticky topics?", "Sticky topics appear below any announcements in viewforum and only on the first page. They are often quite important so you should read them where possible. As with announcements the board administrator determines what permissions are required to post sticky topics in each forum."); $faq[] = array("What are Locked topics?", "Locked topics are set this way by either the forum moderator or board administrator. You cannot reply to locked topics and any poll contained inside is automatically ended. Topics may be locked for many reasons."); $faq[] = array("--","User Levels and Groups"); $faq[] = array("What are Administrators?", "Administrators are people assigned the highest level of control over the entire board. These people can control all facets of board operation which include setting permissions, banning users, creating usergroups or moderators, etc. They also have full moderator capabilities in all the forums."); $faq[] = array("What are Moderators?", "Moderators are individuals (or groups of individuals) whose job it is to look after the running of the forums from day to day. They have the power to edit or delete posts and lock, unlock, move, delete and split topics in the forum they moderate. Generally moderators are there to prevent people going <i>off-topic</i> or posting abusive or offensive material."); $faq[] = array("What are Usergroups?", "Usergroups are a way in which board administrators can group users. Each user can belong to several groups (this differs from most other boards) and each group can be assigned individual access rights. This makes it easy for administrators to set up several users as moderators of a forum, or to give them access to a private forum, etc."); $faq[] = array("How do I join a Usergroup?", "To join a usergroup click the usergroup link on the page header (dependent on template design) and you can then view all usergroups. Not all groups are <i>open access</i> -- some are closed and some may even have hidden memberships. If the board is open then you can request to join it by clicking the appropriate button. The user group moderator will need to approve your request; they may ask why you want to join the group. Please do not pester a group moderator if they turn your request down -- they will have their reasons."); $faq[] = array("How do I become a Usergroup Moderator?", "Usergroups are initially created by the board administrator who also assigns a board moderator. If you are interested in creating a usergroup then your first point of contact should be the administrator, so try dropping them a private message."); $faq[] = array("--","Private Messaging"); $faq[] = array("I cannot send private messages!", "There are three reasons for this; you are not registered and/or not logged on, the board administrator has disabled private messaging for the entire board, or the board administrator has prevented you individually from sending messages. If it is the latter case you should try asking the administrator why."); $faq[] = array("I keep getting unwanted private messages!", "In the future we will be adding an ignore list to the private messaging system. For now, though, if you keep receiving unwanted private messages from someone, inform the board administrator -- they have the power to prevent a user from sending private messages at all."); $faq[] = array("I have received a spamming or abusive email from someone on this board!", "We are sorry to hear that. The email form feature of this board includes safeguards to try to track users who send such posts. You should email the board administrator with a full copy of the email you received and it is very important this include the headers (these list details of the user that sent the email). They can then take action."); // // These entries should remain in all languages and for all modifications // $faq[] = array("--","phpBB 2 Issues"); $faq[] = array("Who wrote this bulletin board?", "This software (in its unmodified form) is produced, released and is copyrighted <a href=\"http://www.phpbb.com/\" target=\"_blank\">phpBB Group</a>. It is made available under the GNU General Public License and may be freely distributed; see link for more details"); $faq[] = array("Why isn't X feature available?", "This software was written by and licensed through phpBB Group. If you believe a feature needs to be added then please visit the phpbb.com website and see what the phpBB Group has to say. Please do not post feature requests to the board at phpbb.com, as the Group uses sourceforge to handle tasking of new features. Please read through the forums and see what, if any, our position may already be for features and then follow the procedure given there."); $faq[] = array("Whom do I contact about abusive and/or legal matters related to this board?", "You should contact the administrator of this board. If you cannot find who that is, you should first contact one of the forum moderators and ask them who you should in turn contact. If still get no response you should contact the owner of the domain (do a whois lookup) or, if this is running on a free service (e.g. yahoo, free.fr, f2s.com, etc.), the management or abuse department of that service. Please note that phpBB Group has absolutely no control and cannot in any way be held liable over how, where or by whom this board is used. It is absolutely pointless contacting phpBB Group in relation to any legal (cease and desist, liable, defamatory comment, etc.) matter not directly related to the phpbb.com website or the discrete software of phpBB itself. If you do email phpBB Group about any third party use of this software then you should expect a terse response or no response at all."); // // This ends the FAQ entries // ?> --- NEW FILE: lang_main.php --- <?php /*************************************************************************** * lang_main.php [English] * ------------------- * begin : Sat Dec 16 2000 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_main.php,v 1.1 2008/12/31 01:44:41 orynider Exp $ * ****************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * [...1008 lines suppressed...] $lang['BBCode_box_hidden'] = 'Hidden'; $lang['BBcode_box_view'] = 'Click to View Content'; $lang['BBcode_box_hide'] = 'Click to Hide Content'; $lang['bbcode_help']['GVideo'] = 'GVideo: [GVideo]GVideo URL[/GVideo]'; $lang['GVideo_link'] = 'Link'; $lang['bbcode_help']['youtube'] = 'YouTube: [youtube]YouTube URL[/youtube]'; $lang['youtube_link'] = 'Link'; //==== //==== End Advanced BBCode Box MOD ==================================== | //===================================================================== | // Begin Simple Subforums MOD $lang['Subforums'] = 'Subforums'; // End Simple Subforums MOD // // That's all, Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /*************************************************************************** * lang_admin.php [English] * ------------------- * begin : Sat Dec 16 2000 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_admin.php,v 1.1 2008/12/31 01:44:41 orynider Exp $ * ****************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ /* CONTRIBUTORS 2002-12-15 Philip M. White (pw...@ma...) Fixed many minor grammatical mistakes */ // // Format is same as lang_main // // // Modules, this replaces the keys used // in the modules[][] arrays in each module file // $lang['General'] = 'General Admin'; $lang['Users'] = 'User Admin'; $lang['Groups'] = 'Group Admin'; $lang['Forums'] = 'Forum Admin'; $lang['Styles'] = 'Styles Admin'; $lang['Configuration'] = 'Configuration'; $lang['Permissions'] = 'Permissions'; $lang['Manage'] = 'Management'; $lang['Disallow'] = 'Disallow names'; $lang['Prune'] = 'Pruning'; $lang['Mass_Email'] = 'Mass Email'; $lang['Ranks'] = 'Ranks'; $lang['Smilies'] = 'Smilies'; $lang['Ban_Management'] = 'Ban Control'; $lang['Word_Censor'] = 'Word Censors'; $lang['Export'] = 'Export'; $lang['Create_new'] = 'Create'; $lang['Add_new'] = 'Add'; $lang['Backup_DB'] = 'Backup Database'; $lang['Restore_DB'] = 'Restore Database'; // // Index // $lang['Admin'] = 'Administration'; $lang['Not_admin'] = 'You are not authorised to administer this board'; $lang['Welcome_phpBB'] = 'Welcome to phpBB'; $lang['Admin_intro'] = 'Thank you for choosing phpBB as your forum solution. This screen will give you a quick overview of all the various statistics of your board. You can get back to this page by clicking on the <u>Admin Index</u> link in the left pane. To return to the index of your board, click the phpBB logo also in the left pane. The other links on the left hand side of this screen will allow you to control every aspect of your forum experience. Each screen will have instructions on how to use the tools.'; $lang['Main_index'] = 'Forum Index'; $lang['Forum_stats'] = 'Forum Statistics'; $lang['Admin_Index'] = 'Admin Index'; $lang['Preview_forum'] = 'Preview Forum'; $lang['Click_return_admin_index'] = 'Click %sHere%s to return to the Admin Index'; $lang['Statistic'] = 'Statistic'; $lang['Value'] = 'Value'; $lang['Number_posts'] = 'Number of posts'; $lang['Posts_per_day'] = 'Posts per day'; $lang['Number_topics'] = 'Number of topics'; $lang['Topics_per_day'] = 'Topics per day'; $lang['Number_users'] = 'Number of users'; $lang['Users_per_day'] = 'Users per day'; $lang['Board_started'] = 'Board started'; $lang['Avatar_dir_size'] = 'Avatar directory size'; $lang['Database_size'] = 'Database size'; $lang['Gzip_compression'] ='Gzip compression'; $lang['Not_available'] = 'Not available'; $lang['ON'] = 'ON'; // This is for GZip compression $lang['OFF'] = 'OFF'; // // DB Utils // $lang['Database_Utilities'] = 'Database Utilities'; $lang['Restore'] = 'Restore'; $lang['Backup'] = 'Backup'; $lang['Restore_explain'] = 'This will perform a full restore of all phpBB tables from a saved file. If your server supports it, you may upload a gzip-compressed text file and it will automatically be decompressed. <b>WARNING</b>: This will overwrite any existing data. The restore may take a long time to process, so please do not move from this page until it is complete.'; $lang['Backup_explain'] = 'Here you can back up all your phpBB-related data. If you have any additional custom tables in the same database with phpBB that you would like to back up as well, please enter their names, separated by commas, in the Additional Tables textbox below. If your server supports it you may also gzip-compress the file to reduce its size before download.'; $lang['Backup_options'] = 'Backup options'; $lang['Start_backup'] = 'Start Backup'; $lang['Full_backup'] = 'Full backup'; $lang['Structure_backup'] = 'Structure-Only backup'; $lang['Data_backup'] = 'Data only backup'; $lang['Additional_tables'] = 'Additional tables'; $lang['Gzip_compress'] = 'Gzip compress file'; $lang['Select_file'] = 'Select a file'; $lang['Start_Restore'] = 'Start Restore'; $lang['Restore_success'] = 'The Database has been successfully restored.<br /><br />Your board should be back to the state it was when the backup was made.'; $lang['Backup_download'] = 'Your download will start shortly; please wait until it begins.'; $lang['Backups_not_supported'] = 'Sorry, but database backups are not currently supported for your database system.'; $lang['Restore_Error_uploading'] = 'Error in uploading the backup file'; $lang['Restore_Error_filename'] = 'Filename problem; please try an alternative file'; $lang['Restore_Error_decompress'] = 'Cannot decompress a gzip file; please upload a plain text version'; $lang['Restore_Error_no_file'] = 'No file was uploaded'; // // Auth pages // $lang['Select_a_User'] = 'Select a User'; $lang['Select_a_Group'] = 'Select a Group'; $lang['Select_a_Forum'] = 'Select a Forum'; $lang['Auth_Control_User'] = 'User Permissions Control'; $lang['Auth_Control_Group'] = 'Group Permissions Control'; $lang['Auth_Control_Forum'] = 'Forum Permissions Control'; $lang['Look_up_User'] = 'Look up User'; $lang['Look_up_Group'] = 'Look up Group'; $lang['Look_up_Forum'] = 'Look up Forum'; $lang['Group_auth_explain'] = 'Here you can alter the permissions and moderator status assigned to each user group. Do not forget when changing group permissions that individual user permissions may still allow the user entry to forums, etc. You will be warned if this is the case.'; $lang['User_auth_explain'] = 'Here you can alter the permissions and moderator status assigned to each individual user. Do not forget when changing user permissions that group permissions may still allow the user entry to forums, etc. You will be warned if this is the case.'; $lang['Forum_auth_explain'] = 'Here you can alter the authorisation levels of each forum. You will have both a simple and advanced method for doing this, where advanced offers greater control of each forum operation. Remember that changing the permission level of forums will affect which users can carry out the various operations within them.'; $lang['Simple_mode'] = 'Simple Mode'; $lang['Advanced_mode'] = 'Advanced Mode'; $lang['Moderator_status'] = 'Moderator status'; $lang['Allowed_Access'] = 'Allowed Access'; $lang['Disallowed_Access'] = 'Disallowed Access'; $lang['Is_Moderator'] = 'Is Moderator'; $lang['Not_Moderator'] = 'Not Moderator'; $lang['Conflict_warning'] = 'Authorisation Conflict Warning'; $lang['Conflict_access_userauth'] = 'This user still has access rights to this forum via group membership. You may want to alter the group permissions or remove this user the group to fully prevent them having access rights. The groups granting rights (and the forums involved) are noted below.'; $lang['Conflict_mod_userauth'] = 'This user still has moderator rights to this forum via group membership. You may want to alter the group permissions or remove this user the group to fully prevent them having moderator rights. The groups granting rights (and the forums involved) are noted below.'; $lang['Conflict_access_groupauth'] = 'The following user (or users) still have access rights to this forum via their user permission settings. You may want to alter the user permissions to fully prevent them having access rights. The users granted rights (and the forums involved) are noted below.'; $lang['Conflict_mod_groupauth'] = 'The following user (or users) still have moderator rights to this forum via their user permissions settings. You may want to alter the user permissions to fully prevent them having moderator rights. The users granted rights (and the forums involved) are noted below.'; $lang['Public'] = 'Public'; $lang['Private'] = 'Private'; $lang['Registered'] = 'Registered'; $lang['Administrators'] = 'Administrators'; $lang['Hidden'] = 'Hidden'; // These are displayed in the drop down boxes for advanced // mode forum auth, try and keep them short! $lang['Forum_ALL'] = 'ALL'; $lang['Forum_REG'] = 'REG'; $lang['Forum_PRIVATE'] = 'PRIVATE'; $lang['Forum_MOD'] = 'MOD'; $lang['Forum_ADMIN'] = 'ADMIN'; $lang['View'] = 'View'; $lang['Read'] = 'Read'; $lang['Post'] = 'Post'; $lang['Reply'] = 'Reply'; $lang['Edit'] = 'Edit'; $lang['Delete'] = 'Delete'; $lang['Sticky'] = 'Sticky'; $lang['Announce'] = 'Announce'; $lang['Vote'] = 'Vote'; $lang['Pollcreate'] = 'Poll create'; $lang['Permissions'] = 'Permissions'; $lang['Simple_Permission'] = 'Simple Permissions'; $lang['User_Level'] = 'User Level'; $lang['Auth_User'] = 'User'; $lang['Auth_Admin'] = 'Administrator'; $lang['Group_memberships'] = 'Usergroup memberships'; $lang['Usergroup_members'] = 'This group has the following members'; $lang['Forum_auth_updated'] = 'Forum permissions updated'; $lang['User_auth_updated'] = 'User permissions updated'; $lang['Group_auth_updated'] = 'Group permissions updated'; $lang['Auth_updated'] = 'Permissions have been updated'; $lang['Click_return_userauth'] = 'Click %sHere%s to return to User Permissions'; $lang['Click_return_groupauth'] = 'Click %sHere%s to return to Group Permissions'; $lang['Click_return_forumauth'] = 'Click %sHere%s to return to Forum Permissions'; // // Banning // $lang['Ban_control'] = 'Ban Control'; $lang['Ban_explain'] = 'Here you can control the banning of users. You can achieve this by banning either or both of a specific user or an individual or range of IP addresses or hostnames. These methods prevent a user from even reaching the index page of your board. To prevent a user from registering under a different username you can also specify a banned email address. Please note that banning an email address alone will not prevent that user from being able to log on or post to your board. You should use one of the first two methods to achieve this.'; $lang['Ban_explain_warn'] = 'Please note that entering a range of IP addresses results in all the addresses between the start and end being added to the banlist. Attempts will be made to minimise the number of addresses added to the database by introducing wildcards automatically where appropriate. If you really must enter a range, try to keep it small or better yet state specific addresses.'; $lang['Select_username'] = 'Select a Username'; $lang['Select_ip'] = 'Select an IP address'; $lang['Select_email'] = 'Select an Email address'; $lang['Ban_username'] = 'Ban one or more specific users'; $lang['Ban_username_explain'] = 'You can ban multiple users in one go using the appropriate combination of mouse and keyboard for your computer and browser'; $lang['Ban_IP'] = 'Ban one or more IP addresses or hostnames'; $lang['IP_hostname'] = 'IP addresses or hostnames'; $lang['Ban_IP_explain'] = 'To specify several different IP addresses or hostnames separate them with commas. To specify a range of IP addresses, separate the start and end with a hyphen (-); to specify a wildcard, use an asterisk (*).'; $lang['Ban_email'] = 'Ban one or more email addresses'; $lang['Ban_email_explain'] = 'To specify more than one email address, separate them with commas. To specify a wildcard username, use * like *@hotmail.com'; $lang['Unban_username'] = 'Un-ban one more specific users'; $lang['Unban_username_explain'] = 'You can unban multiple users in one go using the appropriate combination of mouse and keyboard for your computer and browser'; $lang['Unban_IP'] = 'Un-ban one or more IP addresses'; $lang['Unban_IP_explain'] = 'You can unban multiple IP addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser'; $lang['Unban_email'] = 'Un-ban one or more email addresses'; $lang['Unban_email_explain'] = 'You can unban multiple email addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser'; $lang['No_banned_users'] = 'No banned usernames'; $lang['No_banned_ip'] = 'No banned IP addresses'; $lang['No_banned_email'] = 'No banned email addresses'; $lang['Ban_update_sucessful'] = 'The banlist has been updated successfully'; $lang['Click_return_banadmin'] = 'Click %sHere%s to return to Ban Control'; // // Configuration // $lang['General_Config'] = 'General Configuration'; $lang['Config_explain'] = 'The form below will allow you to customize all the general board options. For User and Forum configurations use the related links on the left hand side.'; $lang['Click_return_config'] = 'Click %sHere%s to return to General Configuration'; $lang['General_settings'] = 'General Board Settings'; $lang['Server_name'] = 'Domain Name'; $lang['Server_name_explain'] = 'The domain name from which this board runs'; $lang['Script_path'] = 'Script path'; $lang['Script_path_explain'] = 'The path where phpBB2 is located relative to the domain name'; $lang['Server_port'] = 'Server Port'; $lang['Server_port_explain'] = 'The port your server is running on, usually 80. Only change if different'; $lang['Site_name'] = 'Site name'; $lang['Site_desc'] = 'Site description'; $lang['Board_disable'] = 'Disable board'; $lang['Board_disable_explain'] = 'This will make the board unavailable to users. Administrators are able to access the Administration Panel while the board is disabled.'; $lang['Acct_activation'] = 'Enable account activation'; $lang['Acc_None'] = 'None'; // These three entries are the type of activation $lang['Acc_User'] = 'User'; $lang['Acc_Admin'] = 'Admin'; $lang['Abilities_settings'] = 'User and Forum Basic Settings'; $lang['Max_poll_options'] = 'Max number of poll options'; $lang['Flood_Interval'] = 'Flood Interval'; $lang['Flood_Interval_explain'] = 'Number of seconds a user must wait between posts'; $lang['Board_email_form'] = 'User email via board'; $lang['Board_email_form_explain'] = 'Users send email to each other via this board'; $lang['Topics_per_page'] = 'Topics Per Page'; $lang['Posts_per_page'] = 'Posts Per Page'; $lang['Hot_threshold'] = 'Posts for Popular Threshold'; $lang['Default_style'] = 'Default Style'; $lang['Override_style'] = 'Override user style'; $lang['Override_style_explain'] = 'Replaces users style with the default'; $lang['Default_language'] = 'Default Language'; $lang['Date_format'] = 'Date Format'; $lang['System_timezone'] = 'System Timezone'; $lang['Enable_gzip'] = 'Enable GZip Compression'; $lang['Enable_prune'] = 'Enable Forum Pruning'; $lang['Allow_HTML'] = 'Allow HTML'; $lang['Allow_BBCode'] = 'Allow BBCode'; $lang['Allowed_tags'] = 'Allowed HTML tags'; $lang['Allowed_tags_explain'] = 'Separate tags with commas'; $lang['Allow_smilies'] = 'Allow Smilies'; $lang['Smilies_path'] = 'Smilies Storage Path'; $lang['Smilies_path_explain'] = 'Path under your phpBB root dir, e.g. images/smiles'; $lang['Allow_sig'] = 'Allow Signatures'; $lang['Max_sig_length'] = 'Maximum signature length'; $lang['Max_sig_length_explain'] = 'Maximum number of characters in user signatures'; $lang['Allow_name_change'] = 'Allow Username changes'; $lang['Avatar_settings'] = 'Avatar Settings'; $lang['Allow_local'] = 'Enable gallery avatars'; $lang['Allow_remote'] = 'Enable remote avatars'; $lang['Allow_remote_explain'] = 'Avatars linked to from another website'; $lang['Allow_upload'] = 'Enable avatar uploading'; $lang['Max_filesize'] = 'Maximum Avatar File Size'; $lang['Max_filesize_explain'] = 'For uploaded avatar files'; $lang['Max_avatar_size'] = 'Maximum Avatar Dimensions'; $lang['Max_avatar_size_explain'] = '(Height x Width in pixels)'; $lang['Avatar_storage_path'] = 'Avatar Storage Path'; $lang['Avatar_storage_path_explain'] = 'Path under your phpBB root dir, e.g. images/avatars'; $lang['Avatar_gallery_path'] = 'Avatar Gallery Path'; $lang['Avatar_gallery_path_explain'] = 'Path under your phpBB root dir for pre-loaded images, e.g. images/avatars/gallery'; $lang['COPPA_settings'] = 'COPPA Settings'; $lang['COPPA_fax'] = 'COPPA Fax Number'; $lang['COPPA_mail'] = 'COPPA Mailing Address'; $lang['COPPA_mail_explain'] = 'This is the mailing address to which parents will send COPPA registration forms'; $lang['Email_settings'] = 'Email Settings'; $lang['Admin_email'] = 'Admin Email Address'; $lang['Email_sig'] = 'Email Signature'; $lang['Email_sig_explain'] = 'This text will be attached to all emails the board sends'; $lang['Use_SMTP'] = 'Use SMTP Server for email'; $lang['Use_SMTP_explain'] = 'Say yes if you want or have to send email via a named server instead of the local mail function'; $lang['SMTP_server'] = 'SMTP Server Address'; $lang['SMTP_username'] = 'SMTP Username'; $lang['SMTP_username_explain'] = 'Only enter a username if your SMTP server requires it'; $lang['SMTP_password'] = 'SMTP Password'; $lang['SMTP_password_explain'] = 'Only enter a password if your SMTP server requires it'; $lang['Disable_privmsg'] = 'Private Messaging'; $lang['Inbox_limits'] = 'Max posts in Inbox'; $lang['Sentbox_limits'] = 'Max posts in Sentbox'; $lang['Savebox_limits'] = 'Max posts in Savebox'; $lang['Cookie_settings'] = 'Cookie/session settings'; $lang['Cookie_settings_explain'] = 'These details define how cookies/sessions are sent to your users\' browsers. In most cases the default values for the cookie settings should be sufficient, but if you need to change them do so with care -- incorrect settings can prevent users from logging in.'; $lang['Cookie_settings_explain_mxp'] = 'Note: If you are using a phpBB backend, these internal mode settings are disabled.'; $lang['Cookie_domain'] = 'Cookie domain'; $lang['Cookie_name'] = 'Cookie name'; $lang['Cookie_path'] = 'Cookie path'; $lang['Cookie_secure'] = 'Cookie secure'; $lang['Cookie_secure_explain'] = 'If your server is running via SSL, set this to enabled, else leave as disabled'; $lang['Session_length'] = 'Session length [ seconds ]'; // Visual Confirmation $lang['Visual_confirm'] = 'Enable Visual Confirmation'; $lang['Visual_confirm_explain'] = 'Requires users enter a code defined by an image when registering.'; // Autologin Keys - added 2.0.18 $lang['Allow_autologin'] = 'Allow automatic logins'; $lang['Allow_autologin_explain'] = 'Determines whether users are allowed to select to be automatically logged in when visiting the forum'; $lang['Autologin_time'] = 'Automatic login key expiry'; $lang['Autologin_time_explain'] = 'How long a autologin key is valid for in days if the user does not visit the board. Set to zero to disable expiry.'; // Search Flood Control - added 2.0.20 $lang['Search_Flood_Interval'] = 'Search Flood Interval'; $lang['Search_Flood_Interval_explain'] = 'Number of seconds a user must wait between search requests'; // // Forum Management // $lang['Forum_admin'] = 'Forum Administration'; $lang['Forum_admin_explain'] = 'From this panel you can add, delete, edit, re-order and re-synchronise categories and forums'; $lang['Edit_forum'] = 'Edit forum'; $lang['Create_forum'] = 'Create new forum'; $lang['Create_category'] = 'Create new category'; $lang['Remove'] = 'Remove'; $lang['Action'] = 'Action'; $lang['Update_order'] = 'Update Order'; $lang['Config_updated'] = 'Forum Configuration Updated Successfully'; $lang['Edit'] = 'Edit'; $lang['Delete'] = 'Delete'; $lang['Move_up'] = 'Move up'; $lang['Move_down'] = 'Move down'; $lang['Resync'] = 'Resync'; $lang['No_mode'] = 'No mode was set'; $lang['Forum_edit_delete_explain'] = 'The form below will allow you to customize all the general board options. For User and Forum configurations use the related links on the left hand side'; $lang['Move_contents'] = 'Move all contents'; $lang['Forum_delete'] = 'Delete Forum'; $lang['Forum_delete_explain'] = 'The form below will allow you to delete a forum (or category) and decide where you want to put all topics (or forums) it contained.'; $lang['Status_locked'] = 'Locked'; $lang['Status_unlocked'] = 'Unlocked'; $lang['Forum_settings'] = 'General Forum Settings'; $lang['Forum_name'] = 'Forum name'; $lang['Forum_desc'] = 'Description'; $lang['Forum_status'] = 'Forum status'; $lang['Forum_pruning'] = 'Auto-pruning'; $lang['prune_freq'] = 'Check for topic age every'; $lang['prune_days'] = 'Remove topics that have not been posted to in'; $lang['Set_prune_data'] = 'You have... [truncated message content] |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:04:59
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_greek In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/language/lang_greek Added Files: lang_admin.php lang_main.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: lang_main.php --- <?php /*************************************************************************** * lang_main.php [Greek-Hellenic] * ------------------- * begin : Sat Dec 16 2000 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_main.php,v 1.1 2008/12/31 01:44:41 orynider Exp $ * ****************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * [...989 lines suppressed...] // $lang['Information'] = 'ΠληÏοÏοÏίεÏ'; $lang['Critical_Information'] = 'ÎÏίÏÎ¹Î¼ÎµÏ ÏληÏοÏοÏίεÏ'; $lang['General_Error'] = 'ÎÎµÎ½Î¹ÎºÏ ÎάθοÏ'; $lang['Critical_Error'] = 'ÎÏίÏιμο ÎάθοÏ'; $lang['An_error_occured'] = 'ΠαÏÎ¿Ï ÏιάÏθηκε ÎάθοÏ'; $lang['A_critical_error'] = 'ΠαÏÎ¿Ï ÏιάÏθηκε ÎÏίÏιμο ÎάθοÏ'; $lang['Admin_reauthenticate'] = 'Îια να διαÏειÏιÏÏείÏε Ïον Ïίνακα ÏÏÎÏει να ξαναειÏάγεÏε Ïον κÏÎ´Î¹ÎºÏ ÏαÏ.'; $lang['Login_attempts_exceeded'] = 'ΠμÎγιÏÏÎ¿Ï Î±ÏιθμÏÏ %s ÏÏοÏÏαθειÏν ειÏαγÏÎ³Î®Ï ÏÎ±Ï ÎÏÏαÏε. Îεν εÏιÏÏÎÏεÏαι η ειÏαγÏγή ÏÎ±Ï Î³Î¹Î± Ïα εÏÏμενα %s λεÏÏά.'; $lang['Please_remove_install_contrib'] = 'ΠαÏÎ±ÎºÎ±Î»Ï Î²ÎµÎ²Î±Î¹ÏθείÏε ÏÏι διαγÏάÏαÏε ÏÎ¿Ï Ï ÏακÎÎ»Î¿Ï Ï install/ και contrib/ '; $lang['Session_invalid'] = 'ÎÎ¬Î¸Î¿Ï Î»ÎµÎ¹ÏÎ¿Ï Ïγία. ΠαÏÎ±ÎºÎ±Î»Ï Î¾Î±Î½Î±ÏÏ Î¼ÏληÏÏÏÏ Îµ Ïην ÏÏÏμα.'; // // That's all, Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /*************************************************************************** * lang_admin.php [Greek-Hellenic] * ------------------- * begin : Sat Dec 16 2000 * copyright : (C) 2001 The phpBB Group * email : su...@ph... * * $Id: lang_admin.php,v 1.1 2008/12/31 01:44:41 orynider Exp $ * ****************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ /*************************************************************************** *CONTRIBUTOR *2006-03-22 by Alex Xenias (a_x...@ya... http://www.ikaria.gr) *Added new lines, - fixed many grammar problems for version 2.xx ***************************************************************************/ // // Format is same as lang_main // // // Modules, this replaces the keys used // in the modules[][] arrays in each module file // $lang['General'] = "Îενική ÎιαÏείÏιÏη"; $lang['Users'] = "ÎιαÏείÏιÏη ÎελÏν"; $lang['Groups'] = "ÎιαÏείÏιÏη ÎμάδÏν"; $lang['Forums'] = "ÎιαÏείÏιÏη Î. Î£Ï Î¶Î·ÏήÏεÏν"; $lang['Styles'] = "ÎιαÏείÏιÏη ÎμÏανίÏεÏν"; $lang['Configuration'] = "Î¡Ï Î¸Î¼Î¯ÏειÏ"; $lang['Permissions'] = "'AδειεÏ"; $lang['Manage'] = "ÎιαÏείÏιÏη"; $lang['Disallow'] = "ÎÏαγÏÏÎµÏ Ïη ονομάÏÏν"; $lang['Prune'] = "ÎκκαθάÏιÏη"; $lang['Mass_Email'] = "ÎÎ±Î¶Î¹ÎºÏ Email"; $lang['Ranks'] = "Îαθμοί"; $lang['Smilies'] = "ΦαÏÏοÏλεÏ"; $lang['Ban_Management'] = "ÎλεγÏÎ¿Ï ÎÏοκλειÏμÏν"; $lang['Word_Censor'] = "ÎνίÏÎ½ÎµÏ Ïη ÎÎξεÏν"; $lang['Export'] = "ÎξαγÏγή"; $lang['Create_new'] = "ÎÎ·Î¼Î¹Î¿Ï Ïγία"; $lang['Add_new'] = "Î ÏοÏθήκη"; $lang['Backup_DB'] = "ÎνÏίγÏαÏο ÎÏÏÎ±Î»ÎµÎ¯Î±Ï ÎάÏηÏ"; $lang['Restore_DB'] = "ÎνάκÏηÏη ÎάÏηÏ"; // // Index // $lang['Admin'] = "ÎιαÏείÏιÏη"; $lang['Not_admin'] = "Îεν ÎÏεÏε Ïα δικαιÏμαÏα διαÏείÏιÏÎ·Ï ÏÎ¿Ï ÏÏ ÏÏήμαÏοÏ"; $lang['Welcome_phpBB'] = "ÎαλÏÏ ÎλθαÏε ÏÏο phpBB"; $lang['Admin_intro'] = "Î£Î±Ï ÎµÏ ÏαÏιÏÏοÏμε ÏÎ¿Ï ÎµÏιλÎξαÏε Ïο phpBB ÏÏ Ïο ÏÏÏÏημα ÏÎ±Ï Î³Î¹Î± Î. Î£Ï Î¶Î®ÏηÏη. H οθÏνη Î±Ï Ïή ÏÎ±Ï Î´Î¯Î½ÎµÎ¹ μια γÏήγοÏη εÏιÏκÏÏηÏη διάÏοÏÏν ÏÏαÏιÏÏικÏν ÏÏοιÏείÏν ÏÎ·Ï Î. Î£Ï Î¶Î®ÏηÏηÏ. ÎÏοÏείÏε να εÏιÏÏÏÎÏεÏε Ï' Î±Ï Ïήν Ïην Ïελίδα ÏαÏÏνÏÎ±Ï Ïην ÏαÏαÏομÏή <u>ÎÏÏική ÎιαÏείÏιÏηÏ</u> ÏÏο αÏιÏÏεÏÏ ÏαÏÎ¬Î¸Ï Ïο. Îια να εÏιÏÏÏÎÏεÏε ÏÏην αÏÏική ÏÎ·Ï Î. Î£Ï Î¶Î®ÏηÏηÏ, ÏαÏήÏÏε Ïο εικονίδιο phpBB Ïο οÏοίο εÏίÏÎ·Ï Î²ÏίÏκεÏε ÏÏην αÏιÏÏεÏή οθÏνη. Îι Ï ÏÏλοιÏοι ÏÏνδεÏμοι ÏÏα αÏιÏÏεÏά ÏÎ±Ï ÎµÏιÏÏÎÏÎ¿Ï Î½ να διαÏειÏιÏÏείÏε ÏÎ»ÎµÏ ÏÎ¹Ï Î´Ï Î½Î±ÏÎÏ ÏαÏαμÎÏÏÎ¿Ï Ï ÏÎ¿Ï ÏÏ ÏÏήμαÏοÏ. Îάθε οθÏνη ÎÏει Î¿Î´Î·Î³Î¯ÎµÏ Î³Î¹Î± Ïο ÏÏÏ Î¼ÏοÏείÏε να ÏειÏιÏθείÏε Ïα ανÏίÏÏοιÏα εÏγαλεία."; $lang['Main_index'] = "ÎÏÏική Î. ÎÏ Î¶Î®ÏηÏηÏ"; $lang['Forum_stats'] = "ΣÏαÏιÏÏικά Î. Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Admin_Index'] = "ÎÏÏική ÎιαÏείÏιÏηÏ"; $lang['Preview_forum'] = "Î ÏοεÏιÏκÏÏηÏη Î. Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Click_return_admin_index'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏην ÎÏÏική ÏÎ·Ï ÎιαÏείÏιÏηÏ"; $lang['Statistic'] = "ΣÏαÏιÏÏικά"; $lang['Value'] = "Τιμή"; $lang['Number_posts'] = "ÎÏιθμÏÏ Î¼Î·Î½Ï Î¼Î¬ÏÏν"; $lang['Posts_per_day'] = "ÎηνÏμαÏα ανά ημÎÏα"; $lang['Number_topics'] = "ÎÏιθμÏÏ Î.ÎνοÏήÏÏν"; $lang['Topics_per_day'] = "Î.ÎνÏÏηÏÎµÏ Î±Î½Î¬ ημÎÏα"; $lang['Number_users'] = "ÎÏιθμÏÏ Î¼ÎµÎ»Ïν"; $lang['Users_per_day'] = "ÎÎλη ανά ημÎÏα"; $lang['Board_started'] = "ÎναÏξη Î.Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Avatar_dir_size'] = "ÎÎÎ³ÎµÎ¸Î¿Ï ÏακÎÎ»Î¿Ï Avatar (εικÏναÏ)"; $lang['Database_size'] = "ÎÎÎ³ÎµÎ¸Î¿Ï Î.ÎεδομÎνÏν"; $lang['Gzip_compression'] ="Gzip ÏÏ Î¼ÏίεÏη"; $lang['Not_available'] = "Îεν διαÏίθεÏαι"; $lang['ON'] = "ON"; // This is for GZip compression $lang['OFF'] = "OFF"; // // DB Utils // $lang['Database_Utilities'] = "ÎÏγαλεία Î.ÎεδομÎνÏν"; $lang['Restore'] = "ÎÏαναÏοÏά"; $lang['Backup'] = "ÎνÏίγÏαÏο"; $lang['Restore_explain'] = "ÎÏ Ïή η λειÏÎ¿Ï Ïγία θα ÏÏαγμαÏοÏοιήÏει ÏλήÏη εÏανÏÏθÏÏη ÏλÏν ÏÏν ÏινάκÏν ÏÎ·Ï phpBB αÏÏ Îνα αÏÏείο -ανÏίγÏαÏο αÏÏαλείαÏ-. Îάν ο διακομιÏÏÎ®Ï ÏÎ±Ï Ïο Ï ÏοÏÏηÏίζει, μÏοÏείÏε να Ïο μεÏαÏοÏÏÏÏεÏε Ïε ÏÏ Î¼ÏιεÏμÎνη μοÏÏή gzip, η αÏοÏÏ Î¼ÏίεÏη ÏÎ¿Ï Î¸Î± ÏÏαγμαÏοÏοιηθεί Î±Ï ÏÏμαÏα. <b>ΠΡÎΣÎΧÎ</b> ΠλειÏÎ¿Ï Ïγία Î±Ï Ïή θα εÏικαλÏÏει Ïλα Ïα ÏÏÎÏονÏα δεδομÎνα ÏαÏ. ΠεÏανÏÏθÏÏη μÏοÏεί να διαÏκÎÏει αÏκεÏÏ ÏÏÏνο, γι' Î±Ï ÏÏ Î¼Î·Î½ μεÏακινηθείÏε αÏÏ Î±Ï Ïήν Ïην Ïελίδα ÎÏÏ ÏÏÎ¿Ï Î¿Î»Î¿ÎºÎ»Î·ÏÏθεί η διαδικαÏία "; $lang['Backup_explain'] = "Σ' Î±Ï ÏÏ Ïο Ïμήμα μÏοÏείÏε να κάνεÏε μια ÏλήÏη εÏεδÏεία ÏÎ·Ï Î. ÎεδομÎνÏν ÏαÏ. Îάν ÎÏεÏε εÏιÏλÎον δικοÏÏ ÏÎ±Ï ÏÎ¯Î½Î±ÎºÎµÏ ÏÏην βάÏη και θÎλεÏε να ÏÎ¿Ï Ï Î±Î½ÏιγÏάÏεÏε και Î±Ï ÏοÏÏ, ειÏαγάγεÏε Ïα ονÏμαÏα Î±Ï ÏÏν ÏÏν εÏιÏλÎον ÏινάκÏν διαÏÏÏιÏμÎνα με κÏμμα, ÏÏο ανÏίÏÏοιÏο ÏλαίÏιο ÏαÏακάÏÏ. ÎÏίÏÎ·Ï ÎµÏÏÏον Ï ÏοÏÏηÏίζεÏε αÏÏ Ïον διακομιÏÏή ÏÎ±Ï Î¼ÏοÏείÏε να ενεÏγοÏοιήÏεÏε Ïην gzip ÏÏ Î¼ÏίεÏη, για να ÎÏεÏε μικÏÏÏεÏο ÏÎµÎ»Î¹ÎºÏ Î±ÏÏείο ÏÏÎ¿Ï Î¼ÎµÏαÏÏÏÏÏÏη."; $lang['Backup_options'] = "ÎÏιλογÎÏ Backup"; $lang['Start_backup'] = "ÎναÏξη Backup"; $lang['Full_backup'] = "ΠλήÏÎµÏ backup"; $lang['Structure_backup'] = "ÎÏνο Ïην Îομή"; $lang['Data_backup'] = "ÎÏνο Ïα ÎεδομÎνα"; $lang['Additional_tables'] = "ÎÏιÏλÎον ΠίνακεÏ"; $lang['Gzip_compress'] = "Gzip ÏÏ Î¼ÏίεÏη"; $lang['Select_file'] = "ÎÏιλογή αÏÏÎµÎ¯Î¿Ï "; $lang['Start_Restore'] = "ÎναÏξη Restore"; $lang['Restore_success'] = "Î Î. ÎεδομÎνÏν εÏαναÏÎÏθηκε με εÏιÏÏ Ïία.<br /><br /> Î Î. Î£Ï Î¶Î®ÏηÏη εÏανήλθε ÏÏην μοÏÏή ÏÎ¿Ï ÎµÎ¯Ïε ÏÏιν Ïο ÏÎµÎ»ÎµÏ Ïαίο backup."; $lang['Backup_download'] = "ΠμεÏαÏÏÏÏÏÏη θα ξεκινήÏει ÏÏνÏομα ÏαÏÎ±ÎºÎ±Î»Ï ÏεÏιμÎνεÏε"; $lang['Backups_not_supported'] = "Î£Ï Î³Î½Ïμη αλλά η λειÏÎ¿Ï Ïγία ανÏιγÏάÏÎ¿Ï Î±ÏÏÎ±Î»ÎµÎ¯Î±Ï Î³Î¹Î± Ïο Î´Î¹ÎºÏ ÏÎ±Ï ÏÏÏÏημα Î. ÎεδομÎνÏν δεν Ï ÏοÏÏηÏίζεÏε ÏÏοÏÏÏινά"; $lang['Restore_Error_uploading'] = "ÎÎ¬Î¸Î¿Ï ÎºÎ±Ïά Ïην μεÏαÏÏÏÏÏÏη ÏÎ¿Ï Î±ÏÏÎµÎ¯Î¿Ï Î±ÏÏαλείαÏ"; $lang['Restore_Error_filename'] = "Î ÏÏβλημα ονομαÏÎ¯Î±Ï Î±ÏÏÎµÎ¯Î¿Ï , δοκιμάÏÏε Îνα εναλλακÏÎ¹ÎºÏ Î±ÏÏείο"; $lang['Restore_Error_decompress'] = "Îεν είναι Î´Ï Î½Î±Ïή η αÏοÏÏ Î¼ÏίεÏη ÏÎ¿Ï Î±ÏÏÎµÎ¯Î¿Ï , ÏαÏÎ±ÎºÎ±Î»Ï Î´Î¿ÎºÎ¹Î¼Î¬ÏÏε Îνα αÏÏ Î¼ÏίεÏÏο αÏÏείο"; $lang['Restore_Error_no_file'] = "Îεν μεÏαÏÎÏθηκε κανÎνα αÏÏείο"; // // Auth pages // $lang['Select_a_User'] = "ÎÏιλογή ÎÎÎ»Î¿Ï Ï"; $lang['Select_a_Group'] = "ÎÏιλογή ÎμάδαÏ"; $lang['Select_a_Forum'] = "ÎÏιλογή Î. Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Auth_Control_User'] = "ÎικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÎελÏν"; $lang['Auth_Control_Group'] = "ÎικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÎμάδÏν"; $lang['Auth_Control_Forum'] = "ÎικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï Î. Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Look_up_User'] = "ÎÏιÏκÏÏηÏη ÎÎÎ»Î¿Ï Ï"; $lang['Look_up_Group'] = "ÎÏιÏκÏÏηÏη ÎμάδαÏ"; $lang['Look_up_Forum'] = "ÎÏιÏκÏÏηÏη Î. Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Group_auth_explain'] = "ÎÎ´Ï Î¼ÏοÏείÏε να ÏÏοÏοÏοιήÏεÏε Ïα δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÎºÎ±Î¹ ÏÎ¹Ï Î¹Î´Î¹ÏÏηÏÎµÏ ÏÎ¿Ï ÏÏ Î½ÏονιÏÏή για κάθε ομάδα μελÏν. Îην ξεÏνάÏε ÏÏÏ Î±Î»Î»Î¬Î¶Î¿Î½ÏÎ±Ï ÏÎ¹Ï Î¹Î´Î¹ÏÏηÏÎµÏ ÏÏÏÏβαÏÎ·Ï Î¼Î¹Î±Ï ÎÎ¼Î¬Î´Î±Ï ÎελÏν, οι ιδιÏÏηÏÎµÏ ÏÏÏÏβαÏÎ·Ï ÎµÎ½ÏÏ Î¼ÎµÎ¼Î¿Î½ÏμÎÎ½Î¿Ï Î¼ÎÎ»Î¿Ï Ï Î¼ÏοÏοÏν να ÏÎ¿Ï Î´Î¯Î½Î¿Ï Î½ διαÏοÏεÏικά δικαιÏμαÏα κλÏ. Ï' Î±Ï Ïήν Ïην ÏεÏίÏÏÏÏη δα ειδοÏοιηθείÏε."; $lang['User_auth_explain'] = "ÎÎ´Ï Î¼ÏοÏείÏε να ÏÏοÏοÏοιήÏεÏε Ïα δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÎºÎ±Î¹ ÏÎ¹Ï Î¹Î´Î¹ÏÏηÏÎµÏ Î£Ï Î½ÏονιÏÏή για κάθε μÎÎ»Î¿Ï Î¾ÎµÏÏÏιÏÏά. Îα μην ξεÏνάÏε ÏÏÏ ÏÏαν αλλάζεÏε Ïα δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÎµÎ½ÏÏ ÏÏήÏÏη, Ïα δικαιÏμαÏα ÏÎ¿Ï ÎÏει ÏÏ Î¼ÎÎ»Î¿Ï Î¼Î¹Î±Ï Î¿Î¼Î¬Î´Î±Ï Î¼ÏοÏοÏν να Ï ÏεÏκαλÏÏÎ¿Ï Î½ Ïα δικαιÏμαÏα ÏÎ¿Ï ÏÎ¿Ï Î´Î¯Î½ÎµÏε ÎµÎ´Ï ÎºÎ»Ï. Σ'Î±Ï Ïήν Ïην ÏεÏίÏÏÏÏη θα ενημεÏÏθείÏε αÏÏ Ïο ÏÏÏÏημα."; $lang['Forum_auth_explain'] = "ÎÎ´Ï Î¼ÏοÏείÏε να ÏÏοÏοÏοιήÏεÏε Ïα εÏίÏεδα ÎµÎ¾Î¿Ï ÏιοδÏÏηÏÎ·Ï Î³Î¹Î± κάθε Î. Î£Ï Î¶Î®ÏηÏη ξεÏÏÏιÏÏά. Îα ÎÏεÏε ÏÏην διάθεÏη ÏÎ±Ï Î´Ïο μεθÏÎ´Î¿Ï Ï Îναν αÏÎ»Ï ÎºÎ±Î¹ Îναν ÏÏνθεÏο. Î ÏÏνθεÏη μÎÎ¸Î¿Î´Î¿Ï ÏÎ±Ï ÏÏοÏÏÎÏει μεγαλÏÏεÏο ÎλεγÏο ÏÏην αÏÏδοÏη ÎµÎ¾Î¿Ï ÏιοδÏÏηÏÎ·Ï Î³Î¹Î± κάθε Î. Î£Ï Î¶Î®ÏηÏη. Îα Î¸Ï Î¼Î¬ÏÏε ÏÏÏ Î±Î»Î»Î¬Î¶Î¿Î½ÏÎ±Ï ÏÎ¹Ï ÎµÎ¾Î¿Ï ÏιοδοÏήÏÎµÎ¹Ï Î¼Î¹Î±Ï Î. Î£Ï Î¶Î®ÏηÏÎ·Ï ÎµÏηÏεάζονÏαι Ïλα Ïα μÎλη Ïα οÏοία ÏÏεÏίζονÏαι με ÏÎ¹Ï Î´Î¹Î¬ÏοÏÎµÏ Î»ÎµÎ¹ÏÎ¿Ï ÏÎ³Î¯ÎµÏ Î±Ï ÏήÏ."; $lang['Simple_mode'] = "ÎÏλή ÎÎθοδοÏ"; $lang['Advanced_mode'] = "ΣÏνθεÏη ÎÎθοδοÏ"; $lang['Moderator_status'] = "Τάξη Î£Ï Î½ÏονιÏÏή"; $lang['Allowed_Access'] = "ÎÏιÏÏÎÏεÏε η ÏÏÏÏβαÏη"; $lang['Disallowed_Access'] = "ÎÏαγÏÏÎµÏ Ïη ÏÏÏÏβαÏηÏ"; $lang['Is_Moderator'] = "Îίναι Î£Ï Î½ÏονιÏÏήÏ"; $lang['Not_Moderator'] = "Îεν είναι Î£Ï Î½ÏονιÏÏήÏ"; $lang['Conflict_warning'] = "ΣÏγκÏÎ¿Ï Ïη ÎικαιÏμάÏÏν Î ÏÏÏβαÏηÏ"; $lang['Conflict_access_userauth'] = "ÎÏ ÏÏÏ Î¿ ÏÏήÏÏÎ·Ï ÎÏει δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï Ï' Î±Ï Ïήν Ïην Î. Î£Ï Î¶Î®ÏηÏη μÎÏÏ ÏÏν δικαιÏμάÏÏν ÏÎ·Ï Î¿Î¼Î¬Î´Î±Ï Î¼ÎµÎ»Ïν ÏÏην οÏοία ανήκει. ÎÏÏÏ ÏÏειαÏÏεί να αλλάξεÏε Ïα δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÏÎ·Ï Î¿Î¼Î¬Î´Î±Ï Î® να διαγÏάÏεÏε Ïον ÏÏήÏÏη αÏÏ Î±Ï Ïήν Ïην ομάδα για να αÏοÏÏÎÏεÏε μη εÏÎ¹Î¸Ï Î¼Î·Ïά δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï Î±Ï ÏÎ¿Ï ÏÎ¿Ï ÏÏήÏÏη. Îι Î¿Î¼Î¬Î´ÎµÏ ÏÎ¿Ï ÏÎ¿Ï Î´Î¯Î½Î¿Ï Î½ Ïα δικαιÏμαÏα (και οι εμÏλεκÏÎ¼ÎµÎ½ÎµÏ Î. Î£Ï Î¶Î·ÏήÏειÏ) εμÏανίζονÏαι ÏαÏακάÏÏ."; $lang['Conflict_mod_userauth'] = "ÎÏ ÏÏÏ Î¿ ÏÏήÏÏÎ·Ï ÎµÎ¾Î±ÎºÎ¿Î»Î¿Ï Î¸ÎµÎ¯ να ÎÏει δικαιÏμαÏα Î£Ï Î½ÏονιÏÏή Ïε Î±Ï Ïή Ïην Î. Î£Ï Î¶Î®ÏηÏη δια μÎÏÎ¿Ï ÏÎ·Ï Î¿Î¼Î¬Î´Î±Ï Î¼ÎµÎ»Ïν ÏÏην οÏοία ανήκει. ÎÏÏÏ ÏÏειαÏÏεί να αλλάξεÏε Ïα δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÏÎ·Ï Î¿Î¼Î¬Î´Î±Ï Î® να διαγÏάÏεÏε Ïον ÏÏήÏÏη αÏÏ Î±Ï Ïήν Ïην ομάδα για να αÏοÏÏÎÏεÏε Ïα δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï Î£Ï Î½ÏονιÏÏή Î±Ï ÏÎ¿Ï ÏÎ¿Ï ÏÏήÏÏη. Îι Î¿Î¼Î¬Î´ÎµÏ ÏÎ¿Ï ÏÎ¿Ï Î´Î¯Î½Î¿Ï Î½ Ïα δικαιÏμαÏα (και οι εμÏλεκÏÎ¼ÎµÎ½ÎµÏ Î. Î£Ï Î¶Î·ÏήÏειÏ) εμÏανίζονÏαι ÏαÏακάÏÏ."; $lang['Conflict_access_groupauth'] = "Îι ÏαÏακάÏÏ ÏÏήÏÏÎµÏ ÎµÎ¾Î±ÎºÎ¿Î»Î¿Ï Î¸Î¿Ïν να ÎÏÎ¿Ï Î½ δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï Ï' Î±Ï Ïήν Ïην Î. Î£Ï Î¶Î®ÏηÏη μÎÏÏ ÏÏν δικαιÏμάÏÏν ÏÏÏÏβαÏÎ·Ï ÏÎ¿Ï ÎÏÎ¿Ï Î½. ÎÏÏÏ ÏÏειαÏÏεί να αλλάξεÏε Ïα δικαιÏμαÏα ÏÎ¿Ï Ï Î³Î¹Î± να ÏÎ¿Ï Ï Î±ÏοÏÏαÏεί η ÏÏÏÏβαÏη. Îι ÏÏήÏÏÎµÏ ÏÎ¿Ï ÎÏÎ¿Ï Î½ Ïα δικαιÏμαÏα (και οι εμÏλεκÏÎ¼ÎµÎ½ÎµÏ Î. Î£Ï Î¶Î·ÏήÏειÏ) εμÏανίζονÏαι ÏαÏακάÏÏ.."; $lang['Conflict_mod_groupauth'] = "Îι ÏαÏακάÏÏ ÏÏήÏÏÎµÏ ÎµÎ¾Î±ÎºÎ¿Î»Î¿Ï Î¸Î¿Ïν να ÎÏÎ¿Ï Î½ δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï Î£Ï Î½ÏονιÏÏή Ï' Î±Ï Ïήν Ïην Î. Î£Ï Î¶Î®ÏηÏη μÎÏÏ ÏÏν δικαιÏμάÏÏν ÏÏÏÏβαÏÎ·Ï ÏÎ¿Ï ÎÏÎ¿Ï Î½. ÎÏÏÏ ÏÏειαÏÏεί να αλλάξεÏε Ïα δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÏÎ¿Ï Ï Î³Î¹Î± να ÏÎ¿Ï Ï Î±ÏοÏÏαÏεί Ïο δικαίÏμα ÏÎ¿Ï Î£Ï Î½ÏονιÏÏή. Îι ÏÏήÏÏÎµÏ ÏÎ¿Ï ÎÏÎ¿Ï Î½ Ïα δικαιÏμαÏα (και οι εμÏλεκÏÎ¼ÎµÎ½ÎµÏ Î. Î£Ï Î¶Î·ÏήÏειÏ) εμÏανίζονÏαι ÏαÏακάÏÏ."; $lang['Public'] = "ÎνοικÏή"; $lang['Private'] = "ÎμάδεÏ"; $lang['Registered'] = "ÎγγεγÏαμμÎνοι"; $lang['Administrators'] = "ÎιαÏειÏιÏÏÎÏ"; $lang['Hidden'] = "ÎÏÏ Ïή"; // These are displayed in the drop down boxes for advanced // mode forum auth, try and keep them short! $lang['Forum_ALL'] = "ÎÎÎÎ"; $lang['Forum_REG'] = "ÎÎÎÎÎΡ"; $lang['Forum_PRIVATE'] = "ÎÎÎÎÎΣ"; $lang['Forum_MOD'] = "ΣΥÎΤÎÎ"; $lang['Forum_ADMIN'] = "ÎÎÎΧÎÎΡ"; $lang['View'] = "ÎÏαÏÏ"; $lang['Read'] = "ÎνάγνÏÏη"; $lang['Post'] = "ÎημοÏÎ¯ÎµÏ Ïη"; $lang['Reply'] = "ÎÏάνÏηÏη"; $lang['Edit'] = "ÎÏεξεÏγαÏία"; $lang['Delete'] = "ÎιαγÏαÏή"; $lang['Sticky'] = "ÎÏικÏλληÏη"; $lang['Announce'] = "ÎνακοίνÏÏη"; $lang['Vote'] = "ΨηÏοÏοÏία"; $lang['Pollcreate'] = "ÎÎ·Î¼Î¹Î¿Ï Ïγία ΨηÏ/ÏιαÏ"; $lang['Permissions'] = "Î ÏοÏβάÏειÏ"; $lang['Simple_Permission'] = "ÎÏλή Î ÏÏÏβαÏη"; $lang['User_Level'] = "ÎÏίÏεδο ÎÎÎ»Î¿Ï Ï"; $lang['Auth_User'] = "ÎÎλοÏ"; $lang['Auth_Admin'] = "ÎιαÏειÏιÏÏήÏ"; $lang['Group_memberships'] = "ÎÎλη Ïε ÎÎ¼Î¬Î´ÎµÏ ÎελÏν"; $lang['Usergroup_members'] = "Î Îμάδα ÎÏει Ïα ακÏÎ»Î¿Ï Î¸Î± μÎλη"; $lang['Forum_auth_updated'] = "Τα Îικ.ÏÏÏÏβαÏÎ·Ï ÏÎ·Ï Î.Î£Ï Î¶Î®ÏηÏÎ·Ï ÎνανεÏθηκαν"; $lang['User_auth_updated'] = "Τα Îικ.ÏÏÏÏβαÏÎ·Ï ÏÎ¿Ï ÎÎÎ»Î¿Ï Ï ÎνανεÏθηκαν"; $lang['Group_auth_updated'] = "Τα Îικ.ÏÏÏÏβαÏÎ·Ï ÏÎ·Ï ÎÎ¼Î¬Î´Î±Ï ÎνανεÏθηκαν"; $lang['Auth_updated'] = "Τα ÎικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÎνανεÏθηκαν"; $lang['Click_return_userauth'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏην Î ÏÏÏβαÏη ÎελÏν"; $lang['Click_return_groupauth'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏην Î ÏÏÏβαÏη ÎμάδÏν"; $lang['Click_return_forumauth'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏην Î ÏÏÏβαÏη Î.Î£Ï Î¶Î®ÏηÏηÏ"; // // Banning // $lang['Ban_control'] = "ÎλεγÏÎ¿Ï ÎÏοκλειÏμÏν"; $lang['Ban_explain'] = "ÎÎ´Ï Î¼ÏοÏείÏε να διαÏειÏιÏÏείÏε Ïον αÏοκλειÏÎ¼Ï ÏÏν ÎελÏν. ÎÏοÏείÏε να Ïο ÏεÏÏÏεÏε Î±Ï ÏÏ Î±ÏοκλείονÏÎ±Ï ÏÏ Î³ÎºÎµÎºÏιμÎνο ÎÎÎ»Î¿Ï Î® Îνα ÏάÏμα αÏÏ ÎΡ Î´Î¹ÎµÏ Î¸ÏνÏÎµÎ¹Ï Î® και hostnames. Îε Î±Ï ÏÏν Ïον ÏÏÏÏο αÏοÏÏÎÏÎ¿Ï Î¼Îµ Ïε Îναν ÏÏήÏÏη να ÏÏοÏÏελάÏει ακÏμα και Ïην αÏÏική Ïελίδα ÏÎ·Ï Î. Î£Ï Î¶Î®ÏηÏηÏ. Îια να αÏοÏÏÎÏÎ¿Ï Î¼Îµ Ïην εγγÏαÏή ÏÎ¿Ï ÏÏήÏÏη με διαÏοÏεÏÎ¹ÎºÏ Ïνομα μÏοÏείÏε να αÏαγοÏεÏÏεÏε μια ÏÏ Î³ÎºÎµÎºÏιμÎνη email διεÏÎ¸Ï Î½Ïη. ÎÏεÏε Ï ÏÏÏη ÏÏÏ Î±ÏαγοÏεÏονÏÎ±Ï Î¼Î¹Î± email διεÏÎ¸Ï Î½Ïη δεν αÏοÏÏÎÏÎ¿Ï Î¼Îµ Ïην ÏÏ Î¼Î¼ÎµÏοÏή ÏÎ¿Ï ÎºÎ±ÎºÏÎ²Î¿Ï Î»Î¿Ï ÏÏήÏÏη ÏÏην Î. Î£Ï Î¶Î®ÏηÏη, Î±Ï ÏÏ Ïο εÏιÏÏ Î³ÏάνεÏε με ÏÎ¹Ï Î´Ïο ÏÏÏÏÎµÏ Î¼ÎµÎ¸ÏÎ´Î¿Ï Ï."; $lang['Ban_explain_warn'] = "ΠαÏÎ±ÎºÎ±Î»Ï ÏÏοÏÎξÏε, ειÏάγονÏÎ±Ï Îνα ÏάÏμα αÏÏ ÎΡ Î´Î¹ÎµÏ Î¸ÏνÏÎµÎ¹Ï Ïημαίνει Ïην αÏοÏÏοÏή και ÏλÏν ÏÏν ενδιάμεÏÏν Î´Î¹ÎµÏ Î¸ÏνÏεÏν ÏÎ¿Ï ÏεÏικλείονÏαι Ïε Î±Ï ÏÎÏ. Î¥ÏάÏÏει η Î´Ï Î½Î±ÏÏÏηÏα για να ÏÏ Î¼ÏιεÏÏή ο ÏÎ³ÎºÎ¿Ï ÏÎ·Ï Î»Î¯ÏÏαÏ, να γίνεÏε η ÏÏήÏη ÏαÏακÏήÏÏν μÏαλανÏÎÏ ÏÏÎ¿Ï Î±Ï ÏÏ ÎµÎ¯Î½Î±Î¹ εÏικÏÏ. Îάν ÏνÏÏÏ ÎµÎ¯Î½Î±Î¹ αÏαÏαίÏηÏÎ¿Ï Î¿ αÏοκλειÏμÏÏ ÎµÎ½ÏÏ ÏάÏμαÏÎ¿Ï ÎºÏαÏήÏÏε Ïον ÏÏÏν Ïο Î´Ï Î½Î±ÏÏ Î¼Î¹ÎºÏÏÏεÏο ή ακÏμα καλÏÏεÏα ειÏάγεÏε ÏÏ Î³ÎºÎµÎºÏιμÎÎ½ÎµÏ Î´Î¹ÎµÏ Î¸ÏνÏειÏ."; $lang['Select_username'] = "ÎÏιλÎξÏε Îνομα ÎÎÎ»Î¿Ï Ï"; $lang['Select_ip'] = "ÎÏιλÎξÏε μία IP"; $lang['Select_email'] = "ÎÏιλÎξÏε μία Email διεÏÎ¸Ï Î½Ïη"; $lang['Ban_username'] = "ÎÏοκλειÏμÏÏ ÎµÎ½ÏÏ Î® ÏεÏιÏÏÏÏεÏÏν ÏÏηÏÏÏν"; $lang['Ban_username_explain'] = "ÎÏοÏείÏε να εÏιλÎξεÏε Îναν ή ÏεÏιÏÏÏÏεÏÎ¿Ï Ï ÏÏήÏÏÎµÏ Î¼Îµ Ïην βοήθεια ÏÏν οικείÏν λειÏÎ¿Ï ÏγιÏν ÏÎ¿Ï ÏληκÏÏÎ¿Î»Î¿Î³Î¯Î¿Ï ÎºÎ±Î¹ ÏÎ¿Ï ÏονÏÎ¹ÎºÎ¹Î¿Ï ÏÏο ÏÏÏÏημα ÏαÏ"; $lang['Ban_IP'] = "ÎÏοκλειÏμÏÏ Î¼Î¯Î±Ï Î® ÏεÏιÏÏÏÏεÏÏν IP Î´Î¹ÎµÏ Î¸ÏνÏεÏν ή hostnames"; $lang['IP_hostname'] = "IP Î´Î¹ÎµÏ Î¸ÏνÏÎµÎ¹Ï Î® hostnames"; $lang['Ban_IP_explain'] = "Îια να οÏίÏεÏε ÏολλαÏλÎÏ Î´Î¹Î±ÏοÏεÏικÎÏ IP ή hostnames διαÏÏÏίÏÏε ÏÎ·Ï Î¼Îµ κÏμμα. Îια να οÏίÏεÏε Îνα ÏάÏμα αÏÏ IP Î´Î¹ÎµÏ Î¸ÏνÏÎµÎ¹Ï Î´Î¹Î±ÏÏÏίÏÏε ÏÎ·Ï Î¼Îµ (-), για μÏαλανÏÎÏ ÏÏηÏιμοÏοιήÏÏε Ïο *"; $lang['Ban_email'] = "ÎÏοκλειÏμÏÏ ÎµÎ½ÏÏ Î® ÏεÏιÏÏÏÏεÏÏν email"; $lang['Ban_email_explain'] = "Îια να οÏίÏεÏε ÏεÏιÏÏÏÏεÏÎµÏ Î±ÏÏ Î¼Î¯Î± Î´Î¹ÎµÏ Î¸ÏνÏÎµÎ¹Ï email διαÏÏÏίÏÏε ÏÎ·Ï Î¼Îµ κÏμμα. Îια να οÏίÏεÏε Ïνομα με μÏαλανÏÎÏ ÏÏηÏιμοÏοιήÏÏε Ïο *, για ÏαÏάδειγμα *@hotmail.com"; $lang['Unban_username'] = "ÎκÏÏÏÏη ÎÏοκλειÏÎ¼Î¿Ï ÎµÎ½ÏÏ Î® ÏεÏιÏÏοÏÎÏÏν ÏÏηÏÏÏν"; $lang['Unban_username_explain'] = "ÎÏοÏείÏε να Î±ÎºÏ ÏÏÏεÏε ÏολλαÏλοÏÏ ÏÏήÏÏÎµÏ Î¼Îµ μία κίνηÏη κάνονÏÎ±Ï ÏÏήÏη ÏÏν ιδιαίÏεÏÏν λειÏÎ¿Ï ÏγιÏν ÏÎ¿Ï ÏληκÏÏÎ¿Î»Î¿Î³Î¯Î¿Ï ÎºÎ±Î¹ ÏÎ¿Ï ÏονÏÎ¹ÎºÎ¹Î¿Ï ÏÏο ÏÏÏÏημα ÏαÏ"; $lang['Unban_IP'] = "ÎκÏÏÏÏη ÎÏοκλειÏÎ¼Î¿Ï Î¼Î¯Î±Ï Î® ÏεÏιÏÏοÏÎÏÏν IP Î´Î¹ÎµÏ Î¸ÏνÏεÏν"; $lang['Unban_IP_explain'] = "ÎÏοÏείÏε να Î±ÎºÏ ÏÏÏεÏε ÏολλαÏλÎÏ ÎΡ με μία κίνηÏη κάνονÏÎ±Ï ÏÏήÏη ÏÏν ιδιαίÏεÏÏν λειÏÎ¿Ï ÏγιÏν ÏÎ¿Ï ÏληκÏÏÎ¿Î»Î¿Î³Î¯Î¿Ï ÎºÎ±Î¹ ÏÎ¿Ï ÏονÏÎ¹ÎºÎ¹Î¿Ï ÏÏο ÏÏÏÏημα ÏαÏ"; $lang['Unban_email'] = "ÎκÏÏÏÏη ÎÏοκλειÏÎ¼Î¿Ï Î¼Î¯Î±Ï Î® ÏεÏιÏÏοÏÎÏÏν email Î´Î¹ÎµÏ Î¸ÏνÏεÏν"; $lang['Unban_email_explain'] = "ÎÏοÏείÏε να Î±ÎºÏ ÏÏÏεÏε ÏολλαÏλά email με μία κίνηÏη κάνονÏÎ±Ï ÏÏήÏη ÏÏν ιδιαίÏεÏÏν λειÏÎ¿Ï ÏγιÏν ÏÎ¿Ï ÏληκÏÏÎ¿Î»Î¿Î³Î¯Î¿Ï ÎºÎ±Î¹ ÏÎ¿Ï ÏονÏÎ¹ÎºÎ¹Î¿Ï ÏÏο ÏÏÏÏημα ÏαÏ"; $lang['No_banned_users'] = "Îεν Ï ÏάÏÏÎ¿Ï Î½ αÏοκλειÏμÎνα μÎλη"; $lang['No_banned_ip'] = "Îεν Ï ÏάÏÏÎ¿Ï Î½ αÏοκλειÏμÎνα ÎΡ"; $lang['No_banned_email'] = "Îεν Ï ÏάÏÏÎ¿Ï Î½ αÏοκλειÏμÎνα email"; $lang['Ban_update_sucessful'] = "Î ÎίÏÏα αÏοκλειÏμÎνÏν ενημεÏÏθηκε εÏιÏÏ ÏÏÏ"; $lang['Click_return_banadmin'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏον ÎλεγÏο ÏÏν διαγÏαÏÏν"; // // Configuration // $lang['General_Config'] = "ÎενικÎÏ Î¡Ï Î¸Î¼Î¯ÏειÏ"; $lang['Config_explain'] = "Î ÏαÏακάÏÏ ÏÏÏμα ÏÎ±Ï ÎµÏιÏÏÎÏει να ÏÏοÏαÏμÏÏεÏε Ïλα Ïα γενικά ÏαÏακÏηÏιÏÏικά ÏÎ¿Ï ÏÏ ÏÏήμαÏοÏ. Îια ÏÎ¹Ï ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÏν μελÏν και ÏÏν Î. Î£Ï Î¶Î·ÏήÏεÏν μεÏαβείÏε ÏÏα ανÏίÏÏοιÏα ÏμήμαÏα."; $lang['Click_return_config'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏÎ¹Ï ÎενικÎÏ Î¡Ï Î¸Î¼Î¯ÏειÏ"; $lang['General_settings'] = "ÎενικÎÏ Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï Î£Ï ÏÏήμαÏοÏ"; $lang['Server_name'] = "Domain Name"; $lang['Server_name_explain'] = "Το domain name κάÏÏ Î±ÏÏ Ïο οÏοίο λειÏÎ¿Ï Ïγεί η Î. Î£Ï Î¶Î®ÏηÏη"; $lang['Script_path'] = "ÎιαδÏομή ÏÎ¿Ï ÎºÏδικα"; $lang['Script_path_explain'] = "ΠδιαδÏομή ÏÏÎ¿Ï Ïο phpBB2 είναι ÏοÏοθεÏημÎνο κάÏÏ Î±ÏÏ Ïο domain name"; $lang['Server_port'] = "Server Port"; $lang['Server_port_explain'] = "Î ÎÏÏα ÏÏην οÏοία λειÏÎ¿Ï Ïγεί ο server, ÏÏ Î½Î®Î¸ÏÏ Î· 80, αλλάξÏε Ïο μÏνο εάν είναι διαÏοÏεÏική"; $lang['Site_name'] = "ÎνομαÏία ΤοÏοθεÏίαÏ"; $lang['Site_desc'] = "ΠεÏιγÏαÏή ΤοÏοθεÏίαÏ"; $lang['Board_disable'] = "ÎκÏÏÏÏη ÏÎ·Ï Î»ÎµÎ¹ÏÎ¿Ï ÏÎ³Î¯Î±Ï ÏÎ¿Ï ÏÏ ÏÏήμαÏοÏ"; $lang['Board_disable_explain'] = "ÎÏ ÏÏ ÎºÎ±Î¸Î¹ÏÏά Ïο ÏÏÏÏημα μη ÏÏοÏÏελάÏιμο ÏÏÎ¿Ï Ï ÏÏήÏÏεÏ. Î ÏοÏοÏή μην αÏοÏÏ Î½Î´ÎεÏÏε αÏÏ Ïο ÏÏÏÏημα ÏÏαν Ïο ενεÏγοÏοιείÏε Î±Ï ÏÏ, δεν θα είναι Î´Ï Î½Î±ÏÏ Î½Î± ÏÏ Î½Î´ÎµÎ¸ÎµÎ¯Ïε ξανά!"; $lang['Acct_activation'] = "ÎνεÏγοÏοίηÏη ÏÎ¿Ï -ενεÏγοÏοίηÏη λογαÏιαÏμοÏ-"; $lang['Acc_None'] = "ÎανÎναÏ"; // These three entries are the type of activation $lang['Acc_User'] = "ÎÎλοÏ"; $lang['Acc_Admin'] = "ÎιαÏειÏιÏÏήÏ"; $lang['Abilities_settings'] = "ÎαÏικÎÏ ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÎελÏν και Î. Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Max_poll_options'] = "ÎÎγιÏÏÎ¿Ï Î±ÏιθμÏÏ ÎµÏιλογÏν ÏηÏοÏοÏίαÏ"; $lang['Flood_Interval'] = "ÎιάÏÏημα Î¥ÏεÏÏÏÏÏÏÏηÏ"; $lang['Flood_Interval_explain'] = "ÎιάÏκεια Ïε Î´ÎµÏ ÏεÏÏλεÏÏα καÏά Ïην οÏοία ο ÏÏήÏÏÎ·Ï Î¼ÏοÏεί να εÏαναλάβει μία δημοÏÎ¯ÎµÏ Ïη"; $lang['Board_email_form'] = "Email μελÏν μÎÏÏ ÏÎ¿Ï ÏÏ ÏÏήμαÏοÏ"; $lang['Board_email_form_explain'] = "ÎÏοÏÏολή email ÏÏν μελÏν μεÏÎ±Î¾Ï ÏÎ¿Ï Ï Î¼ÎÏÏ ÏÎ¿Ï ÏÏ ÏÏήμαÏοÏ"; $lang['Topics_per_page'] = "Îεμ. ÎνÏÏηÏÎµÏ Î±Î½Î± Σελίδα"; $lang['Posts_per_page'] = "ÎημοÏιεÏÏÎµÎ¹Ï Î±Î½Î± Σελίδα"; $lang['Hot_threshold'] = "ÎημοÏιεÏÏÎµÎ¹Ï Î³Î¹Î± ΧαÏακÏηÏιÏÎ¼Ï ÎημοÏιλήÏ"; $lang['Default_style'] = "Î ÏοεÏιλεγμÎνο ΣÏÏλ"; $lang['Override_style'] = "Î¥ÏεÏÎºÎ¬Î»Ï Ïη ΣÏÏλ ÎελÏν"; $lang['Override_style_explain'] = "ÎνÏικαθιÏÏά Ïο εÏιλεγμÎνο ÏÏÏλ ÏÏν ÎελÏν"; $lang['Default_language'] = "Î ÏοεÏιλεγμÎνη ÎλÏÏÏα"; $lang['Date_format'] = "ÎοÏÏή ÎμεÏομηνίαÏ"; $lang['System_timezone'] = "ÎÏνη ÎÏÎ±Ï ÎιακομιÏÏή"; $lang['Enable_gzip'] = "ÎνεÏγοÏοίηÏη GZip Î£Ï Î¼ÏίεÏηÏ"; $lang['Enable_prune'] = "ÎνεÏγοÏοίηÏη ÎκκαθάÏιÏÎ·Ï Forum"; $lang['Allow_HTML'] = "ÎÏιÏÏÎÏεÏε η HTML"; $lang['Allow_BBCode'] = "ÎÏιÏÏÎÏεÏε Ïο BBCode"; $lang['Allowed_tags'] = "ÎÏιÏÏεÏÏÎ¼ÎµÎ½ÎµÏ HTML ενÏολÎÏ"; $lang['Allowed_tags_explain'] = "ÎιαÏÏÏίÏÏε ÏÎ¹Ï ÎµÎ½ÏολÎÏ Î¼Îµ κÏμμα"; $lang['Allow_smilies'] = "ÎÏιÏÏÎÏονÏαι Ïα Smilies"; $lang['Smilies_path'] = "ÎιαδÏομή αÏÎ¿Î¸Î®ÎºÎµÏ ÏÎ·Ï Smilies"; $lang['Smilies_path_explain'] = "ΠδιαδÏομή κάÏÏ Î±Ïο Ïην Ïίζα ÏÎ¿Ï phpBB, Ï.Ï. images/smilies"; $lang['Allow_sig'] = "ÎÏιÏÏÎÏονÏαι οι Î¥ÏογÏαÏÎÏ"; $lang['Max_sig_length'] = "ÎÎγιÏÏο Î¼Î®ÎºÎ¿Ï Ï ÏογÏαÏήÏ"; $lang['Max_sig_length_explain'] = "ÎÎγιÏÏÎ¿Ï Î±ÏιθμÏÏ ÏαÏακÏήÏÏν ÏÏÎ¹Ï Ï ÏογÏαÏÎÏ ÏÏν μελÏν"; $lang['Allow_name_change'] = "ÎÏιÏÏÎÏεÏε η Îλλαγή ÎνÏμαÏÎ¿Ï ÎÎÎ»Î¿Ï Ï"; $lang['Avatar_settings'] = "Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï ÎικονÏν"; $lang['Allow_local'] = "ÎνεÏγοÏοίηÏη ÎµÎ¹ÎºÎ¿Î½Î¿Î¸Î®ÎºÎ·Ï ÎικονÏν"; $lang['Allow_remote'] = "ÎνεÏγοÏοίηÏη αÏομακÏÏ ÏμÎνÏν ÎικονÏν"; $lang['Allow_remote_explain'] = "ÎικÏÎ½ÎµÏ Î¿Î¹ οÏÎ¿Î¯ÎµÏ Î¿ÏίζονÏαι μÎÏÏ ÏÏ Î½Î´ÎÏμÏν και Ïα οÏοία βÏίÏκονÏαι Ïε αÏομακÏÏ ÏμÎÎ½Î¿Ï Ï Î´Î¹Î±ÎºÎ¿Î¼Î¹ÏÏÎÏ"; $lang['Allow_upload'] = "ÎνεÏγοÏοίηÏη μεÏαÏÏÏÏÏÏÎ·Ï ÎικονÏν"; $lang['Max_filesize'] = "ÎÎγιÏÏο μÎÎ³ÎµÎ¸Î¿Ï Î±ÏÏÎµÎ¯Î¿Ï ÎικονÏν"; $lang['Max_filesize_explain'] = "Îια ÏÎ¹Ï ÎικÏÎ½ÎµÏ Î¿Î¹ οÏÎ¿Î¯ÎµÏ Î¸Î± μεÏαÏοÏÏÏθοÏν"; $lang['Max_avatar_size'] = "ÎÎγιÏÏÎµÏ ÎιαÏÏάÏÎµÎ¹Ï ÎικÏναÏ"; $lang['Max_avatar_size_explain'] = "(ÎÏÎ¿Ï x ΠλάÏÎ¿Ï Ïε εικονοÏÏοιÏεία)"; $lang['Avatar_storage_path'] = "ÎιαδÏομή ÎÏÎ¿Î¸Î®ÎºÎµÏ ÏÎ·Ï ÎικÏναÏ"; $lang['Avatar_storage_path_explain'] = "ÎιαδÏομή κάÏÏ Î±Ïο Ïην Ïίζα ÏÎ¿Ï phpBB, Ï.Ï. images/avatars"; $lang['Avatar_gallery_path'] = "ÎιαδÏομή ÎÎ¹ÎºÎ¿Î½Î¿Î¸Î®ÎºÎ·Ï ÎικονÏν"; $lang['Avatar_gallery_path_explain'] = "ÎιαδÏομή κάÏÏ Î±Ïο Ïην Ïίζα ÏÎ¿Ï phpBB για ÏÏοÏοÏÏÏμÎνεÏ, Ï.Ï. images/avatars/gallery"; $lang['COPPA_settings'] = "COPPA Î¡Ï Î¸Î¼Î¯ÏειÏ"; $lang['COPPA_fax'] = "COPPA Fax ÎÏιθμÏÏ"; $lang['COPPA_mail'] = "COPPA E-mail ÎιεÏÎ¸Ï Î½Ïη"; $lang['COPPA_mail_explain'] = "ÎÏ Ïή είναι η email διεÏÎ¸Ï Î½Ïη ÏÏην οÏοία οι Î³Î¿Î½ÎµÎ¯Ï Î¸Î± αÏοÏÏÎÎ»Î»Î¿Ï Î½ Ïην COPPA ÏÏÏμα εγγÏαÏήÏ"; $lang['Email_settings'] = "Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï Email"; $lang['Admin_email'] = "Email ÎιεÏÎ¸Ï Î½Ïη ÎιαÏειÏιÏÏή"; $lang['Email_sig'] = "Î¥ÏογÏαÏή Email"; $lang['Email_sig_explain'] = "ÎÏ ÏÏ Ïο κείμενο θα ÏÏοÏαÏÏάÏε Ï' Ïλα Ïα μηνÏμαÏα Ïα οÏοία θα αÏοÏÏÎλλονÏαι αÏÏ Ïο ÏÏÏÏημα"; $lang['Use_SMTP'] = "ΧÏήÏη SMTP ÎιακομιÏÏή για Ïα email"; $lang['Use_SMTP_explain'] = "ÎÏανÏήÏÏε με Îαι εάν θÎλεÏε Ïα μηνÏμαÏα ÏÎ±Ï Î½Î± αÏοÏÏÎλλονÏαι μÎÏÏ ÎιακομιÏÏή, Ïε ανÏίθεÏη με Ïην ενÏÏμαÏÏμÎνη email λειÏÎ¿Ï Ïγία"; $lang['SMTP_server'] = "SMTP Server ÎιεÏÎ¸Ï Î½Ïη"; $lang['SMTP_username'] = "SMTP Îνομα ÏÏήÏÏη"; $lang['SMTP_username_explain'] = "ÎιÏάγεÏε Ïνομα ÏÏήÏÏη μÏνο εάν ο smtp διακομιÏÏÎ®Ï Ïο αÏαιÏεί"; $lang['SMTP_password'] = "SMTP ÎÏδικÏÏ"; $lang['SMTP_password_explain'] = "ÎιÏάγεÏε κÏÎ´Î¹ÎºÏ Î¼Ïνο εάν ο smtp διακομιÏÏÎ®Ï Ïο αÏαιÏεί"; $lang['Disable_privmsg'] = "Î ÏοÏÏÏικά ÎηνÏμαÏα"; $lang['Inbox_limits'] = "ÎÎγιÏÏÎ¿Ï Î±Ï. Î¼Î·Î½Ï Î¼Î¬ÏÏν ÏÏα ÎιÏεÏÏÏμενα"; $lang['Sentbox_limits'] = "ÎÎγιÏÏÎ¿Ï Î±Ï. Î¼Î·Î½Ï Î¼Î¬ÏÏν ÏÏα ÎÏεÏÏαλμÎνα"; $lang['Savebox_limits'] = "ÎÎγιÏÏÎ¿Ï Î±Ï. Î¼Î·Î½Ï Î¼Î¬ÏÏν ÏÏα Î ÏÎ¿Ï Î¦Ïλαξη"; $lang['Cookie_settings'] = "Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï Cookie"; $lang['Cookie_settings_explain'] = "ÎÏ ÏÎÏ Î¿Î¹ λεÏÏομÎÏÎµÎ¹ÎµÏ ÏεÏιγÏάÏÎ¿Ï Î½ για Ïο ÏÏÏ Ïα cookies θα αÏοÏÏÎλλονÏαι ÏÏÎ¿Ï Ï ÏÏ Î»Î»Î¿Î¼ÎµÏÏηÏÎÏ ÏÏν ÏÏηÏÏÏν. ΣÏÎ¹Ï ÏεÏιÏÏÏÏεÏÎµÏ ÏεÏιÏÏÏÏÎµÎ¹Ï Î¿Î¹ εξ οÏιÏÎ¼Î¿Ï ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï Î¸Î± καλÏÏÎ¿Ï Î½ ÏÎ»ÎµÏ ÏÎ¹Ï ÏεÏιÏÏÏÏειÏ, να είÏÏε ÏÏοÏεκÏικοί εάν ÏÏειάζεÏαι να Î±Î»Î»Î¬Î¾Î¿Ï Î½ Î±Ï ÏÎÏ Î¿Î¹ ÏÏ Î¸Î¼Î¯ÏειÏ, μια Î»Î¬Î¸Î¿Ï ÏÏθμιÏη μÏοÏεί να αÏοκλείÏει Ïην Î´Ï Î½Î±ÏÏÏηÏα ÏÏα μÎλη να ÏÏ Î½Î´ÎονÏαι ÏÏο ÏÏÏÏημα."; $lang['Cookie_domain'] = "Cookie domain"; $lang['Cookie_name'] = "Cookie name"; $lang['Cookie_path'] = "Cookie path"; $lang['Cookie_secure'] = "Cookie secure"; $lang['Cookie_secure_explain'] = "Îάν ο διακομιÏÏÎ®Ï ÏÎ±Ï Î»ÎµÎ¹ÏÎ¿Ï Ïγεί μÎÏÏ SSL ενεÏγοÏοιήÏÏε Ïο, ειδάλλÏÏ Î±ÏήÏÏε Ïο ÏÏ ÎÏει"; $lang['Session_length'] = "ÎιάÏκεια Session [ Î´ÎµÏ ÏεÏÏλεÏÏα ]"; // Visual Confirmation $lang['Visual_confirm'] = 'ÎνεÏγοÏοιήÏÏε οÏÏική εÏιβεβαίÏÏη'; $lang['Visual_confirm_explain'] = 'Î¥ÏοÏÏεÏνει ÏÎ¿Ï ÏÏήÏÏÎµÏ Î½Î± ειÏÎ¬Î³Î¿Ï Î½ Îναν κÏÎ´Î¹ÎºÏ Î±ÏÏÎ±Î»ÎµÎ¯Î±Ï ÏÎ¿Ï ÏÎ¿Ï Ï ÎµÎ¼ÏανίζεÏαι Ïε μια εικÏνα για Ïην εγγÏαÏή ÏÎ¿Ï Ï.'; // Autologin Keys - added 2.0.18 $lang['Allow_autologin'] = 'ÎÏιÏÏÎÏÏε ÏÎ¹Ï Î±Ï ÏÏμαÏÎµÏ ÎµÎ¹ÏαγÏγÎÏ ÏÏηÏÏÏν'; $lang['Allow_autologin_explain'] = 'ÎÎ¹ÎµÏ ÎºÏινίζει εάν εÏιÏÏÎÏεÏαι η εÏιλογή αÏÏ ÏÎ¿Ï Ï ÏÏήÏÏÎµÏ Î½Î± ειÏάγονÏαι Î±Ï ÏÏμαÏα ÏÏην Î. Î£Ï Î¶Î®ÏηÏη'; $lang['Autologin_time'] = 'Îήξη Î±Ï ÏÏμαÏÎ·Ï ÎµÎ¹ÏαγÏÎ³Î®Ï ÏÏηÏÏÏν'; $lang['Autologin_time_explain'] = 'Î ÏÏÎµÏ Î¼ÎÏÎµÏ ÎµÎ¯Î½Î±Î¹ διαθÎÏιμη μια Î±Ï ÏÏμαÏη ειÏαγÏγή ÏÏήÏÏη ÏÏαν ο ÏÏήÏÏÎ·Ï Î´ÎµÎ½ εÏιÏκÎÏÏεÏαι Ïον Ïίνακα. ÎÏιλÎξÏε μηδÎν για να αÏενεÏγοÏοιήÏεÏε Ïην Î±Ï ÏÏμαÏη λήξη.'; // // Forum Management // $lang['Forum_admin'] = "ÎιαÏείÏιÏη Î. Î£Ï Î¶Î·ÏήÏεÏν"; $lang['Forum_admin_explain'] = "Σε Î±Ï Ïή Ïην Ïελίδα μÏοÏείÏε να ÏÏοÏθÎÏεÏε, να διαγÏάÏεÏε, να εÏεξεÏγαÏθείÏε, να ανακαÏαÏάξεÏε και να ÏÏ Î³ÏÏονίÏεÏε ÏÎ¹Ï Î. Î£Ï Î¶Î·ÏήÏειÏ"; $lang['Edit_forum'] = "ÎÏεξεÏγαÏία Î.Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Create_forum'] = "ÎÎ·Î¼Î¹Î¿Ï Ïγία νÎÎ±Ï Î.Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Create_category'] = "ÎÎ·Î¼Î¹Î¿Ï Ïγία νÎÎ±Ï ÎºÎ±ÏηγοÏίαÏ"; $lang['Remove'] = "ÎÏομάκÏÏ Î½Ïη"; $lang['Action'] = "ÎνÎÏγεια"; $lang['Update_order'] = "ÎναδιάÏθÏÏÏη ΣειÏάÏ"; $lang['Config_updated'] = "Îι ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï ÏÎ·Ï Î.Î£Ï Î¶Î®ÏηÏÎ·Ï ÎµÎ½Î·Î¼ÎµÏÏθηκαν με εÏιÏÏ Ïία"; $lang['Edit'] = "ÎÏεξεÏγαÏία"; $lang['Delete'] = "ÎιαγÏαÏή"; $lang['Move_up'] = "ÎεÏακίνηÏη ΠάνÏ"; $lang['Move_down'] = "ÎεÏακίνηÏη ÎάÏÏ"; $lang['Resync'] = "Î£Ï Î³ÏÏονιÏμÏÏ"; $lang['No_mode'] = "Îεν εÏιλÎξαÏε μÎθοδο"; $lang['Forum_edit_delete_explain'] = "Î ÏαÏακάÏÏ ÏÏÏμα ÏÎ±Ï ÎµÏιÏÏÎÏει να ÏÏοÏαÏμÏÏεÏε ÏÎ»ÎµÏ ÏÎ¹Ï Î³ÎµÎ½Î¹ÎºÎÏ ÎµÏιλογÎÏ ÏÎ¿Ï ÏÏ ÏÏήμαÏοÏ. Îια Ïα ÎÎλη και ÏÎ¹Ï Î. Î£Ï Î¶Î·ÏήÏÎµÎ¹Ï ÏÏηÏιμοÏοιήÏÏε ÏÎ¿Ï Ï Î±Î½Î¬Î»Î¿Î³Î¿Ï Ï ÏÏ Î½Î´ÎÏÎ¼Î¿Ï Ï ÏÏο αÏιÏÏεÏÏ Ïμήμα ÏÎ¿Ï ÏαÏαθÏÏÎ¿Ï "; $lang['Move_contents'] = "ÎεÏακίνηÏη ÏÎ»Î¿Ï ÏÎ¿Ï ÏεÏιεÏομÎÎ½Î¿Ï "; $lang['Forum_delete'] = "ÎιαγÏαÏή Î.Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Forum_delete_explain'] = "Î ÏαÏακάÏÏ ÏÏÏμα ÏÎ±Ï ÎµÏιÏÏÎÏει να διαγÏάÏεÏε μια Î.Î£Ï Î¶Î®ÏηÏη ( ή καÏηγοÏία ) και να οÏίÏεÏε ÏÎ¿Ï Î½Î± ÏιλοξενηθοÏν οι Îεμ. ÎνÏÏηÏÎµÏ ÏÎ·Ï ( ή οι Î. Î£Ï Î¶Î·ÏήÏÎµÎ¹Ï ) ÏÎ¿Ï ÏεÏιÎÏει"; $lang['Status_locked'] = 'ÎλειδÏμÎνη'; $lang['Status_unlocked'] = 'ÎνοικÏή'; $lang['Forum_settings'] = "ÎενικÎÏ ÎÏιλογÎÏ Î.Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Forum_name'] = "ÎνομαÏία Î.Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Forum_desc'] = "ΠεÏιγÏαÏή"; $lang['Forum_status'] = "ÎαÏάÏÏαÏη Î.Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Forum_pruning'] = "ÎÏ ÏοεκκαθάÏιÏη"; $lang['prune_freq'] = "ÎλεγÏÎ¿Ï Î·Î»Î¹ÎºÎ¯Î±Ï Îεμ.ÎνÏÏηÏÎ±Ï ÎºÎ¬Î¸Îµ"; $lang['prune_days'] = "ÎÏομάκÏÏ Î½Ïη Îεμ.ÎνÏÏηÏÎ±Ï ÏÏÏÎ¯Ï Î¼Î·Î½ÏμαÏα ÏÎ Î±Ï Ïήν για"; $lang['Set_prune_data'] = "ÎÏεÏε ενεÏγοÏοιήÏει Ïην Î±Ï ÏοεκκαθάÏιÏη για Î±Ï Ïήν Ïην Î.Î£Ï Î¶Î®ÏηÏη αλλά δεν οÏίÏαÏε Ïην ÏεÏιοδικÏÏηÏα Ïε ημÎÏεÏ. ΠαÏÎ±ÎºÎ±Î»Ï ÎµÏιÏÏÏÎÏÏε και διοÏθÏÏÏε Ïο"; $lang['Move_and_Delete'] = "ÎεÏακίνηÏη και ÎιαγÏαÏή"; $lang['Delete_all_posts'] = "ÎιαγÏαÏή ÏλÏν ÏÏν Î¼Î·Î½Ï Î¼Î¬ÏÏν"; $lang['Nowhere_to_move'] = "ÎενÏÏ ÏÏοοÏιÏμÏÏ"; $lang['Edit_Category'] = "ÎÏεξεÏγαÏία ÎαÏηγοÏίαÏ"; $lang['Edit_Category_explain'] = "ΧÏηÏιμοÏοιήÏÏε Î±Ï Ïήν Ïην ÏÏÏμα για να εÏεξεÏγαÏθείÏε Ïο Ïνομα ÏÎ·Ï ÎºÎ±ÏηγοÏίαÏ."; $lang['Forums_updated'] = "Îι ÏληÏοÏοÏÎ¯ÎµÏ ÏÎ·Ï Î.Î£Ï Î¶Î®ÏηÏÎ·Ï ÎºÎ±Î¹ ÏÎ·Ï ÎαÏηγοÏÎ¯Î±Ï ÎµÎ½Î·Î¼ÎµÏÏθηκαν εÏιÏÏ ÏÏÏ"; $lang['Must_delete_forums'] = "Î ÏÎÏει να διαγÏάÏεÏε ÏÎ»ÎµÏ ÏÎ¹Ï Î. Î£Ï Î¶Î·ÏήÏÎµÎ¹Ï ÏÏοÏÎ¿Ï Î¼ÏοÏÎÏεÏε να διαγÏάÏεÏε Î±Ï Ïήν Ïην καÏηγοÏία"; $lang['Click_return_forumadmin'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏÎ¹Ï Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï Î. Î£Ï Î¶Î®ÏηÏηÏ"; // // Smiley Management // $lang['smiley_title'] = "ÎÏγαλείο εÏεξεÏγαÏÎ¯Î±Ï Î¦Î±ÏÏοÏλεÏ"; $lang['smile_desc'] = "ÎÏÏ ÎµÎ´Ï Î¼ÏοÏείÏε να ÏÏοÏθÎÏεÏε, να διαγÏάÏεÏε και να εÏεξεÏγαÏθείÏε Ïα emoticons ή smileys (ÏαÏÏοÏλεÏ)) Ïα οÏοία μÏοÏοÏν να ÏÏηÏιμοÏοιοÏν Ïα μÎλη ÏÎ±Ï ÏÏÎ¹Ï Î±Î½Î±ÏÏήÏÎµÎ¹Ï ÏÎ¿Ï Ï ÎºÎ±Î¹ ÏÏα ÏÏοÏÏÏικά ÏÎ¿Ï Ï Î¼Î·Î½ÏμαÏα."; $lang['smiley_config'] = "Î¡Ï Î¸Î¼Î¯ÏÎµÎ¹Ï Î¦Î±ÏÏοÏλαÏ"; $lang['smiley_code'] = "ÎÏÎ´Î¹ÎºÎ±Ï Î¦Î±ÏÏοÏλαÏ"; $lang['smiley_url'] = "ÎÏÏείο ÎικÏÎ½Î±Ï Î¦Î±ÏÏοÏλαÏ"; $lang['smiley_emot'] = "ÎκÏÏαÏη ΦαÏÏοÏλαÏ"; $lang['smile_add'] = "Î ÏοÏθήκη νÎÎ±Ï Î¦Î±ÏÏοÏλαÏ"; $lang['Smile'] = "ΦαÏÏοÏλεÏ"; $lang['Emotion'] = "ÎκÏÏαÏη"; $lang['Select_pak'] = "ÎÏιλογή αÏÏÎµÎ¯Î¿Ï (.pak)"; $lang['replace_existing'] = "ÎνÏικαÏάÏÏαÏη ΦαÏÏοÏλαÏ"; $lang['keep_existing'] = "ÎιαÏήÏηÏη Î¥ÏάÏÏονÏÎ¿Ï Î¦Î±ÏÏοÏλαÏ"; $lang['smiley_import_inst'] = "Î ÏÎÏει να αÏοÏÏ Î¼ÏιÎÏεÏε Ïο ÏακÎÏο smiley και να ανÏιγÏάÏεÏε Ïλα Ïα αÏÏεία ÏÏο οÏιÏμÎνο αÏÏ Ïην εγκαÏάÏÏαÏη ÏÎ±Ï Ïάκελο. ÎαÏÏÏιν δÏÏÏε ÏÎ¹Ï Î±Î½Î¬Î»Î¿Î³ÎµÏ ÏληÏοÏοÏÎ¯ÎµÏ Ï' Î±Ï Ïήν Ïην ÏÏÏμα για να ειÏάγεÏε Ïο ÏακÎÏο ΦαÏÏοÏλεÏ."; $lang['smiley_import'] = "ÎιÏαγÏγή ΠακÎÏÎ¿Ï Î¦Î±ÏÏοÏλεÏ"; $lang['choose_smile_pak'] = "ÎÏιλÎξÏε Îνα Smile ΠακÎÏο .pak"; $lang['import'] = "ÎιÏαγÏγή ΦαÏÏοÏλαÏ"; $lang['smile_conflicts'] = "Τι ÏÏÎÏει να ÎºÎ¬Î½Ï Ïε ÏεÏίÏÏÏÏη διενÎξεÏν"; $lang['del_existing_smileys'] = "ÎιαγÏαÏή Ï ÏαÏÏÏνÏÏν smileys ÏÏιν Ïην ειÏαγÏγή"; $lang['import_smile_pack'] = "ÎιÏαγÏγή ΠακÎÏÎ¿Ï Î¦Î±ÏÏοÏλεÏ"; $lang['export_smile_pack'] = "ÎÎ·Î¼Î¹Î¿Ï Ïγία ΠακÎÏÎ¿Ï Î¦Î±ÏÏοÏλεÏ"; $lang['export_smiles'] = "Îια να Î´Î·Î¼Î¹Î¿Ï ÏγήÏεÏε Îνα ÏακÎÏο με ÏαÏÏοÏÎ»ÎµÏ Î±ÏÏ Ïα ήδη Ï ÏάÏÏονÏα εικονίδια, ÏαÏήÏÏε %sÎδÏ%s για να Ïο μεÏαÏοÏÏÏÏεÏε ÏÏον Ï ÏολογιÏÏή ÏÎ±Ï ÏÏ smiles.pak αÏÏείο. ÎÏÏÏε ÏÎ¿Ï Îνα Ïνομα διαÏηÏÏνÏÎ±Ï Ïην καÏάληξη .pak. ÎαÏÏÏιν Î´Î·Î¼Î¹Î¿Ï ÏγήÏÏε Îνα zip αÏÏείο με ÏÎ»ÎµÏ ÏÎ¹Ï ÎµÎ¹ÎºÏÎ½ÎµÏ ÏÏ Î½ Ïο .pak αÏÏείο ÏÎ¿Ï Î´Î·Î¼Î¹Î¿Ï ÏγήÏαÏε ÏαÏαÏάνÏ."; $lang['smiley_add_success'] = "Îι ÏαÏÏοÏÎ»ÎµÏ ÏÏοÏÏÎθηκαν με εÏιÏÏ Ïία"; $lang['smiley_edit_success'] = "Îι ÏαÏÏοÏÎ»ÎµÏ ÎµÎ½Î·Î¼ÎµÏÏθηκαν με εÏιÏÏ Ïία"; $lang['smiley_import_success'] = "Το ΠακÎÏο ΦαÏÏοÏÎ»ÎµÏ ÎµÎ¹ÏήÏθη με εÏιÏÏ Ïία!"; $lang['smiley_del_success'] = "ΠαÏομάκÏÏ Î½Ïη ÏÏν ΦαÏÏοÏλÏν ήÏαν εÏιÏÏ ÏήÏ"; $lang['Click_return_smileadmin'] = "ΠαÏήÏÏε %sÎδÏ%s για Ïην εÏιÏÏÏοÏή ÏÎ±Ï ÏÏην ÎιαÏείÏιÏη ΦαÏÏοÏλεÏ"; // // User Management // $lang['User_admin'] = "ÎιαÏείÏιÏη ÎελÏν"; $lang['User_admin_explain'] = "ÎÎ´Ï Î¼ÏοÏείÏε να ÏÏοÏοÏοιήÏεÏε ÏÎ¹Ï ÏληÏοÏοÏÎ¯ÎµÏ ÎÎÎ»Î¿Ï Ï ÎºÎ±Î¹ κάÏÎ¿Î¹ÎµÏ Î¹Î´Î¹ÎºÎÏ ÎµÏιλογÎÏ ÏÎ¿Ï Ï. Îια να ÏÏοÏοÏοιήÏεÏε Ïα δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï Î¼ÎµÎ»Ïν ÏαÏÎ±ÎºÎ±Î»Ï ÏÏηÏιμοÏοιήÏÏε Ïην Ïελίδα ÏÏν δικαιÏμάÏÏν ÏÏÏÏβαÏÎ·Ï ÎελÏν και ÎμάδÏν."; $lang['Look_up_user'] = "ÎνάκÏηÏη μÎÎ»Î¿Ï Ï"; $lang['Admin_user_fail'] = "Îεν δÏναÏαι η ανανÎÏÏη ÏÎ¿Ï ÏÏοÏίλ μÎÎ»Î¿Ï Ï."; $lang['Admin_user_updated'] = "Το ÏÏοÏίλ ÎÎÎ»Î¿Ï Ï Î±Î½Î±Î½ÎµÏθηκε με εÏιÏÏ Ïία."; $lang['Click_return_useradmin'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏη ÎιαÏείÏιÏη ÎελÏν"; $lang['User_delete'] = "ÎιαγÏαÏή ÎÎÎ»Î¿Ï Ï"; $lang['User_delete_explain'] = "ΠαÏήÏÏε ÎµÎ´Ï Î³Î¹Î± να διαγÏάÏεÏε Î±Ï ÏÏ Ïο ÎÎλοÏ, η λειÏÎ¿Ï Ïγία Î±Ï Ïή είναι μη αναÏÏÏÎÏιμη."; $lang['User_deleted'] = "Το ÎÎÎ»Î¿Ï Î´Î¹Î±Î³ÏάÏηκε με εÏιÏÏ Ïία."; $lang['User_status'] = "Το ÎÎÎ»Î¿Ï ÎµÎ¯Î½Î±Î¹ ενεÏγÏ"; $lang['User_allowpm'] = "ÎÏοÏεί να αÏοÏÏÎλλει Î ÏογÏ. ÎηνÏμαÏα"; $lang['User_allowavatar'] = "ÎÏοÏεί να αÏεικονίζει ÎικÏνεÏ"; $lang['Admin_avatar_explain'] = "ÎÎ´Ï Î¼ÏοÏείÏε να δείÏε και να διαγÏάÏεÏε ÏÎ¹Ï ÏÏÎÏονÏÎµÏ ÎικÏÎ½ÎµÏ ÏÏν ÎελÏν."; $lang['User_special'] = "Îιδικά Ïεδία μÏνο για διαÏειÏιÏÏÎÏ"; $lang['User_special_explain'] = "Τα Ïεδία Î±Ï Ïά δεν είναι ÏÏοÏοÏοιήÏιμα αÏÏ Ïα μÎλη. ΠεÏÎ¹Î»Î±Î¼Î²Î¬Î½Î¿Ï Î½ ÏÏοιÏεία ελÎγξιμα μÏνο αÏÏ ÏÎ¿Ï Ï Î´Î¹Î±ÏειÏιÏÏÎÏ."; // // Group Management // $lang['Group_administration'] = "ÎιαÏείÏιÏη ÎμάδÏν"; $lang['Group_admin_explain'] = "Σ' Î±Ï ÏÏν Ïον Ïίνακα μÏοÏείÏε να διαÏειÏιÏθείÏε ÏÎ¹Ï Î¿Î¼Î¬Î´ÎµÏ ÎελÏν, μÏοÏείÏε να διαγÏάÏεÏε να Î´Î·Î¼Î¹Î¿Ï ÏγήÏεÏε και να εÏεξεÏγαÏθείÏε Î±Ï ÏÎÏ ÏÎ¹Ï ÎμάδεÏ. ÎÏοÏείÏε να εÏιλÎξεÏε Ïον Î£Ï Î½ÏονιÏÏή να οÏίÏεÏε εάν είναι ανοικÏή ή κλειÏÏή για νÎα ÎÎλη Î±Ï Ïή η ομάδα και να οÏίÏεÏε Ïο Ïνομα ÏηÏ"; $lang['Error_updating_groups'] = "ΠαÏÎ¿Ï ÏιάÏÏηκε ÏÏάλμα καÏά Ïην ενημÎÏÏÏη ÏÏν ÎμάδÏν"; $lang['Updated_group'] = "Î Îμάδα ενημεÏÏθηκε με εÏιÏÏ Ïία"; $lang['Added_new_group'] = "ΠνÎα Îμάδα Î´Î·Î¼Î¹Î¿Ï Ïγήθηκε με εÏιÏÏ Ïία"; $lang['Deleted_group'] = "ΠνÎα Îμάδα διαγÏάÏηκε με εÏιÏÏ Ïία"; $lang['New_group'] = "ÎÎ·Î¼Î¹Î¿Ï Ïγία νÎÎ±Ï ÎμάδαÏ"; $lang['Edit_group'] = "ÎÏεξεÏγαÏία ÎμάδαÏ"; $lang['group_name'] = "Îνομα ÎμάδαÏ"; $lang['group_description'] = "ΠεÏιγÏαÏή ÎμάδαÏ"; $lang['group_moderator'] = "Î£Ï Î½ÏονιÏÏÎ®Ï ÎμάδαÏ"; $lang['group_status'] = "ÎαÏάÏÏαÏη ÎμάδαÏ"; $lang['group_open'] = "ÎνοικÏή Îμάδα"; $lang['group_closed'] = "ÎλειÏÏή Îμάδα"; $lang['group_hidden'] = "ÎÏÏ Ïή Îμάδα"; $lang['group_delete'] = "ÎιαγÏαÏή ÎμάδαÏ"; $lang['group_delete_check'] = "ÎιαγÏαÏή Î±Ï ÏÎ®Ï ÏÎ·Ï ÎμάδαÏ"; $lang['submit_group_changes'] = "Î¥Ïοβολή ÎλλαγÏν"; $lang['reset_group_changes'] = "ÎηδενιÏμÏÏ ÎλλαγÏν"; $lang['No_group_name'] = "Î ÏÎÏει να δÏÏεÏε Îνα Ïνομα Ï' Î±Ï Ïήν Ïην Îμάδα"; $lang['No_group_moderator'] = "Î ÏÎÏει να οÏίÏεÏε Îναν Î£Ï Î½ÏονιÏÏή για Î±Ï Ïήν Ïην Îμάδα"; $lang['No_group_mode'] = "Î ÏÎÏει να οÏίÏεÏε εαν Î±Ï Ïή η Îμάδα είναι ανοικÏή ή κλειÏÏή"; $lang['No_group_action'] = 'Îεν οÏίÏαÏε καμία ενÎÏγεια'; $lang['delete_group_moderator'] = "Îα ÎιαγÏαÏεί ο ÏαλαιÏÏ Î£Ï Î½ÏονιÏÏÎ®Ï ÎμάδαÏ;"; $lang['delete_moderator_explain'] = "Îάν θÎλεÏε να διαγÏάÏεÏε Ïον ÏÎ±Î»Î±Î¹Ï Î£Ï Î½ÏονιÏÏή ÎμάδαÏ, εÏιλÎξÏε Î±Ï ÏÏ Ïο ÎºÎ¿Ï Ïάκι για να αÏομακÏÏ Î½Î¸ÎµÎ¯ και αÏÏ Ïην Îμάδα. Σε ανÏίθεÏη ÏεÏίÏÏÏÏη θα Ï ÏοβιβαÏθεί Ïε αÏÎ»Ï Î¼ÎÎ»Î¿Ï Î±Ï ÏÎ®Ï ÏÎ·Ï ÎμάδαÏ."; $lang['Click_return_groupsadmin'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏην ÎιαÏείÏιÏη ÎμάδÏν."; $lang['Select_group'] = "ÎÏιλÎξÏε Îμάδα"; $lang['Look_up_group'] = "ÎναζήÏηÏη ÎμάδαÏ"; // // Prune Administration // $lang['Forum_Prune'] = "ÎκκαθάÏιÏη Î. Î£Ï Î¶Î®ÏηÏηÏ"; $lang['Forum_Prune_explain'] = "ÎÏ Ïή η λειÏÎ¿Ï Ïγία θα διαγÏάÏει ÏÎ»ÎµÏ ÏÎ¹Ï Î. ÎνÏÏηÏÎµÏ Î¿Î¹ οÏÎ¿Î¯ÎµÏ Î´ÎµÎ½ δÎÏθηκαν μηνÏμαÏα για ÏεÏίοδο ημεÏÏν ÏÎ¿Ï Î¿ÏίζεÏε εÏείÏ. Îάν δεν δÏÏεÏε αÏÎ¹Î¸Î¼Ï ÏεÏιÏÎ´Î¿Ï Î¸Î± εκκαθαÏιÏÏοÏν ÏÎ»ÎµÏ Î¿Î¹ Îεμ. ÎνÏÏηÏεÏ. Îεν θα διαγÏαÏοÏν Îεμ. ÎνÏÏηÏÎµÏ Î¿Î¹ οÏÎ¿Î¯ÎµÏ ÏεÏιÎÏÎ¿Ï Î½ ÏηÏοÏοÏÎ¯ÎµÏ ÎµÎ½ ενεÏγεία ÏÏÏÏ ÎºÎ±Î¹ Ïα μηνÏμαÏα ÏαÏακÏηÏιÏμÎνα ÏÏ ÎνακοίνÏÏη. ÎÏ Ïά Ïα μηνÏμαÏα ÏÏÎÏει να Ïα διαγÏάÏεÏε με μη Î±Ï ÏÏμαÏο ÏÏÏÏο."; $lang['Do_Prune'] = "ÎκκίνηÏη ÎκκαθάÏιÏηÏ"; $lang['All_Forums'] = "ÎÎ»ÎµÏ ÏÎ¹Ï Î. Î£Ï Î¶Î·ÏήÏειÏ"; $lang['Prune_topics_not_posted'] = "ÎκκαθάÏιÏη Îεμ. ÎνοÏήÏÏν ÏÏÏÎ¯Ï Î±ÏάνÏηÏη για ÏεÏίοδο ημεÏÏν"; $lang['Topics_pruned'] = "Îι Îεμ. ÎνÏÏηÏÎµÏ ÎκκαθαÏίÏÏηκαν"; $lang['Posts_pruned'] = "Τα ÎηνÏμαÏα ÎκκαθαÏίÏÏηκαν"; $lang['Prune_success'] = "Î ÎκκαθάÏιÏη ÏλÏν ÏÏν Îεμ. ÎνοÏήÏÏν Îγινε με εÏιÏÏ Ïία"; // // Word censor // $lang['Words_title'] = "ÎνίÏÎ½ÎµÏ Ïη ÎÎξεÏν"; $lang['Words_explain'] = "Σ'Î±Ï ÏÏν Ïον Ïίνακα μÏοÏείÏε να ÏÏοÏθÎÏεÏε να εÏεξεÏγαÏθείÏε ή να αÏομακÏÏνεÏε ÏÎ¹Ï Î»ÎξειÏ, οι οÏÎ¿Î¯ÎµÏ Î¸Î± ανιÏνεÏονÏαι Î±Ï ÏÏμαÏα ÏÏÎ¹Ï Î. Î£Ï Î¶Î·ÏήÏειÏ, ÏÏ ÎµÏιÏλÎον λειÏÎ¿Ï Ïγία ÏÎ·Ï Î±Î½Î¯ÏÎ½ÎµÏ ÏÎ·Ï Î»ÎξεÏν ÏÎ¿Ï Î´ÎµÎ½ μÏοÏοÏν να ÏÏηÏιμοÏοιηθοÏν καÏά Ïην εÏιλογή ονÏμαÏÎ¿Ï Î¼ÎÎ»Î¿Ï Ï ÎºÎ±Ïά Ïην εγγÏαÏή νÎÎ¿Ï ÏÏήÏÏη. Îι ÏαÏακÏήÏÎµÏ Î¼ÏαλανÏÎÏ (*) εÏιÏÏÎÏονÏαι."; $lang['Word'] = "ÎÎξη"; $lang['Edit_word_censor'] = "ÎÏεξεÏγαÏία ανίÏÎ½ÎµÏ ÏÎ·Ï Î»ÎξεÏÏ"; $lang['Replacement'] = "Î¥ÏοκαÏάÏÏαÏο"; $lang['Add_new_word'] = "Î ÏοÏθήκη λÎξεÏÏ"; $lang['Update_word'] = "ÎνημÎÏÏÏη ανίÏÎ½ÎµÏ ÏÎ·Ï Î»ÎξεÏÏ"; $lang['Must_enter_word'] = "Î ÏÎÏει να ειÏαγάγεÏε λÎξη και Ïο Ï ÏοκαÏάÏÏαÏο ÏηÏ"; $lang['No_word_selected'] = "Îεν εÏιλÎξαÏε λÎξη για εÏεξεÏγαÏία"; $lang['Word_updated'] = "ΠεÏιλεγμÎνη ανίÏÎ½ÎµÏ Ïη λÎξεÏÏ ÎµÎ½Î·Î¼ÎµÏÏθηκε με εÏιÏÏ Ïία"; $lang['Word_added'] = "ΠανίÏÎ½ÎµÏ Ïη λÎξεÏÏ ÏÏοÏÏÎθηκε με εÏιÏÏ Ïία"; $lang['Word_removed'] = "ΠεÏιλεγμÎνη ανίÏÎ½ÎµÏ Ïη λÎξεÏÏ Î±ÏομακÏÏνθηκε με εÏιÏÏ Ïία"; $lang['Click_return_wordadmin'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏην ÎνίÏÎ½ÎµÏ Ïη ÎÎξεÏν"; // // Mass Email // $lang['Mass_email_explain'] = "ÎÏÏ ÎµÎ´Ï Î¼ÏοÏείÏε να ÏÏείλεÏε Î¼Î±Î¶Î¹ÎºÏ email Ï' Ïλα Ïα μÎλη είÏε ÏÏα μÎλη Î¼Î¹Î±Ï Î¿Î¼Î¬Î´Î±Ï. ÎÏ ÏÏ Î¸Î± γίνει με Ïην αÏοÏÏολή ανÏιγÏάÏÏν μηνÏμαÏÎ¿Ï Î¼Îµ Ïον λογαÏιαÏÎ¼Ï Î´Î¹Î±ÏειÏιÏÏή ÏÎ¿Ï ÎÏεÏε οÏίÏει ÏÏÎ¿Ï ÏÎ»Î¿Ï Ï ÏÎ¿Ï Ï ÏαÏαλήÏÏεÏ. Îάν ο αÏιθμÏÏ ÏÏν αÏοδεκÏÏν είναι ÏÎ¿Î»Ï Î¼ÎµÎ³Î¬Î»Î¿Ï Î¸Î± ÏÏειαÏθεί αÏκεÏÏÏ ÏÏÏÎ½Î¿Ï Î¼ÎÏÏι να ολοκληÏÏθεί η διαδικαÏία, Ïε καμία ÏεÏίÏÏÏÏη μην ÏÏαμαÏήÏεÏε Ïην Ïελίδα ÏÏα μιÏά ÏÎ·Ï Î´Î¹Î±Î´Î¹ÎºÎ±ÏίαÏ. Îίναι ÏÏ ÏÎ¹Î¿Î»Î¿Î³Î¹ÎºÏ Î¿Î¹ μαζικÎÏ Î±ÏοÏÏολÎÏ Î½Î± ÎºÎ±Î¸Ï ÏÏεÏοÏν, μÏÎ»Î¹Ï Î¿Î»Î¿ÎºÎ»Î·ÏÏθεί η διαδικαÏία θα ενημεÏÏθείÏε για Î±Ï ÏÏ."; $lang['Compose'] = "ΣÏνθεÏη"; $lang['Recipients'] = "ΠαÏαλήÏÏεÏ"; $lang['All_users'] = "Îλα Ïα ÎÎλη"; $lang['Email_successfull'] = "Το Î¼Î®Î½Ï Î¼Î± ÏÎ±Ï ÎÏει αÏοÏÏαλεί"; $lang['Click_return_massemail'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏην ÏÏÏμα ÏÎ¿Ï ÎÎ±Î¶Î¹ÎºÎ¿Ï email"; // // Ranks admin // $lang['Ranks_title'] = "ÎιαÏείÏιÏη ÎαθμÏν"; $lang['Ranks_explain'] = "Îε Î±Ï Ïήν Ïην ÏÏÏμα μÏοÏείÏε να ÏÏοÏθÎÏεÏε να δείÏε να εÏεξεÏγαÏθείÏε 'η να διαγÏάÏεÏε ÏÎ¿Ï Ï ÎαθμοÏÏ. ÎÏοÏείÏε εÏίÏÎ·Ï Î½Î± Î´Î·Î¼Î¹Î¿Ï ÏγήÏεÏε ÏÎ¿Ï Ï Î´Î¹ÎºÎ¿ÏÏ ÏÎ±Ï Î²Î±Î¸Î¼Î¿ÏÏ Î¿Î¹ οÏοίοι εÏαÏμÏζονÏαι μÎÏÏ ÏÎ·Ï Î´Î¹Î±ÏείÏιÏÎ·Ï Î¼ÎµÎ»Ïν."; $lang['Add_new_rank'] = "Î ÏοÏθήκη νÎÎ¿Ï ÎαθμοÏ"; $lang['Rank_title'] = "ΤίÏÎ»Î¿Ï ÎαθμοÏ"; $lang['Rank_special'] = "Î©Ï ÎδικÏÏ ÎαθμÏÏ"; $lang['Rank_minimum'] = "ÎλάÏιÏÏο Î¼Î·Î½Ï Î¼Î¬ÏÏν"; $lang['Rank_maximum'] = "ÎÎγιÏÏο Î¼Î·Î½Ï Î¼Î¬ÏÏν"; $lang['Rank_image'] = "Îικονίδιο ÎÎ±Î¸Î¼Î¿Ï (ÎναÏοÏικά με Ïην Ïίζα καÏαλÏÎ³Î¿Ï phpBB2)"; $lang['Rank_image_explain'] = "ΧÏηÏιμοÏοιήÏÏε Ïο για να οÏίÏεÏε Îνα μικÏÏ ÎµÎ¹ÎºÎ¿Î½Î¯Î´Î¹Î¿ ÏÏεÏÎ¹ÎºÏ Î¼Îµ Ïον βαθμÏ"; $lang['Must_select_rank'] = "Î ÏÎÏει να εÏιλÎξεÏε βαθμÏ"; $lang['No_assigned_rank'] = "Îεν ÏÏ ÏÏεÏίÏθηκε κάÏÎ¿Î¹Î¿Ï Î²Î±Î¸Î¼ÏÏ"; $lang['Rank_updated'] = "ΠβαθμÏÏ Î±Î½Î±Î½ÎµÏθηκε με εÏιÏÏ Ïία"; $lang['Rank_added'] = "ΠβαθμÏÏ ÏÏοÏÏÎθηκε με εÏιÏÏ Ïία"; $lang['Rank_removed'] = "ΠβαθμÏÏ Î´Î¹Î±Î³ÏάÏηκε με εÏιÏÏ Ïία"; $lang['No_update_ranks'] = "ΠβαθμÏÏ Î´Î¹Î±Î³ÏάÏηκε με εÏιÏÏ Ïία ÏαÏ' Ïλα Î±Ï Ïά οι λογαÏιαÏμοί ÏÏν μελÏν ÏÎ¿Ï ÏÏηÏιμοÏοιοÏÏαν Î±Ï ÏÏν Ïον Î²Î±Î¸Î¼Ï Î´ÎµÎ½ ενημεÏÏθηκαν. Îα ÏÏειαÏÏεί να Ïο αλάξεÏε Î±Ï ÏÏ Î¼Îµ ÏειÏοκίνηÏο ÏÏÏÏο"; $lang['Click_return_rankadmin'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏην ÎιαÏείÏιÏη ÎαθμÏν"; // // Disallow Username Admin // $lang['Disallow_control'] = "ÎλεγÏÎ¿Ï ÎνομάÏÏν ÎελÏν"; $lang['Disallow_explain'] = "ÎÎ´Ï Î¼ÏοÏείÏε να οÏίÏεÏε ονÏμαÏα μελÏν Ïα οÏοία δεν θα εÏιÏÏÎÏονÏαι να ÏÏηÏιμοÏοιηθοÏν. Τα αÏαγοÏÎµÏ Î¼Îνα ονÏμαÏα μÏοÏοÏν να οÏιÏÏοÏν και με ÏÏήÏη ÏαÏακÏήÏα μÏαλανÏÎÏ *. Î ÏοÏοÏή Ïνομα Ïο οÏοίο ÎÏει ήδη εÏιλεγεί δεν μÏοÏείÏε να Ïο αÏοκλείÏεÏε, ÏÏÎÏει ÏÏÏÏα να διαγÏαÏή ο ÏÏήÏÏÎ·Ï ÎºÎ±Î¹ καÏÏÏιν να ειÏαÏθεί ÏÏα αÏαγοÏÎµÏ Î¼Îνα"; $lang['Delete_disallow'] = "ÎιαγÏαÏή"; $lang['Delete_disallow_title'] = "ÎÏομάκÏÏ Î½Ïη ÎÏοκλειÏμÎÎ½Î¿Ï ÎνÏμαÏοÏ"; $lang['Delete_disallow_explain'] = "ÎÏοÏείÏε να αÏομακÏÏνεÏε Îνα αÏαγοÏÎµÏ Î¼Îνο Ïνομα, εÏιλÎγονÏÎ±Ï Ïο και καÏÏÏιν ÏαÏÏνÏÎ±Ï Ïην Ï Ïοβολή"; $lang['Add_disallow'] = "Î ÏοÏθήκη"; $lang['Add_disallow_title'] = "Î ÏοÏθήκη ονÏμαÏÎ¿Ï ÏÏÎ¿Ï Î±ÏαγÏÏÎµÏ Ïη"; $lang['Add_disallow_explain'] = "ÎÏοÏείÏε να ÏÏηÏιμοÏοιήÏεÏε Ïον ÏαÏακÏήÏα * ÏÏ Î¼ÏαλανÏÎÏ Î³Î¹Î± οÏοιοδήÏοÏε γÏάμμα"; $lang['No_disallowed'] = "Îεν Î¥ÏάÏÏÎ¿Ï Î½ ÎÏαγοÏÎµÏ Î¼Îνα ÎνÏμαÏα"; $lang['Disallowed_deleted'] = "Το αÏαγοÏÎµÏ Î¼Îνο Ïνομα διαγÏάÏηκε με εÏιÏÏ Ïία"; $lang['Disallow_successful'] = "Το αÏαγοÏÎµÏ Î¼Îνο Ïνομα ÏÏοÏεÏÎθη με εÏιÏÏ Ïία"; $lang['Disallowed_already'] = "Το Ïνομα ÏÎ¿Ï ÎµÎ¹ÏαγάγαÏε δεν μÏοÏεί να ÏÏοÏÏεθεί. Î¥ÏάÏÏει ήδη ÏÏην λίÏÏα ή Ï ÏάÏÏει ÏÏην ανίÏÎ½ÎµÏ Ïη λÎξεÏν ή Ï ÏάÏÏει ήδη Îνα εγγεγÏαμμÎνο μÎÎ»Î¿Ï Î¼Îµ Î±Ï ÏÏ Ïο Ïνομα"; $lang['Click_return_disallowadmin'] = "ΠαÏήÏÏε %sÎδÏ%s για να εÏιÏÏÏÎÏεÏε ÏÏον ÎλεγÏο ÎνομάÏÏν ÎελÏν"; // // Styles Admin // $lang['Styles_admin'] = "ÎιαÏείÏιÏη ΠαÏÎ¿Ï ÏιαÏÏικοÏ"; $lang['Styles_explain'] = "ÎÎÏα αÏÏ Î±Ï ÏÏν Ïον Ïίνακα μÏοÏείÏε να ÏÏοÏθÎÏεÏε, να διαγÏάÏεÏε, και να διαÏειÏιÏθείÏε ÏαÏÎ¿Ï ÏιαÏÏικά (templates and themes) Ïα οÏοία ÏÏοÏÏÎÏονÏαι ÏÏα μÎλη"; $lang['Styles_addnew_explain'] = "ΠακÏÎ»Î¿Ï Î¸Î· λίÏÏα είναι Ïλα Ïα διαθÎÏιμα ÏαÏÎ¿Ï ÏιαÏÏικά ÏÎ¿Ï Î®Î´Î· διαθÎÏεÏε. Τα ÏαÏÎ¿Ï ÏιαÏÏικά Î±Ï Ïά δεν ÎÏÎ¿Ï Î½ εγκαÏαÏÏαθεί ακÏμα ÏÏο phpBB. Îια να Ïα εγκαÏαÏÏήÏεÏε αÏλά ÏαÏήÏÏε Ïο ÎºÎ¿Ï Î¼Ïί -εγκαÏάÏÏαÏη- δίÏλα ÏÏο θÎμα ÏÎ¿Ï ÏÎ±Ï ÎµÎ½Î´Î¹Î±ÏÎÏει"; $lang['Select_template'] = "ÎÏιλογή ΠαÏÎ¿Ï ÏιαÏÏικοÏ"; $lang['Style'] = "ΣÏίλ"; $lang['Template'] = "Î ÏÏÏÏ Ïο"; $lang['Install'] = "ÎγκαÏάÏÏαÏη"; $lang['Download'] = "ÎεÏαÏÏÏÏÏÏη"; $lang['Edit_theme'] = "ÎÏεξεÏγαÏία ÎÎμαÏοÏ"; $lang['Edit_theme_explain'] = "ΣÏην ÏαÏακάÏÏ ÏÏÏμα μÏοÏείÏε να εÏεξεÏγαÏÏείÏε ÏÎ¹Ï ÏαÏαμÎÏÏÎ¿Ï Ï ÏÎ¿Ï ÎµÏιλεγμÎÎ½Î¿Ï Î¸ÎμαÏοÏ"; $lang['Create_theme'] = "ÎÎ·Î¼Î¹Î¿Ï Ïγία ÎÎμαÏοÏ"; $lang['Create_theme_explain'] = "ÎÎ·Î¼Î¹Î¿Ï ÏγήÏÏε με Î±Ï Ïήν Ïην ÏÏÏμα Îνα νÎο θÎμα για Ïο εÏιλεγμÎνο ÏÏÏÏÏ Ïο. ÎαÏά Ïην ειÏαγÏγή ÏÏÏμαÏÎ¿Ï ( Ïε δεκαεξαδική μοÏÏή ) ÏαÏαλείÏÏε Ïο αÏÏÎ¹ÎºÏ #, Ï.Ï... CCCCCC και ÏÏι #CCCCCC"; $lang['Export_themes'] = "ÎξαγÏγή ÎÎμαÏοÏ"; $lang['Export_explain'] = "ÎÎ´Ï Î¸Î± μÏοÏÎÏεÏε να εξαγάγεÏε Ïα ÏÏοιÏεία ÏÎ¿Ï Î¸ÎμαÏÎ¿Ï ÏÎ¿Ï ÎµÏιλεγμÎÎ½Î¿Ï ÏÏοÏÏÏÎ¿Ï . ÎÏιλÎξÏε Ïο ÏÏÏÏÏ Ïο αÏÏ Ïην ÏαÏακάÏÏ Î»Î¯ÏÏα και Ïο ÏÏÏÏημα θα Î´Î·Î¼Î¹Î¿Ï ÏγήÏει και θα αÏοθηκεÏÏει Îνα αÏÏείο ÏÏ Î¸Î¼Î¯ÏεÏν για Î±Ï ÏÏ Ïο θÎμα ÏÏον Ïάκελο ÏÏν ÏÏοÏÏÏÏν (template). Îάν δεν θα μÏοÏεί να Ïο αÏοθηκεÏÏει θα ÏÎ±Ï ÏÏοÏείνει να Ïο μεÏαÏοÏÏÏÏεÏε. Îια να μÏοÏεί να Ïο αÏοθηκεÏει ÏÏο διακομιÏÏή ÏÏÎÏει να δÏÏεÏε άδεια εγγÏαÏÎ®Ï ÏÏον Ïάκελο template. Îια ÏεÏιÏÏÏÏεÏÎµÏ ÏληÏοÏοÏÎ¯ÎµÏ Î±Î½Î±ÏÏÎξÏε ÏÏο αÏÏείο ÏÎ¿Ï phpBB 2 users guide."; $lang['Theme_installed'] = "Το εÏιλεγμÎνο θÎμα εγκαÏαÏÏάθηκε με εÏιÏÏ Ïία"; $lang['Style_removed'] = "Το εÏιλεγμÎνο ÏαÏÎ¿Ï ÏιαÏÏÎ¹ÎºÏ Î±ÏομακÏÏνθηκε αÏÏ Ïην ÎάÏη ÎεδομÎνÏν. Îια ολική αÏομάκÏÏ Î½Ïη αÏÏ Ïο ÏÏÏÏημα ÏÏÎÏει να διαγÏάÏεÏε Ïο ανÏίÏÏοιÏο αÏÏείο αÏÏ Ïον Ïάκελο ÏÏον οÏοίο βÏίÏκεÏε."; $lang['Theme_info_saved'] = "Îι ÏληÏοÏοÏÎ¯ÎµÏ ÏαÏÎ¿Ï ÏιαÏÏÎ¹ÎºÎ¿Ï Î³Î¹Î± Ïο εÏιλεγμÎνο ÏÏÏÏÏ Ïο αÏοθηκεÏÏηκαν. ÎÏαναÏÎÏεÏε Ïα δικαιÏμαÏα ÏÏÏÏβαÏÎ·Ï ÏÏο αÏÏείο theme_info.cfg (και εάν είναι Î´Ï Î½Î±ÏÏ ÎºÎ±Î¹ ÏÏο Ïάκελο template) Ïε ανάγνÏÏη-μÏνο"; $lang['Theme_updated'] = "Το εÏιλεγμÎνο θÎμα ενημεÏÏθηκε. Î ÏÎÏει να εξαγάγεÏε ÏÎ¹Ï Î½ÎÎµÏ ÏÏ Î¸Î¼Î¯ÏÎµÎ¹Ï Î¸ÎμαÏοÏ"; $lang['Theme_created'] = "Το θÎμα Î´Î·Î¼Î¹Î¿Ï Ïγήθηκε. Î ÏÎÏει να εξαγάγεÏε Ïο νÎο θÎμα ÏÏο αÏÏείο ÏÏ Î¸Î¼Î¯ÏεÏν θÎμαÏÎ¿Ï Î³Î¹Î± αÏÎ¿Î¸Î®ÎºÎµÏ Ïη ÏÎ¿Ï Î® για μεÏαÏοÏά ÏÎ¿Ï ÏÏÎ¿Ï Î±Î»Î»Î¿Ï ÏÏειαÏθεί "; $lang['Confirm_delete_style'] = "ÎίÏÏε ÏÎ¯Î³Î¿Ï ÏÎ¿Ï ÏÏι θÎλεÏε να διαγÏάÏεÏε Î±Ï ÏÏ Ïο ÏαÏÎ¿Ï ÏιαÏÏικÏ"; $lang['Download_theme_cfg'] = "Το ÏÏÏÏημα δεν μÏοÏεί να γÏάÏει ÏÏο αÏÏείο ÏÏ Î¸Î¼Î¯ÏεÏν θÎμαÏοÏ. ΠαÏήÏÏε Ïο ÏαÏακάÏÏ ÎºÎ¿Ï Î¼Ïί για να Ïο μεÏαÏοÏÏÏÏεÏε ÏÏο ÏÏÏÏημα ÏαÏ. ÎÏαν ολοκληÏÏθεί η διαδικαÏία μÏοÏείÏε να Ïο μεÏαÏÎÏεÏε ÏÏον Ïάκελο ÏÎ¿Ï ÏεÏιÎÏει Ïα αÏÏεία ÏÏοÏÏÏÏν. ÎαÏÏÏιν Î±Ï ÏÎ¿Ï Î¼ÏοÏείÏε να Ïο κάνεÏε ÏακÎÏο για διανομή ή να Ïο ÏÏηÏιμοÏοιήÏεÏε κάÏÎ¿Ï Î±Î»Î»Î¿Ï."; $lang['No_themes'] = "Το ÏÏÏÏÏ Ïο ÏÎ¿Ï ÎµÏιλÎξαÏε δεν ÏεÏιÎÏει θÎμαÏα. Îια να Î´Î·Î¼Î¹Î¿Ï ÏγήÏεÏε νÎο θÎμα ÏαÏήÏÏε Ïη ÎÎ·Î¼Î¹Î¿Ï Ïγία ÎÎμαÏÎ¿Ï ÏÏο αÏιÏÏεÏÏ ÏαÏÎ¬Î¸Ï Ïο."; $lang['No_template_dir'] = "Îεν μÏοÏεί να ανοίξε... [truncated message content] |
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_romanian/email In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/language/lang_romanian/email Added Files: admin_activate.tpl admin_send_email.tpl admin_welcome_activated.tpl admin_welcome_inactive.tpl coppa_welcome_inactive.tpl group_added.tpl group_approved.tpl group_request.tpl index.htm link_add.tpl link_edit.tpl privmsg_notify.tpl profile_send_email.tpl topic_notify.tpl user_activate.tpl user_activate_passwd.tpl user_welcome.tpl user_welcome_inactive.tpl Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: user_activate.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: profile_send_email.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: privmsg_notify.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: admin_send_email.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: group_request.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: admin_welcome_activated.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: user_welcome_inactive.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> --- NEW FILE: link_add.tpl --- Subject: Link added Charset: iso-8859-1 Dear Site Admin, Link {LINK_URL} added in forum {SITENAME}, please go to Links Management and validate it. If you no longer wish to receive such mail, you can go to Links Configuration Control. --- NEW FILE: user_welcome.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: admin_welcome_inactive.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_notify.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: coppa_welcome_inactive.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: group_added.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: link_edit.tpl --- Subject: Link edited Charset: iso-8859-1 Dear Site Admin, Link {LINK_URL} was edited in forum {SITENAME}, please go to Links Management and validate it. If you no longer wish to receive such mail, you can go to Links Configuration Control. --- NEW FILE: admin_activate.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: user_activate_passwd.tpl --- (This appears to be a binary file; contents omitted.) --- NEW FILE: group_approved.tpl --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:04:39
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/language/lang_romanian Added Files: index.htm lang_admin.php lang_bbcode.php lang_faq.php lang_main.php lang_meta.php search_stopwords.txt search_synonyms.txt Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: search_synonyms.txt --- --- NEW FILE: lang_meta.php --- <?php /** * * @package mxBB Portal Core * @version $Id: lang_meta.php,v 1.1 2008/12/31 01:44:41 orynider Exp $ * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // This file contains lang entries related to META tags. // // // First level of all language codes are based on the ISO-639 standard // as pointed by the RFC3066 "Tags for the Identification of Languages", // which is referenced by the HTML 4.01 Specification. // // More information can be found here: // http://www.w3.org/TR/html401/struct/dirlang.html#h-8.1.1 // ftp://ftp.rfc-editor.org/in-notes/rfc3066.txt // http://www.loc.gov/standards/iso639-2/langhome.html // // Note: There might be some mistakes in second level codes. // Apologies in advance for any mistake here. Feel free to contact // us if you believe anything must be changed here. Thanks // $lang['mx_meta']['langcode']['ab'] = "Abkhazian"; $lang['mx_meta']['langcode']['aa'] = "Afar"; $lang['mx_meta']['langcode']['af'] = "Afrikaans"; $lang['mx_meta']['langcode']['ak'] = "Akan"; $lang['mx_meta']['langcode']['sq'] = "Albanian"; $lang['mx_meta']['langcode']['am'] = "Amharic"; $lang['mx_meta']['langcode']['ar'] = "Arabic"; $lang['mx_meta']['langcode']['ar-ae'] = "Arabic (Arab Emirates)"; $lang['mx_meta']['langcode']['ar-bh'] = "Arabic (Bahrein)"; $lang['mx_meta']['langcode']['ar-eg'] = "Arabic (Egypt)"; $lang['mx_meta']['langcode']['ar-iq'] = "Arabic (Iraq)"; $lang['mx_meta']['langcode']['ar-jo'] = "Arabic (Jordania)"; $lang['mx_meta']['langcode']['ar-kw'] = "Arabic (Kuwait)"; $lang['mx_meta']['langcode']['ar-lb'] = "Arabic (Libanon)"; $lang['mx_meta']['langcode']['ar-ly'] = "Arabic (Lybia)"; $lang['mx_meta']['langcode']['ar-ma'] = "Arabic (Morocco)"; $lang['mx_meta']['langcode']['ar-om'] = "Arabic (Oman)"; $lang['mx_meta']['langcode']['ar-qa'] = "Arabic (Qtar)"; $lang['mx_meta']['langcode']['ar-sa'] = "Arabic (Saudi Arabia)"; $lang['mx_meta']['langcode']['ar-sy'] = "Arabic (Syria)"; $lang['mx_meta']['langcode']['ar-tn'] = "Arabic (Tunisia)"; $lang['mx_meta']['langcode']['ar-ye'] = "Arabic (Yemen)"; $lang['mx_meta']['langcode']['an'] = "Aragonese"; $lang['mx_meta']['langcode']['hy'] = "Armenian"; $lang['mx_meta']['langcode']['as'] = "Assamese"; $lang['mx_meta']['langcode']['av'] = "Avaric"; $lang['mx_meta']['langcode']['ae'] = "Avestan"; $lang['mx_meta']['langcode']['ay'] = "Aymara"; $lang['mx_meta']['langcode']['az'] = "Azerbaijani"; $lang['mx_meta']['langcode']['bm'] = "Bambara"; $lang['mx_meta']['langcode']['ba'] = "Bashkir"; $lang['mx_meta']['langcode']['eu'] = "Basque"; $lang['mx_meta']['langcode']['be'] = "Belarusian"; $lang['mx_meta']['langcode']['bn'] = "Bengali"; $lang['mx_meta']['langcode']['bh'] = "Bihari"; $lang['mx_meta']['langcode']['bi'] = "Bislama"; $lang['mx_meta']['langcode']['bs'] = "Bosnian"; $lang['mx_meta']['langcode']['br'] = "Breton"; $lang['mx_meta']['langcode']['bg'] = "Bulgarian"; $lang['mx_meta']['langcode']['my'] = "Burmese"; $lang['mx_meta']['langcode']['ca'] = "Catalan"; $lang['mx_meta']['langcode']['ch'] = "Chamorro"; $lang['mx_meta']['langcode']['ce'] = "Chechen"; $lang['mx_meta']['langcode']['zh'] = "Chinese"; $lang['mx_meta']['langcode']['zh-hk'] = "Chinese (Hong-Kong)"; $lang['mx_meta']['langcode']['zh-cn'] = "Chinese (PRC)"; $lang['mx_meta']['langcode']['zh-sg'] = "Chinese (Singapour)"; $lang['mx_meta']['langcode']['zh-tw'] = "Chinese (Taiwan)"; $lang['mx_meta']['langcode']['cu'] = "Church Slavonic"; $lang['mx_meta']['langcode']['cv'] = "Chuvash"; $lang['mx_meta']['langcode']['kw'] = "Cornish"; $lang['mx_meta']['langcode']['co'] = "Corsican"; $lang['mx_meta']['langcode']['cr'] = "Cree"; $lang['mx_meta']['langcode']['hr'] = "Croatian"; $lang['mx_meta']['langcode']['cs'] = "Czech"; $lang['mx_meta']['langcode']['da'] = "Danish"; $lang['mx_meta']['langcode']['dv'] = "Divehi"; $lang['mx_meta']['langcode']['nl'] = "Dutch"; $lang['mx_meta']['langcode']['nl-be'] = "Dutch (Belgian)"; $lang['mx_meta']['langcode']['dz'] = "Dzongkha"; $lang['mx_meta']['langcode']['en'] = "English"; $lang['mx_meta']['langcode']['en-au'] = "English (Australia)"; $lang['mx_meta']['langcode']['en-bz'] = "English (Belize)"; $lang['mx_meta']['langcode']['en-ca'] = "English (Canada)"; $lang['mx_meta']['langcode']['en-ie'] = "English (Ireland)"; $lang['mx_meta']['langcode']['en-jm'] = "English (Jamaican)"; $lang['mx_meta']['langcode']['en-gb'] = "English (Great Britain)"; $lang['mx_meta']['langcode']['en-nz'] = "English (New Zeland)"; $lang['mx_meta']['langcode']['en-za'] = "English (South Africa)"; $lang['mx_meta']['langcode']['eo'] = "Esperanto"; $lang['mx_meta']['langcode']['et'] = "Estonian"; $lang['mx_meta']['langcode']['ee'] = "Ewe"; $lang['mx_meta']['langcode']['fo'] = "Faroese"; $lang['mx_meta']['langcode']['fj'] = "Fijian"; $lang['mx_meta']['langcode']['fi'] = "Finnish"; $lang['mx_meta']['langcode']['fr'] = "French"; $lang['mx_meta']['langcode']['fr-be'] = "French (Belgian)"; $lang['mx_meta']['langcode']['fr-ca'] = "French (Canada)"; $lang['mx_meta']['langcode']['fr-lu'] = "French (Luxembourg)"; $lang['mx_meta']['langcode']['fr-ch'] = "French (Switzerland)"; $lang['mx_meta']['langcode']['fy'] = "Frisian"; $lang['mx_meta']['langcode']['ff'] = "Fulah"; $lang['mx_meta']['langcode']['gl'] = "Gallegan"; $lang['mx_meta']['langcode']['lg'] = "Ganda"; $lang['mx_meta']['langcode']['ka'] = "Georgian"; $lang['mx_meta']['langcode']['de'] = "German"; $lang['mx_meta']['langcode']['de-li'] = "German (Liechtenstein)"; $lang['mx_meta']['langcode']['de-lu'] = "German (Luxembourg)"; $lang['mx_meta']['langcode']['de-ch'] = "German (Switzerland)"; $lang['mx_meta']['langcode']['gn'] = "Guarani"; $lang['mx_meta']['langcode']['gu'] = "Gujarati"; $lang['mx_meta']['langcode']['ht'] = "Haitian"; $lang['mx_meta']['langcode']['ha'] = "Hausa"; $lang['mx_meta']['langcode']['he'] = "Hebrew"; $lang['mx_meta']['langcode']['hz'] = "Herero"; $lang['mx_meta']['langcode']['hi'] = "Hindi"; $lang['mx_meta']['langcode']['ho'] = "Hiri Motu"; $lang['mx_meta']['langcode']['hu'] = "Hungarian"; $lang['mx_meta']['langcode']['is'] = "Icelandic"; $lang['mx_meta']['langcode']['io'] = "Ido"; $lang['mx_meta']['langcode']['ig'] = "Igbo"; $lang['mx_meta']['langcode']['id'] = "Indonesian"; $lang['mx_meta']['langcode']['ie'] = "Interlingue"; $lang['mx_meta']['langcode']['iu'] = "Inuktitut"; $lang['mx_meta']['langcode']['ik'] = "Inupiaq"; $lang['mx_meta']['langcode']['ga'] = "Irish"; $lang['mx_meta']['langcode']['it'] = "Italian"; $lang['mx_meta']['langcode']['it-ch'] = "Italian (Switzerland)"; $lang['mx_meta']['langcode']['ja'] = "Japanese"; $lang['mx_meta']['langcode']['jv'] = "Javanese"; $lang['mx_meta']['langcode']['kl'] = "Kalaallisut"; $lang['mx_meta']['langcode']['kn'] = "Kannada"; $lang['mx_meta']['langcode']['kr'] = "Kanuri"; $lang['mx_meta']['langcode']['ks'] = "Kashmiri"; $lang['mx_meta']['langcode']['kk'] = "Kazakh"; $lang['mx_meta']['langcode']['km'] = "Khmer"; $lang['mx_meta']['langcode']['ki'] = "Kikuyu"; $lang['mx_meta']['langcode']['rw'] = "Kinyarwanda"; $lang['mx_meta']['langcode']['ky'] = "Kirghiz"; $lang['mx_meta']['langcode']['kv'] = "Komi"; $lang['mx_meta']['langcode']['kg'] = "Kongo"; $lang['mx_meta']['langcode']['ko'] = "Korean"; $lang['mx_meta']['langcode']['ku'] = "Kurdish"; $lang['mx_meta']['langcode']['kj'] = "Kwanyama"; $lang['mx_meta']['langcode']['lo'] = "Lao"; $lang['mx_meta']['langcode']['la'] = "Latin"; $lang['mx_meta']['langcode']['lv'] = "Latvian"; $lang['mx_meta']['langcode']['li'] = "Limburgish"; $lang['mx_meta']['langcode']['ln'] = "Lingala"; $lang['mx_meta']['langcode']['lt'] = "Lithuanian"; $lang['mx_meta']['langcode']['lu'] = "Luba-Katanga"; $lang['mx_meta']['langcode']['lb'] = "Luxembourgish"; $lang['mx_meta']['langcode']['mk'] = "Macedonian"; $lang['mx_meta']['langcode']['mg'] = "Malagasy"; $lang['mx_meta']['langcode']['ms'] = "Malay"; $lang['mx_meta']['langcode']['ml'] = "Malayalam"; $lang['mx_meta']['langcode']['mt'] = "Maltese"; $lang['mx_meta']['langcode']['gv'] = "Manx"; $lang['mx_meta']['langcode']['mi'] = "Maori"; $lang['mx_meta']['langcode']['mr'] = "Marathi"; $lang['mx_meta']['langcode']['mh'] = "Marshallese"; $lang['mx_meta']['langcode']['el'] = "Modern Greek"; $lang['mx_meta']['langcode']['mo'] = "Moldavian"; $lang['mx_meta']['langcode']['mn'] = "Mongolian"; $lang['mx_meta']['langcode']['na'] = "Nauru"; $lang['mx_meta']['langcode']['nv'] = "Navajo"; $lang['mx_meta']['langcode']['nd'] = "Ndebele, North"; $lang['mx_meta']['langcode']['ng'] = "Ndonga"; $lang['mx_meta']['langcode']['ne'] = "Nepali"; $lang['mx_meta']['langcode']['nb'] = "Norwegian"; $lang['mx_meta']['langcode']['nn'] = "Norwegian Nynorsk"; $lang['mx_meta']['langcode']['ny'] = "Nyanja"; $lang['mx_meta']['langcode']['oc'] = "Occitan"; $lang['mx_meta']['langcode']['oj'] = "Ojibwa"; $lang['mx_meta']['langcode']['or'] = "Oriya"; $lang['mx_meta']['langcode']['om'] = "Oromo"; $lang['mx_meta']['langcode']['os'] = "Ossetian"; $lang['mx_meta']['langcode']['pi'] = "Pali"; $lang['mx_meta']['langcode']['pa'] = "Panjabi"; $lang['mx_meta']['langcode']['fa'] = "Persian"; $lang['mx_meta']['langcode']['pl'] = "Polish"; $lang['mx_meta']['langcode']['pt'] = "Portuguese"; $lang['mx_meta']['langcode']['pt-br'] = "Portuguese (Brazil)"; $lang['mx_meta']['langcode']['ps'] = "Pushto"; $lang['mx_meta']['langcode']['qu'] = "Quechua"; $lang['mx_meta']['langcode']['rm'] = "Raeto-Romance"; $lang['mx_meta']['langcode']['ro'] = "RomânÄ"; $lang['mx_meta']['langcode']['ro-mo'] = "RomânÄ (Moldova)"; $lang['mx_meta']['langcode']['rn'] = "Rundi"; $lang['mx_meta']['langcode']['ru'] = "Russian"; $lang['mx_meta']['langcode']['ru-mo'] = "Russian (Moldavia)"; $lang['mx_meta']['langcode']['sm'] = "Samoan"; $lang['mx_meta']['langcode']['sg'] = "Sango"; $lang['mx_meta']['langcode']['sa'] = "Sanskrit"; $lang['mx_meta']['langcode']['sc'] = "Sardinian"; $lang['mx_meta']['langcode']['gd'] = "Scottish Gaelic"; $lang['mx_meta']['langcode']['sr'] = "Serbian"; $lang['mx_meta']['langcode']['sn'] = "Shona"; $lang['mx_meta']['langcode']['ii'] = "Sichuan Yi"; $lang['mx_meta']['langcode']['sd'] = "Sindhi"; $lang['mx_meta']['langcode']['si'] = "Sinhalese"; $lang['mx_meta']['langcode']['sk'] = "Slovak"; $lang['mx_meta']['langcode']['sl'] = "Slovenian"; $lang['mx_meta']['langcode']['so'] = "Somali"; $lang['mx_meta']['langcode']['st'] = "Sotho"; $lang['mx_meta']['langcode']['nr'] = "South Ndebele"; $lang['mx_meta']['langcode']['es'] = "Spanish"; $lang['mx_meta']['langcode']['es-ar'] = "Spanish (Argentina)"; $lang['mx_meta']['langcode']['es-bo'] = "Spanish (Bolivia)"; $lang['mx_meta']['langcode']['es-cl'] = "Spanish (Chile)"; $lang['mx_meta']['langcode']['es-co'] = "Spanish (Colombia)"; $lang['mx_meta']['langcode']['es-cr'] = "Spanish (Costa Rica)"; $lang['mx_meta']['langcode']['es-sv'] = "Spanish (El Salvador)"; $lang['mx_meta']['langcode']['es-ec'] = "Spanish (Ecuador)"; $lang['mx_meta']['langcode']['es-gt'] = "Spanish (Guatemala)"; $lang['mx_meta']['langcode']['es-hn'] = "Spanish (Honduras)"; $lang['mx_meta']['langcode']['es-mx'] = "Spanish (Mexico)"; $lang['mx_meta']['langcode']['es-ni'] = "Spanish (Nicaragua)"; $lang['mx_meta']['langcode']['es-pa'] = "Spanish (Panama)"; $lang['mx_meta']['langcode']['es-py'] = "Spanish (Paraguay)"; $lang['mx_meta']['langcode']['es-pr'] = "Spanish (Puerto Rico)"; $lang['mx_meta']['langcode']['es-pe'] = "Spanish (Peru)"; $lang['mx_meta']['langcode']['es-tt'] = "Spanish (Trinidad)"; $lang['mx_meta']['langcode']['es-uy'] = "Spanish (Uruguay)"; $lang['mx_meta']['langcode']['es-ve'] = "Spanish (Venezuela)"; $lang['mx_meta']['langcode']['su'] = "Sundanese"; $lang['mx_meta']['langcode']['sw'] = "Swahili"; $lang['mx_meta']['langcode']['ss'] = "Swati"; $lang['mx_meta']['langcode']['sv'] = "Swedish"; $lang['mx_meta']['langcode']['sv-fi'] = "Swedish (Finland)"; $lang['mx_meta']['langcode']['tl'] = "Tagalog"; $lang['mx_meta']['langcode']['ty'] = "Tahitian"; $lang['mx_meta']['langcode']['tg'] = "Tajik"; $lang['mx_meta']['langcode']['ta'] = "Tamil"; $lang['mx_meta']['langcode']['tt'] = "Tatar"; $lang['mx_meta']['langcode']['te'] = "Telugu"; $lang['mx_meta']['langcode']['th'] = "Thai"; $lang['mx_meta']['langcode']['bo'] = "Tibetan"; $lang['mx_meta']['langcode']['ti'] = "Tigrinya"; $lang['mx_meta']['langcode']['to'] = "Tonga"; $lang['mx_meta']['langcode']['ts'] = "Tsonga"; $lang['mx_meta']['langcode']['tn'] = "Tswana"; $lang['mx_meta']['langcode']['tr'] = "Turkish"; $lang['mx_meta']['langcode']['tk'] = "Turkmen"; $lang['mx_meta']['langcode']['tw'] = "Twi"; $lang['mx_meta']['langcode']['uk'] = "Ukrainian"; $lang['mx_meta']['langcode']['ur'] = "Urdu"; $lang['mx_meta']['langcode']['ug'] = "Uyghur"; $lang['mx_meta']['langcode']['uz'] = "Uzbek"; $lang['mx_meta']['langcode']['ve'] = "Venda"; $lang['mx_meta']['langcode']['vi'] = "Vietnamese"; $lang['mx_meta']['langcode']['vo'] = "Volapük"; $lang['mx_meta']['langcode']['wa'] = "Walloon"; $lang['mx_meta']['langcode']['cy'] = "Welsh"; $lang['mx_meta']['langcode']['wo'] = "Wolof"; $lang['mx_meta']['langcode']['xh'] = "Xhosa"; $lang['mx_meta']['langcode']['yi'] = "Yiddish"; $lang['mx_meta']['langcode']['yo'] = "Yoruba"; $lang['mx_meta']['langcode']['za'] = "Zhuang"; $lang['mx_meta']['langcode']['zu'] = "Zulu"; // // Other related META tag entries follow... // $lang['mx_meta']['rating']['general'] = "General"; $lang['mx_meta']['rating']['14 years'] = "14 ani"; $lang['mx_meta']['rating']['restricted']= "RestricÅ£ionat"; $lang['mx_meta']['rating']['mature'] = "Matur"; $lang['mx_meta']['index']['index'] = "Index"; $lang['mx_meta']['index']['noindex'] = "FÄrÄ index"; $lang['mx_meta']['follow']['follow'] = "Follow"; $lang['mx_meta']['follow']['nofollow'] = "No follow"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: search_stopwords.txt --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lang_faq.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lang_main.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lang_admin.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: lang_bbcode.php --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:04:35
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_romanian_no_diacritics In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/language/lang_romanian_no_diacritics Added Files: index.htm lang_admin.php lang_main.php lang_meta.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: lang_meta.php --- <?php /** * * @package mxBB Portal Core * @version $Id: lang_meta.php,v 1.1 2008/12/31 01:44:52 orynider Exp $ * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * */ // // This file contains lang entries related to META tags. // // // First level of all language codes are based on the ISO-639 standard // as pointed by the RFC3066 "Tags for the Identification of Languages", // which is referenced by the HTML 4.01 Specification. // // More information can be found here: // http://www.w3.org/TR/html401/struct/dirlang.html#h-8.1.1 // ftp://ftp.rfc-editor.org/in-notes/rfc3066.txt // http://www.loc.gov/standards/iso639-2/langhome.html // // Note: There might be some mistakes in second level codes. // Apologies in advance for any mistake here. Feel free to contact // us if you believe anything must be changed here. Thanks // $lang['mx_meta']['langcode']['ab'] = "Abkhazian"; $lang['mx_meta']['langcode']['aa'] = "Afar"; $lang['mx_meta']['langcode']['af'] = "Afrikaans"; $lang['mx_meta']['langcode']['ak'] = "Akan"; $lang['mx_meta']['langcode']['sq'] = "Albanian"; $lang['mx_meta']['langcode']['am'] = "Amharic"; $lang['mx_meta']['langcode']['ar'] = "Arabic"; $lang['mx_meta']['langcode']['ar-ae'] = "Arabic (Arab Emirates)"; $lang['mx_meta']['langcode']['ar-bh'] = "Arabic (Bahrein)"; $lang['mx_meta']['langcode']['ar-eg'] = "Arabic (Egypt)"; $lang['mx_meta']['langcode']['ar-iq'] = "Arabic (Iraq)"; $lang['mx_meta']['langcode']['ar-jo'] = "Arabic (Jordania)"; $lang['mx_meta']['langcode']['ar-kw'] = "Arabic (Kuwait)"; $lang['mx_meta']['langcode']['ar-lb'] = "Arabic (Libanon)"; $lang['mx_meta']['langcode']['ar-ly'] = "Arabic (Lybia)"; $lang['mx_meta']['langcode']['ar-ma'] = "Arabic (Morocco)"; $lang['mx_meta']['langcode']['ar-om'] = "Arabic (Oman)"; $lang['mx_meta']['langcode']['ar-qa'] = "Arabic (Qtar)"; $lang['mx_meta']['langcode']['ar-sa'] = "Arabic (Saudi Arabia)"; $lang['mx_meta']['langcode']['ar-sy'] = "Arabic (Syria)"; $lang['mx_meta']['langcode']['ar-tn'] = "Arabic (Tunisia)"; $lang['mx_meta']['langcode']['ar-ye'] = "Arabic (Yemen)"; $lang['mx_meta']['langcode']['an'] = "Aragonese"; $lang['mx_meta']['langcode']['hy'] = "Armenian"; $lang['mx_meta']['langcode']['as'] = "Assamese"; $lang['mx_meta']['langcode']['av'] = "Avaric"; $lang['mx_meta']['langcode']['ae'] = "Avestan"; $lang['mx_meta']['langcode']['ay'] = "Aymara"; $lang['mx_meta']['langcode']['az'] = "Azerbaijani"; $lang['mx_meta']['langcode']['bm'] = "Bambara"; $lang['mx_meta']['langcode']['ba'] = "Bashkir"; $lang['mx_meta']['langcode']['eu'] = "Basque"; $lang['mx_meta']['langcode']['be'] = "Belarusian"; $lang['mx_meta']['langcode']['bn'] = "Bengali"; $lang['mx_meta']['langcode']['bh'] = "Bihari"; $lang['mx_meta']['langcode']['bi'] = "Bislama"; $lang['mx_meta']['langcode']['bs'] = "Bosnian"; $lang['mx_meta']['langcode']['br'] = "Breton"; $lang['mx_meta']['langcode']['bg'] = "Bulgarian"; $lang['mx_meta']['langcode']['my'] = "Burmese"; $lang['mx_meta']['langcode']['ca'] = "Catalan"; $lang['mx_meta']['langcode']['ch'] = "Chamorro"; $lang['mx_meta']['langcode']['ce'] = "Chechen"; $lang['mx_meta']['langcode']['zh'] = "Chinese"; $lang['mx_meta']['langcode']['zh-hk'] = "Chinese (Hong-Kong)"; $lang['mx_meta']['langcode']['zh-cn'] = "Chinese (PRC)"; $lang['mx_meta']['langcode']['zh-sg'] = "Chinese (Singapour)"; $lang['mx_meta']['langcode']['zh-tw'] = "Chinese (Taiwan)"; $lang['mx_meta']['langcode']['cu'] = "Church Slavonic"; $lang['mx_meta']['langcode']['cv'] = "Chuvash"; $lang['mx_meta']['langcode']['kw'] = "Cornish"; $lang['mx_meta']['langcode']['co'] = "Corsican"; $lang['mx_meta']['langcode']['cr'] = "Cree"; $lang['mx_meta']['langcode']['hr'] = "Croatian"; $lang['mx_meta']['langcode']['cs'] = "Czech"; $lang['mx_meta']['langcode']['da'] = "Danish"; $lang['mx_meta']['langcode']['dv'] = "Divehi"; $lang['mx_meta']['langcode']['nl'] = "Dutch"; $lang['mx_meta']['langcode']['nl-be'] = "Dutch (Belgian)"; $lang['mx_meta']['langcode']['dz'] = "Dzongkha"; $lang['mx_meta']['langcode']['en'] = "English"; $lang['mx_meta']['langcode']['en-au'] = "English (Australia)"; $lang['mx_meta']['langcode']['en-bz'] = "English (Belize)"; $lang['mx_meta']['langcode']['en-ca'] = "English (Canada)"; $lang['mx_meta']['langcode']['en-ie'] = "English (Ireland)"; $lang['mx_meta']['langcode']['en-jm'] = "English (Jamaican)"; $lang['mx_meta']['langcode']['en-gb'] = "English (Great Britain)"; $lang['mx_meta']['langcode']['en-nz'] = "English (New Zeland)"; $lang['mx_meta']['langcode']['en-za'] = "English (South Africa)"; $lang['mx_meta']['langcode']['eo'] = "Esperanto"; $lang['mx_meta']['langcode']['et'] = "Estonian"; $lang['mx_meta']['langcode']['ee'] = "Ewe"; $lang['mx_meta']['langcode']['fo'] = "Faroese"; $lang['mx_meta']['langcode']['fj'] = "Fijian"; $lang['mx_meta']['langcode']['fi'] = "Finnish"; $lang['mx_meta']['langcode']['fr'] = "French"; $lang['mx_meta']['langcode']['fr-be'] = "French (Belgian)"; $lang['mx_meta']['langcode']['fr-ca'] = "French (Canada)"; $lang['mx_meta']['langcode']['fr-lu'] = "French (Luxembourg)"; $lang['mx_meta']['langcode']['fr-ch'] = "French (Switzerland)"; $lang['mx_meta']['langcode']['fy'] = "Frisian"; $lang['mx_meta']['langcode']['ff'] = "Fulah"; $lang['mx_meta']['langcode']['gl'] = "Gallegan"; $lang['mx_meta']['langcode']['lg'] = "Ganda"; $lang['mx_meta']['langcode']['ka'] = "Georgian"; $lang['mx_meta']['langcode']['de'] = "German"; $lang['mx_meta']['langcode']['de-li'] = "German (Liechtenstein)"; $lang['mx_meta']['langcode']['de-lu'] = "German (Luxembourg)"; $lang['mx_meta']['langcode']['de-ch'] = "German (Switzerland)"; $lang['mx_meta']['langcode']['gn'] = "Guarani"; $lang['mx_meta']['langcode']['gu'] = "Gujarati"; $lang['mx_meta']['langcode']['ht'] = "Haitian"; $lang['mx_meta']['langcode']['ha'] = "Hausa"; $lang['mx_meta']['langcode']['he'] = "Hebrew"; $lang['mx_meta']['langcode']['hz'] = "Herero"; $lang['mx_meta']['langcode']['hi'] = "Hindi"; $lang['mx_meta']['langcode']['ho'] = "Hiri Motu"; $lang['mx_meta']['langcode']['hu'] = "Hungarian"; $lang['mx_meta']['langcode']['is'] = "Icelandic"; $lang['mx_meta']['langcode']['io'] = "Ido"; $lang['mx_meta']['langcode']['ig'] = "Igbo"; $lang['mx_meta']['langcode']['id'] = "Indonesian"; $lang['mx_meta']['langcode']['ie'] = "Interlingue"; $lang['mx_meta']['langcode']['iu'] = "Inuktitut"; $lang['mx_meta']['langcode']['ik'] = "Inupiaq"; $lang['mx_meta']['langcode']['ga'] = "Irish"; $lang['mx_meta']['langcode']['it'] = "Italian"; $lang['mx_meta']['langcode']['it-ch'] = "Italian (Switzerland)"; $lang['mx_meta']['langcode']['ja'] = "Japanese"; $lang['mx_meta']['langcode']['jv'] = "Javanese"; $lang['mx_meta']['langcode']['kl'] = "Kalaallisut"; $lang['mx_meta']['langcode']['kn'] = "Kannada"; $lang['mx_meta']['langcode']['kr'] = "Kanuri"; $lang['mx_meta']['langcode']['ks'] = "Kashmiri"; $lang['mx_meta']['langcode']['kk'] = "Kazakh"; $lang['mx_meta']['langcode']['km'] = "Khmer"; $lang['mx_meta']['langcode']['ki'] = "Kikuyu"; $lang['mx_meta']['langcode']['rw'] = "Kinyarwanda"; $lang['mx_meta']['langcode']['ky'] = "Kirghiz"; $lang['mx_meta']['langcode']['kv'] = "Komi"; $lang['mx_meta']['langcode']['kg'] = "Kongo"; $lang['mx_meta']['langcode']['ko'] = "Korean"; $lang['mx_meta']['langcode']['ku'] = "Kurdish"; $lang['mx_meta']['langcode']['kj'] = "Kwanyama"; $lang['mx_meta']['langcode']['lo'] = "Lao"; $lang['mx_meta']['langcode']['la'] = "Latin"; $lang['mx_meta']['langcode']['lv'] = "Latvian"; $lang['mx_meta']['langcode']['li'] = "Limburgish"; $lang['mx_meta']['langcode']['ln'] = "Lingala"; $lang['mx_meta']['langcode']['lt'] = "Lithuanian"; $lang['mx_meta']['langcode']['lu'] = "Luba-Katanga"; $lang['mx_meta']['langcode']['lb'] = "Luxembourgish"; $lang['mx_meta']['langcode']['mk'] = "Macedonian"; $lang['mx_meta']['langcode']['mg'] = "Malagasy"; $lang['mx_meta']['langcode']['ms'] = "Malay"; $lang['mx_meta']['langcode']['ml'] = "Malayalam"; $lang['mx_meta']['langcode']['mt'] = "Maltese"; $lang['mx_meta']['langcode']['gv'] = "Manx"; $lang['mx_meta']['langcode']['mi'] = "Maori"; $lang['mx_meta']['langcode']['mr'] = "Marathi"; $lang['mx_meta']['langcode']['mh'] = "Marshallese"; $lang['mx_meta']['langcode']['el'] = "Modern Greek"; $lang['mx_meta']['langcode']['mo'] = "Moldavian"; $lang['mx_meta']['langcode']['mn'] = "Mongolian"; $lang['mx_meta']['langcode']['na'] = "Nauru"; $lang['mx_meta']['langcode']['nv'] = "Navajo"; $lang['mx_meta']['langcode']['nd'] = "Ndebele, North"; $lang['mx_meta']['langcode']['ng'] = "Ndonga"; $lang['mx_meta']['langcode']['ne'] = "Nepali"; $lang['mx_meta']['langcode']['nb'] = "Norwegian"; $lang['mx_meta']['langcode']['nn'] = "Norwegian Nynorsk"; $lang['mx_meta']['langcode']['ny'] = "Nyanja"; $lang['mx_meta']['langcode']['oc'] = "Occitan"; $lang['mx_meta']['langcode']['oj'] = "Ojibwa"; $lang['mx_meta']['langcode']['or'] = "Oriya"; $lang['mx_meta']['langcode']['om'] = "Oromo"; $lang['mx_meta']['langcode']['os'] = "Ossetian"; $lang['mx_meta']['langcode']['pi'] = "Pali"; $lang['mx_meta']['langcode']['pa'] = "Panjabi"; $lang['mx_meta']['langcode']['fa'] = "Persian"; $lang['mx_meta']['langcode']['pl'] = "Polish"; $lang['mx_meta']['langcode']['pt'] = "Portuguese"; $lang['mx_meta']['langcode']['pt-br'] = "Portuguese (Brazil)"; $lang['mx_meta']['langcode']['ps'] = "Pushto"; $lang['mx_meta']['langcode']['qu'] = "Quechua"; $lang['mx_meta']['langcode']['rm'] = "Raeto-Romance"; $lang['mx_meta']['langcode']['ro'] = "Romana"; $lang['mx_meta']['langcode']['ro-mo'] = "Romana (Moldova)"; $lang['mx_meta']['langcode']['rn'] = "Rundi"; $lang['mx_meta']['langcode']['ru'] = "Russian"; $lang['mx_meta']['langcode']['ru-mo'] = "Russian (Moldavia)"; $lang['mx_meta']['langcode']['sm'] = "Samoan"; $lang['mx_meta']['langcode']['sg'] = "Sango"; $lang['mx_meta']['langcode']['sa'] = "Sanskrit"; $lang['mx_meta']['langcode']['sc'] = "Sardinian"; $lang['mx_meta']['langcode']['gd'] = "Scottish Gaelic"; $lang['mx_meta']['langcode']['sr'] = "Serbian"; $lang['mx_meta']['langcode']['sn'] = "Shona"; $lang['mx_meta']['langcode']['ii'] = "Sichuan Yi"; $lang['mx_meta']['langcode']['sd'] = "Sindhi"; $lang['mx_meta']['langcode']['si'] = "Sinhalese"; $lang['mx_meta']['langcode']['sk'] = "Slovak"; $lang['mx_meta']['langcode']['sl'] = "Slovenian"; $lang['mx_meta']['langcode']['so'] = "Somali"; $lang['mx_meta']['langcode']['st'] = "Sotho"; $lang['mx_meta']['langcode']['nr'] = "South Ndebele"; $lang['mx_meta']['langcode']['es'] = "Spanish"; $lang['mx_meta']['langcode']['es-ar'] = "Spanish (Argentina)"; $lang['mx_meta']['langcode']['es-bo'] = "Spanish (Bolivia)"; $lang['mx_meta']['langcode']['es-cl'] = "Spanish (Chile)"; $lang['mx_meta']['langcode']['es-co'] = "Spanish (Colombia)"; $lang['mx_meta']['langcode']['es-cr'] = "Spanish (Costa Rica)"; $lang['mx_meta']['langcode']['es-sv'] = "Spanish (El Salvador)"; $lang['mx_meta']['langcode']['es-ec'] = "Spanish (Ecuador)"; $lang['mx_meta']['langcode']['es-gt'] = "Spanish (Guatemala)"; $lang['mx_meta']['langcode']['es-hn'] = "Spanish (Honduras)"; $lang['mx_meta']['langcode']['es-mx'] = "Spanish (Mexico)"; $lang['mx_meta']['langcode']['es-ni'] = "Spanish (Nicaragua)"; $lang['mx_meta']['langcode']['es-pa'] = "Spanish (Panama)"; $lang['mx_meta']['langcode']['es-py'] = "Spanish (Paraguay)"; $lang['mx_meta']['langcode']['es-pr'] = "Spanish (Puerto Rico)"; $lang['mx_meta']['langcode']['es-pe'] = "Spanish (Peru)"; $lang['mx_meta']['langcode']['es-tt'] = "Spanish (Trinidad)"; $lang['mx_meta']['langcode']['es-uy'] = "Spanish (Uruguay)"; $lang['mx_meta']['langcode']['es-ve'] = "Spanish (Venezuela)"; $lang['mx_meta']['langcode']['su'] = "Sundanese"; $lang['mx_meta']['langcode']['sw'] = "Swahili"; $lang['mx_meta']['langcode']['ss'] = "Swati"; $lang['mx_meta']['langcode']['sv'] = "Swedish"; $lang['mx_meta']['langcode']['sv-fi'] = "Swedish (Finland)"; $lang['mx_meta']['langcode']['tl'] = "Tagalog"; $lang['mx_meta']['langcode']['ty'] = "Tahitian"; $lang['mx_meta']['langcode']['tg'] = "Tajik"; $lang['mx_meta']['langcode']['ta'] = "Tamil"; $lang['mx_meta']['langcode']['tt'] = "Tatar"; $lang['mx_meta']['langcode']['te'] = "Telugu"; $lang['mx_meta']['langcode']['th'] = "Thai"; $lang['mx_meta']['langcode']['bo'] = "Tibetan"; $lang['mx_meta']['langcode']['ti'] = "Tigrinya"; $lang['mx_meta']['langcode']['to'] = "Tonga"; $lang['mx_meta']['langcode']['ts'] = "Tsonga"; $lang['mx_meta']['langcode']['tn'] = "Tswana"; $lang['mx_meta']['langcode']['tr'] = "Turkish"; $lang['mx_meta']['langcode']['tk'] = "Turkmen"; $lang['mx_meta']['langcode']['tw'] = "Twi"; $lang['mx_meta']['langcode']['uk'] = "Ukrainian"; $lang['mx_meta']['langcode']['ur'] = "Urdu"; $lang['mx_meta']['langcode']['ug'] = "Uyghur"; $lang['mx_meta']['langcode']['uz'] = "Uzbek"; $lang['mx_meta']['langcode']['ve'] = "Venda"; $lang['mx_meta']['langcode']['vi'] = "Vietnamese"; $lang['mx_meta']['langcode']['vo'] = "Volapük"; $lang['mx_meta']['langcode']['wa'] = "Walloon"; $lang['mx_meta']['langcode']['cy'] = "Welsh"; $lang['mx_meta']['langcode']['wo'] = "Wolof"; $lang['mx_meta']['langcode']['xh'] = "Xhosa"; $lang['mx_meta']['langcode']['yi'] = "Yiddish"; $lang['mx_meta']['langcode']['yo'] = "Yoruba"; $lang['mx_meta']['langcode']['za'] = "Zhuang"; $lang['mx_meta']['langcode']['zu'] = "Zulu"; // // Other related META tag entries follow... // $lang['mx_meta']['rating']['general'] = "General"; $lang['mx_meta']['rating']['14 years'] = "14 ani"; $lang['mx_meta']['rating']['restricted']= "Restrictionat"; $lang['mx_meta']['rating']['mature'] = "Matur"; $lang['mx_meta']['index']['index'] = "Index"; $lang['mx_meta']['index']['noindex'] = "Fara index"; $lang['mx_meta']['follow']['follow'] = "Follow"; $lang['mx_meta']['follow']['nofollow'] = "No follow"; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php // Romanian phpBB online community - Versiune actualizata pentru PhpBB 2.0.20 /*************************************************************************** * lang_admin.php [romana fara diacritice] * ------------------- * begin : Sep 7 2002 * last update : Jun 11, 2005 * language version : 8.0 * copyright : Romanian phpBB online community * website : http://www.phpbb.ro * copyright 1 : (C) Daniel TÄnasie * email 1 : da...@ph... * copyright 2 : (C) Bogdan Toma * email 2 : bo...@ph... * * $Id: lang_admin.php,v 1.1 2008/12/31 01:44:52 orynider Exp $ * ****************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ // // Format is same as lang_main // // // Modules, this replaces the keys used // in the modules[][] arrays in each module file // $lang['USER_LANG'] = 'ro'; $lang['ENCODING'] = 'UTF-8'; $lang['DIRECTION'] = 'ltr'; $lang['LEFT'] = 'left'; $lang['RIGHT'] = 'right'; $lang['DATE_FORMAT'] = 'd M Y'; // This should be changed to the default date format for your language, php date() format $lang['General'] = 'Administrare generala'; $lang['Users'] = 'Administrare utilizatori'; $lang['Groups'] = 'Administrare grupuri'; $lang['Forums'] = 'Administrare forumuri'; $lang['Styles'] = 'Administrare stiluri'; $lang['Configuration'] = 'Configurare generala'; $lang['Permissions'] = 'Permisiuni'; $lang['Manage'] = 'Management'; $lang['Disallow'] = 'Dezactivare nume'; $lang['Prune'] = 'Curatire'; $lang['Mass_Email'] = 'Expediere mesaje in bloc'; $lang['Ranks'] = 'Ranguri'; $lang['Smilies'] = 'Zambete'; $lang['Ban_Management'] = 'Control restrictii'; $lang['Word_Censor'] = 'Cuvinte cenzurate'; $lang['Export'] = 'Exporta'; $lang['Create_new'] = 'Creeaza'; $lang['Add_new'] = 'Adauga'; $lang['Backup_DB'] = 'Salveaza baza de date'; $lang['Restore_DB'] = 'Restaureaza baza de date'; // // Index // $lang['Admin'] = 'Administrare'; $lang['Not_admin'] = 'Nu sunteti autorizat sa administrati acest forum'; $lang['Welcome_phpBB'] = 'Bine ati venit la centrul de control al forumului phpBB'; $lang['Admin_intro'] = 'Va multumim pentru ca ati ales phpBB ca solutie pentru forumul dumneavoastra. Acest ecran va ofera o privire de ansamblu a diverselor statistici ale forumului dumneavoastra. Puteti reveni la aceasta pagina folosind legatura <i>Pagina de start a administratorului</i> din partea stanga. Pentru a reveni la pagina de start a forumului dumneavoastra, apasati pe logo-ul phpBB-ului aflat, de asemenea, in partea stanga. Celelalte legaturi din partea stanga va permit sa controlati orice aspect al forumului, fiecare ecran va avea instructiuni care dau explicatii despre cum se folosesc instrumentele.'; $lang['Main_index'] = 'Pagina de start a forumului'; $lang['Forum_stats'] = 'Statisticile forumului'; $lang['Admin_Index'] = 'Pagina de start a administratorului'; $lang['Preview_forum'] = 'Previzualizare forum'; $lang['Click_return_admin_index'] = 'Apasati %saici%s pentru a reveni la sectiunea Pagina de start a administratorului'; $lang['Statistic'] = 'Statistica'; $lang['Value'] = 'Valoarea'; $lang['Number_posts'] = 'Numarul mesajelor scrise'; $lang['Posts_per_day'] = 'Mesaje scrise pe zi'; $lang['Number_topics'] = 'Numarul subiectelor'; $lang['Topics_per_day'] = 'Subiecte pe zi'; $lang['Number_users'] = 'Numarul utilizatorilor'; $lang['Users_per_day'] = 'Utilizatori pe zi'; $lang['Board_started'] = 'Data lansarii forumului'; $lang['Avatar_dir_size'] = 'Dimensiunea directorului cu imagini asociate (Avatar)'; $lang['Database_size'] = 'Dimensiunea bazei de date'; $lang['Gzip_compression'] ='Compresia Gzip'; $lang['Not_available'] = 'Nu este disponibil(a)'; $lang['ON'] = 'Activa'; // This is for GZip compression $lang['OFF'] = 'Inactiva'; // // DB Utils // $lang['Database_Utilities'] = 'Instrumentele bazei de date'; $lang['Restore'] = 'Restaurare'; $lang['Backup'] = 'Salvare (Backup)'; $lang['Restore_explain'] = 'Aceasta va efectua o restaurare completa a tuturor tabelelor phpBB dintr-in fisier salvat. Daca serverul dumneavoastra suporta, puteti publica un fisier text compresat cu gzip si aceasta va fi decomprimat automat. <b>ATENTIE:</b> Aceasta procedura va rescrie orice informatie deja existenta. Procesul de restaurare poate dura un timp indelungat; va rugam nu parasiti aceasta pagina pana cand restaurarea nu se termina.'; $lang['Backup_explain'] = 'Aici puteti face copii de rezerva ale tuturor datelor ce tin de phpBB. Daca aveti si tabele aditionale in aceeasi baza de date cu phpBB-ul pe care doriti sa le pastrati, va rugam sa introduceti numele lor separate prin virgula in casuta <i>Tabele Suplimentare</i> de mai jos. Daca serverul dumneavoastra suporta, puteti comprima fisierul cu gzip pentru a reduce dimensiunea sa inainte de a efectua operatiunea de descarcare.'; $lang['Backup_options'] = 'Optiunile de salvare (backup)'; $lang['Start_backup'] = 'Porneste operatiunea de salvare (backup)'; $lang['Full_backup'] = 'Salvare (Backup) totala'; $lang['Structure_backup'] = 'Salveaza (copie de siguranta) doar structura'; $lang['Data_backup'] = 'Salveaza (copie de siguranta) doar datele'; $lang['Additional_tables'] = 'Tabele suplimentare'; $lang['Gzip_compress'] = 'Fisier comprimat cu Gzip'; $lang['Select_file'] = 'Selectati un fisier'; $lang['Start_Restore'] = 'Porneste operatiunea de restaurare'; $lang['Restore_success'] = 'Baza de date a fost restaurata cu succes.<br /><br />Forumul dumneavoastra ar trebui sa revina la starea lui inainte ca salvarea sa se fi realizat.'; $lang['Backup_download'] = 'Operatiunea de descarcare va incepe in curand; va rugam sa asteptati pana aceasta va incepe'; $lang['Backups_not_supported'] = 'Scuzati, dar efectuarea salvarii (backup-ului) nu este in prezent realizabila pentru sistemul dumneavoastra de baze de date'; $lang['Restore_Error_uploading'] = 'Eroare la publicarea fisierului de salvare (backup)'; $lang['Restore_Error_filename'] = 'Problema cu numele fisierului; va rugam, incercati cu un alt fisier'; $lang['Restore_Error_decompress'] = 'Nu pot decomprima un fisier gzip; va rugam, publicati o versiune text intreg (plain text)'; $lang['Restore_Error_no_file'] = 'Nici un fisier nu a fost publicat/incarcat'; // // Auth pages // $lang['Select_a_User'] = 'Selectati un utilizator'; $lang['Select_a_Group'] = 'Selectati un grup'; $lang['Select_a_Forum'] = 'Selectati un forum'; $lang['Auth_Control_User'] = 'Controlul permisiunilor utilizatorului'; $lang['Auth_Control_Group'] = 'Controlul permisiunilor grupului'; $lang['Auth_Control_Forum'] = 'Controlul permisiunilor forumului'; $lang['Look_up_User'] = 'Selecteaza utilizatorul'; $lang['Look_up_Group'] = 'Selecteaza grupul'; $lang['Look_up_Forum'] = 'Selecteaza forumul'; $lang['Group_auth_explain'] = 'Aici puteti modifica permisiunile si starea moderatorului asociat la fiecare grup de utilizatori. Nu uitati cand schimbati permisiunile grupului ca permisiunile individuale ale utilizatorului pot sa permita accesul utilizatorului la forumuri, etc. Veti fi atentionat daca va aparea aceasta situatie.'; $lang['User_auth_explain'] = 'Aici puteti modifica permisiunile si starea moderatorului asociat la fiecare utilizator individual. Nu uitati cand schimbati permisiunile utilizatorului ca permisiunile individuale ale grupului pot sa permita accesul utilizatorului la forumuri, etc. Veti fi atentionat daca va aparea aceasta situatie.'; $lang['Forum_auth_explain'] = 'Aici puteti modifica nivelurile de autorizare ale fiecarui forum. Pentru a realiza acest lucru aveti la dispozitie atat o metoda simpla cat si una avansata, metoda avansata oferind un control mai mare al fiecariei operatii din forum. Amintiti-va ca schimbarea nivelului de permisiuni ale forumurilor va afecta modul de realizare(finalizare) al diverselor operatiuni solicitate de catre utilizatori.'; $lang['Simple_mode'] = 'Modul simplu'; $lang['Advanced_mode'] = 'Modul avansat'; $lang['Moderator_status'] = 'Starea moderatorului'; $lang['Allowed_Access'] = 'Acces permis'; $lang['Disallowed_Access'] = 'Acces interzis'; $lang['Is_Moderator'] = 'este moderator'; $lang['Not_Moderator'] = 'nu este moderator'; $lang['Conflict_warning'] = 'Avertizare - Conflict de autorizare'; $lang['Conflict_access_userauth'] = 'Acest utilizator are inca drepturi de acces la acest forum datorate apartenentei acestuia la grup. Puteti sa modificati permisiunile grupului sau sa inlaturati acest utilizator din grup pentru a nu mai avea depturi de acces. Grupurile care dau drepturi (si forumurile implicate) sunt afisate mai jos.'; $lang['Conflict_mod_userauth'] = 'Acest utilizator are inca drepturi de moderator la acest forum datorate apartenentei acestuia la grup. Puteti sa modificati permisiunile grupului sau sa inlaturati acest utilizator din grup pentru a nu mai avea depturi de moderator. Grupurile care dau drepturi (si forumurile implicate) sunt afisate mai jos.'; $lang['Conflict_access_groupauth'] = 'Utilizatorul(i) urmator(i) are(au) inca drepturi de acces la acest forum datorate setarilor lui(lor) de permisiuni. Puteti sa modificati permisiunile utilizatorului pentru a nu mai avea drepturi de acces. Utilizatorii care dau drepturi (si forumurile implicate) sunt afisati mai jos.'; $lang['Conflict_mod_groupauth'] = 'Utilizatorul(i) urmator(i) are(au) inca drepturi de acces la acest forum datorate setarilor lui(lor) de permisiuni. Puteti sa modificati permisiunile utilizatorului pentru a nu mai avea drepturi de moderator. Utilizatorii care dau drepturi (si forumurile implicate) sunt afisati mai jos.'; $lang['Public'] = 'Public'; $lang['Private'] = 'Privat'; $lang['Registered'] = 'Inregistrat'; $lang['Administrators'] = 'Administratori'; $lang['Hidden'] = 'Ascuns'; // These are displayed in the drop down boxes for advanced // mode forum auth, try and keep them short! $lang['Forum_ALL'] = 'TOTI'; $lang['Forum_REG'] = 'INREG'; $lang['Forum_PRIVATE'] = 'PRIVAT'; $lang['Forum_MOD'] = 'MOD'; $lang['Forum_ADMIN'] = 'ADMIN'; $lang['View'] = 'Vizualizare'; $lang['Read'] = 'Citire'; $lang['Post'] = 'Scriere'; $lang['Reply'] = 'Raspunde'; $lang['Edit'] = 'Modifica'; $lang['Delete'] = 'Sterge'; $lang['Sticky'] = 'Important'; $lang['Announce'] = 'Anunt'; $lang['Vote'] = 'Vot'; $lang['Pollcreate'] = 'Creare sondaj'; $lang['Permissions'] = 'Permisiuni'; $lang['Simple_Permission'] = 'Permisiune simpla'; $lang['User_Level'] = 'Nivelul utilizatorului'; $lang['Auth_User'] = 'Utilizator'; $lang['Auth_Admin'] = 'Administrator'; $lang['Group_memberships'] = 'Membru al grupurilor'; $lang['Usergroup_members'] = 'Acest grup contine urmatorii membrii'; $lang['Forum_auth_updated'] = 'Permisiunile forumului au fost actualizate'; $lang['User_auth_updated'] = 'Permisiunile utilizatorului au fost actualizate'; $lang['Group_auth_updated'] = 'Permisiunile grupului au fost actualizate'; $lang['Auth_updated'] = 'Permisiunile au fost actualizate'; $lang['Click_return_userauth'] = 'Apasati %saici%s pentru a reveni la sectiunea Controlul permisiunilor utilizatorului'; $lang['Click_return_groupauth'] = 'Apasati %saici%s pentru a reveni la sectiunea Controlul permisiunilor grupului'; $lang['Click_return_forumauth'] = 'Apasati %saici%s pentru a reveni la sectiunea Controlul permisiunilor forumului'; // // Banning // $lang['Ban_control'] = 'Controlul interdictiilor'; $lang['Ban_explain'] = 'Aici puteti sa controlati interdictiile utilizatorilor. Puteti obtine acest lucru interzicand una sau mai multe din elementele caracteristice unui utilizator: denumire utilizator, multimea adreselor IP sau numele host-urilor. Aceste metode impiedica un utilizator sa nu ajunga in pagina de inceput a forumului. Pentru a impiedica un utilizator sa se inregistreze sub un alt nume de utilizator puteti specifica o adresa de mail interzisa. Retineti ca o singura adresa de mail interzisa nu-l va impiedeca pe utilizatorul in cauza sa intre sau sa scrie in forumul dumneavoastra; ar trebui sa folositi prima din cele doua metode.'; $lang['Ban_explain_warn'] = 'Retineti ca introducerea unei multimi de adrese IP inseamna ca toate adresele dintre inceputul si sfarsitul multimii au fost adaugate la lista interzisa. Pentru a reduce numarul de adrese adaugate la baza de date se pot folosi <i>wildcard</i>-urile unde este cazul. Daca chiar trebuie sa introduceti o plaja de valori, incercati sa o pastrati cat mai mica sau mai bine retineti doar adresele specifice.'; $lang['Select_username'] = 'Selectati un nume de utilizator'; $lang['Select_ip'] = 'Selectati un IP'; $lang['Select_email'] = 'Selectati o adresa de email'; $lang['Ban_username'] = 'Interziceti unul sau mai multi utilizatori'; $lang['Ban_username_explain'] = 'Puteti interzice mai multi utilizatori intr-un singur pas folosind combinatii potrivite ale mouse-ului (in browser) si tastaturii calculatorului dumneavoastra'; $lang['Ban_IP'] = 'Interziceti una sau mai multe adrese IP sau nume de host-uri'; $lang['IP_hostname'] = 'Adrese IP sau nume de host-uri'; $lang['Ban_IP_explain'] = 'Pentru a specifica mai multe IP-uri diferite sau nume de host-uri trebuie sa le separati prin virgula. Pentru a specifica o multime de adrese IP, separati inceputul si sfarsitul multimii cu o liniuta de unire (-); ca sa specificati caracterul <i>wildcard</i> folositi *'; $lang['Ban_email'] = 'Interziceti una sau mai multe adrese de email'; $lang['Ban_email_explain'] = 'Pentru a specifica mai multe adrese de email folositi separatorul virgula. Ca sa specificati un utilizator cu ajutorul <i>wildcard</i>-ului folositi *, de exemplu *@hotmail.com'; $lang['Unban_username'] = 'Deblocarea utilizatorilor'; $lang['Unban_username_explain'] = 'Puteti sa deblocati mai multi utilizatori intr-un singur pas folosind combinatii potrivite ale mouse-ului (in browser) si tastaturii calculatorului dumneavoastra'; $lang['Unban_IP'] = 'Deblocarea adreselor IP'; $lang['Unban_IP_explain'] = 'Puteti sa deblocati mai multe adrese IP intr-un singur pas folosind combinatii potrivite ale mouse-ului (in browser) si tastaturii calculatorului dumneavoastra'; $lang['Unban_email'] = 'Deblocarea adreselor email'; $lang['Unban_email_explain'] = 'Puteti sa deblocati mai multe adrese email intr-un singur pas folosind combinatii potrivite ale mouse-ului (in browser) si tastaturii calculatorului dumneavoastra'; $lang['No_banned_users'] = 'Nu este nici un utilizator interzis'; $lang['No_banned_ip'] = 'Nu este nici o adresa IP interzisa'; $lang['No_banned_email'] = 'Nu este nici o adresa de email interzisa'; $lang['Ban_update_sucessful'] = 'Lista restrictiilor a fost actualizata cu succes'; $lang['Click_return_banadmin'] = 'Apasati %saici%s pentru a reveni la sectiunea Control Restrictii'; // // Configuration // $lang['General_Config'] = 'Configurare generala'; $lang['Config_explain'] = 'Formularul de mai jos va permite sa personalizati toate optiunile generale ale forumului. Pentru configurarea utilizatorilor si forumurilor folositi legaturile specifice aflate in partea stanga.'; $lang['Click_return_config'] = 'Apasati %saici%s pentru a reveni la sectiunea Configurare generala'; $lang['General_settings'] = 'Setarile generale ale forumului'; $lang['Server_name'] = 'Numele domeniului'; $lang['Server_name_explain'] = 'Numele domeniului acestui forum ruleaza din'; $lang['Script_path'] = 'Calea script-ului'; $lang['Script_path_explain'] = 'Calea unde phpBB2 este localizat relativ la numele domeniului'; $lang['Server_port'] = 'Port-ul serverului'; $lang['Server_port_explain'] = 'Port-ul pe care serverul dumneavoastra ruleaza este de obicei 80 (numai daca nu a fost schimbat)'; $lang['Site_name'] = 'Numele site-ului'; $lang['Site_desc'] = 'Descrierea site-ului'; $lang['Board_disable'] = 'Forum dezactivat'; $lang['Board_disable_explain'] = 'Aceasta actiune va face forumul indisponibil utilizatorilor. Nu inchideti sesiunea curenta cand dezactivati forumul, altfel nu veti mai fi capabil sa va autentificati din nou!'; $lang['Acct_activation'] = 'Validarea contului activata de'; $lang['Acc_None'] = 'Nimeni'; // These three entries are the type of activation $lang['Acc_User'] = 'Utilizator'; $lang['Acc_Admin'] = 'Administrator'; $lang['Abilities_settings'] = 'Configurarile de baza ale utilizatorilor si forumurilor'; $lang['Max_poll_options'] = 'Numarul maxim al optiunilor chestionarului'; $lang['Flood_Interval'] = 'Interval de flood'; $lang['Flood_Interval_explain'] = 'Numarul de secunde pe care un utilzator trebuie sa-l astepte intre publicari'; $lang['Board_email_form'] = 'Trimite mesaj la utilizator via forum'; $lang['Board_email_form_explain'] = 'Utilizatorii pot trimit mesaje unii la alti prin acest forum'; $lang['Topics_per_page'] = 'Subiecte pe pagina'; $lang['Posts_per_page'] = 'Mesaje pe pagina'; $lang['Hot_threshold'] = 'Mesaje pentru statutul popular'; $lang['Default_style'] = 'Stilul standard'; $lang['Override_style'] = 'Suprascrie stilul utilizatorului'; $lang['Override_style_explain'] = 'Inlocuirea sitului utilizatorilor cu cel standard'; $lang['Default_language'] = 'Limba standard'; $lang['Date_format'] = 'Formatul datei'; $lang['System_timezone'] = 'Timpul zonal al sistemului'; $lang['Enable_gzip'] = 'Activare compresie GZip'; $lang['Enable_prune'] = 'Activare curatire forum'; $lang['Allow_HTML'] = 'Permite HTML'; $lang['Allow_BBCode'] = 'Permite cod BB'; $lang['Allowed_tags'] = 'Permite balize (tag-uri) HTML'; $lang['Allowed_tags_explain'] = 'Separa balizele (tag-urile) cu virgule'; $lang['Allow_smilies'] = 'Permite zambete'; $lang['Smilies_path'] = 'Calea unde se pastreaza zambetele'; $lang['Smilies_path_explain'] = 'Calea aflata in directorul dumneavoastra phpBB , de exemplu. imagini/zambete'; $lang['Allow_sig'] = 'Permite semnaturi'; $lang['Max_sig_length'] = 'Lungimea maxima a semnaturii'; $lang['Max_sig_length_explain'] = 'Numarul maxim de caractere aflate in semnatura utilizatorului'; $lang['Allow_name_change'] = 'Permite schimbarea numelui de utilizator'; $lang['Avatar_settings'] = 'Configurari pentru imagini asociate (Avatar)'; $lang['Allow_local'] = 'Permite galerie de imagini asociate'; $lang['Allow_remote'] = 'Permite imagini asociate la distanta'; $lang['Allow_remote_explain'] = 'Imaginile asociate sunt specificate cu o legatura la alt site web'; $lang['Allow_upload'] = 'Permite incarcarea imaginii asociate'; $lang['Max_filesize'] = 'Dimensiunea maxima a fisierului ce contine imaginea asociata'; $lang['Max_filesize_explain'] = 'Pentru fisierele ce contin imaginile asociate incarcate'; $lang['Max_avatar_size'] = 'Dimensiunea maxima a imaginii asociate'; $lang['Max_avatar_size_explain'] = '(Inaltime x Latime in pixeli)'; $lang['Avatar_storage_path'] = 'Calea de pastrare a imaginilor asociate'; $lang['Avatar_storage_path_explain'] = 'Calea aflata in directorul dumneavoastra phpBB, de exemplu. imagini/avatar'; $lang['Avatar_gallery_path'] = 'Calea de pastrare a galeriilor cu imagini asociate'; $lang['Avatar_gallery_path_explain'] = 'Calea aflata in directorul dumneavoastra phpBB, de exemplu. imagini/avatar/galerie'; $lang['COPPA_settings'] = 'Configurarile COPPA'; $lang['COPPA_fax'] = 'Numarul de fax'; $lang['COPPA_mail'] = 'Adresa postala COPPA'; $lang['COPPA_mail_explain'] = 'Aceasta este adresa postala unde parintii vor trimite formularele de inregistrare COPPA'; $lang['Email_settings'] = 'Configurarile de email'; $lang['Admin_email'] = 'Adresa de email a administratorului'; $lang['Email_sig'] = 'Semnatura din email'; $lang['Email_sig_explain'] = 'Acest text va fi atasat la toate mesajele pe care forumul le trimite'; $lang['Use_SMTP'] = 'Folositi serverul SMTP pentru email'; $lang['Use_SMTP_explain'] = 'Specificati da daca doriti sau aveti nevoie sa trimiteti mesaje printr-un alt server in loc sa folositi functia locala de mesagerie'; $lang['SMTP_server'] = 'Adresa serverului SMTP'; $lang['SMTP_username'] = 'Numele de utilizator SMTP'; $lang['SMTP_username_explain'] = 'Introduceti numele de utilizator doar daca serverul dumneavoastra SMTP necesita aceasta specificare'; $lang['SMTP_password'] = 'Parola SMTP'; $lang['SMTP_password_explain'] = 'Introduceti parola doar daca serverul dumneavoastra SMTP necesita aceasta specificare'; $lang['Disable_privmsg'] = 'Mesagerie privata'; $lang['Inbox_limits'] = 'Numarul maxim al mesajelor in Cutia cu mesaje (Inbox)'; $lang['Sentbox_limits'] = 'Numarul maxim al mesajelor in Cutia cu mesaje trimise (Sentbox)'; $lang['Savebox_limits'] = 'Numarul maxim al mesajelor in Cutia cu mesaje salvate (Savebox)'; $lang['Cookie_settings'] = 'Configurarile pentru cookie'; $lang['Cookie_settings_explain'] = 'Aceste detalii definesc cum sunt cookie-urile trimise catre browser-ele utilizatorilor. In cele mai multe cazuri valorile standard pentru setarile cookie-urilor ar trebui sa fie suficiente dar daca trebuie sa le schimbati aveti mare grija, setarile incorecte pot impiedica utilizatorii sa se autentifice'; $lang['Cookie_domain'] = 'Domeniul pentru cookie'; $lang['Cookie_name'] = 'Numele pentru cookie'; $lang['Cookie_path'] = 'Calea pentru cookie'; $lang['Cookie_secure'] = 'Securizare cookie'; $lang['Cookie_secure_explain'] = 'Daca serverul dumneavoastra ruleaza via SSL, selectati <i>Activat</i> altfel selectati <i>Dezactivat</i>'; $lang['Session_length'] = 'Durata sesiunii [ secunde ]'; // Visual Confirmation $lang['Visual_confirm'] = 'Activeaza Confirmarea Vizuala'; $lang['Visual_confirm_explain'] = 'Necesita introducerea unui cod vizual definit ca o imagine la inregistrare.'; // Autologin Keys - added 2.0.18 $lang['Allow_autologin'] = 'Permite autentificari automate'; $lang['Allow_autologin_explain'] = 'Determina daca utilizatorii au voie sa selecteze sa fie autentificati automat cand viziteaza forumul.'; $lang['Autologin_time'] = 'Expirarea cheii de autentificare automata.'; $lang['Autologin_time_explain'] = 'Cate zile este valida o cheie de autentificare automata daca utilizatorul nu viziteaza forumul. Seteaza 0 pentru a dezactiva expirarea.'; // Intervalul limita pentru cautari - adaugat la 2.0.20 $lang['Search_Flood_Interval'] = 'Intervalul limita pentru cautari'; $lang['Search_Flood_Interval_explain'] = 'Numarul de secunde pe care un utilizator trebuie sa-l astepte intre cautari'; // // Forum Management // $lang['Forum_admin'] = 'Administrare forumuri'; $lang['Forum_admin_explain'] = 'In aceasta sectiune puteti adauga, sterge, modifica, reordona si resincroniza categoriile si forumurile.'; $lang['Edit_forum'] = 'Modificare forum'; $lang['Create_forum'] = 'Creaza un forum nou'; $lang['Create_category'] = 'Creaza o categorie noua'; $lang['Remove'] = 'Sterge'; $lang['Action'] = 'Actiune'; $lang['Update_order'] = 'Actualizeaza ordinea'; $lang['Config_updated'] = 'Configurarile la forum au fost actualizate cu succes'; $lang['Edit'] = 'Modifica'; $lang['Delete'] = 'Sterge'; $lang['Move_up'] = 'Muta mai sus'; $lang['Move_down'] = 'Muta mai jos'; $lang['Resync'] = 'Resincronizare'; $lang['No_mode'] = 'Nici un mod nu a fost specificat'; $lang['Forum_edit_delete_explain'] = 'Formularul de mai jos va permite sa personalizati toate optiunile generale ale forumului. Pentru configurarea utilizatorilor si forumurilor folositi legaturile specifice aflate in partea stanga.'; $lang['Move_contents'] = 'Muta tot continutul'; $lang['Forum_delete'] = 'Stergere forum'; $lang['Forum_delete_explain'] = 'Formularul de mai jos va permite sa stergeti un forum (sau o categorie) si sa decideti unde doriti sa plasati toate subiectele (sau forumurile) pe care le contine.'; $lang['Status_locked'] = 'Inchis'; $lang['Status_unlocked'] = 'Deschis'; $lang['Forum_settings'] = 'Configurarile generale ale forumului'; $lang['Forum_name'] = 'Numele forumului'; $lang['Forum_desc'] = 'Descriere'; $lang['Forum_status'] = 'Starea forumului'; $lang['Forum_pruning'] = 'Autocuratare'; $lang['Forum_postcount'] = 'Count user\'s posts'; $lang['prune_freq'] = 'Verifica varsta subiectelor la fiecare'; $lang['prune_days'] = 'Sterge subiectele la care nu s-au scris raspunsuri de'; $lang['Set_prune_data'] = 'Ati selectat optiunea autocuratire pentru acest forum dar nu ati specificat o frecventa sau un numar de zile al intervalului pentru acest proces. Va rugam reveniti si specificati aceste valori'; $lang['Move_and_Delete'] = 'Muta si sterge'; $lang['Delete_all_posts'] = 'Sterge toate mesajele'; $lang['Nowhere_to_move'] = 'Nu muta mesajele'; $lang['Edit_Category'] = 'Modificare categorie'; $lang['Edit_Category_explain'] = 'Puteti folosi acest forumlar pentru a modifica numele categoriilor.'; $lang['Forums_updated'] = 'Informatiile despre forumuri si categorii au fost actualizate cu succes'; $lang['Must_delete_forums'] = 'Trebuie sa stergeti toate forumurile inainte ca sa stergeti aceasta categorie'; $lang['Click_return_forumadmin'] = 'Apasati %saici%s pentru a reveni la sectiunea Administrare forumuri'; // // Smiley Management // $lang['smiley_title'] = 'Administrare zambete'; $lang['smile_desc'] = 'Din aceasta pagina puteti adauga, sterge si modifica zambetele sau emotiile asociate pe care utilizatorii dumneavoastra le pot folosi cand scriu mesaje sau cand trimit mesaje private.'; $lang['smiley_config'] = 'Configurare zambete'; $lang['smiley_code'] = 'Cod zambet'; $lang['smiley_url'] = 'Fisierul imagine al zambetului'; $lang['smiley_emot'] = 'Emotia asociata'; $lang['smile_add'] = 'Adaugati un zambet nou'; $lang['Smile'] = 'Zambet'; $lang['Emotion'] = 'Emotia asociata'; $lang['Select_pak'] = 'Selectati un fisier de tip Pack (.pak)'; $lang['replace_existing'] = 'Inlocuiti zambetele existente'; $lang['keep_existing'] = 'Pastrati zambetele existente'; $lang['smiley_import_inst'] = 'Ar trebui sa decomprimati pachetul cu iconite si sa incarcati toate fisierele in directorul cu zambete specificat la instalare. Apoi selectati informatiile corecte in acest formular ca sa importati pachetul cu zambete.'; $lang['smiley_import'] = 'Importati zambetele'; $lang['choose_smile_pak'] = 'Selectati un fisier pachet cu zambete de tip .pak'; $lang['import'] = 'Importati zambete'; $lang['smile_conflicts'] = 'Ce ar trebui sa fie facut in caz de conflicte'; $lang['del_existing_smileys'] = 'Stergeti zambetele existente inainte de import'; $lang['import_smile_pack'] = 'Importati pachetul cu zambete'; $lang['export_smile_pack'] = 'Creati pachetul cu zambete'; $lang['export_smiles'] = 'Ca sa creati un pachet cu zambete din zambetele instalate, apasati %saici%s ca sa descarcati fisierul cu zambete .pak. Numiti acest fisier cum doriti dar asigurati-va ca ati pastrat fisierului extensia .pak. Apoi creati un fiesier arhivat continand toate imaginile zambete ale dumneavoastra plus acest fisier .pak.'; $lang['smiley_add_success'] = 'Zambetul a fost adaugat cu succes'; $lang['smiley_edit_success'] = 'Zambetul a fost actualizat cu succes'; $lang['smiley_import_success'] = 'Pachetul cu zambete a fost importat cu succes!'; $lang['smiley_del_success'] = 'Zambetul a fost sters cu succes'; $lang['Click_return_smileadmin'] = 'Apasati %saici%s pentru a reveni la sectiunea Administrare zambete'; $lang['Confirm_delete_smiley'] = 'Sunteti sigur ca doriti sa stergeti acest zambet ?'; // // User Management // $lang['User_admin'] = 'Administrare utilizatori'; $lang['User_admin_explain'] = 'Aici puteti schimba informatiile despre utilizatorii dumneavoastra si optiunile specifice. Ca sa modificati drepturile utilizatorilor, folositi drepturile din sistem ale utilizatorilor si grupurilor.'; $lang['Look_up_user'] = 'Selecteaza utilizatorul'; $lang['Admin_user_fail'] = 'Nu se poate actualiza profilul utilizatorului.'; $lang['Admin_user_updated'] = 'Profilul utilizatorului a fost actualizat cu succes.'; $lang['Click_return_useradmin'] = 'Apasati %saici%s pentru a reveni la sectiunea Administrare utilizatori'; $lang['User_delete'] = 'Stergeti acest utilizator'; $lang['User_delete_explain'] = 'Apasati aici pentru a sterge acest utilizator, aceasta operatie este ireversibila.'; $lang['User_deleted'] = 'Utilizatorul a fost sters cu succes.'; $lang['User_status'] = 'Utilizatorul este activ'; $lang['User_allowpm'] = 'Poate trimite mesaje private'; $lang['User_allowavatar'] = 'Poate folosi imagini asociate'; $lang['Admin_avatar_explain'] = 'Aici puteti vizualiza si sterge imaginea asociata a utilizatorului.'; $lang['User_special'] = 'Campuri speciale doar pentru administrator'; $lang['User_special_explain'] = 'Aceste campuri nu pot fi modificate de catre utilizatori. Aici puteti sa specificati stadiul lor si alte optiuni care nu sunt oferite utilizatorilor.'; // // Group Management // $lang['Group_administration'] = 'Administrarea grupurilor'; $lang['Group_admin_explain'] = 'Din aceasta sectiune puteti administra toate grupurile cu utilizatori ale dumneavoastra, puteti sterge, crea si modifica grupurile existente. Puteti alege moderatorii, schimba in deschis/inchis statutul grupului si specifica numele si descrierea grupului'; $lang['Error_updating_groups'] = 'A fost o eroare in timpul actualizarii grupurilor'; $lang['Updated_group'] = 'Grupul a fost actualizat cu succes'; $lang['Added_new_group'] = 'Noul grup a fost creat cu succes'; $lang['Deleted_group'] = 'Grupul a fost sters cu succes'; $lang['New_group'] = 'Creaza un grup nou'; $lang['Edit_group'] = 'Modifica grupul'; $lang['group_name'] = 'Numele grupului'; $lang['group_description'] = 'Descrierea grupului'; $lang['group_moderator'] = 'Moderatorul grupului'; $lang['group_status'] = 'Statutul grupului'; $lang['group_open'] = 'Grup deschis'; $lang['group_closed'] = 'Grup inchis'; $lang['group_hidden'] = 'Grup ascuns'; $lang['group_delete'] = 'Sterg grupul'; $lang['group_delete_check'] = 'Vreau sa sterg acest grup'; $lang['submit_group_changes'] = 'Efectueaza modificarile'; $lang['reset_group_changes'] = 'Reseteaza modificarile'; $lang['No_group_name'] = 'Trebuie sa specificati un nume pentru acest grup'; $lang['No_group_moderator'] = 'Trebuie sa specificati un moderator pentru acest grup'; $lang['No_group_mode'] = 'Trebuie sa specificati un mod (deschis/inchis) pentru acest grup'; $lang['No_group_action'] = 'Nici o actiune nu a fost specificata'; $lang['delete_group_moderator'] = 'Doriti sa stergeti moderatorul vechi al grupului?'; $lang['delete_moderator_explain'] = 'Daca schimbati moderatorul grupului, bifati aceasta casuta ca sa stergeti vechiul moderator al grupului din grup. Altfel, nu o bifati si utilizatorul va deveni un membru normal al grupului.'; $lang['Click_return_groupsadmin'] = 'Apasati %saici%s pentru a reveni la sectiunea Administrarea grupurilor.'; $lang['Select_group'] = 'Selecteaza un grup'; $lang['Look_up_group'] = 'Selecteaza grupul'; // // Prune Administration // $lang['Forum_Prune'] = 'Curatirea forumurilor'; $lang['Forum_Prune_explain'] = 'Aceasta actiune va sterge orice subiect care nu a fost completat intr-un numar de zile egal cu cel pe care l-ati specificat. Daca nu ati introdus un numar atunci toate subiectele vor fi sterse. Nu vor fi sterse subiecte in care sondajele inca ruleaza si nici anunturile. Aceste subiecte trebuie sa le stergeti manual.'; $lang['Do_Prune'] = 'Efectueaza curatirea'; $lang['All_Forums'] = 'Toate forumurile'; $lang['Prune_topics_not_posted'] = 'Curatirea subiectelor fara raspunsuri in multe zile'; $lang['Topics_pruned'] = 'Subiecte curatite'; $lang['Posts_pruned'] = 'Mesaje curatite'; $lang['Prune_success'] = 'Curatirea mesajelor s-a efectuat cu succes'; // // Word censor // $lang['Words_title'] = 'Administrarea cuvintelor cenzurate'; $lang['Words_explain'] = 'Din aceasta sectiune puteti adauga, modifica si sterge cuvinte care vor fi automat cenzurate in forumurile dumneavoastra. In plus, persoanelor nu le va fi permis sa se inregistreze cu nume de utilizator ce contin aceste cuvinte. Wildcard-urile (*) sunt acceptate in campul pentru cuvinte, de exemplu *test* se va potrivi cu detestabil, test* se va potrivi cu testare, *test se va potrivi cu detest.'; $lang['Word'] = 'Cuvant'; $lang['Edit_word_censor'] = 'Modific cuvantul cenzurat'; $lang['Replacement'] = 'Inlocuire'; $lang['Add_new_word'] = 'Adauga un cuvant nou'; $lang['Update_word'] = 'Actualizeaza cuvantul cenzurat'; $lang['Must_enter_word'] = 'Trebuie sa introduceti un cuvant si inlocuirile acestuia'; $lang['No_word_selected'] = 'Nici un cuvant nu a fost selectat pentru modificare'; $lang['Word_updated'] = 'Cuvantul cenzurat selectat a fost actualizat cu succes'; $lang['Word_added'] = 'Cuvantul cenzurat a fost adaugat cu succes'; $lang['Word_removed'] = 'Cuvantul cenzurat selectat a fost sters cu succes'; $lang['Click_return_wordadmin'] = 'Apasati %saici%s pentru a reveni la sectiunea Administrarea cuvintelor cenzurate'; $lang['Confirm_delete_word'] = 'Sunteti sigur ca doriti sa stergeti acest acest cuvant cenzurat ?'; // // Mass Email // $lang['Mass_email_explain'] = 'Aici puteti trimite un email la toti utilizatorii dumneavoastra sau la utilizatorii dintr-un grup specific. Pentru a realiza acest lucru, un email va fi trimis la adresa de email a administratorulu cu toti destinatarii specificati in campul BCC. Daca trimiteti email la un grup mare de oameni, va rugam sa fiti atent dupa trimitere si nu va opriti la jumatatea paginii. Este normal ca pentru o corespondenta masiva sa fie nevoie de un timp mai lung astfel ca veti fi notificat cand actiunea s-a terminat'; $lang['Compose'] = 'Compune'; $lang['Recipients'] = 'Destinatari'; $lang['All_users'] = 'Toti utilizatorii'; $lang['Email_successfull'] = 'Mesajul dumneavoastra a fost trimis'; $lang['Click_return_massemail'] = 'Apasati %saici%s pentru a reveni la sectiunea Corespondenta masiva'; // // Ranks admin // $lang['Ranks_title'] = 'Administrarea rangurilor'; $lang['Ranks_explain'] = 'Folosind acest formular puteti adauga, modifica, vizualiza si sterge ranguri. De asemenea, puteti crea ranguri personalizate care pot fi aplicate unui utilizator via facilitatii date de managementul utilizatorilor'; $lang['Add_new_rank'] = 'Adauga un rang nou'; $lang['Rank_title'] = 'Titlul rangului'; $lang['Rank_special'] = 'Seteaza ca rang special'; $lang['Rank_minimum'] = 'Numar minim de mesaje'; $lang['Rank_maximum'] = 'Numar maxim de mesaje'; $lang['Rank_image'] = 'Imaginea rangului (relativ la calea phpBB2-ului)'; $lang['Rank_image_explain'] = 'Aceasta este folosita pentru a defini o imagine mica asociata cu rangul'; $lang['Must_select_rank'] = 'Trebuie sa selectati un rang'; $lang['No_assigned_rank'] = 'Nici un rang special nu a fost repartizat'; $lang['Rank_updated'] = 'Rangul a fost actualizat cu succes'; $lang['Rank_added'] = 'Rangul a fost adaugat cu succes'; $lang['Rank_removed'] = 'Rangul a fost sters cu succes'; $lang['No_update_ranks'] = 'Rangul a fost sters cu succes, conturile utilizatorilor care folosesc acest rang nu au fost actualizate. Trebuie sa resetati manual rangul pentru aceste conturi'; $lang['Click_return_rankadmin'] = 'Apasati %saici%s pentru a reveni la sectiunea Administrarea rangurilor'; $lang['Confirm_delete_rank'] = 'Sunteti sigur ca doriti sa stergeti acest rang ?'; // // Disallow Username Admin // $lang['Disallow_control'] = 'Administrarea numelor de utilizator nepremise'; $lang['Disallow_explain'] = 'Aici puteti controla numele de utilizator care nu sunt permise sa fie folosite. Numele de utilizator care nu sunt permise pot contine caracterul *. Retineti ca nu aveti posibilitatea sa specificati orice nume de utilizator care a fost deja inregistrat; trebuie mai intai sa stergeti acel nume si apoi sa-l interziceti'; $lang['Delete_disallow'] = 'Sterge'; $lang['Delete_disallow_title'] = 'Sterge un nume de utilizator nepermis'; $lang['Delete_disallow_explain'] = 'Puteti sterge un nume de utilizator nepermis selectand numele de utilizator din aceasta lista si apasand butonul <i>Sterge</i>'; $lang['Add_disallow'] = 'Adauga'; $lang['Add_disallow_title'] = 'Adauga un nume de utilizator nepermis'; $lang['Add_disallow_explain'] = 'Puteti interzice un nume de utilizator folosind caracterul wildcard * care se potriveste la orice caracter'; $lang['No_disallowed'] = 'Nici un nume de utilizator nu a fost interzis'; $lang['Disallowed_deleted'] = 'Numele de utilizator nepermis a fost sters cu succes'; $lang['Disallow_successful'] = 'Numele de utilizator nepermis a fost adaugat cu succes'; $lang['Disallowed_already'] = 'Numele pe care l-ati introdus nu poate fi interzis. Ori exista deja in lista, exista in lista cuvintelor cenzurate sau exista un nume de utilizator similar'; $lang['Click_return_disallowadmin'] = 'Apasati %saici%s pentru a reveni la sectiunea Administrarea numelor de utilizator nepremise'; // // Styles Admin // $lang['Styles_admin'] = 'Administrarea stilurilor'; $lang['Styles_explain'] = 'Folosind aceasta facilitate puteti adauga, sterge si administra stilurile (sabloanele si temele) disponibile utilizatorilor dumneavoastra'; $lang['Styles_addnew_explain'] = 'Lista urmatoare contine toate temele care sunt disponibile pentru sabloanele pe care le aveti. Elementele din aceasta lista nu au fost instalate in baza de date a phpBB-ului. Ca sa instalati o tema apasati pe legatura <i>Instaleaza</i> de langa denumirea temei'; $lang['Select_template'] = 'Selectati un sablon'; $lang['Style'] = 'Stilul'; $lang['Template'] = 'Sablonul'; $lang['Install'] = 'Instaleaza'; $lang['Download'] = 'Descarca'; $lang['Edit_theme'] = 'Modifica tema'; $lang['Edit_theme_explain'] = 'In formularul de mai jos puteti modifica configurarile pentru tema selectata'; $lang['Create_theme'] = 'Creaza tema'; $lang['Create_theme_explain'] = 'Folositi formularul de mai jos ca sa creati o tema noua pentru un sablon selectat. Cand introduceti culori (pentru care trebuie sa folositi notatie hexazecimala) nu trebuie sa includeti initiala #, de exemplu CCCCCC este valida, #CCCCCC nu este valida'; $lang['Export_themes'] = 'Exporta teme'; $lang['Export_explain'] = 'In aceasta sectiune puteti exporta teme dintr-un sablon selectat. Selectati sablonul din lista de mai jos si programul va crea un fisier de configurare a temei si incercati sa-l salvati in directorul sablonului selectat. Daca fisierul nu poate fi salvat vi se va da posibilitatea sa-l descarcati. Pentru ca programul sa salveze fisierul trebuie sa dati drepturi de scriere pentru serverul web pe directorul sablonului selectat. Pentru mai multe informatii consultati pagina 2 din ghidul utilizatorilor phpBB.'; $lang['Theme_installed'] = 'Tema selectata a fost instalata cu succes'; $lang['Style_removed'] = 'Stilul selectat a fost sters din baza de date. Pentru a sterge definitiv acest stil din sistem, trebuie sa-l stergeti din directorul dumneavoastra cu sabloane.'; $lang['Theme_info_saved'] = 'Informatiile temei pentru sablonul curent au fost salvate. Acum trebuie sa specificati permisiunile in fisierul theme_info.cfg (si daca se poate directorul sablonului selectat) la acces doar de citire'; $lang['Theme_updated'] = 'Tema selectata a fost actualizata. Acum ar trebui sa exportati setarile temei noi'; $lang['Theme_created'] = 'Tema a fost creata. Acum ar trebui sa exportati tema in fisierul de configurare al temei pentru pastrarea in siguranta a acesteia sau s-o folositi altundeva'; $lang['Confirm_delete_style'] = 'Sunteti sigur ca doriti sa stergeti acest stil?'; $lang['Download_theme_cfg'] = 'Procedura de export nu poate scrie fisierul cu informatiile temei. Apasati butonul de mai jos ca sa descarcati acest fisier. Odata ce l-ati descarcat puteti sa-l transferati in directorul care contine fisierele cu sabloane. Puteti impacheta fisierele pentru distributie sau sa le folositi unde doriti'; $lang['No_themes'] = 'Sablonul pe care l-ati selectat nu are teme atasate. Ca sa creati o tema noua apasati legatura <i>Creaza tema</i> din partea stanga'; $lang['No_template_dir'] = 'Nu se poate deschide directorul cu sabloane. Acesta ori nu poate fi citit de catre serverul web ori nu exista'; $lang['Cannot_remove_style'] = 'Nu puteti sterge stilul selectat in timp ce este acesta este stilul standard pentru forum. Schimbati stilul standard si incercati din nou.'; $lang['Style_exists'] = 'Numele stilului pe care l-ati selectat exista deja, va rugam reveniti si alegeti un nume diferit.'; $lang['Click_return_styleadmin'] = 'Apasati %saici%s ca sa reveniti la sectiunea Administrarea stilurilor'; $lang['Theme_settings'] = 'Configurarile temei'; $lang['Theme_element'] = 'Elementul temei'; $lang['Simple_name'] = 'Numele simplu'; $lang['Value'] = 'Valoarea'; $lang['Save_Settings'] = 'Salveaza configurarile'; $lang['Stylesheet'] = 'Stilul CSS'; $lang['Stylesheet_explain'] = 'Numele fisierului pentru stilul CSS folosit in aceasta tema.'; $lang['Background_image'] = 'Imaginea fundalului'; $lang['Background_color'] = 'Culoarea fundalului'; $lang['Theme_name'] = 'Numele temei'; $lang['Link_color'] = 'Culoarea legaturii'; $lang['Text_color'] = 'Culoarea textului'; $lang['VLink_color'] = 'Culoarea legaturii vizitate'; $lang['ALink_color'] = 'Culoarea legaturii active'; $lang['HLink_color'] = 'Culoarea legaturii acoperite'; $lang['Tr_color1'] = 'Culoarea 1 a randului din tabel'; $lang['Tr_color2'] = 'Culoarea 2 a randului din tabel'; $lang['Tr_color3'] = 'Culoarea 3 a randului din tabel'; $lang['Tr_class1'] = 'Clasa 1 a randului din tabel'; $lang['Tr_class2'] = 'Clasa 2 a randului din tabel'; $lang['Tr_class3'] = 'Clasa 3 a randului din tabel'; $lang['Th_color1'] = 'Culoarea 1 a antetului din tabel'; $lang['Th_color2'] = 'Culoarea 2 a antetului din tabel'; $lang['Th_color3'] = 'Culoarea 3 a antetului din tabel'; $lang['Th_class1'] = 'Clasa 1 a antetului din tabel'; $lang['Th_class2'] = 'Clasa 2 a antetului din tabel'; $lang['Th_class3'] = 'Clasa 3 a antetului din tabel'; $lang['Td_color1'] = 'Culoarea 1 a celulei din tabel'; $lang['Td_color2'] = 'Culoarea 2 a celulei din tabel'; $lang['Td_color3'] = 'Culoarea 3 a celulei din tabel'; $lang['Td_class1'] = 'Clasa 1 a celulei din tabel'; $lang['Td_class2'] = 'Clasa 2 a celulei din tabel'; $lang['Td_class3'] = 'Clasa 3 a celulei din tabel'; $lang['fontface1'] = 'Fontul de fata 1'; $lang['fontface2'] = 'Fontul de fata 2'; $lang['fontface3'] = 'Fontul de fata 3'; $lang['fontsize1'] = 'Dimensiunea 1 a fontului'; $lang['fontsize2'] = 'Dimensiunea 2 a fontului'; $lang['fontsize3'] = 'Dimensiunea 3 a fontului'; $lang['fontcolor1'] = 'Culoarea 1 a fontului'; $lang['fontcolor2'] = 'Culoarea 2 a fontului'; $lang['fontcolor3'] = 'Culoarea 3 a fontului'; $lang['span_class1'] = 'Clasa 1 a separatorului'; $lang['span_class2'] = 'Clasa 2 a separatorului'; $lang['span_class3'] = 'Clasa 3 a separatorului'; $lang['img_poll_size'] = 'Dimensiunea imaginii sondajului [px]'; $lang['img_pm_size'] = 'Dimensiunea statutului de mesaj privat [px]'; // // Install Process // $lang['Welcome_install'] = 'Bine ati venit la procedura de instalare a forumului phpBB2'; $lang['Initial_config'] = 'Configuratia de baza'; $lang['DB_config'] = 'Configuratia bazei de date'; $lang['Admin_config'] = 'Configuratia administratorului'; $lang['continue_upgrade'] = 'Odata ce ati descarcat fisierul dumneavoastra de configurare pe calculatorul local puteti folosi butonul <i>Continua actualizarea</i> de mai jos ca sa treceti la urmatorul pas din actualizare. Va rugam asteptati sa se incarce fisierul de configurare pana ce actualizarea este completa.'; $lang['upgrade_submit'] = 'Continua actualizarea'; $lang['Installer_Error'] = 'O eroare a aparut in timpul instalarii'; $lang['Previous_Install'] = 'O instalare anterioara a fost detectata'; $lang['Install_db_error'] = 'O eroare a aparut in timpul actualizarii bazei de date'; $lang['Re_install'] = 'Instalarea anterioara este inca activa. <br /><br />Daca doriti sa reinstalati phpBB2-ul ar trebui sa apasati pe butonul Da de mai jos. Va rugam sa aveti grija ca sa nu distrugeti toate datele existente, nici o copie de siguranta nu va fi facuta! Numele de utilizator si parola administratorului pe care le-ati folosit sa va autentificati in forum vor fi recreate dupa reinstalare, nici o alta setare nu va fi pastrata. <br /><br />Ganditi-va atent inainte de a apasa butonul <i>Porneste instalarea</i>!'; $lang['Inst_Step_0'] = 'Va multumim ca ati ales phpBB2. Pentru a completa aceasta instalare va rugam sa completati detaliile de mai jos. Retineti ca baza de date pe care o folositi trebuie sa existe deja. Daca instalati intr-o baza de date care foloseste ODBC, de exemplu MS Access ar trebui mai intai sa creati un DSN pentru aceasta inainte de a continua.'; $lang['Start_Install'] = 'Porneste instalarea'; $lang['Finish_Install'] = 'Termina instalarea'; $lang['Default_lang'] = 'Limba standard pentru forum'; $lang['DB_Host'] = 'Numele serverului gazda pentru baza de date / DSN'; $lang['DB_Name'] = 'Numele bazei dumneavoastra de date'; $lang['DB_Username'] = 'Numele de utilizator al bazei de date'; $lang['DB_Password'] = 'Parola de utilizator al bazei de date'; $lang['Database'] = 'Baza dumneavoastra de date'; $lang['Install_lang'] = 'Alegeti limba pentru instalare'; $lang['dbms'] = 'Tipul bazei de date'; $lang['Table_Prefix'] = 'Prefixul pentru tabelele din baza de date'; $lang['Admin_Username'] = 'Numele de utilizator al administratorului'; $lang['Admin_Password'] = 'Parola administratorului'; $lang['Admin_Password_confirm'] = 'Parola administratorului [ Confirmati ]'; $lang['Inst_Step_2'] = 'Numele de utilizator pentru administrator a fost creat. Acum instalarea de baza este completa. Va aparea un ecran care va va permite sa administrati noua dumneavoastra instalare. Asigurati-va ca ati verificat detaliile sectiunii Configurare generala si ati efectuat orice schimbare necesara. Va multumim ca ati ales phpBB2.'; $lang['Unwriteable_config'] = 'Fisierul dumneavoastra de configurare in acest moment este protejat la scriere. O copie a fisierului de configurare va fi descarcata cand apasati butonul de mai jos. At trebui sa incarcati acest fisier in acelasi director ca si php... [truncated message content] |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:04:25
|
Update of /cvsroot/mxbb/phpbb2mxp/language/lang_swedish In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/language/lang_swedish Added Files: index.htm lang_admin.php lang_main.php lang_meta.php Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: lang_meta.php --- <?php /** * * @package mxBB Portal Core * @version $Id: lang_meta.php,v 1.1 2008/12/31 01:44:52 orynider Exp $ * @copyright (c) 2002-2006 mxBB Project Team * @license http://opensource.org/licenses/gpl-license.php GNU General Public License v2 * @link http://www.mxbb.net * */ // // This file contains lang entries related to META tags. // // // First level of all language codes are based on the ISO-639 standard // as pointed by the RFC3066 'Tags for the Identification of Languages', // which is referenced by the HTML 4.01 Specification. // // More information can be found here: // http://www.w3.org/TR/html401/struct/dirlang.html#h-8.1.1 // ftp://ftp.rfc-editor.org/in-notes/rfc3066.txt // http://www.loc.gov/standards/iso639-2/langhome.html // // Note: There might be some mistakes in second level codes. // Apologies in advance for any mistake here. Feel free to contact // us if you believe anything must be changed here. Thanks // $lang['mx_meta']['langcode']['ab'] = 'Abkhazian'; $lang['mx_meta']['langcode']['aa'] = 'Afar'; $lang['mx_meta']['langcode']['af'] = 'Afrikaans'; $lang['mx_meta']['langcode']['ak'] = 'Akan'; $lang['mx_meta']['langcode']['sq'] = 'Albanian'; $lang['mx_meta']['langcode']['am'] = 'Amharic'; $lang['mx_meta']['langcode']['ar'] = 'Arabic'; $lang['mx_meta']['langcode']['ar-ae'] = 'Arabic (Arab Emirates)'; $lang['mx_meta']['langcode']['ar-bh'] = 'Arabic (Bahrein)'; $lang['mx_meta']['langcode']['ar-eg'] = 'Arabic (Egypt)'; $lang['mx_meta']['langcode']['ar-iq'] = 'Arabic (Iraq)'; $lang['mx_meta']['langcode']['ar-jo'] = 'Arabic (Jordania)'; $lang['mx_meta']['langcode']['ar-kw'] = 'Arabic (Kuwait)'; $lang['mx_meta']['langcode']['ar-lb'] = 'Arabic (Libanon)'; $lang['mx_meta']['langcode']['ar-ly'] = 'Arabic (Lybia)'; $lang['mx_meta']['langcode']['ar-ma'] = 'Arabic (Morocco)'; $lang['mx_meta']['langcode']['ar-om'] = 'Arabic (Oman)'; $lang['mx_meta']['langcode']['ar-qa'] = 'Arabic (Qtar)'; $lang['mx_meta']['langcode']['ar-sa'] = 'Arabic (Saudi Arabia)'; $lang['mx_meta']['langcode']['ar-sy'] = 'Arabic (Syria)'; $lang['mx_meta']['langcode']['ar-tn'] = 'Arabic (Tunisia)'; $lang['mx_meta']['langcode']['ar-ye'] = 'Arabic (Yemen)'; $lang['mx_meta']['langcode']['an'] = 'Aragonese'; $lang['mx_meta']['langcode']['hy'] = 'Armenian'; $lang['mx_meta']['langcode']['as'] = 'Assamese'; $lang['mx_meta']['langcode']['av'] = 'Avaric'; $lang['mx_meta']['langcode']['ae'] = 'Avestan'; $lang['mx_meta']['langcode']['ay'] = 'Aymara'; $lang['mx_meta']['langcode']['az'] = 'Azerbaijani'; $lang['mx_meta']['langcode']['bm'] = 'Bambara'; $lang['mx_meta']['langcode']['ba'] = 'Bashkir'; $lang['mx_meta']['langcode']['eu'] = 'Basque'; $lang['mx_meta']['langcode']['be'] = 'Belarusian'; $lang['mx_meta']['langcode']['bn'] = 'Bengali'; $lang['mx_meta']['langcode']['bh'] = 'Bihari'; $lang['mx_meta']['langcode']['bi'] = 'Bislama'; $lang['mx_meta']['langcode']['bs'] = 'Bosnian'; $lang['mx_meta']['langcode']['br'] = 'Breton'; $lang['mx_meta']['langcode']['bg'] = 'Bulgarian'; $lang['mx_meta']['langcode']['my'] = 'Burmese'; $lang['mx_meta']['langcode']['ca'] = 'Catalan'; $lang['mx_meta']['langcode']['ch'] = 'Chamorro'; $lang['mx_meta']['langcode']['ce'] = 'Chechen'; $lang['mx_meta']['langcode']['zh'] = 'Chinese'; $lang['mx_meta']['langcode']['zh-hk'] = 'Chinese (Hong-Kong)'; $lang['mx_meta']['langcode']['zh-cn'] = 'Chinese (PRC)'; $lang['mx_meta']['langcode']['zh-sg'] = 'Chinese (Singapour)'; $lang['mx_meta']['langcode']['zh-tw'] = 'Chinese (Taiwan)'; $lang['mx_meta']['langcode']['cu'] = 'Church Slavonic'; $lang['mx_meta']['langcode']['cv'] = 'Chuvash'; $lang['mx_meta']['langcode']['kw'] = 'Cornish'; $lang['mx_meta']['langcode']['co'] = 'Corsican'; $lang['mx_meta']['langcode']['cr'] = 'Cree'; $lang['mx_meta']['langcode']['hr'] = 'Croatian'; $lang['mx_meta']['langcode']['cs'] = 'Czech'; $lang['mx_meta']['langcode']['da'] = 'Danish'; $lang['mx_meta']['langcode']['dv'] = 'Divehi'; $lang['mx_meta']['langcode']['nl'] = 'Dutch'; $lang['mx_meta']['langcode']['nl-be'] = 'Dutch (Belgian)'; $lang['mx_meta']['langcode']['dz'] = 'Dzongkha'; $lang['mx_meta']['langcode']['en'] = 'English'; $lang['mx_meta']['langcode']['en-au'] = 'English (Australia)'; $lang['mx_meta']['langcode']['en-bz'] = 'English (Belize)'; $lang['mx_meta']['langcode']['en-ca'] = 'English (Canada)'; $lang['mx_meta']['langcode']['en-ie'] = 'English (Ireland)'; $lang['mx_meta']['langcode']['en-jm'] = 'English (Jamaican)'; $lang['mx_meta']['langcode']['en-gb'] = 'English (Great Britain)'; $lang['mx_meta']['langcode']['en-nz'] = 'English (New Zeland)'; $lang['mx_meta']['langcode']['en-za'] = 'English (South Africa)'; $lang['mx_meta']['langcode']['eo'] = 'Esperanto'; $lang['mx_meta']['langcode']['et'] = 'Estonian'; $lang['mx_meta']['langcode']['ee'] = 'Ewe'; $lang['mx_meta']['langcode']['fo'] = 'Faroese'; $lang['mx_meta']['langcode']['fj'] = 'Fijian'; $lang['mx_meta']['langcode']['fi'] = 'Finnish'; $lang['mx_meta']['langcode']['fr'] = 'French'; $lang['mx_meta']['langcode']['fr-be'] = 'French (Belgian)'; $lang['mx_meta']['langcode']['fr-ca'] = 'French (Canada)'; $lang['mx_meta']['langcode']['fr-lu'] = 'French (Luxembourg)'; $lang['mx_meta']['langcode']['fr-ch'] = 'French (Switzerland)'; $lang['mx_meta']['langcode']['fy'] = 'Frisian'; $lang['mx_meta']['langcode']['ff'] = 'Fulah'; $lang['mx_meta']['langcode']['gl'] = 'Gallegan'; $lang['mx_meta']['langcode']['lg'] = 'Ganda'; $lang['mx_meta']['langcode']['ka'] = 'Georgian'; $lang['mx_meta']['langcode']['de'] = 'German'; $lang['mx_meta']['langcode']['de-li'] = 'German (Liechtenstein)'; $lang['mx_meta']['langcode']['de-lu'] = 'German (Luxembourg)'; $lang['mx_meta']['langcode']['de-ch'] = 'German (Switzerland)'; $lang['mx_meta']['langcode']['gn'] = 'Guarani'; $lang['mx_meta']['langcode']['gu'] = 'Gujarati'; $lang['mx_meta']['langcode']['ht'] = 'Haitian'; $lang['mx_meta']['langcode']['ha'] = 'Hausa'; $lang['mx_meta']['langcode']['he'] = 'Hebrew'; $lang['mx_meta']['langcode']['hz'] = 'Herero'; $lang['mx_meta']['langcode']['hi'] = 'Hindi'; $lang['mx_meta']['langcode']['ho'] = 'Hiri Motu'; $lang['mx_meta']['langcode']['hu'] = 'Hungarian'; $lang['mx_meta']['langcode']['is'] = 'Icelandic'; $lang['mx_meta']['langcode']['io'] = 'Ido'; $lang['mx_meta']['langcode']['ig'] = 'Igbo'; $lang['mx_meta']['langcode']['id'] = 'Indonesian'; $lang['mx_meta']['langcode']['ie'] = 'Interlingue'; $lang['mx_meta']['langcode']['iu'] = 'Inuktitut'; $lang['mx_meta']['langcode']['ik'] = 'Inupiaq'; $lang['mx_meta']['langcode']['ga'] = 'Irish'; $lang['mx_meta']['langcode']['it'] = 'Italian'; $lang['mx_meta']['langcode']['it-ch'] = 'Italian (Switzerland)'; $lang['mx_meta']['langcode']['ja'] = 'Japanese'; $lang['mx_meta']['langcode']['jv'] = 'Javanese'; $lang['mx_meta']['langcode']['kl'] = 'Kalaallisut'; $lang['mx_meta']['langcode']['kn'] = 'Kannada'; $lang['mx_meta']['langcode']['kr'] = 'Kanuri'; $lang['mx_meta']['langcode']['ks'] = 'Kashmiri'; $lang['mx_meta']['langcode']['kk'] = 'Kazakh'; $lang['mx_meta']['langcode']['km'] = 'Khmer'; $lang['mx_meta']['langcode']['ki'] = 'Kikuyu'; $lang['mx_meta']['langcode']['rw'] = 'Kinyarwanda'; $lang['mx_meta']['langcode']['ky'] = 'Kirghiz'; $lang['mx_meta']['langcode']['kv'] = 'Komi'; $lang['mx_meta']['langcode']['kg'] = 'Kongo'; $lang['mx_meta']['langcode']['ko'] = 'Korean'; $lang['mx_meta']['langcode']['ku'] = 'Kurdish'; $lang['mx_meta']['langcode']['kj'] = 'Kwanyama'; $lang['mx_meta']['langcode']['lo'] = 'Lao'; $lang['mx_meta']['langcode']['la'] = 'Latin'; $lang['mx_meta']['langcode']['lv'] = 'Latvian'; $lang['mx_meta']['langcode']['li'] = 'Limburgish'; $lang['mx_meta']['langcode']['ln'] = 'Lingala'; $lang['mx_meta']['langcode']['lt'] = 'Lithuanian'; $lang['mx_meta']['langcode']['lu'] = 'Luba-Katanga'; $lang['mx_meta']['langcode']['lb'] = 'Luxembourgish'; $lang['mx_meta']['langcode']['mk'] = 'Macedonian'; $lang['mx_meta']['langcode']['mg'] = 'Malagasy'; $lang['mx_meta']['langcode']['ms'] = 'Malay'; $lang['mx_meta']['langcode']['ml'] = 'Malayalam'; $lang['mx_meta']['langcode']['mt'] = 'Maltese'; $lang['mx_meta']['langcode']['gv'] = 'Manx'; $lang['mx_meta']['langcode']['mi'] = 'Maori'; $lang['mx_meta']['langcode']['mr'] = 'Marathi'; $lang['mx_meta']['langcode']['mh'] = 'Marshallese'; $lang['mx_meta']['langcode']['el'] = 'Modern Greek'; $lang['mx_meta']['langcode']['mo'] = 'Moldavian'; $lang['mx_meta']['langcode']['mn'] = 'Mongolian'; $lang['mx_meta']['langcode']['na'] = 'Nauru'; $lang['mx_meta']['langcode']['nv'] = 'Navajo'; $lang['mx_meta']['langcode']['nd'] = 'Ndebele, North'; $lang['mx_meta']['langcode']['ng'] = 'Ndonga'; $lang['mx_meta']['langcode']['ne'] = 'Nepali'; $lang['mx_meta']['langcode']['nb'] = 'Norwegian'; $lang['mx_meta']['langcode']['nn'] = 'Norwegian Nynorsk'; $lang['mx_meta']['langcode']['ny'] = 'Nyanja'; $lang['mx_meta']['langcode']['oc'] = 'Occitan'; $lang['mx_meta']['langcode']['oj'] = 'Ojibwa'; $lang['mx_meta']['langcode']['or'] = 'Oriya'; $lang['mx_meta']['langcode']['om'] = 'Oromo'; $lang['mx_meta']['langcode']['os'] = 'Ossetian'; $lang['mx_meta']['langcode']['pi'] = 'Pali'; $lang['mx_meta']['langcode']['pa'] = 'Panjabi'; $lang['mx_meta']['langcode']['fa'] = 'Persian'; $lang['mx_meta']['langcode']['pl'] = 'Polish'; $lang['mx_meta']['langcode']['pt'] = 'Portuguese'; $lang['mx_meta']['langcode']['pt-br'] = 'Portuguese (Brazil)'; $lang['mx_meta']['langcode']['ps'] = 'Pushto'; $lang['mx_meta']['langcode']['qu'] = 'Quechua'; $lang['mx_meta']['langcode']['rm'] = 'Raeto-Romance'; $lang['mx_meta']['langcode']['ro'] = 'Romanian'; $lang['mx_meta']['langcode']['ro-mo'] = 'Romanian (Moldavia)'; $lang['mx_meta']['langcode']['rn'] = 'Rundi'; $lang['mx_meta']['langcode']['ru'] = 'Russian'; $lang['mx_meta']['langcode']['ru-mo'] = 'Russian (Moldavia)'; $lang['mx_meta']['langcode']['sm'] = 'Samoan'; $lang['mx_meta']['langcode']['sg'] = 'Sango'; $lang['mx_meta']['langcode']['sa'] = 'Sanskrit'; $lang['mx_meta']['langcode']['sc'] = 'Sardinian'; $lang['mx_meta']['langcode']['gd'] = 'Scottish Gaelic'; $lang['mx_meta']['langcode']['sr'] = 'Serbian'; $lang['mx_meta']['langcode']['sn'] = 'Shona'; $lang['mx_meta']['langcode']['ii'] = 'Sichuan Yi'; $lang['mx_meta']['langcode']['sd'] = 'Sindhi'; $lang['mx_meta']['langcode']['si'] = 'Sinhalese'; $lang['mx_meta']['langcode']['sk'] = 'Slovak'; $lang['mx_meta']['langcode']['sl'] = 'Slovenian'; $lang['mx_meta']['langcode']['so'] = 'Somali'; $lang['mx_meta']['langcode']['st'] = 'Sotho'; $lang['mx_meta']['langcode']['nr'] = 'South Ndebele'; $lang['mx_meta']['langcode']['es'] = 'Spanish'; $lang['mx_meta']['langcode']['es-ar'] = 'Spanish (Argentina)'; $lang['mx_meta']['langcode']['es-bo'] = 'Spanish (Bolivia)'; $lang['mx_meta']['langcode']['es-cl'] = 'Spanish (Chile)'; $lang['mx_meta']['langcode']['es-co'] = 'Spanish (Colombia)'; $lang['mx_meta']['langcode']['es-cr'] = 'Spanish (Costa Rica)'; $lang['mx_meta']['langcode']['es-sv'] = 'Spanish (El Salvador)'; $lang['mx_meta']['langcode']['es-ec'] = 'Spanish (Ecuador)'; $lang['mx_meta']['langcode']['es-gt'] = 'Spanish (Guatemala)'; $lang['mx_meta']['langcode']['es-hn'] = 'Spanish (Honduras)'; $lang['mx_meta']['langcode']['es-mx'] = 'Spanish (Mexico)'; $lang['mx_meta']['langcode']['es-ni'] = 'Spanish (Nicaragua)'; $lang['mx_meta']['langcode']['es-pa'] = 'Spanish (Panama)'; $lang['mx_meta']['langcode']['es-py'] = 'Spanish (Paraguay)'; $lang['mx_meta']['langcode']['es-pr'] = 'Spanish (Puerto Rico)'; $lang['mx_meta']['langcode']['es-pe'] = 'Spanish (Peru)'; $lang['mx_meta']['langcode']['es-tt'] = 'Spanish (Trinidad)'; $lang['mx_meta']['langcode']['es-uy'] = 'Spanish (Uruguay)'; $lang['mx_meta']['langcode']['es-ve'] = 'Spanish (Venezuela)'; $lang['mx_meta']['langcode']['su'] = 'Sundanese'; $lang['mx_meta']['langcode']['sw'] = 'Swahili'; $lang['mx_meta']['langcode']['ss'] = 'Swati'; $lang['mx_meta']['langcode']['sv'] = 'Swedish'; $lang['mx_meta']['langcode']['sv-fi'] = 'Swedish (Finland)'; $lang['mx_meta']['langcode']['tl'] = 'Tagalog'; $lang['mx_meta']['langcode']['ty'] = 'Tahitian'; $lang['mx_meta']['langcode']['tg'] = 'Tajik'; $lang['mx_meta']['langcode']['ta'] = 'Tamil'; $lang['mx_meta']['langcode']['tt'] = 'Tatar'; $lang['mx_meta']['langcode']['te'] = 'Telugu'; $lang['mx_meta']['langcode']['th'] = 'Thai'; $lang['mx_meta']['langcode']['bo'] = 'Tibetan'; $lang['mx_meta']['langcode']['ti'] = 'Tigrinya'; $lang['mx_meta']['langcode']['to'] = 'Tonga'; $lang['mx_meta']['langcode']['ts'] = 'Tsonga'; $lang['mx_meta']['langcode']['tn'] = 'Tswana'; $lang['mx_meta']['langcode']['tr'] = 'Turkish'; $lang['mx_meta']['langcode']['tk'] = 'Turkmen'; $lang['mx_meta']['langcode']['tw'] = 'Twi'; $lang['mx_meta']['langcode']['uk'] = 'Ukrainian'; $lang['mx_meta']['langcode']['ur'] = 'Urdu'; $lang['mx_meta']['langcode']['ug'] = 'Uyghur'; $lang['mx_meta']['langcode']['uz'] = 'Uzbek'; $lang['mx_meta']['langcode']['ve'] = 'Venda'; $lang['mx_meta']['langcode']['vi'] = 'Vietnamese'; $lang['mx_meta']['langcode']['vo'] = 'Volapük'; $lang['mx_meta']['langcode']['wa'] = 'Walloon'; $lang['mx_meta']['langcode']['cy'] = 'Welsh'; $lang['mx_meta']['langcode']['wo'] = 'Wolof'; $lang['mx_meta']['langcode']['xh'] = 'Xhosa'; $lang['mx_meta']['langcode']['yi'] = 'Yiddish'; $lang['mx_meta']['langcode']['yo'] = 'Yoruba'; $lang['mx_meta']['langcode']['za'] = 'Zhuang'; $lang['mx_meta']['langcode']['zu'] = 'Zulu'; // // Other related META tag entries follow... // $lang['mx_meta']['rating']['general'] = 'General'; $lang['mx_meta']['rating']['14 years'] = '14 years'; $lang['mx_meta']['rating']['restricted']= 'Restricted'; $lang['mx_meta']['rating']['mature'] = 'Mature'; $lang['mx_meta']['index']['index'] = 'Index'; $lang['mx_meta']['index']['noindex'] = 'No index'; $lang['mx_meta']['follow']['follow'] = 'Follow'; $lang['mx_meta']['follow']['nofollow'] = 'No follow'; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_admin.php --- <?php /*************************************************************************** * lang_admin.php [Swedish] * ------------------- * begin : Sat Dec 16 2000 * copyright : (C) 2001 The phpBB Group and (C) 2003 Jonathan Gulbrandsen * email : su...@ph... (translator:vir...@ca...) * * $Id: lang_admin.php,v 1.1 2008/12/31 01:44:52 orynider Exp $ * ****************************************************************************/ /*************************************************************************** * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * ***************************************************************************/ // ************************************* // First, original Swedish translation by: // // Marcus Svensson // ad...@wo... // http://www.world-of-war.com // ------------------------------------- // Janĺke Rönnblom // jan...@sk... // ------------------------------------- // Bruce // br...@we... // ------------------------------------- // Jakob Persson // jak...@in... // http://www.jakob-persson.com // // ************************************* // Maintained and kept up-to-date by: // // Jonathan Gulbrandsen (Virtuality) // vir...@ca... // http://www.carlssonplanet.com // ************************************* // /* CONTRIBUTORS XXXX-XX-XX Orginal translation to Swedish by Marcus Svensson, Janĺke Rönnblom, Bruce and Jakob Persson 2003-07-11 Virtuality aka Jonathan Gulbrandsen (vir...@ca...) Updated the language file to phpBB2.0.5 2003-08-13 Virtuality aka Jonathan Gulbrandsen (vir...@ca...) Updated to 2.0.6, no changes. Lots of "swinglish", grammars and mispellings fixed */ // // Format is same as lang_main // // // Modules, this replaces the keys used // in the modules[][] arrays in each module file // $lang['General'] = "Generell admin"; $lang['Users'] = "Användaradmin"; $lang['Groups'] = "Gruppadmin"; $lang['Forums'] = "Forumadmin"; $lang['Styles'] = "Stiladmin"; $lang['Configuration'] = "Konfiguration"; $lang['Permissions'] = "Rättigheter"; $lang['Manage'] = "Hantering"; $lang['Disallow'] = "Förbjuda namn"; $lang['Prune'] = "Reducering"; $lang['Mass_Email'] = "Mass email"; $lang['Ranks'] = "Ranker"; $lang['Smilies'] = "Smilies"; $lang['Ban_Management'] = "Bannlys"; $lang['Word_Censor'] = "Ordcensur"; $lang['Export'] = "Exportera"; $lang['Create_new'] = "Skapa"; $lang['Add_new'] = "Lägg till"; $lang['Backup_DB'] = "Backup av databas"; $lang['Restore_DB'] = "Ĺterställ databas"; // // Index // $lang['Admin'] = "Administration"; $lang['Not_admin'] = "Du har inte rättighet att administrera detta forum"; $lang['Welcome_phpBB'] = "Välkommen till phpBB"; $lang['Admin_intro'] = "Tack för att du har valt phpBB som din forumlösning. Den här sidan ger dig en snabb överblick över all möjlig statistik om ditt forum. Du kan komma tillbaka till den här sidan genom att klicka pĺ <u>Admin index</u> länken pĺ den vänstra sidan. För att komma tillbaka till indexet till forumet tryck pĺ phpBB logon, som finns i den vänstra panelen. De övriga länkarna pĺ vänster hand lĺter dig kontrollera alla aspekter pĺ hur ditt forum presenteras, varje sidan har intruktioner pĺ hur du använder verktygen."; $lang['Main_index'] = "Forumindex"; $lang['Forum_stats'] = "Forumstatistik"; $lang['Admin_Index'] = "Admin index"; $lang['Preview_forum'] = "Förhandsgranska forum"; $lang['Click_return_admin_index'] = "Klicka %sHär%s för att ĺtervända till Admin index"; $lang['Statistic'] = "Statistik"; $lang['Value'] = "Värde"; $lang['Number_posts'] = "Antal inlägg"; $lang['Posts_per_day'] = "Inlägg per dag"; $lang['Number_topics'] = "Antal ämnen"; $lang['Topics_per_day'] = "Ãmnen per dag"; $lang['Number_users'] = "Antal användare"; $lang['Users_per_day'] = "Användare per dag"; $lang['Board_started'] = "Start av forum"; $lang['Avatar_dir_size'] = "Avatarkatalogens storlek"; $lang['Database_size'] = "Databasstorlek"; $lang['Gzip_compression'] ="Gzip komprimering"; $lang['Not_available'] = "Inte tillgänglig"; $lang['ON'] = "PĹ"; // This is for GZip compression $lang['OFF'] = "AV"; // // DB Utils // $lang['Database_Utilities'] = "Databasverktyg"; $lang['Restore'] = "Ĺterställ"; $lang['Backup'] = "Backup"; $lang['Restore_explain'] = "Detta kommer att utföra en fullständig ĺterställning av alla phpBB tabeller frĺn en sparad fil. Om din server stödjer det kan du ladda upp en gzip komprimerad text fil vilken kommer att dekomprimeras. <b>VARNING</b>Detta kommer att skriva över all existerande data. Ĺterställningen kan ta en lĺng tid att utföra men lämna inte denna sida förrän den är färdig."; $lang['Backup_explain'] = "Här kan du ta backup pĺ alla dina phpBB relaterade data. Om du har andra egna tabeller i samma databas som phpBB som du ocksĺ vill säkerhetskopiera sĺ ange deras namn separerad med komman i \"Ãvriga tabeller\"-rutan nedanför Om din server stöjder det kan du ocksĺ gzip komprimera filen för att minska storleken innan du laddar ner den."; $lang['Backup_options'] = "Backup alternativ"; $lang['Start_backup'] = "Starta backup"; $lang['Full_backup'] = "Fullständig backup"; $lang['Structure_backup'] = "Enbart backup av strukturen"; $lang['Data_backup'] = "Backup av endast data"; $lang['Additional_tables'] = "Ãvriga tabeller"; $lang['Gzip_compress'] = "Gzip komprimera filen"; $lang['Select_file'] = "Välj en fil"; $lang['Start_Restore'] = "Starta ĺterställningen"; $lang['Restore_success'] = "Databasen är ĺterställd utan problem.<br /><br />Ditt forum bör vara tillbaka i samma skick som när du gjorde backupen."; $lang['Backup_download'] = "Din nedladdning kommer att starta snart, var god vänta tills den startar"; $lang['Backups_not_supported'] = "Tyvärr sĺ stöds inte backup än av ditt databassystem"; $lang['Restore_Error_uploading'] = "Fel när filen skulle laddas upp."; $lang['Restore_Error_filename'] = "Problem med filnamnet, försök med en annan fil"; $lang['Restore_Error_decompress'] = "Kunde inte dekomprimera gzip fil, försök ladda upp en textversion"; $lang['Restore_Error_no_file'] = "Ingen fil är uppladdad"; // // Auth pages // $lang['Select_a_User'] = "Välj en användare"; $lang['Select_a_Group'] = "Välj en grupp"; $lang['Select_a_Forum'] = "Välj ett forum"; $lang['Auth_Control_User'] = "Användarrättigheter"; $lang['Auth_Control_Group'] = "Grupprättigheter"; $lang['Auth_Control_Forum'] = "Forumrättigheter"; $lang['Look_up_User'] = "Slĺ upp en användare"; $lang['Look_up_Group'] = "Slĺ upp en grupp"; $lang['Look_up_Forum'] = "Slĺ upp ett forum"; $lang['Group_auth_explain'] = "Här kan du ändra rättigheter och moderatorstatus för varje grupp. Glöm inte att fastän du ändrar grupprättigheten att användarens egna rättigheter fortfarande kan ge dom access till forum, m.m. Du kommer att fĺ en varning i sĺ fall."; $lang['User_auth_explain'] = "Här kan du ändra rättigheter och moderator status för varje enskild användare. Glöm inte att fastän du ändrar grupp rättigheten att användarens egna rättigheter fortfarande kan ge dom access till forum, m.m. Du kommer att fĺ en varning i sĺ fall."; $lang['Forum_auth_explain'] = "Här kan du ändra auktorisionsnivĺer för varje forum. Du har bĺde en enkel och en avancerad metod för att göra detta, avancerad ger dig större kontroll över varje forums funktioner. Kom ihĺg att när du ändrar rättigheterna till forumet sĺ pĺverkar du vilka användare som kan utföra olika funktioner i forumet."; $lang['Simple_mode'] = "Enkelt läge"; $lang['Advanced_mode'] = "Avancerat läge"; $lang['Moderator_status'] = "Moderator status"; $lang['Allowed_Access'] = "Tillĺt tillträde"; $lang['Disallowed_Access'] = "Neka tillträde"; $lang['Is_Moderator'] = "Ãr Moderator"; $lang['Not_Moderator'] = "Ãr inte moderator"; $lang['Conflict_warning'] = "Varning! Auktorisationskonflikt"; $lang['Conflict_access_userauth'] = "Denna användare har fortfarande tillgĺng till detta forum via gruppmedlemskap. Du kanske vill ändra grupprättigheterna eller ta bort denna användare frĺn gruppen för att förhindra att de har tillträde. Gruppens rättigheter (och berörda forum) listas nedan."; $lang['Conflict_mod_userauth'] = "Användaren har fortfarande moderatorrättigheter till forumet via gruppmedlemskap. Du kan antingen ändra grupprättigheterna eller ta bort denna användare frĺn gruppen för att förhindra att de har moderatorrättigheter. Gruppens rättigheter (och berörda forum) listas nedan."; $lang['Conflict_access_groupauth'] = "Följande användare har fortfarande ĺtkomsträttigheter till detta forum via deras användarrättigheter. Du kanske vill ändra användarrättigheterna för att förhindra dem frĺn att ha ĺtkomst till forumet. Användarens rättigheter (och berörda forum) listas nedan."; $lang['Conflict_mod_groupauth'] = "Följande användare har fortfarande moderatorrättigheter till forumet via användarrättigheter. Du kanske vill ändra användarrättigheterna för att förhindra dem frĺn att ha ĺtkomst till forumet. Användarens rättigheter (och berörda forum) listas nedan."; $lang['Public'] = "Publik"; $lang['Private'] = "Privat"; $lang['Registered'] = "Registrerad"; $lang['Administrators'] = "Administratörer"; $lang['Hidden'] = "Dold"; // These are displayed in the drop down boxes for advanced // mode forum auth, try and keep them short! $lang['Forum_ALL'] = "ALLA"; $lang['Forum_REG'] = "REG"; $lang['Forum_PRIVATE'] = "PRIVAT"; $lang['Forum_MOD'] = "MOD"; $lang['Forum_ADMIN'] = "ADMIN"; $lang['View'] = "Visa"; $lang['Read'] = "Läs"; $lang['Post'] = "Inlägg"; $lang['Reply'] = "Svara"; $lang['Edit'] = "Ãndra"; $lang['Delete'] = "Radera"; $lang['Sticky'] = "Klibbig"; $lang['Announce'] = "Viktigt meddelande"; $lang['Vote'] = "Rösta"; $lang['Pollcreate'] = "Skapa omröstning"; $lang['Permissions'] = "Rättigheter"; $lang['Simple_Permission'] = "Enkla rättigheter"; $lang['User_Level'] = "Användarnivĺ"; $lang['Auth_User'] = "Användare"; $lang['Auth_Admin'] = "Administratör"; $lang['Group_memberships'] = "Gruppmedlemskap"; $lang['Usergroup_members'] = "Den här gruppen har följande medlemmar"; $lang['Forum_auth_updated'] = "Forumrättigeheterna är uppdaterade"; $lang['User_auth_updated'] = "Användarrättigeheterna är uppdaterade"; $lang['Group_auth_updated'] = "Grupprättigeheterna är uppdaterade"; $lang['Auth_updated'] = "Rättigheterna är uppdaterade"; $lang['Click_return_userauth'] = "Klicka %shär%s för att ĺtergĺ till användarrättigheter"; $lang['Click_return_groupauth'] = "Klicka %shär%s för att ĺtergĺ till grupprättigheter"; $lang['Click_return_forumauth'] = "Klicka %shär%s för att ĺtergĺ till forumrättigheter"; // // Banning // $lang['Ban_control'] = "Bannlysningskontroll"; $lang['Ban_explain'] = "Här sköter du bannlysningen av användare. Du kan uppnĺ detta genom att bannlysa vilket som helst eller alla av en användare eller en särskild eller ett omrĺde av IP adresser eller värdnamn. Dessa metoder förhindrar en användare frĺn att nĺ index sidan pĺ ditt forum. För att förhindra en användare att registrera under ett annat användarnamn kan du ocksĺ ange en bannlyst epostadress. Notera att bannlysa enbart en epostadress inte kommer att förhindra användaren frĺn att logga pĺ eller skriva ett inlägg pĺ ditt forum, du bör använda nĺgon av de tvĺ första metoderna för att uppnĺ det."; $lang['Ban_explain_warn'] = "Notera att genom att ange ett omrĺde av IP adresser sĺ resulterar det i att alla adresser mellan start och slut läggs till i banlysningslistan. En ansträngning kommer att göras för att minska antalet adresser som läggs in i databasen genom att introducera jokertecken automatiskt där det är lämpligt. Om du verkligen mĺste ange ett omrĺde av adresser sĺ försök hĺlla det litet eller ännu bättre försöka att explicit ange enstaka adresserna."; $lang['Select_username'] = "Välj ett användarnamn"; $lang['Select_ip'] = "Välj en IP adress"; $lang['Select_email'] = "Välj en e-post adress"; $lang['Ban_username'] = "Bannlys en eller flera användare"; $lang['Ban_username_explain'] = 'Du kan banna flera användare pĺ en gĺng genom att använda den rätta kombinationen mellan mus och tangentbord'; $lang['Ban_IP'] = "Bannlys en eller flera IP adresser eller värdnamn"; $lang['IP_hostname'] = "IP adresser eller värdnamn"; $lang['Ban_IP_explain'] = "För att specifiera flera olika IP adresser eller värdnamn, skilj dem ĺt med kommatecken. För att specifiera en rad olika IP adresser separera början och slutet med ett bindesstreck(-), för att specifiera ett wildcard (vad som helst) använd *"; $lang['Ban_email'] = "Bannlys en eller flera epost adresser"; $lang['Ban_email_explain'] = "För att specificera mer än en e-post adress, skilj dem ĺt med kommatecken. För att specifiera ett wildcard (vad som helst) namn använd *, till exempel *@hotmail.com"; $lang['Unban_username'] = "Häv en eller flera bannlysta användare"; $lang['Unban_username_explain'] = "Du kan ta bort flera bannlysningar samtidigt genom att använda den ändamĺlsenliga kombinationen av mus och tangenbord för din dator och webläsare."; $lang['Unban_IP'] = "Häv en eller flera bannlysta IP adresser"; $lang['Unban_IP_explain'] = "Du kan ta bort flera bannlysningar av IP adresser samtidigt genom att använda den ändamĺlsenliga kombinationen av mus och tangenbord för din dator och webläsare."; $lang['Unban_email'] = "Häv en eller flera bannlysta e-post adresser"; $lang['Unban_email_explain'] = "Du kan ta bort flera bannlysningar av e-post adresser samtidigt genom att använda den ändamĺlsenliga kombinationen av mus och tangenbord för din dator och webläsare."; $lang['No_banned_users'] = "Inga bannlysta användarnamn"; $lang['No_banned_ip'] = "Inga bannlysta IP adresser"; $lang['No_banned_email'] = "Inga bannlysta e-post adresser"; $lang['Ban_update_sucessful'] = "Banlistan har blivit uppdaterad."; $lang['Click_return_banadmin'] = "Klicka %shär%s för att ĺtervända till bannlysningskontrollen"; // // Configuration // $lang['General_Config'] = "Generell Konfiguration"; $lang['Config_explain'] = "Formuläret här ger dig möjlighet att ändra alla allmänna foruminställningar. För användar och forumkonfiguration sĺ änvänd de relaterade länkarna pĺ vänster sida."; $lang['Click_return_config'] = "Klicka %shär%s för att ĺtervända till Generell Konfiguration"; $lang['General_settings'] = "Generella foruminställningar"; $lang['Server_name'] = "Domännamn"; $lang['Server_name_explain'] = "Domännamnet som forumet körs frĺn"; $lang['Script_path'] = "Skriptsökväg"; $lang['Script_path_explain'] = "Sökvägen där phpBB2 är placerat under domännamnet (domännamn.com/sökväg)"; $lang['Server_port'] = "Serverport"; $lang['Server_port_explain'] = "Porten som servern körs pĺ, vanligtvis 80, ändra bara om porten är annorlunda"; $lang['Site_name'] = "Sitenamn"; $lang['Site_desc'] = "Sitebeskrivning"; $lang['Board_disable'] = "Stäng av forumet"; $lang['Board_disable_explain'] = "Detta gör forumet otillgängligt för användarna. Logga inte ut när du har deaktiverat forumet, du kommer inte att kunna logga in igen!"; $lang['Acct_activation'] = "Aktivera kontoaktivering"; $lang['Acc_None'] = "Ingen"; // These three entries are the type of activation $lang['Acc_User'] = "Användare"; $lang['Acc_Admin'] = "Administratör"; $lang['Abilities_settings'] = "Användar och foruminställningar"; $lang['Max_poll_options'] = "Maximalt antal val för omröstningar"; $lang['Flood_Interval'] = "Tid mellan inlägg"; $lang['Flood_Interval_explain'] = "Antal sekunder en användare mĺste vänta mellan inläggen"; $lang['Board_email_form'] = "E-posta användare via forumet"; $lang['Board_email_form_explain'] = "Användare kan skicka e-post till varandra via forumet"; $lang['Topics_per_page'] = "Ãmnen per sida"; $lang['Posts_per_page'] = "Inlägg per sida"; $lang['Hot_threshold'] = "Antal inlägg för populäritet"; $lang['Default_style'] = "Standardstil"; $lang['Override_style'] = "Ĺsidosätt användarstil"; $lang['Override_style_explain'] = "Ersätter användarens stil med standard stilen"; $lang['Default_language'] = "Standardsprĺk"; $lang['Date_format'] = "Datumformat"; $lang['System_timezone'] = "Systemets tidszon"; $lang['Enable_gzip'] = "Aktivera GZip Kompression"; $lang['Enable_prune'] = "Aktivera forum reducering"; $lang['Allow_HTML'] = "Tillĺt HTML"; $lang['Allow_BBCode'] = "Tillĺt BBCode"; $lang['Allowed_tags'] = "Tillĺtna HTML taggar"; $lang['Allowed_tags_explain'] = "Separera taggarna med komma"; $lang['Allow_smilies'] = "Tillĺt smilies"; $lang['Smilies_path'] = "Smilies sökväg"; $lang['Smilies_path_explain'] = "Sökväg under din phpBB root katalog, t.ex images/smilies"; $lang['Allow_sig'] = "Tillĺt signaturer"; $lang['Max_sig_length'] = "Maximal längd pĺ signaturen"; $lang['Max_sig_length_explain'] = "Maximalt antal tecken i användarens signatur"; $lang['Allow_name_change'] = "Tillĺt ändring av användarnamn"; $lang['Avatar_settings'] = "Avatarinställningar"; $lang['Allow_local'] = "Aktivera galleriavatarer"; $lang['Allow_remote'] = "Aktivera fjärravatarer"; $lang['Allow_remote_explain'] = "Gör det möjligt att länka till avatarer pĺ andra websiter"; $lang['Allow_upload'] = "Aktivera Avataruppladdning"; $lang['Max_filesize'] = "Maximal Avatar filstorlek"; $lang['Max_filesize_explain'] = "För avatarer som laddas upp"; $lang['Max_avatar_size'] = "Maximal Avatar storlek"; $lang['Max_avatar_size_explain'] = "(Höjd x Bredd i pixelar)"; $lang['Avatar_storage_path'] = "Avatar sökväg"; $lang['Avatar_storage_path_explain'] = "Sökväg under din phpBB root katalog, t.ex. images/avatars"; $lang['Avatar_gallery_path'] = "Avatar galleriets sökväg"; $lang['Avatar_gallery_path_explain'] = "Sökväg under din phpBB root katalog för för-laddade bilder, t.ex. images/avatars/gallery"; $lang['COPPA_settings'] = "COPPA inställningar"; $lang['COPPA_fax'] = "COPPA fax nummer"; $lang['COPPA_mail'] = "COPPA adress"; $lang['COPPA_mail_explain'] = "Detta är adressen dit föräldrar ska skicka registreringsforumlären för COPPA"; $lang['Email_settings'] = "E-post inställningar"; $lang['Admin_email'] = "Admin e-post adress"; $lang['Email_sig'] = "E-post signatur"; $lang['Email_sig_explain'] = "Denna text kommer att bifogas i all e-post som forumet skickar."; $lang['Use_SMTP'] = "Använd SMTP server för epost"; $lang['Use_SMTP_explain'] = "Säg ja om du vill eller mĺste skicka e-post via en angiven server istället för via den lokala e-post funktionen"; $lang['SMTP_server'] = "SMTP server Adress"; $lang['SMTP_username'] = "SMTP Användarnamn"; $lang['SMTP_username_explain'] = "Skriv endast in ett användarnamn om din smtp server behöver det"; $lang['SMTP_password'] = "SMTP Lösenord"; $lang['SMTP_password_explain'] = "Skriv endast in ett lösenord om din smtp server behöver det"; $lang['Disable_privmsg'] = "Personliga Meddelandehantering"; $lang['Inbox_limits'] = "Max inlägg i Inlĺdan"; $lang['Sentbox_limits'] = "Max inlägg i Skickade brev"; $lang['Savebox_limits'] = "Max inlägg i Sparade brev"; $lang['Cookie_settings'] = "Cookie/session inställningar"; $lang['Cookie_settings_explain'] = "Detta styr hur cookien som skickas till webläsaren är definerad. I de flesta fall sĺ är standard inställningarna tillräckliga. Om du behöver ändra dessa sĺ gör det med varsamhet, felaktiga inställningar kan hindra användare frĺn att logga in."; $lang['Cookie_settings_explain_mxp'] = "Observera: Om du använder phpBB-sessioner, används ej dessa interna inställningar."; $lang['Cookie_domain'] = "Cookie domän"; $lang['Cookie_name'] = "Cookie namn"; $lang['Cookie_path'] = "Cookie sökväg"; $lang['Cookie_secure'] = "Cookie säkerhet [ https ]"; $lang['Cookie_secure_explain'] = "Om servern körs via SSL aktivera det här, annars lĺt det vara inaktiverat"; $lang['Session_length'] = "Sessionslängd [ sekunder ]"; // Visual Confirmation $lang['Visual_confirm'] = 'Aktivera Visuell Bekräftning'; $lang['Visual_confirm_explain'] = 'Tvingar användare att ange en kod som visas genom bilder vid registrering.'; // Autologin Keys - added 2.0.18 $lang['Allow_autologin'] = 'Tillĺt automatisk inloggning'; $lang['Allow_autologin_explain'] = 'Bestämmer om användare kan använda automatisk inloggning'; $lang['Autologin_time'] = 'Automatisk inloggningsvaliditiet'; $lang['Autologin_time_explain'] = 'Hur länge den automatiska inloggningsnyckeln är aktuell (i dagar). Sätt till noll för att inaktivera tidsbegränsning.'; // Search Flood Control - added 2.0.20 $lang['Search_Flood_Interval'] = 'Search Flood intervall'; $lang['Search_Flood_Interval_explain'] = 'Antal sekunder användaren mĺste vänta mellan sökningar'; // // Forum Management // $lang['Forum_admin'] = "Forum Administration"; $lang['Forum_admin_explain'] = "Frĺn denna panel kan du lägga till, radera, ändra, sortera och synkronisera katagorier och forum"; $lang['Edit_forum'] = "Ãndra forum"; $lang['Create_forum'] = "Skapa nytt forum"; $lang['Create_category'] = "Skapa ny kategori"; $lang['Remove'] = "Radera"; $lang['Action'] = "Handling"; $lang['Update_order'] = "Uppdatera sorteringsordning"; $lang['Config_updated'] = "Forumkonfigurationen är uppdaterad"; $lang['Edit'] = "Ãndra"; $lang['Delete'] = "Radera"; $lang['Move_up'] = "Flytta upp"; $lang['Move_down'] = "Flytta ner"; $lang['Resync'] = "Synkronisera"; $lang['No_mode'] = "Inget mode angavs"; $lang['Forum_edit_delete_explain'] = "Forumläret under lĺter dig skräddarsy alla allmänna foruminställningar. Använd relaterad länkar pĺ vänster sida för användar och forum konfiguraration"; $lang['Move_contents'] = "Flytta allt innehĺll"; $lang['Forum_delete'] = "Radera forum"; $lang['Forum_delete_explain'] = "Forumläret under lĺter dig radera ett forum (eller kategori) och tala om var du vill flytta alla ämnen (eller forum) som det innehöll."; $lang['Status_locked'] = 'Lĺst'; $lang['Status_unlocked'] = 'Ãppen'; $lang['Forum_settings'] = "Generella foruminställningar"; $lang['Forum_name'] = "Forumnamm"; $lang['Forum_desc'] = "Beskrivning"; $lang['Forum_status'] = "Forum status"; $lang['Forum_pruning'] = "Autoreducering"; $lang['prune_freq'] = 'Sök efter gamla ämnen varje'; $lang['prune_days'] = "Ta bort ämnen som inte har svarats pĺ efter"; $lang['Set_prune_data'] = "Du har aktiverat autoreducering för detta forum men har inte satt en frekvens eller antal dagar för reducering. Gĺ tillbaka och sätt detta"; $lang['Move_and_Delete'] = "Flytta och radera"; $lang['Delete_all_posts'] = "Radera alla inlägg"; $lang['Nowhere_to_move'] = "Ingenstans att flytta till"; $lang['Edit_Category'] = "Ãndra kategori"; $lang['Edit_Category_explain'] = "Använda detta forumlär för att modifiera kategorinamnet."; $lang['Forums_updated'] = "Forum och kategori-information är uppdaterad"; $lang['Must_delete_forums'] = "Du mĺste radera alla forum innan du kan radera denna kategori"; $lang['Click_return_forumadmin'] = "Klicka %shär%s för att ĺtergĺ till Forum Administrationen"; // // Smiley Management // $lang['smiley_title'] = "Smiles redigering"; $lang['smile_desc'] = "Pĺ denna sida kan du lägga till, radera och redigera emoticons eller smileys som dina användare kan använda i inlägg och personliga meddelanden."; $lang['smiley_config'] = "Smiley konfiguration"; $lang['smiley_code'] = "Smiley kod"; $lang['smiley_url'] = "Smiley bildfil"; $lang['smiley_emot'] = "Smiley Emotion"; $lang['smile_add'] = "Lägg till en ny Smiley"; $lang['Smile'] = "Smile"; $lang['Emotion'] = "Emotion"; $lang['Select_pak'] = "Välj paket (.pak) fil"; $lang['replace_existing'] = "Ersätt befintlig Smiley"; $lang['keep_existing'] = "Behĺll befintlig Smiley"; $lang['smiley_import_inst'] = "Du bör packa upp (unzip) smiley paketet och ladda upp alla filer till avsedd smiley katalog för din installation. Sen sätter du rätt information i detta formulär och importerar smiley paketet."; $lang['smiley_import'] = "Smiley paket import"; $lang['choose_smile_pak'] = "Välj en Smile Pack .pak fil"; $lang['import'] = "Importera Smileys"; $lang['smile_conflicts'] = "Vad ska göras om det finns konflikter"; $lang['del_existing_smileys'] = "Radera befintlig smileys före import"; $lang['import_smile_pack'] = "Importera Smiley paket"; $lang['export_smile_pack'] = "Skapa Smiley paket"; $lang['export_smiles'] = "För att skapa ett smiley paket frĺn dina installerade smileys, klicka %shär%s för att ladda ner smiles.pak filen. Ge filen ett passande namn och se till att behĺlla .pak tillägget. Skapa sen en zip fil som innehĺller alla dina smileys bilder plus din .pak konfigurations fil."; $lang['smiley_add_success'] = "Smileyn adderades."; $lang['smiley_edit_success'] = "Smileyn uppdaterades"; $lang['smiley_import_success'] = "Smiley paketet är importerat!"; $lang['smiley_del_success'] = "Smileyn togs bort"; $lang['Click_return_smileadmin'] = "Klicka %shär%s för att ĺtergĺ Smiley Administrationen"; // // Group control panel // $lang['Group_Control_Panel'] = 'Gruppkontrollpanel'; $lang['Group_member_details'] = 'Gruppmedlemskapsdetaljer'; $lang['Group_member_join'] = 'Gĺ med i en grupp'; $lang['Group_Information'] = 'Gruppinformation'; $lang['Group_name'] = 'Gruppnamn'; $lang['Group_description'] = 'Gruppbeskrivning'; $lang['Group_membership'] = 'Gruppmedlemskap'; $lang['Group_Members'] = 'Gruppmedlemmar'; $lang['Group_Moderator'] = 'Gruppmoderator'; $lang['Pending_members'] = 'Medlemskapsförfrĺgningar'; $lang['Group_type'] = 'Grupptyp'; $lang['Group_open'] = 'Ãppen grupp'; $lang['Group_closed'] = 'Stängd grupp'; $lang['Group_hidden'] = 'Dold grupp'; $lang['Current_memberships'] = 'Grupper du är med i'; $lang['Non_member_groups'] = 'Grupper du ej är med i'; $lang['Memberships_pending'] = 'Medlemskapsförfrĺgningar'; $lang['No_groups_exist'] = 'Det finns inga grupper'; $lang['Group_not_exist'] = 'Den användargruppen finns inte'; $lang['Join_group'] = 'Gĺ med i grupp'; $lang['No_group_members'] = 'Den här gruppen har inga medlemmar'; $lang['Group_hidden_members'] = 'Den här gruppen är dold, du kan inte se dess medlemmar'; $lang['No_pending_group_members'] = 'Den här gruppen har inga medlemskapsförfrĺgningar'; $lang['Group_joined'] = 'Du har nu ansökt om att bli medlem i den här gruppen<br />Du kommer att bli meddelad om du blir godkänd som medlem eller inte av gruppmoderatorn.'; $lang['Group_request'] = 'En förfrĺgan att om att bli medlem i din grupp har gjorts.'; $lang['Group_approved'] = 'Din förfrĺgan har godkännts.'; $lang['Group_added'] = 'Du har lagts till i den här användargruppen.'; $lang['Already_member_group'] = 'Du är redan medlem av den här gruppen.'; $lang['User_is_member_group'] = 'Användaren är redan medlem i den här gruppen.'; $lang['Group_type_updated'] = 'Uppdaterade grupptypen.'; $lang['Could_not_add_user'] = 'Användaren du valde existerar inte.'; $lang['Could_not_anon_user'] = 'Du kan inte göra en Anonym till medlem i gruppen.'; $lang['Confirm_unsub'] = 'Ãr du säker pĺ att du vill lämna den här gruppen?'; $lang['Confirm_unsub_pending'] = 'Ditt medlemskap i den här gruppen har inte än blivit godkänt, är du säker pĺ att du vill avbryta ansökan?'; $lang['Unsub_success'] = 'Ditt medlemskap i den här gruppen har avbrutits.'; $lang['Approve_selected'] = 'Godkänn valda'; $lang['Deny_selected'] = 'Avslĺ valda'; $lang['Not_logged_in'] = 'Du mĺste logga in för att gĺ med i en grupp.'; $lang['Remove_selected'] = 'Ta bort valda'; $lang['Add_member'] = 'Lägg till Medlem'; $lang['Not_group_moderator'] = 'Du är inte moderator av den här gruppen och därför kan du inte göra det här.'; $lang['Login_to_join'] = 'Logga in för att kontollera gruppmedlemskap'; $lang['This_open_group'] = 'Det här är en öppen grupp, klicka för att begära medlemskap'; $lang['This_closed_group'] = 'Det här är en stängd grupp, inga fler medlemmar accepteras'; $lang['This_hidden_group'] = 'Det här är en dold grupp, fler medlemmar kan inte läggas till automatiskt'; $lang['Member_this_group'] = 'Du är medlem i den här gruppen'; $lang['Pending_this_group'] = 'Ditt medlemskap i den här gruppen är under behandling'; $lang['Are_group_moderator'] = 'Du är moderator i den här gruppen'; $lang['None'] = 'Inga'; $lang['Subscribe'] = 'Ansök om medlemskap'; $lang['Unsubscribe'] = 'Avbryt medlemskap'; $lang['View_Information'] = 'Visa Information'; // // Prune Administration // $lang['Forum_Prune'] = "Forumreducering"; $lang['Forum_Prune_explain'] = "Detta kommer att radera alla ämnen där inga nya inlägg har skrivits inom det antal dagar du angett. Om du inte anger ett nummer sĺ kommer alla ämnen att raderas. Det kommer inte att radera ämnen inom vilka omröstningar fortfarande är aktiva och det kommer inte heller att ta bort tillkännagivelser. Du behöver radera dessa ämnen manuellt"; $lang['Do_Prune'] = "Reducera"; $lang['All_Forums'] = "Alla forum"; $lang['Prune_topics_not_posted'] = "Radera ämnen med inga svar i efter detta antal dagar"; $lang['Topics_pruned'] = "ämnen reducerade"; $lang['Posts_pruned'] = "Inlägg reducerade"; $lang['Prune_success'] = "Reduceringen gick bra"; // // Word censor // $lang['Words_title'] = "Censurering av ord"; $lang['Words_explain'] = "Frĺn denna kontrollpanel kan du lägga till, redigera och radera ord som automatiskt kommer at bli censurerade i dina forum. Dessutom kommer man inte att tillĺtas att registera användarnamn som innehĺller dessa ord. Wildcards (*) accepteras i ord fältet, eg. *test* matchar omtestning, test* matchar testning, *test matchar sluttest."; $lang['Word'] = "Ord"; $lang['Edit_word_censor'] = "Redigera ordcensur"; $lang['Replacement'] = "Ersättning"; $lang['Add_new_word'] = "Lägg till nytt ord"; $lang['Update_word'] = "Uppdatera ordcensur"; $lang['Must_enter_word'] = "Du mĺste skriva ett ord och dess ersättning"; $lang['No_word_selected'] = "Inget ord är valt för redigering"; $lang['Word_updated'] = "Censuren är uppdaterad"; $lang['Word_added'] = "Ordet har lagts till censuren"; $lang['Word_removed'] = "Ordet har tagits bort frĺn censuren"; $lang['Click_return_wordadmin'] = "Klicka %shär% för att ĺtergĺ till censurering av ord"; // // Mass Email // $lang['Mass_email_explain'] = "Här kan du skicka ett e-post meddelande till antingen alla dina användare eller till användare i en specifik grupp. För att kunna göra detta, kommer ett email att skickas till den administrativa epost adressen som du angett, med en bcc till alla mottagare. Ha lite tĺlamod om du mailar en stor grupp av människor efter att ha skickat meddelandet och avbryt inte sidan halvvägs igenom. Det är normalt för mass epost (spam) att ta en längre tid, du kommer att meddelas när skriptet är klart."; $lang['Compose'] = "Komponerna"; $lang['Recipients'] = "Mottagare"; $lang['All_users'] = "Alla användare"; $lang['Email_successfull'] = "Ditt meddelande har skickats"; $lang['Click_return_massemail'] = "Klicka %shär%s för att ĺtergĺ till mass e-post formuläret"; // // Ranks admin // $lang['Ranks_title'] = "Titel Administration"; $lang['Ranks_explain'] = "Via detta forumlär kan du skapa nya, redigera, visa och ta bort titlar. Du kan ocksĺ skapa speciella titlar som kan tilldelas till en användare via användaradministration."; $lang['Add_new_rank'] = "Lägg till en ny titel"; $lang['Rank_title'] = "Namn pĺ titel"; $lang['Rank_special'] = "sätt som speciell titel"; $lang['Rank_minimum'] = "Minimum antal inlägg"; $lang['Rank_maximum'] = "Maximum antal inlägg"; $lang['Rank_image'] = "Titel bild (relativt till phpBB2 root katalogen)"; $lang['Rank_image_explain'] = "Använda denna för att tala om vilken bild som ska associeras med titeln"; $lang['Must_select_rank'] = "Du mĺste välja en titel"; $lang['No_assigned_rank'] = "Ingen speciell titel tilldelad"; $lang['Rank_updated'] = "Titeln är uppdaterad"; $lang['Rank_added'] = "Titeln las till"; $lang['Rank_removed'] = "Titeln raderades"; $lang['No_update_ranks'] = 'Titeln raderades. Hursomhelst, användar konton som använder denna titel blev inte uppdaterade. Du mĺste manuellt ĺterställa titeln pĺ dessa konton.'; $lang['Click_return_rankadmin'] = "Klicka %shär%s för att ĺtergĺ till Titel administration"; // // Disallow Username Admin // $lang['Disallow_control'] = "Förbjuda användarnamn"; $lang['Disallow_explain'] = "Här kan du styra vilka användarnamn som inte fĺr användas. Förbjudna användarnamn fĺr innehĺlla wildcard (*). Notera att du inte kan förbjuda redan registrerade användarnamn, du mĺste först radera användaren för att sedan förbjuda den"; $lang['Delete_disallow'] = "Radera"; $lang['Delete_disallow_title'] = "Radera ett förbjudet namn"; $lang['Delete_disallow_explain'] = "Du kan radera ett förbjudet användarnamn genom att välja namnet frĺn listan och klicka pĺ skicka"; $lang['Add_disallow'] = "Lägg till"; $lang['Add_disallow_title'] = "Lägg till ett förbjudet namn"; $lang['Add_disallow_explain'] = "Du kan förbjuda ett användarnamn med hjälp av jokertecknet * för att matcha vilket tecken som helst"; $lang['No_disallowed'] = "Inga förbjudna användarnamn"; $lang['Disallowed_deleted'] = "Användarnamnet är giltigt igen"; $lang['Disallow_successful'] = "Användarnamnet har förbjudits"; $lang['Disallowed_already'] = "Namnet som du angav kan inte förbjudas. Antingen finns det redan i listan, eller i ordcensur listan, eller sĺ finns användaren redan."; $lang['Click_return_disallowadmin'] = "Klicka %shär%s för att ĺtergĺ till Förbjuda användarnamn"; // // Styles Admin // $lang['Styles_admin'] = "Stil Administration"; $lang['Styles_explain'] = "Genom denna kontrollpanel kan du lägga till, radera och hantera stilar (mallar och teman) som är tillgängliga för dina användare"; $lang['Styles_addnew_explain'] = "Följande lista innehĺller alla teman som är tillgängliga för de mallar som du har. Artiklarna pĺ denna lista har ännu inte blivit installerade i phpBB databasen. För att installera ett tema klicka pĺ install länken brevid en post."; $lang['Select_template'] = "Välj en mall"; $lang['Style'] = "Stil"; $lang['Template'] = "Mall"; $lang['Install'] = "Installera"; $lang['Download'] = "Ladda ner"; $lang['Edit_theme'] = "Redigera tema"; $lang['Edit_theme_explain'] = "I forumläret här under kan du redigera inställningarna för valt tema"; $lang['Create_theme'] = "Skapa tema"; $lang['Create_theme_explain'] = "Använd forumläret här för att skapa ett nytt tema för vald mall. När du anger färger (vilka bör anges i hexadecimal form) fĺr du inte inkludera #, i.e.. CCCCCC är giltigt, #CCCCCC är inte det."; $lang['Export_themes'] = "Exportera teman"; $lang['Export_explain'] = "I denna kontrollpanel har du möjlighet att exportera tema data för en mall. Välj en mall frĺn listan och skriptet kommer att försöka skapa en tema konfigurationsfil samt spara den till mall katalogen. Om skriptet inte kan spara filen själv kommer du att ges möjlighet att ladda hem den. För att skriptet ska kunna spara filen mĺste du ge skriv rättigheter till webserver i malla katalogen. För mer information om detta se phpBB 2 användarguide."; $lang['Theme_installed'] = "Det valda temat har installerats."; $lang['Style_removed'] = "Den valda stilen har tagits bort frĺn databasen. För att fullständigt ta bort denna stil frĺn ditt system mĺste du radera de stilen frĺn din mall katalog."; $lang['Theme_info_saved'] = "Tema information för vald mall har sparats. Du bör nu ĺterställa rättigheterna pĺ theme_info.cfg (och pĺ mall katalogen) till läs rättigheter."; $lang['Theme_updated'] = "Det valda temat har uppdaterats. Du bör nu exportera de nya tema inställningarna"; $lang['Theme_created'] = "Temat har skapas. Du bör nu exportera temat till tema konfigurationsfilen för säkerhets skull och för användning pĺ andra forum"; $lang['Confirm_delete_style'] = "Ãr du säker pĺ att du vill radera denna stil"; $lang['Download_theme_cfg'] = "Exporeraren kunde inte spara tema informationsfilen. Klicka pĺ kanppen nedan för att ladda ner denna fil med din webläsare. När du har laddat hem den kan du överföra den till katalogen som innehĺller mall filerna. Du kan därefter paketera filerna för distribution eller för användning nĺgon annanstans om du sĺ önskar"; $lang['No_themes'] = "Mallen du har valt har inga teman knuta till den. Skapa ett nytt tema genom att klicka pĺ Skapa Ny länken pĺ vänster sida om panelen."; $lang['No_template_dir'] = "Kan inte öppna mall katalogen. Den kan vara oläsbar av webservern (kontrollera rättigheterna) eller saknas."; $lang['Cannot_remove_style'] = "Du kan inte ta bort den valda stilen dĺ den just nu är de forumets standard stil. Ãndra standard stil och försök igen."; $lang['Style_exists'] = "Stilen finns redan, gĺ tillbaka ovh välj ett annat namn."; $lang['Click_return_styleadmin'] = "Klicka %sHär%s för att ĺtergĺ till Stiladministrationen"; $lang['Theme_settings'] = "Temainställningar"; $lang['Theme_element'] = "Tema Element"; $lang['Simple_name'] = "Enkelt namn"; $lang['Value'] = "Värde"; $lang['Save_Settings'] = "Spara inställningar"; $lang['Stylesheet'] = "CSS Stylesheet"; $lang['Stylesheet_explain'] = 'Filnamn för detta CSS Stylesheet.'; $lang['Background_image'] = "Bakgrundsbild"; $lang['Background_color'] = "Bakgrundsfärg"; $lang['Theme_name'] = "Tema namn"; $lang['Link_color'] = "Länkfärg"; $lang['Text_color'] = "Textfärg"; $lang['VLink_color'] = "Besökt länkfärg"; $lang['ALink_color'] = "Aktiv länkfärg"; $lang['HLink_color'] = "Hover länkfärg"; $lang['Tr_color1'] = "Table Row Colour 1"; $lang['Tr_color2'] = "Table Row Colour 2"; $lang['Tr_color3'] = "Table Row Colour 3"; $lang['Tr_class1'] = "Table Row Class 1"; $lang['Tr_class2'] = "Table Row Class 2"; $lang['Tr_class3'] = "Table Row Class 3"; $lang['Th_color1'] = "Table Header Colour 1"; $lang['Th_color2'] = "Table Header Colour 2"; $lang['Th_color3'] = "Table Header Colour 3"; $lang['Th_class1'] = "Table Header Class 1"; $lang['Th_class2'] = "Table Header Class 2"; $lang['Th_class3'] = "Table Header Class 3"; $lang['Td_color1'] = "Table Cell Colour 1"; $lang['Td_color2'] = "Table Cell Colour 2"; $lang['Td_color3'] = "Table Cell Colour 3"; $lang['Td_class1'] = "Table Cell Class 1"; $lang['Td_class2'] = "Table Cell Class 2"; $lang['Td_class3'] = "Table Cell Class 3"; $lang['fontface1'] = "Textstil 1"; $lang['fontface2'] = "Textstil 2"; $lang['fontface3'] = "Textstil 3"; $lang['fontsize1'] = "Textstil 1"; $lang['fontsize2'] = "Textstil 2"; $lang['fontsize3'] = "Textstil 3"; $lang['fontcolor1'] = "Textfärg 1"; $lang['fontcolor2'] = "Textfärg 2"; $lang['fontcolor3'] = "Textfärg 3"; $lang['span_class1'] = "Span Class 1"; $lang['span_class2'] = "Span Class 2"; $lang['span_class3'] = "Span Class 3"; $lang['img_poll_size'] = "Omröstning bild storlek [px]"; $lang['img_pm_size'] = "Personligt meddelande status storlek [px]"; // // Install Process // $lang['Welcome_install'] = "Välkommen till phpBB 2 Installationen"; $lang['Initial_config'] = "Grundläggande konfiguration"; $lang['DB_config'] = "Databas konfiguration"; $lang['Admin_config'] = "Admin konfiguration"; $lang['continue_upgrade'] = "När du har laddat ner din config fil till din lokala maskin kan du välja \"Fortsätta uppgraderingen\" knappen nedan för att fortsätta uppgraderingsprocessen. Vänta med att ladda upp config filen tills uppgraderingsprocessen är färdig."; $lang['upgrade_submit'] = "Fortsätta uppgraderingen"; $lang['Installer_Error'] = "Ett fel har uppstĺtt under installationen"; $lang['Previous_Install'] = "En föregĺende installation har upptäckts"; $lang['Install_db_error'] = "Ett fel uppstod vid uppdateringen av databasen"; $lang['Re_install'] = "Din föregĺende installation är fortfarande aktiv. <br /><br />Om du vill ominstallera phpBB 2 bör du klicka pĺ Ja-knappen nedan. Var medveten om att detta förstör all befintlig data, ingen säkerhetskopiering kommer att ske! Administratörs användarnamnet och lösenord som du har använt för att logga in till forumet kommer att ĺterskapas efter ominstallation, inga andra inställningar kommer att behĺllas. <br /><br />Tänk igenom det noga innan du trycker pĺ Ja!"; $lang['Inst_Step_0'] = "Tack för att du valt phpBB 2. För att fullborda installation fyll i information som efterfrĺgas nedan. Notera att databasen som du vill installera till mĺste finnas. Om du installerar till en databas som använder ODBC, e.g. MS Access sĺ bör du först skapa en DSN för den innan du gĺr vidare."; $lang['Start_Install'] = "Starta installationen"; $lang['Finish_Install'] = "Avsluta installationen"; $lang['Default_lang'] = "Standardsprĺk i forumet"; $lang['DB_Host'] = "Databasserver värdnamn / DSN"; $lang['DB_Name'] = "Ditt databasnamn"; $lang['DB_Username'] = "Databas användarnamn"; $lang['DB_Password'] = "Databas lösenord"; $lang['Database'] = "Din databas"; $lang['Install_lang'] = "Välj sprĺk för installation"; $lang['dbms'] = "Databastyp"; $lang['Table_Prefix'] = "Prefix för tabeller i databasen"; $lang['Admin_Username'] = "Administratör användarnamn"; $lang['Admin_Password'] = "Administratör lösenord"; $lang['Admin_Password_confirm'] = "Administratör lösenord [ bekräfta ]"; $lang['Inst_Step_2'] = "Din administratörsanvändare har skapats. Vid detta tillfälle är din grundinstallation färdig. Du kommer nu att skickas till en sida där du har möjlighet att administrera din nya installation. Var god kontrollera dina Allmäna inställningar och gör nödvändiga ändringar. Tack för att du valt phpBB 2."; $lang['Unwriteable_config'] = "Din config-fil är icke skrivbar för tillfället. En kopia av config filen kommer att skickas till dig när du klickar pĺ kanppen nedan. Du bör ladda upp denna fil till samma katalog som phpBB 2. När detta är gjort bör du logga in med ditt administratör användarnamn och lösenord (som du angav i ett tidigare formulär) och besöka administratörskontrollpanelen (en länk kommer att finns längst ner pĺ varje sida när du väl har logga int) för att kontrollera den allmänna konfigurationen. Tack för att du valt phpBB 2."; $lang['Download_config'] = "Ladda ner konfiguration"; $lang['ftp_choose'] = "Välj nedladdningsmetod"; $lang['ftp_option'] = "<br />Eftersom FTP tillägg är aktiverat i denna version av PHP ges du ocksĺ möjlighet att försöka ftp:a config filen till servern helt automatiskt."; $lang['ftp_instructs'] = "Du har valt att ftp:a filen till kontot som har phpBB 2 helt automatiskt. Ange informationen som saknas nedan. Notera att FTP sökvägen ska vara exakt samma sökväg till din phpBB 2 installation som du skulle använda om du använder en vanlig ftp klient."; $lang['ftp_info'] = "Ange din FTP information"; $lang['Attempt_ftp'] = "Försöker skriva config-filen till rätt ställe via ftp"; $lang['Send_file'] = "Skicka filen till mig sĺ fixar jag det manuellt via ftp"; $lang['ftp_path'] = "FTP sökväg till phpBB 2"; $lang['ftp_username'] = "Ditt FTP användarnamn"; $lang['ftp_password'] = "Ditt FTP lösenord"; $lang['Transfer_config'] = "Starta överföring"; $lang['NoFTP_config'] = "Försöket att ftp:a config-filen misslyckades. Ladda hem filen och ftp:a upp filen manuellt."; $lang['Install'] = "Installera"; $lang['Upgrade'] = "Uppgradera"; $lang['Install_Method'] = "Välj installationsmetod"; $lang['Install_No_Ext'] = "PHP konfigurationen pĺ din server stödjer inte den databas typ du har valt"; $lang['Install_No_PCRE'] = "phpBB2 kräver den \"Perl-Compatible Regular Expressions Module for php\" vilket din php konfiguration inte stödjer"; // Version Check // $lang['Version_up_to_date'] = 'Din installation använder senaste phpBB versionen, inga nya uppdateringar finns tillgängliga.'; $lang['Version_not_up_to_date'] = 'Din phpBB installation är <b>inte</b> uppdaterad. Det finns nya uppdateringar tillgängliga, vänligen besök <a href="http://www.phpbb.com/downloads.php" target="_new">http://www.phpbb.com/downloads.php</a> för att tillgĺ senaste versionen.'; $lang['Latest_version_info'] = 'Senaste versionen är <b>phpBB %s</b>.'; $lang['Current_version_info'] = 'Du använder <b>phpBB %s</b>.'; $lang['Connect_socket_error'] = 'Tyvärr, lyckas inte ansluta till phpBB servern, rapporterat fel är:<br />%s'; $lang['Socket_functions_disabled'] = 'Lyckas inte öppna socketfunktion.'; $lang['Mailing_list_subscribe_reminder'] = 'För information om senaste phpBB version, anslut dig till <a href="http://www.phpbb.com/support/" target="_new">phpBB mailing list</a>.'; $lang['Version_information'] = 'Versioninformation'; // // Login attempts configuration // $lang['Max_login_attempts'] = 'Allowed login attempts'; $lang['Max_login_attempts_explain'] = 'The number of allowed board login attempts.'; $lang['Login_reset_time'] = 'Login lock time'; $lang['Login_reset_time_explain'] = 'Time in minutes the user have to wait until he is allowed to login again after exceeding the number of allowed login attempts.'; // // That's all Folks! // ------------------------------------------------- ?> --- NEW FILE: lang_main.php --- <?php /*************************************************************************** * lang_main.php [Swedish] * ------------------- * begin : Sat Dec 16 2000 * copyright : (C) 2001 The phpBB Group and (C) 2003 Jonathan Gulbrandsen * email : su...@ph... (trans... [truncated message content] |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:04:21
|
Update of /cvsroot/mxbb/phpbb2mxp/templates In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/templates Added Files: index.htm Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: index.htm --- <html> <head> <title></title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> |
Update of /cvsroot/mxbb/phpbb2mxp/templates/subSilver/images In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/templates/subSilver/images Added Files: Annou1_2.jpg Normal_2.jpg Sticky_2.jpg arrow_down.gif arrow_left.gif arrow_right.gif bg_button.gif bg_header.gif bg_list.gif bg_tabs1.gif bg_tabs2.gif bg_tabs_alt1.gif bg_tabs_alt2.gif cellpic.gif cellpic1.gif cellpic2.jpg cellpic2c.jpg cellpic2mx.jpg cellpic3.gif cellpic3_normal.gif cellpic3_spring.gif cellpic3_winter.gif cellpic3_xmass.gif cellpic3ekk.gif cellpic3mx.gif cellpic_bkg.jpg cellpic_nav.gif cellpicmx.gif corners_left.gif corners_left.png corners_left2.gif corners_right.gif corners_right.png corners_right2.gif created_by.jpg folder.gif folder_announce.gif folder_announce_new.gif folder_announce_new_own.gif folder_announce_own.gif folder_big.gif folder_hot.gif folder_hot_own.gif folder_lock.gif folder_lock_new.gif folder_lock_new_own.gif folder_lock_own.gif folder_locked_big.gif folder_new.gif folder_new_big.gif folder_new_hot.gif folder_new_hot_own.gif folder_new_own.gif folder_own.gif folder_sticky.gif folder_sticky_new.gif folder_sticky_new_own.gif folder_sticky_own.gif folders_big.gif folders_new_big.gif gradient2b.gif icon_delete.gif icon_ip.gif icon_latest_reply.gif icon_mini_faq.gif icon_mini_groups.gif icon_mini_home.gif icon_mini_login.gif icon_mini_members.gif icon_mini_message.gif icon_mini_profile.gif icon_mini_register.gif icon_mini_search.gif icon_minipost.gif icon_minipost_new.gif icon_newest_reply.gif icon_up.gif index.htm index.html innerbox_bg.gif logo.gif logo_med.gif logo_phpBB.gif logo_phpBB_med.gif msg_inbox.gif msg_outbox.gif msg_savebox.gif msg_sentbox.gif mxbb_logo.gif nav_email.gif nav_forum.gif nav_help.gif nav_home.gif nav_login.gif nav_members.gif nav_profile.gif nav_register.gif nav_search.gif nav_settings.gif phpbb2_logo.jpg phpbb_logo.gif spacer.gif toggle.gif topic_bin.gif topic_delete.gif topic_lock.gif topic_move.gif topic_split.gif topic_unlock.gif vote_lcap.gif vote_rcap.gif voting_bar.gif whosonline.gif Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: folder_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: logo_phpBB.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_sticky_new_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_new_hot_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic3.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic3ekk.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_register.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_unlock.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_lock.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arrow_down.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_sticky_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bg_tabs2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bg_tabs_alt1.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_hot_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_lock.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Annou1_2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_lock_new_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folders_new_big.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: toggle.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: logo_med.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_new_hot.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folders_big.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_new_big.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_lcap.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: spacer.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: corners_right.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_announce_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: vote_rcap.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_lock_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: phpbb2_logo.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bg_list.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: corners_left.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_members.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: logo_phpBB_med.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_register.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic3_spring.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: phpbb_logo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic3_xmass.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_lock_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_search.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_search.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_hot.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_minipost.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_email.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_help.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: voting_bar.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: created_by.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bg_tabs_alt2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic2c.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: msg_outbox.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: logo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_login.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: whosonline.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Sticky_2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_move.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_sticky.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic3_winter.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: corners_right.png --- (This appears to be a binary file; contents omitted.) --- NEW FILE: msg_inbox.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic_nav.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpicmx.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_home.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arrow_right.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic_bkg.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: corners_right2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: corners_left.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_announce_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_up.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.htm --- <html> <head> <title>subSilver created by subBlue Design</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> </head> <body bgcolor="#FFFFFF" text="#000000"> <table width="100%" height="100%" cellspacing="0" cellpadding="0" border="0"> <tr> <td align="center" valign="middle"><a href="http://www.subblue.com/" target="_new"><img src="created_by.jpg" width="400" height="300" border="0" alt="Created by subBlue Design" /></a></td> </tr> </table> </body> </html> --- NEW FILE: topic_delete.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: mxbb_logo.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_locked_big.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_settings.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: innerbox_bg.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bg_button.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_sticky_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_login.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_delete.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_members.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: index.html --- <?xml version="1.0" encoding="iso-8859-1"?> <!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"> <head> <title>Theme created by Daz @ forumimages.com</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> </head> <body bgcolor="#FFFFFF" text="#000000"> </body> </html> --- NEW FILE: folder_announce.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: msg_sentbox.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bg_tabs1.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_split.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: topic_bin.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: arrow_left.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic1.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: bg_header.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_faq.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: Normal_2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_ip.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_latest_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_new_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_home.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_announce_new_own.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic3_normal.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic3mx.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: folder_big.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_message.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_mini_groups.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_newest_reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic2.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_minipost_new.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: gradient2b.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: nav_forum.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: cellpic2mx.jpg --- (This appears to be a binary file; contents omitted.) --- NEW FILE: corners_left2.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: msg_savebox.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:03:48
|
Update of /cvsroot/mxbb/phpbb2mxp/templates/subSilver/images/lang_english In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/templates/subSilver/images/lang_english Added Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: icon_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_email.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_quote.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: post.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_icq_add.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_yim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: msg_newpost.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_pm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_search.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_aim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: reply-locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_msnm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_www.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_ip.gif --- (This appears to be a binary file; contents omitted.) |
|
From: FlorinCB <ory...@us...> - 2008-12-31 02:03:40
|
Update of /cvsroot/mxbb/phpbb2mxp/templates/subSilver/images/lang_romanian In directory 23jxhf1.ch3.sourceforge.com:/tmp/cvs-serv12742/templates/subSilver/images/lang_romanian Added Files: icon_aim.gif icon_edit.gif icon_email.gif icon_icq_add.gif icon_ip.gif icon_msnm.gif icon_pm.gif icon_profile.gif icon_quote.gif icon_search.gif icon_www.gif icon_yim.gif msg_newpost.gif post.gif reply-locked.gif reply.gif Log Message: upgrade to 2.0.24-beta1 --- NEW FILE: icon_edit.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_email.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_quote.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: post.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_icq_add.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_yim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: msg_newpost.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_pm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_profile.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_search.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_aim.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: reply-locked.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_msnm.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: reply.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_www.gif --- (This appears to be a binary file; contents omitted.) --- NEW FILE: icon_ip.gif --- (This appears to be a binary file; contents omitted.) |