function.strtr - Cannot modify header

Get help with installation and running phpBB 3.0.x here. Please do not post bug reports, feature requests, or MOD-related questions here.
Anti-Spam Guide
Forum rules
END OF SUPPORT: 1 January 2017 (announcement)
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

function.strtr - Cannot modify header

Post by ibelphegor »

Support Request Template
What version of phpBB are you using? phpBB 3.0.7-PL1
What is your board's URL? http://www.tukinfo.com
Who do you host your board with? loads.co.il
How did you install your board? I used the download package from phpBB.com
Is your board a fresh install or a conversion? Fresh Install
Do you have any MODs installed? Yes
Is registration required to reproduce this issue? Yes
What MODs do you have installed? No answer given
What styles do you currently have installed? custom
What language(s) is your board currently using? Hebrew
Which database type/version are you using? MySQL 5
What is your level of experience? Comfortable with PHP and phpBB
What username can be used to view this issue?
Please do not provide this information if the user requires more than "regular user" privilages.
No answer given
What password can be used to view this issue? No answer given
When did your problem begin? After Update 3.0.7-PL1 (I think)
Please describe your problem. No answer given
Generated by SRT Generator ($Rev: 3988 $)

Hi all,

I have forum that posts need approve. When Post wait to approve admins can't replay to that post before
Approve the post. When i try to post i get the error (in normal forum/posts everything work ok):

Code: Select all

Warning: strtr() [function.strtr]: The second argument is not an array in /home/XXXXX/includes/session.php on line 2235

Warning: strtr() [function.strtr]: The second argument is not an array in /home/XXXXX/includes/session.php on line 2235

Warning: Cannot modify header information - headers already sent by (output started at /home/XXXXX/includes/session.php:2235) in /home/XXXXX/includes/functions.php on line 4464

Warning: Cannot modify header information - headers already sent by (output started at /home/XXXXX/includes/session.php:2235) in /home/XXXXX/includes/functions.php on line 4465

Warning: Cannot modify header information - headers already sent by (output started at /home/XXXXX/includes/session.php:2235) in /home/XXXXX/includes/functions.php on line 4466

Warning: Cannot modify header information - headers already sent by (output started at /home/XXXXX/includes/session.php:2235) in /home/XXXXX/includes/functions.php on line 4467

Fatal error: template->_tpl_load_file(): File /message_body.html does not exist or is empty in /home/XXXXX/includes/functions_template.php on line 63
Best regards,
uzi
Last edited by ibelphegor on Wed Jul 07, 2010 3:51 am, edited 1 time in total.
User avatar
ric323
Former Team Member
Posts: 22910
Joined: Tue Feb 06, 2007 12:33 am
Location: Melbourne, Australia
Name: Ric
Contact:

Re: function.strtr - Cannot modify header

Post by ric323 »

Please post the contents of your ./includes/sessions.php file here, between code tags.
There is nothing on line 2235 of that file which could generate that error, so your copy must be modified.
The Knowledge Base contains solutions to many common problems!
How to fix "Doesn't have a default value" and "Incorrect string value: xxx for column 'post_text' " errors.
How to do a clean re-install of the latest phpBB3 version.
Problems with permissions? Read phpBB3 Permissions
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Re: function.strtr - Cannot modify header

Post by ibelphegor »

Code: Select all

return strtr(@gmdate($date_cache[$format]['format_long'], $gmepoch + $zone_offset), $date_cache[$format]['lang']);
Thanks for your help.
User avatar
ric323
Former Team Member
Posts: 22910
Joined: Tue Feb 06, 2007 12:33 am
Location: Melbourne, Australia
Name: Ric
Contact:

Re: function.strtr - Cannot modify header

Post by ric323 »

I actually meant for you to post the whole file.
That is line 2167 in an unmodified copy of that file. Do you know why yours is different?

You didn't answer the "What MODs do you have installed?" question, so I was assuming the answer was "none".
The Knowledge Base contains solutions to many common problems!
How to fix "Doesn't have a default value" and "Incorrect string value: xxx for column 'post_text' " errors.
How to do a clean re-install of the latest phpBB3 version.
Problems with permissions? Read phpBB3 Permissions
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Re: function.strtr - Cannot modify header

Post by ibelphegor »

I have a lot of mods, so i didn't answer the question, only mark as "have".

Here is the whole file:

Code: Select all

<?php
/**
*
* @package phpBB3
* @version $Id$
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

/**
* Session class
* @package phpBB3
*/
class session
{
	var $cookie_data = array();
	var $page = array();
	var $data = array();
	var $browser = '';
	var $forwarded_for = '';
	var $host = '';
	var $session_id = '';
	var $ip = '';
	var $load = 0;
	var $time_now = 0;
	var $update_session_page = true;

	/**
	* Extract current session page
	*
	* @param string $root_path current root path (phpbb_root_path)
	*/
	function extract_current_page($root_path)
	{
		$page_array = array();

		// First of all, get the request uri...
		$script_name = (!empty($_SERVER['PHP_SELF'])) ? $_SERVER['PHP_SELF'] : getenv('PHP_SELF');
		$args = (!empty($_SERVER['QUERY_STRING'])) ? explode('&', $_SERVER['QUERY_STRING']) : explode('&', getenv('QUERY_STRING'));

		// If we are unable to get the script name we use REQUEST_URI as a failover and note it within the page array for easier support...
		if (!$script_name)
		{
			$script_name = (!empty($_SERVER['REQUEST_URI'])) ? $_SERVER['REQUEST_URI'] : getenv('REQUEST_URI');
			$script_name = (($pos = strpos($script_name, '?')) !== false) ? substr($script_name, 0, $pos) : $script_name;
			$page_array['failover'] = 1;
		}

		// Replace backslashes and doubled slashes (could happen on some proxy setups)
		$script_name = str_replace(array('\\', '//'), '/', $script_name);

		// Now, remove the sid and let us get a clean query string...
		$use_args = array();

		// Since some browser do not encode correctly we need to do this with some "special" characters...
		// " -> %22, ' => %27, < -> %3C, > -> %3E
		$find = array('"', "'", '<', '>');
		$replace = array('%22', '%27', '%3C', '%3E');

		foreach ($args as $key => $argument)
		{
			if (strpos($argument, 'sid=') === 0)
			{
				continue;
			}

			$use_args[] = str_replace($find, $replace, $argument);
		}
		unset($args);

		// The following examples given are for an request uri of {path to the phpbb directory}/adm/index.php?i=10&b=2

		// The current query string
		$query_string = trim(implode('&', $use_args));

		// basenamed page name (for example: index.php)
		$page_name = basename($script_name);
		$page_name = urlencode(htmlspecialchars($page_name));

		// current directory within the phpBB root (for example: adm)
		$root_dirs = explode('/', str_replace('\\', '/', phpbb_realpath($root_path)));
		$page_dirs = explode('/', str_replace('\\', '/', phpbb_realpath('./')));
		$intersection = array_intersect_assoc($root_dirs, $page_dirs);

		$root_dirs = array_diff_assoc($root_dirs, $intersection);
		$page_dirs = array_diff_assoc($page_dirs, $intersection);

		$page_dir = str_repeat('../', sizeof($root_dirs)) . implode('/', $page_dirs);

		if ($page_dir && substr($page_dir, -1, 1) == '/')
		{
			$page_dir = substr($page_dir, 0, -1);
		}

		// Current page from phpBB root (for example: adm/index.php?i=10&b=2)
		$page = (($page_dir) ? $page_dir . '/' : '') . $page_name . (($query_string) ? "?$query_string" : '');

		// The script path from the webroot to the current directory (for example: /phpBB3/adm/) : always prefixed with / and ends in /
		$script_path = trim(str_replace('\\', '/', dirname($script_name)));

		// The script path from the webroot to the phpBB root (for example: /phpBB3/)
		$script_dirs = explode('/', $script_path);
		array_splice($script_dirs, -sizeof($page_dirs));
		$root_script_path = implode('/', $script_dirs) . (sizeof($root_dirs) ? '/' . implode('/', $root_dirs) : '');

		// We are on the base level (phpBB root == webroot), lets adjust the variables a bit...
		if (!$root_script_path)
		{
			$root_script_path = ($page_dir) ? str_replace($page_dir, '', $script_path) : $script_path;
		}

		$script_path .= (substr($script_path, -1, 1) == '/') ? '' : '/';
		$root_script_path .= (substr($root_script_path, -1, 1) == '/') ? '' : '/';

		$page_array += array(
			'page_name'			=> $page_name,
			'page_dir'			=> $page_dir,

			'query_string'		=> $query_string,
			'script_path'		=> str_replace(' ', '%20', htmlspecialchars($script_path)),
			'root_script_path'	=> str_replace(' ', '%20', htmlspecialchars($root_script_path)),

			'page'				=> $page,
			'forum'				=> (isset($_REQUEST['f']) && $_REQUEST['f'] > 0) ? (int) $_REQUEST['f'] : 0,
		);

		return $page_array;
	}

	/**
	* Get valid hostname/port. HTTP_HOST is used, SERVER_NAME if HTTP_HOST not present.
	*/
	function extract_current_hostname()
	{
		global $config;

		// Get hostname
		$host = (!empty($_SERVER['HTTP_HOST'])) ? $_SERVER['HTTP_HOST'] : ((!empty($_SERVER['SERVER_NAME'])) ? $_SERVER['SERVER_NAME'] : getenv('SERVER_NAME'));

		// Should be a string and lowered
		$host = (string) strtolower($host);

		// If host is equal the cookie domain or the server name (if config is set), then we assume it is valid
		if ((isset($config['cookie_domain']) && $host === $config['cookie_domain']) || (isset($config['server_name']) && $host === $config['server_name']))
		{
			return $host;
		}

		// Is the host actually a IP? If so, we use the IP... (IPv4)
		if (long2ip(ip2long($host)) === $host)
		{
			return $host;
		}

		// Now return the hostname (this also removes any port definition). The http:// is prepended to construct a valid URL, hosts never have a scheme assigned
		$host = @parse_url('http://' . $host);
		$host = (!empty($host['host'])) ? $host['host'] : '';

		// Remove any portions not removed by parse_url (#)
		$host = str_replace('#', '', $host);

		// If, by any means, the host is now empty, we will use a "best approach" way to guess one
		if (empty($host))
		{
			if (!empty($config['server_name']))
			{
				$host = $config['server_name'];
			}
			else if (!empty($config['cookie_domain']))
			{
				$host = (strpos($config['cookie_domain'], '.') === 0) ? substr($config['cookie_domain'], 1) : $config['cookie_domain'];
			}
			else
			{
				// Set to OS hostname or localhost
				$host = (function_exists('php_uname')) ? php_uname('n') : 'localhost';
			}
		}

		// It may be still no valid host, but for sure only a hostname (we may further expand on the cookie domain... if set)
		return $host;
	}

	/**
	* Start session management
	*
	* This is where all session activity begins. We gather various pieces of
	* information from the client and server. We test to see if a session already
	* exists. If it does, fine and dandy. If it doesn't we'll go on to create a
	* new one ... pretty logical heh? We also examine the system load (if we're
	* running on a system which makes such information readily available) and
	* halt if it's above an admin definable limit.
	*
	* @param bool $update_session_page if true the session page gets updated.
	*			This can be set to circumvent certain scripts to update the users last visited page.
	*/
	function session_begin($update_session_page = true)
	{
		global $phpEx, $SID, $_SID, $_EXTRA_URL, $db, $config, $phpbb_root_path;

		// Give us some basic information
		$this->time_now				= time();
		$this->cookie_data			= array('u' => 0, 'k' => '');
		$this->update_session_page	= $update_session_page;
		$this->browser				= (!empty($_SERVER['HTTP_USER_AGENT'])) ? htmlspecialchars((string) $_SERVER['HTTP_USER_AGENT']) : '';
		$this->referer				= (!empty($_SERVER['HTTP_REFERER'])) ? htmlspecialchars((string) $_SERVER['HTTP_REFERER']) : '';
		$this->forwarded_for		= (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) ? htmlspecialchars((string) $_SERVER['HTTP_X_FORWARDED_FOR']) : '';

		$this->host					= $this->extract_current_hostname();
		$this->page					= $this->extract_current_page($phpbb_root_path);

		// if the forwarded for header shall be checked we have to validate its contents
		if ($config['forwarded_for_check'])
		{
			$this->forwarded_for = preg_replace('#[ ]{2,}#', ' ', str_replace(array(',', ' '), ' ', $this->forwarded_for));

			// split the list of IPs
			$ips = explode(' ', $this->forwarded_for);
			foreach ($ips as $ip)
			{
				// check IPv4 first, the IPv6 is hopefully only going to be used very seldomly
				if (!empty($ip) && !preg_match(get_preg_expression('ipv4'), $ip) && !preg_match(get_preg_expression('ipv6'), $ip))
				{
					// contains invalid data, don't use the forwarded for header
					$this->forwarded_for = '';
					break;
				}
			}
		}
		else
		{
			$this->forwarded_for = '';
		}

		if (isset($_COOKIE[$config['cookie_name'] . '_sid']) || isset($_COOKIE[$config['cookie_name'] . '_u']))
		{
			$this->cookie_data['u'] = request_var($config['cookie_name'] . '_u', 0, false, true);
			$this->cookie_data['k'] = request_var($config['cookie_name'] . '_k', '', false, true);
			$this->session_id 		= request_var($config['cookie_name'] . '_sid', '', false, true);

			$SID = (defined('NEED_SID')) ? '?sid=' . $this->session_id : '?sid=';
			$_SID = (defined('NEED_SID')) ? $this->session_id : '';

			if (empty($this->session_id))
			{
				$this->session_id = $_SID = request_var('sid', '');
				$SID = '?sid=' . $this->session_id;
				$this->cookie_data = array('u' => 0, 'k' => '');
			}
		}
		else
		{
			$this->session_id = $_SID = request_var('sid', '');
			$SID = '?sid=' . $this->session_id;
		}

		$_EXTRA_URL = array();

		// Why no forwarded_for et al? Well, too easily spoofed. With the results of my recent requests
		// it's pretty clear that in the majority of cases you'll at least be left with a proxy/cache ip.
		$this->ip = (!empty($_SERVER['REMOTE_ADDR'])) ? htmlspecialchars((string) $_SERVER['REMOTE_ADDR']) : '';
		$this->ip = preg_replace('#[ ]{2,}#', ' ', str_replace(array(',', ' '), ' ', $this->ip));

		// split the list of IPs
		$ips = explode(' ', $this->ip);

		// Default IP if REMOTE_ADDR is invalid
		$this->ip = '127.0.0.1';

		foreach ($ips as $ip)
		{
			// check IPv4 first, the IPv6 is hopefully only going to be used very seldomly
			if (!empty($ip) && !preg_match(get_preg_expression('ipv4'), $ip) && !preg_match(get_preg_expression('ipv6'), $ip))
			{
				// Just break
				break;
			}

			// Use the last in chain
			$this->ip = $ip;
		}

		$this->load = false;

		// Load limit check (if applicable)
		if ($config['limit_load'] || $config['limit_search_load'])
		{
			if ((function_exists('sys_getloadavg') && $load = sys_getloadavg()) || ($load = explode(' ', @file_get_contents('/proc/loadavg'))))
			{
				$this->load = array_slice($load, 0, 1);
				$this->load = floatval($this->load[0]);
			}
			else
			{
				set_config('limit_load', '0');
				set_config('limit_search_load', '0');
			}
		}

		// Is session_id is set or session_id is set and matches the url param if required
		if (!empty($this->session_id) && (!defined('NEED_SID') || (isset($_GET['sid']) && $this->session_id === $_GET['sid'])))
		{
			$sql = 'SELECT u.*, s.*
				FROM ' . SESSIONS_TABLE . ' s, ' . USERS_TABLE . " u
				WHERE s.session_id = '" . $db->sql_escape($this->session_id) . "'
					AND u.user_id = s.session_user_id";
			$result = $db->sql_query($sql);
			$this->data = $db->sql_fetchrow($result);
			$db->sql_freeresult($result);

			// Did the session exist in the DB?
			if (isset($this->data['user_id']))
			{
			

				// Validate IP length according to admin ... enforces an IP
				// check on bots if admin requires this
//				$quadcheck = ($config['ip_check_bot'] && $this->data['user_type'] & USER_BOT) ? 4 : $config['ip_check'];

				if (strpos($this->ip, ':') !== false && strpos($this->data['session_ip'], ':') !== false)
				{
					$s_ip = short_ipv6($this->data['session_ip'], $config['ip_check']);
					$u_ip = short_ipv6($this->ip, $config['ip_check']);
				}
				else
				{
					$s_ip = implode('.', array_slice(explode('.', $this->data['session_ip']), 0, $config['ip_check']));
					$u_ip = implode('.', array_slice(explode('.', $this->ip), 0, $config['ip_check']));
				}

				$s_browser = ($config['browser_check']) ? trim(strtolower(substr($this->data['session_browser'], 0, 149))) : '';
				$u_browser = ($config['browser_check']) ? trim(strtolower(substr($this->browser, 0, 149))) : '';

				$s_forwarded_for = ($config['forwarded_for_check']) ? substr($this->data['session_forwarded_for'], 0, 254) : '';
				$u_forwarded_for = ($config['forwarded_for_check']) ? substr($this->forwarded_for, 0, 254) : '';

				// referer checks
				// The @ before $config['referer_validation'] suppresses notices present while running the updater
				$check_referer_path = (@$config['referer_validation'] == REFERER_VALIDATE_PATH);
				$referer_valid = true;

				// we assume HEAD and TRACE to be foul play and thus only whitelist GET
				if (@$config['referer_validation'] && isset($_SERVER['REQUEST_METHOD']) && strtolower($_SERVER['REQUEST_METHOD']) !== 'get')
				{
					$referer_valid = $this->validate_referer($check_referer_path);
				}

				if ($u_ip === $s_ip && $s_browser === $u_browser && $s_forwarded_for === $u_forwarded_for && $referer_valid)
				{
					$session_expired = false;

					// Check whether the session is still valid if we have one
					$method = basename(trim($config['auth_method']));
					include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);

					$method = 'validate_session_' . $method;
					if (function_exists($method))
					{
						if (!$method($this->data))
						{
							$session_expired = true;
						}
					}

					if (!$session_expired)
					{
						// Check the session length timeframe if autologin is not enabled.
						// Else check the autologin length... and also removing those having autologin enabled but no longer allowed board-wide.
						if (!$this->data['session_autologin'])
						{
							if ($this->data['session_time'] < $this->time_now - ($config['session_length'] + 60))
							{
								$session_expired = true;
							}
						}
						else if (!$config['allow_autologin'] || ($config['max_autologin_time'] && $this->data['session_time'] < $this->time_now - (86400 * (int) $config['max_autologin_time']) + 60))
						{
							$session_expired = true;
						}
					}

					if (!$session_expired)
					{
						// Only update session DB a minute or so after last update or if page changes
						if ($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page']))
						{
							$sql_ary = array('session_time' => $this->time_now);

							if ($this->update_session_page)
							{
								$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
								$sql_ary['session_forum_id'] = $this->page['forum'];
							}

							$db->sql_return_on_error(true);

							$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
								WHERE session_id = '" . $db->sql_escape($this->session_id) . "'";
							$result = $db->sql_query($sql);

							$db->sql_return_on_error(false);

							// If the database is not yet updated, there will be an error due to the session_forum_id
							// @todo REMOVE for 3.0.2
							if ($result === false)
							{
								unset($sql_ary['session_forum_id']);

								$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
									WHERE session_id = '" . $db->sql_escape($this->session_id) . "'";
								$db->sql_query($sql);
							}

							if ($this->data['user_id'] != ANONYMOUS && !empty($config['new_member_post_limit']) && $this->data['user_new'] && $config['new_member_post_limit'] <= $this->data['user_posts'])
							{
								$this->leave_newly_registered();
							}
						}

						$this->data['is_registered'] = ($this->data['user_id'] != ANONYMOUS && ($this->data['user_type'] == USER_NORMAL || $this->data['user_type'] == USER_FOUNDER)) ? true : false;
						$this->data['is_bot'] = (!$this->data['is_registered'] && $this->data['user_id'] != ANONYMOUS) ? true : false;
						$this->data['user_lang'] = basename($this->data['user_lang']);
						//MOD FTRT
						//do a check if the user has to read any topics						
						if ($this->data['is_registered'] && $this->data['user_read_forced_topics'] && !(($this->page['page_name'] == 'ucp.php' && request_var('mode', '') == 'logout') || ($this->page['page_name'] == 'viewtopic.php' && request_var('ftrt', 0)) || (strpos($this->page['page'], 'adm/index.php') !== false))) //allow ACP, logout and view forced topics without this check
						{
							if ($forced_topics = check_forced_topics())
							{								
								show_forced_topics($forced_topics);
							}
							else //whatever active topics were there have expired, so set the user variable to false
							{
								$db->sql_query('UPDATE ' . USERS_TABLE . ' SET user_read_forced_topics = 0 WHERE user_id = ' . $user->data['user_id']);
								$this->data['user_read_forced_topics'] = false;
							}
						}
						//END MOD

						return true;
					}
				}
				else
				{
					// Added logging temporarly to help debug bugs...
					if (defined('DEBUG_EXTRA') && $this->data['user_id'] != ANONYMOUS)
					{
						if ($referer_valid)
						{
							add_log('critical', 'LOG_IP_BROWSER_FORWARDED_CHECK', $u_ip, $s_ip, $u_browser, $s_browser, htmlspecialchars($u_forwarded_for), htmlspecialchars($s_forwarded_for));
						}
						else
						{
							add_log('critical', 'LOG_REFERER_INVALID', $this->referer);
						}
					}
				}
			}
		}

		// If we reach here then no (valid) session exists. So we'll create a new one
		return $this->session_create();
	}

	/**
	* Create a new session
	*
	* If upon trying to start a session we discover there is nothing existing we
	* jump here. Additionally this method is called directly during login to regenerate
	* the session for the specific user. In this method we carry out a number of tasks;
	* garbage collection, (search)bot checking, banned user comparison. Basically
	* though this method will result in a new session for a specific user.
	*/
	function session_create($user_id = false, $set_admin = false, $persist_login = false, $viewonline = true)
	{
		global $SID, $_SID, $db, $config, $cache, $phpbb_root_path, $phpEx;

		$this->data = array();

		/* Garbage collection ... remove old sessions updating user information
		// if necessary. It means (potentially) 11 queries but only infrequently
		if ($this->time_now > $config['session_last_gc'] + $config['session_gc'])
		{
			$this->session_gc();
		}*/

		// Do we allow autologin on this board? No? Then override anything
		// that may be requested here
		if (!$config['allow_autologin'])
		{
			$this->cookie_data['k'] = $persist_login = false;
		}

		/**
		* Here we do a bot check, oh er saucy! No, not that kind of bot
		* check. We loop through the list of bots defined by the admin and
		* see if we have any useragent and/or IP matches. If we do, this is a
		* bot, act accordingly
		*/
		$bot = false;
		$active_bots = $cache->obtain_bots();

		foreach ($active_bots as $row)
		{
			if ($row['bot_agent'] && preg_match('#' . str_replace('\*', '.*?', preg_quote($row['bot_agent'], '#')) . '#i', $this->browser))
			{
				$bot = $row['user_id'];
			}

			// If ip is supplied, we will make sure the ip is matching too...
			if ($row['bot_ip'] && ($bot || !$row['bot_agent']))
			{
				// Set bot to false, then we only have to set it to true if it is matching
				$bot = false;

				foreach (explode(',', $row['bot_ip']) as $bot_ip)
				{
					$bot_ip = trim($bot_ip);

					if (!$bot_ip)
					{
						continue;
					}

					if (strpos($this->ip, $bot_ip) === 0)
					{
						$bot = (int) $row['user_id'];
						break;
					}
				}
			}

			if ($bot)
			{
				break;
			}
		}

		$method = basename(trim($config['auth_method']));
		include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);

		$method = 'autologin_' . $method;
		if (function_exists($method))
		{
			$this->data = $method();

			if (sizeof($this->data))
			{
				$this->cookie_data['k'] = '';
				$this->cookie_data['u'] = $this->data['user_id'];
			}
		}

		// If we're presented with an autologin key we'll join against it.
		// Else if we've been passed a user_id we'll grab data based on that
		if (isset($this->cookie_data['k']) && $this->cookie_data['k'] && $this->cookie_data['u'] && !sizeof($this->data))
		{
			$sql = 'SELECT u.*
				FROM ' . USERS_TABLE . ' u, ' . SESSIONS_KEYS_TABLE . ' k
				WHERE u.user_id = ' . (int) $this->cookie_data['u'] . '
					AND u.user_type IN (' . USER_NORMAL . ', ' . USER_FOUNDER . ")
					AND k.user_id = u.user_id
					AND k.key_id = '" . $db->sql_escape(md5($this->cookie_data['k'])) . "'";
			$result = $db->sql_query($sql);
			$this->data = $db->sql_fetchrow($result);
			$db->sql_freeresult($result);
			$bot = false;
		}
		else if ($user_id !== false && !sizeof($this->data))
		{
			$this->cookie_data['k'] = '';
			$this->cookie_data['u'] = $user_id;

			$sql = 'SELECT *
				FROM ' . USERS_TABLE . '
				WHERE user_id = ' . (int) $this->cookie_data['u'] . '
					AND user_type IN (' . USER_NORMAL . ', ' . USER_FOUNDER . ')';
			$result = $db->sql_query($sql);
			$this->data = $db->sql_fetchrow($result);
			$db->sql_freeresult($result);
			$bot = false;
		}

		// If no data was returned one or more of the following occurred:
		// Key didn't match one in the DB
		// User does not exist
		// User is inactive
		// User is bot
		if (!sizeof($this->data) || !is_array($this->data))
		{
			$this->cookie_data['k'] = '';
			$this->cookie_data['u'] = ($bot) ? $bot : ANONYMOUS;

			if (!$bot)
			{
				$sql = 'SELECT *
					FROM ' . USERS_TABLE . '
					WHERE user_id = ' . (int) $this->cookie_data['u'];
			}
			else
			{
				// We give bots always the same session if it is not yet expired.
				$sql = 'SELECT u.*, s.*
					FROM ' . USERS_TABLE . ' u
					LEFT JOIN ' . SESSIONS_TABLE . ' s ON (s.session_user_id = u.user_id)
					WHERE u.user_id = ' . (int) $bot;
			}

			$result = $db->sql_query($sql);
			$this->data = $db->sql_fetchrow($result);
			$db->sql_freeresult($result);
		}

		if ($this->data['user_id'] != ANONYMOUS && !$bot)
		{
			$this->data['session_last_visit'] = (isset($this->data['session_time']) && $this->data['session_time']) ? $this->data['session_time'] : (($this->data['user_lastvisit']) ? $this->data['user_lastvisit'] : time());
		}
		else
		{
			$this->data['session_last_visit'] = $this->time_now;
		}

		// Force user id to be integer...
		$this->data['user_id'] = (int) $this->data['user_id'];

		// At this stage we should have a filled data array, defined cookie u and k data.
		// data array should contain recent session info if we're a real user and a recent
		// session exists in which case session_id will also be set

		// Is user banned? Are they excluded? Won't return on ban, exists within method
		if ($this->data['user_type'] != USER_FOUNDER)
		{
			if (!$config['forwarded_for_check'])
			{
				$this->check_ban($this->data['user_id'], $this->ip);
			}
			else
			{
				$ips = explode(' ', $this->forwarded_for);
				$ips[] = $this->ip;
				$this->check_ban($this->data['user_id'], $ips);
			}
		}

		$this->data['is_registered'] = (!$bot && $this->data['user_id'] != ANONYMOUS && ($this->data['user_type'] == USER_NORMAL || $this->data['user_type'] == USER_FOUNDER)) ? true : false;
		$this->data['is_bot'] = ($bot) ? true : false;

		// If our friend is a bot, we re-assign a previously assigned session
		if ($this->data['is_bot'] && $bot == $this->data['user_id'] && $this->data['session_id'])
		{
			// Only assign the current session if the ip, browser and forwarded_for match...
			if (strpos($this->ip, ':') !== false && strpos($this->data['session_ip'], ':') !== false)
			{
				$s_ip = short_ipv6($this->data['session_ip'], $config['ip_check']);
				$u_ip = short_ipv6($this->ip, $config['ip_check']);
			}
			else
			{
				$s_ip = implode('.', array_slice(explode('.', $this->data['session_ip']), 0, $config['ip_check']));
				$u_ip = implode('.', array_slice(explode('.', $this->ip), 0, $config['ip_check']));
			}

			$s_browser = ($config['browser_check']) ? trim(strtolower(substr($this->data['session_browser'], 0, 149))) : '';
			$u_browser = ($config['browser_check']) ? trim(strtolower(substr($this->browser, 0, 149))) : '';

			$s_forwarded_for = ($config['forwarded_for_check']) ? substr($this->data['session_forwarded_for'], 0, 254) : '';
			$u_forwarded_for = ($config['forwarded_for_check']) ? substr($this->forwarded_for, 0, 254) : '';

			if ($u_ip === $s_ip && $s_browser === $u_browser && $s_forwarded_for === $u_forwarded_for)
			{
				$this->session_id = $this->data['session_id'];

				// Only update session DB a minute or so after last update or if page changes
				if ($this->time_now - $this->data['session_time'] > 60 || ($this->update_session_page && $this->data['session_page'] != $this->page['page']))
				{
					$this->data['session_time'] = $this->data['session_last_visit'] = $this->time_now;

					$sql_ary = array('session_time' => $this->time_now, 'session_last_visit' => $this->time_now, 'session_admin' => 0);

					if ($this->update_session_page)
					{
						$sql_ary['session_page'] = substr($this->page['page'], 0, 199);
						$sql_ary['session_forum_id'] = $this->page['forum'];
					}

					$sql = 'UPDATE ' . SESSIONS_TABLE . ' SET ' . $db->sql_build_array('UPDATE', $sql_ary) . "
						WHERE session_id = '" . $db->sql_escape($this->session_id) . "'";
					$db->sql_query($sql);

					// Update the last visit time
					$sql = 'UPDATE ' . USERS_TABLE . '
						SET user_lastvisit = ' . (int) $this->data['session_time'] . '
						WHERE user_id = ' . (int) $this->data['user_id'];
					$db->sql_query($sql);
				}

				$SID = '?sid=';
				$_SID = '';
				//MOD FTRT
		//do a check for autologin, which is similar to the one during login
		if ($session_autologin && ($forced_topics = check_forced_topics()))
		{
			show_forced_topics($forced_topics);	
		}
		//END MOD
				return true;
			}
			else
			{
				// If the ip and browser does not match make sure we only have one bot assigned to one session
				$db->sql_query('DELETE FROM ' . SESSIONS_TABLE . ' WHERE session_user_id = ' . $this->data['user_id']);
			}
		}

		$session_autologin = (($this->cookie_data['k'] || $persist_login) && $this->data['is_registered']) ? true : false;
		$set_admin = ($set_admin && $this->data['is_registered']) ? true : false;

		// Create or update the session
		$sql_ary = array(
			'session_user_id'		=> (int) $this->data['user_id'],
			'session_start'			=> (int) $this->time_now,
			'session_last_visit'	=> (int) $this->data['session_last_visit'],
			'session_time'			=> (int) $this->time_now,
			'session_browser'		=> (string) trim(substr($this->browser, 0, 149)),
			'session_forwarded_for'	=> (string) $this->forwarded_for,
			'session_ip'			=> (string) $this->ip,
			'session_autologin'		=> ($session_autologin) ? 1 : 0,
			'session_admin'			=> ($set_admin) ? 1 : 0,
			'session_viewonline'	=> ($viewonline) ? 1 : 0,
		);

		if ($this->update_session_page)
		{
			$sql_ary['session_page'] = (string) substr($this->page['page'], 0, 199);
			$sql_ary['session_forum_id'] = $this->page['forum'];
		}

		$db->sql_return_on_error(true);

		$sql = 'DELETE
			FROM ' . SESSIONS_TABLE . '
			WHERE session_id = \'' . $db->sql_escape($this->session_id) . '\'
				AND session_user_id = ' . ANONYMOUS;

		if (!defined('IN_ERROR_HANDLER') && (!$this->session_id || !$db->sql_query($sql) || !$db->sql_affectedrows()))
		{
			// Limit new sessions in 1 minute period (if required)
			if (empty($this->data['session_time']) && $config['active_sessions'])
			{
//				$db->sql_return_on_error(false);

				$sql = 'SELECT COUNT(session_id) AS sessions
					FROM ' . SESSIONS_TABLE . '
					WHERE session_time >= ' . ($this->time_now - 60);
				$result = $db->sql_query($sql);
				$row = $db->sql_fetchrow($result);
				$db->sql_freeresult($result);

				if ((int) $row['sessions'] > (int) $config['active_sessions'])
				{
					header('HTTP/1.1 503 Service Unavailable');
					trigger_error('BOARD_UNAVAILABLE');
				}
			}
		}

		// Since we re-create the session id here, the inserted row must be unique. Therefore, we display potential errors.
		// Commented out because it will not allow forums to update correctly
//		$db->sql_return_on_error(false);

		// Something quite important: session_page always holds the *last* page visited, except for the *first* visit.
		// We are not able to simply have an empty session_page btw, therefore we need to tell phpBB how to detect this special case.
		// If the session id is empty, we have a completely new one and will set an "identifier" here. This identifier is able to be checked later.
		if (empty($this->data['session_id']))
		{
			// This is a temporary variable, only set for the very first visit
			$this->data['session_created'] = true;
		}

		$this->session_id = $this->data['session_id'] = md5(unique_id());

		$sql_ary['session_id'] = (string) $this->session_id;
		$sql_ary['session_page'] = (string) substr($this->page['page'], 0, 199);
		$sql_ary['session_forum_id'] = $this->page['forum'];

		$sql = 'INSERT INTO ' . SESSIONS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
		$db->sql_query($sql);

		$db->sql_return_on_error(false);

		// Regenerate autologin/persistent login key
		if ($session_autologin)
		{
			$this->set_login_key();
		}

		// refresh data
		$SID = '?sid=' . $this->session_id;
		$_SID = $this->session_id;
		$this->data = array_merge($this->data, $sql_ary);

		if (!$bot)
		{
			$cookie_expire = $this->time_now + (($config['max_autologin_time']) ? 86400 * (int) $config['max_autologin_time'] : 31536000);

			$this->set_cookie('u', $this->cookie_data['u'], $cookie_expire);
			$this->set_cookie('k', $this->cookie_data['k'], $cookie_expire);
			$this->set_cookie('sid', $this->session_id, $cookie_expire);

			unset($cookie_expire);

			$sql = 'SELECT COUNT(session_id) AS sessions
					FROM ' . SESSIONS_TABLE . '
					WHERE session_user_id = ' . (int) $this->data['user_id'] . '
					AND session_time >= ' . (int) ($this->time_now - (max($config['session_length'], $config['form_token_lifetime'])));
			$result = $db->sql_query($sql);
			$row = $db->sql_fetchrow($result);
			$db->sql_freeresult($result);

			if ((int) $row['sessions'] <= 1 || empty($this->data['user_form_salt']))
			{
				$this->data['user_form_salt'] = unique_id();
				// Update the form key
				$sql = 'UPDATE ' . USERS_TABLE . '
					SET user_form_salt = \'' . $db->sql_escape($this->data['user_form_salt']) . '\'
					WHERE user_id = ' . (int) $this->data['user_id'];
				$db->sql_query($sql);
			}
		}
		else
		{
			$this->data['session_time'] = $this->data['session_last_visit'] = $this->time_now;

			// Update the last visit time
			$sql = 'UPDATE ' . USERS_TABLE . '
				SET user_lastvisit = ' . (int) $this->data['session_time'] . '
				WHERE user_id = ' . (int) $this->data['user_id'];
			$db->sql_query($sql);

			$SID = '?sid=';
			$_SID = '';
		}

		return true;
	}

	/**
	* Kills a session
	*
	* This method does what it says on the tin. It will delete a pre-existing session.
	* It resets cookie information (destroying any autologin key within that cookie data)
	* and update the users information from the relevant session data. It will then
	* grab guest user information.
	*/
	function session_kill($new_session = true)
	{
		global $SID, $_SID, $db, $config, $phpbb_root_path, $phpEx;

		$sql = 'DELETE FROM ' . SESSIONS_TABLE . "
			WHERE session_id = '" . $db->sql_escape($this->session_id) . "'
				AND session_user_id = " . (int) $this->data['user_id'];
		$db->sql_query($sql);

		// Allow connecting logout with external auth method logout
		$method = basename(trim($config['auth_method']));
		include_once($phpbb_root_path . 'includes/auth/auth_' . $method . '.' . $phpEx);

		$method = 'logout_' . $method;
		if (function_exists($method))
		{
			$method($this->data, $new_session);
		}

		if ($this->data['user_id'] != ANONYMOUS)
		{
			// Delete existing session, update last visit info first!
			if (!isset($this->data['session_time']))
			{
				$this->data['session_time'] = time();
			}

			$sql = 'UPDATE ' . USERS_TABLE . '
				SET user_lastvisit = ' . (int) $this->data['session_time'] . '
				WHERE user_id = ' . (int) $this->data['user_id'];
			$db->sql_query($sql);

			if ($this->cookie_data['k'])
			{
				$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
					WHERE user_id = ' . (int) $this->data['user_id'] . "
						AND key_id = '" . $db->sql_escape(md5($this->cookie_data['k'])) . "'";
				$db->sql_query($sql);
			}

			// Reset the data array
			$this->data = array();

			$sql = 'SELECT *
				FROM ' . USERS_TABLE . '
				WHERE user_id = ' . ANONYMOUS;
			$result = $db->sql_query($sql);
			$this->data = $db->sql_fetchrow($result);
			$db->sql_freeresult($result);
		}

		$cookie_expire = $this->time_now - 31536000;
		$this->set_cookie('u', '', $cookie_expire);
		$this->set_cookie('k', '', $cookie_expire);
		$this->set_cookie('sid', '', $cookie_expire);
		unset($cookie_expire);

		$SID = '?sid=';
		$this->session_id = $_SID = '';

		// To make sure a valid session is created we create one for the anonymous user
		if ($new_session)
		{
			$this->session_create(ANONYMOUS);
		}

		return true;
	}

	/**
	* Session garbage collection
	*
	* This looks a lot more complex than it really is. Effectively we are
	* deleting any sessions older than an admin definable limit. Due to the
	* way in which we maintain session data we have to ensure we update user
	* data before those sessions are destroyed. In addition this method
	* removes autologin key information that is older than an admin defined
	* limit.
	*/
	function session_gc()
	{
		global $db, $config, $phpbb_root_path, $phpEx;

		$batch_size = 10;

		if (!$this->time_now)
		{
			$this->time_now = time();
		}

		// Firstly, delete guest sessions
		$sql = 'DELETE FROM ' . SESSIONS_TABLE . '
			WHERE session_user_id = ' . ANONYMOUS . '
				AND session_time < ' . (int) ($this->time_now - $config['session_length']);
		$db->sql_query($sql);

		// Get expired sessions, only most recent for each user
		$sql = 'SELECT session_user_id, session_page, MAX(session_time) AS recent_time
			FROM ' . SESSIONS_TABLE . '
			WHERE session_time < ' . ($this->time_now - $config['session_length']) . '
			GROUP BY session_user_id, session_page';
		$result = $db->sql_query_limit($sql, $batch_size);

		$del_user_id = array();
		$del_sessions = 0;

		while ($row = $db->sql_fetchrow($result))
		{
			$sql = 'UPDATE ' . USERS_TABLE . '
				SET user_lastvisit = ' . (int) $row['recent_time'] . ", user_lastpage = '" . $db->sql_escape($row['session_page']) . "'
				WHERE user_id = " . (int) $row['session_user_id'];
			$db->sql_query($sql);

			$del_user_id[] = (int) $row['session_user_id'];
			$del_sessions++;
		}
		$db->sql_freeresult($result);

		if (sizeof($del_user_id))
		{
			// Delete expired sessions
			$sql = 'DELETE FROM ' . SESSIONS_TABLE . '
				WHERE ' . $db->sql_in_set('session_user_id', $del_user_id) . '
					AND session_time < ' . ($this->time_now - $config['session_length']);
			$db->sql_query($sql);
		}

		if ($del_sessions < $batch_size)
		{
			// Less than 10 users, update gc timer ... else we want gc
			// called again to delete other sessions
			set_config('session_last_gc', $this->time_now, true);

			if ($config['max_autologin_time'])
			{
				$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
					WHERE last_login < ' . (time() - (86400 * (int) $config['max_autologin_time']));
				$db->sql_query($sql);
		}

			// only called from CRON; should be a safe workaround until the infrastructure gets going
			if (!class_exists('captcha_factory'))
	{
				include($phpbb_root_path . "includes/captcha/captcha_factory." . $phpEx);
			}
			phpbb_captcha_factory::garbage_collect($config['captcha_plugin']);
			}

		return;
			}

	/**
	* Sets a cookie
	*
	* Sets a cookie of the given name with the specified data for the given length of time. If no time is specified, a session cookie will be set.
	*
	* @param string $name		Name of the cookie, will be automatically prefixed with the phpBB cookie name. track becomes [cookie_name]_track then.
	* @param string $cookiedata	The data to hold within the cookie
	* @param int $cookietime	The expiration time as UNIX timestamp. If 0 is provided, a session cookie is set.
	*/
	function set_cookie($name, $cookiedata, $cookietime)
	{
		global $config;

		$name_data = rawurlencode($config['cookie_name'] . '_' . $name) . '=' . rawurlencode($cookiedata);
		$expire = gmdate('D, d-M-Y H:i:s \\G\\M\\T', $cookietime);
		$domain = (!$config['cookie_domain'] || $config['cookie_domain'] == 'localhost' || $config['cookie_domain'] == '127.0.0.1') ? '' : '; domain=' . $config['cookie_domain'];

		header('Set-Cookie: ' . $name_data . (($cookietime) ? '; expires=' . $expire : '') . '; path=' . $config['cookie_path'] . $domain . ((!$config['cookie_secure']) ? '' : '; secure') . '; HttpOnly', false);
	}

	/**
	* Check for banned user
	*
	* Checks whether the supplied user is banned by id, ip or email. If no parameters
	* are passed to the method pre-existing session data is used. If $return is false
	* this routine does not return on finding a banned user, it outputs a relevant
	* message and stops execution.
	*
	* @param string|array	$user_ips	Can contain a string with one IP or an array of multiple IPs
	*/
	function check_ban($user_id = false, $user_ips = false, $user_email = false, $return = false)
	{
		global $config, $db;

		if (defined('IN_CHECK_BAN'))
		{
			return;
		}
//-- mod: Prime Ban to Group -----------------------------------------------//
		global $phpbb_root_path, $phpEx;
		include "$phpbb_root_path/includes/prime_ban_to_group.$phpEx";
		$prime_ban_to_group = new prime_ban_to_group(null, 'unban');
//-- end: Prime Ban to Group -----------------------------------------------//

		$banned = false;
		$cache_ttl = 3600;
		$where_sql = array();

		$sql = 'SELECT ban_ip, ban_userid, ban_email, ban_exclude, ban_give_reason, ban_end
			FROM ' . BANLIST_TABLE . '
			WHERE ';

		// Determine which entries to check, only return those
		if ($user_email === false)
		{
			$where_sql[] = "ban_email = ''";
		}

		if ($user_ips === false)
		{
			$where_sql[] = "(ban_ip = '' OR ban_exclude = 1)";
		}

		if ($user_id === false)
		{
			$where_sql[] = '(ban_userid = 0 OR ban_exclude = 1)';
		}
		else
		{
			$cache_ttl = ($user_id == ANONYMOUS) ? 3600 : 0;
			$_sql = '(ban_userid = ' . $user_id;

			if ($user_email !== false)
			{
				$_sql .= " OR ban_email <> ''";
			}

			if ($user_ips !== false)
			{
				$_sql .= " OR ban_ip <> ''";
			}

			$_sql .= ')';

			$where_sql[] = $_sql;
		}

		$sql .= (sizeof($where_sql)) ? implode(' AND ', $where_sql) : '';
		$result = $db->sql_query($sql, $cache_ttl);

		$ban_triggered_by = 'user';
		while ($row = $db->sql_fetchrow($result))
		{
			if ($row['ban_end'] && $row['ban_end'] < time())
			{
				continue;
			}

			$ip_banned = false;
			if (!empty($row['ban_ip']))
			{
				if (!is_array($user_ips))
				{
					$ip_banned = preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_ip'], '#')) . '$#i', $user_ips);
				}
				else
				{
					foreach ($user_ips as $user_ip)
					{
						if (preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_ip'], '#')) . '$#i', $user_ip))
						{
							$ip_banned = true;
							break;
						}
					}
				}
			}

			if ((!empty($row['ban_userid']) && intval($row['ban_userid']) == $user_id) ||
				$ip_banned ||
				(!empty($row['ban_email']) && preg_match('#^' . str_replace('\*', '.*?', preg_quote($row['ban_email'], '#')) . '$#i', $user_email)))
			{
				if (!empty($row['ban_exclude']))
				{
					$banned = false;
					break;
				}
				else
				{
					$banned = true;
					$ban_row = $row;

					if (!empty($row['ban_userid']) && intval($row['ban_userid']) == $user_id)
					{
						$ban_triggered_by = 'user';
					}
					else if ($ip_banned)
					{
						$ban_triggered_by = 'ip';
					}
					else
					{
						$ban_triggered_by = 'email';
					}

					// Don't break. Check if there is an exclude rule for this user
				}
			}
		}
		$db->sql_freeresult($result);

		if ($banned && !$return)
		{
			global $template;

			// If the session is empty we need to create a valid one...
			if (empty($this->session_id))
			{
				// This seems to be no longer needed? - #14971
//				$this->session_create(ANONYMOUS);
			}

			// Initiate environment ... since it won't be set at this stage
			$this->setup();

			// Logout the user, banned users are unable to use the normal 'logout' link
			if ($this->data['user_id'] != ANONYMOUS)
			{
				$this->session_kill();
			}

			// We show a login box here to allow founders accessing the board if banned by IP
			if (defined('IN_LOGIN') && $this->data['user_id'] == ANONYMOUS)
			{
				global $phpEx;

				$this->setup('ucp');
				$this->data['is_registered'] = $this->data['is_bot'] = false;

				// Set as a precaution to allow login_box() handling this case correctly as well as this function not being executed again.
				define('IN_CHECK_BAN', 1);

				login_box("index.$phpEx");

				// The false here is needed, else the user is able to circumvent the ban.
				$this->session_kill(false);
			}

			// Ok, we catch the case of an empty session id for the anonymous user...
			// This can happen if the user is logging in, banned by username and the login_box() being called "again".
			if (empty($this->session_id) && defined('IN_CHECK_BAN'))
			{
				$this->session_create(ANONYMOUS);
			}


			// Determine which message to output
			$till_date = ($ban_row['ban_end']) ? $this->format_date($ban_row['ban_end']) : '';
			$message = ($ban_row['ban_end']) ? 'BOARD_BAN_TIME' : 'BOARD_BAN_PERM';

			$message = sprintf($this->lang[$message], $till_date, '<a href="mailto:' . $config['board_contact'] . '">', '</a>');
			$message .= ($ban_row['ban_give_reason']) ? '<br /><br />' . sprintf($this->lang['BOARD_BAN_REASON'], $ban_row['ban_give_reason']) : '';
			$message .= '<br /><br /><em>' . $this->lang['BAN_TRIGGERED_BY_' . strtoupper($ban_triggered_by)] . '</em>';

			// To circumvent session_begin returning a valid value and the check_ban() not called on second page view, we kill the session again
			$this->session_kill(false);

			// A very special case... we are within the cron script which is not supposed to print out the ban message... show blank page
			if (defined('IN_CRON'))
			{
				garbage_collection();
				exit_handler();
				exit;
			}

			trigger_error($message);
		}

		return ($banned && $ban_row['ban_give_reason']) ? $ban_row['ban_give_reason'] : $banned;
	}

	/**
	* Check if ip is blacklisted
	* This should be called only where absolutly necessary
	*
	* Only IPv4 (rbldns does not support AAAA records/IPv6 lookups)
	*
	* @author satmd (from the php manual)
	* @param string $mode register/post - spamcop for example is ommitted for posting
	* @return false if ip is not blacklisted, else an array([checked server], [lookup])
	*/
	function check_dnsbl($mode, $ip = false)
	{
		if ($ip === false)
		{
			$ip = $this->ip;
		}

		$dnsbl_check = array(
			'sbl.spamhaus.org'	=> 'http://www.spamhaus.org/query/bl?ip=',
		);

		if ($mode == 'register')
		{
			$dnsbl_check['bl.spamcop.net'] = 'http://spamcop.net/bl.shtml?';
		}

		if ($ip)
		{
			$quads = explode('.', $ip);
			$reverse_ip = $quads[3] . '.' . $quads[2] . '.' . $quads[1] . '.' . $quads[0];

			// Need to be listed on all servers...
			$listed = true;
			$info = array();

			foreach ($dnsbl_check as $dnsbl => $lookup)
			{
				if (phpbb_checkdnsrr($reverse_ip . '.' . $dnsbl . '.', 'A') === true)
				{
					$info = array($dnsbl, $lookup . $ip);
				}
				else
				{
					$listed = false;
				}
			}

			if ($listed)
			{
				return $info;
			}
		}

		return false;
	}

	/**
	* Check if URI is blacklisted
	* This should be called only where absolutly necessary, for example on the submitted website field
	* This function is not in use at the moment and is only included for testing purposes, it may not work at all!
	* This means it is untested at the moment and therefore commented out
	*
	* @param string $uri URI to check
	* @return true if uri is on blacklist, else false. Only blacklist is checked (~zero FP), no grey lists
	function check_uribl($uri)
	{
		// Normally parse_url() is not intended to parse uris
		// We need to get the top-level domain name anyway... change.
		$uri = parse_url($uri);

		if ($uri === false || empty($uri['host']))
		{
			return false;
		}

		$uri = trim($uri['host']);

		if ($uri)
		{
			// One problem here... the return parameter for the "windows" method is different from what
			// we expect... this may render this check useless...
			if (phpbb_checkdnsrr($uri . '.multi.uribl.com.', 'A') === true)
			{
				return true;
			}
		}

		return false;
	}
	*/

	/**
	* Set/Update a persistent login key
	*
	* This method creates or updates a persistent session key. When a user makes
	* use of persistent (formerly auto-) logins a key is generated and stored in the
	* DB. When they revisit with the same key it's automatically updated in both the
	* DB and cookie. Multiple keys may exist for each user representing different
	* browsers or locations. As with _any_ non-secure-socket no passphrase login this
	* remains vulnerable to exploit.
	*/
	function set_login_key($user_id = false, $key = false, $user_ip = false)
	{
		global $config, $db;

		$user_id = ($user_id === false) ? $this->data['user_id'] : $user_id;
		$user_ip = ($user_ip === false) ? $this->ip : $user_ip;
		$key = ($key === false) ? (($this->cookie_data['k']) ? $this->cookie_data['k'] : false) : $key;

		$key_id = unique_id(hexdec(substr($this->session_id, 0, 8)));

		$sql_ary = array(
			'key_id'		=> (string) md5($key_id),
			'last_ip'		=> (string) $this->ip,
			'last_login'	=> (int) time()
		);

		if (!$key)
		{
			$sql_ary += array(
				'user_id'	=> (int) $user_id
			);
		}

		if ($key)
		{
			$sql = 'UPDATE ' . SESSIONS_KEYS_TABLE . '
				SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
				WHERE user_id = ' . (int) $user_id . "
					AND key_id = '" . $db->sql_escape(md5($key)) . "'";
		}
		else
		{
			$sql = 'INSERT INTO ' . SESSIONS_KEYS_TABLE . ' ' . $db->sql_build_array('INSERT', $sql_ary);
		}
		$db->sql_query($sql);

		$this->cookie_data['k'] = $key_id;

		return false;
	}

	/**
	* Reset all login keys for the specified user
	*
	* This method removes all current login keys for a specified (or the current)
	* user. It will be called on password change to render old keys unusable
	*/
	function reset_login_keys($user_id = false)
	{
		global $config, $db;

		$user_id = ($user_id === false) ? (int) $this->data['user_id'] : (int) $user_id;

		$sql = 'DELETE FROM ' . SESSIONS_KEYS_TABLE . '
			WHERE user_id = ' . (int) $user_id;
		$db->sql_query($sql);

		// If the user is logged in, update last visit info first before deleting sessions
		$sql = 'SELECT session_time, session_page
			FROM ' . SESSIONS_TABLE . '
			WHERE session_user_id = ' . (int) $user_id . '
			ORDER BY session_time DESC';
		$result = $db->sql_query_limit($sql, 1);
		$row = $db->sql_fetchrow($result);
		$db->sql_freeresult($result);

		if ($row)
		{
			$sql = 'UPDATE ' . USERS_TABLE . '
				SET user_lastvisit = ' . (int) $row['session_time'] . ", user_lastpage = '" . $db->sql_escape($row['session_page']) . "'
				WHERE user_id = " . (int) $user_id;
			$db->sql_query($sql);
		}

		// Let's also clear any current sessions for the specified user_id
		// If it's the current user then we'll leave this session intact
		$sql_where = 'session_user_id = ' . (int) $user_id;
		$sql_where .= ($user_id === (int) $this->data['user_id']) ? " AND session_id <> '" . $db->sql_escape($this->session_id) . "'" : '';

		$sql = 'DELETE FROM ' . SESSIONS_TABLE . "
			WHERE $sql_where";
		$db->sql_query($sql);

		// We're changing the password of the current user and they have a key
		// Lets regenerate it to be safe
		if ($user_id === (int) $this->data['user_id'] && $this->cookie_data['k'])
		{
			$this->set_login_key($user_id);
		}
	}


	/**
	* Check if the request originated from the same page.
	* @param bool $check_script_path If true, the path will be checked as well
	*/
	function validate_referer($check_script_path = false)
	{
		global $config;

		// no referer - nothing to validate, user's fault for turning it off (we only check on POST; so meta can't be the reason)
		if (empty($this->referer) || empty($this->host))
		{
			return true;
		}

		$host = htmlspecialchars($this->host);
		$ref = substr($this->referer, strpos($this->referer, '://') + 3);

		if (!(stripos($ref, $host) === 0) && (!$config['force_server_vars'] || !(stripos($ref, $config['server_name']) === 0)))
		{
			return false;
		}
		else if ($check_script_path && rtrim($this->page['root_script_path'], '/') !== '')
		{
			$ref = substr($ref, strlen($host));
			$server_port = (!empty($_SERVER['SERVER_PORT'])) ? (int) $_SERVER['SERVER_PORT'] : (int) getenv('SERVER_PORT');

			if ($server_port !== 80 && $server_port !== 443 && stripos($ref, ":$server_port") === 0)
			{
				$ref = substr($ref, strlen(":$server_port"));
			}

			if (!(stripos(rtrim($ref, '/'), rtrim($this->page['root_script_path'], '/')) === 0))
			{
				return false;
			}
		}

		return true;
	}


	function unset_admin()
	{
		global $db;
		$sql = 'UPDATE ' . SESSIONS_TABLE . '
			SET session_admin = 0
			WHERE session_id = \'' . $db->sql_escape($this->session_id) . '\'';
		$db->sql_query($sql);
	}
}


/**
* Base user class
*
* This is the overarching class which contains (through session extend)
* all methods utilised for user functionality during a session.
*
* @package phpBB3
*/
class user extends session
{
	var $lang = array();
	var $help = array();
	var $theme = array();
	var $date_format;
	var $timezone;
	var $dst;

	var $lang_name = false;
	var $lang_id = false;
	var $lang_path;
	var $img_lang;
	var $img_array = array();

	// Able to add new options (up to id 31)
	var $keyoptions = array('viewimg' => 0, 'viewflash' => 1, 'viewsmilies' => 2, 'viewsigs' => 3, 'viewavatars' => 4, 'viewcensors' => 5, 'attachsig' => 6, 'bbcode' => 8, 'smilies' => 9, 'popuppm' => 10, 'sig_bbcode' => 15, 'sig_smilies' => 16, 'sig_links' => 17);
	var $keyvalues = array();

	/**
	* Constructor to set the lang path
	*/
	function user()
	{
		global $phpbb_root_path;

		$this->lang_path = $phpbb_root_path . 'language/';
	}

	/**
	* Function to set custom language path (able to use directory outside of phpBB)
	*
	* @param string $lang_path New language path used.
	* @access public
	*/
	function set_custom_lang_path($lang_path)
	{
		$this->lang_path = $lang_path;

		if (substr($this->lang_path, -1) != '/')
		{
			$this->lang_path .= '/';
		}
	}

	/**
	* Setup basic user-specific items (style, language, ...)
	*/
	function setup($lang_set = false, $style = false)
	{
		global $db, $template, $config, $auth, $phpEx, $phpbb_root_path, $cache;
// begin mobile browser detection mod - by sithnar
      $user_browser = strtolower($this->browser);
      $this->data['is_mobile'] = false;
      $browsers_array = array('240x320', '320x240','blackberry', 'iemobile', 'minimobile', 'mobile', 'opera mini', 'pda', 'phone', 'pocket', 'psp', 'symbian', 't-shark', 'wireless');
      foreach ($browsers_array as $ua_match)
      {
         if (strpos($user_browser, $ua_match) !== false)
         {
            $style = 9;
            $this->data['is_mobile'] = true;
            break;
         }
      }
      // end mobile browser detection mod
		if ($this->data['user_id'] != ANONYMOUS)
		{
			$this->lang_name = (file_exists($this->lang_path . $this->data['user_lang'] . "/common.$phpEx")) ? $this->data['user_lang'] : basename($config['default_lang']);

			$this->date_format = $this->data['user_dateformat'];
			$this->timezone = $this->data['user_timezone'] * 3600;
			$this->dst = $this->data['user_dst'] * 3600;
		}
		else
		{
			$this->lang_name = basename($config['default_lang']);
			$this->date_format = $config['default_dateformat'];
			$this->timezone = $config['board_timezone'] * 3600;
			$this->dst = $config['board_dst'] * 3600;

			/**
			* If a guest user is surfing, we try to guess his/her language first by obtaining the browser language
			* If re-enabled we need to make sure only those languages installed are checked
			* Commented out so we do not loose the code.

			if (isset($_SERVER['HTTP_ACCEPT_LANGUAGE']))
			{
				$accept_lang_ary = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']);

				foreach ($accept_lang_ary as $accept_lang)
				{
					// Set correct format ... guess full xx_YY form
					$accept_lang = substr($accept_lang, 0, 2) . '_' . strtoupper(substr($accept_lang, 3, 2));
					$accept_lang = basename($accept_lang);

					if (file_exists($this->lang_path . $accept_lang . "/common.$phpEx"))
					{
						$this->lang_name = $config['default_lang'] = $accept_lang;
						break;
					}
					else
					{
						// No match on xx_YY so try xx
						$accept_lang = substr($accept_lang, 0, 2);
						$accept_lang = basename($accept_lang);

						if (file_exists($this->lang_path . $accept_lang . "/common.$phpEx"))
						{
							$this->lang_name = $config['default_lang'] = $accept_lang;
							break;
						}
					}
				}
			}
			*/
		}

		// We include common language file here to not load it every time a custom language file is included
		$lang = &$this->lang;

		// Do not suppress error if in DEBUG_EXTRA mode
		$include_result = (defined('DEBUG_EXTRA')) ? (include $this->lang_path . $this->lang_name . "/common.$phpEx") : (@include $this->lang_path . $this->lang_name . "/common.$phpEx");

		if ($include_result === false)
		{
			die('Language file ' . $this->lang_path . $this->lang_name . "/common.$phpEx" . " couldn't be opened.");
		}

		$this->add_lang($lang_set);
		unset($lang_set);

		if (!empty($_GET['style']) && $auth->acl_get('a_styles') && !defined('ADMIN_START'))
		{
			global $SID, $_EXTRA_URL;

			$style = request_var('style', 0);
			$SID .= '&style=' . $style;
			$_EXTRA_URL = array('style=' . $style);
		}
		else
		{
			// Set up style
			$style = ($style) ? $style : ((!$config['override_user_style']) ? $this->data['user_style'] : $config['default_style']);
		}

		$sql = 'SELECT s.style_id, t.template_storedb, t.template_path, t.template_id, t.bbcode_bitfield, t.template_inherits_id, t.template_inherit_path, c.theme_path, c.theme_name, c.theme_storedb, c.theme_id, i.imageset_path, i.imageset_id, i.imageset_name
			FROM ' . STYLES_TABLE . ' s, ' . STYLES_TEMPLATE_TABLE . ' t, ' . STYLES_THEME_TABLE . ' c, ' . STYLES_IMAGESET_TABLE . " i
			WHERE s.style_id = $style
				AND t.template_id = s.template_id
				AND c.theme_id = s.theme_id
				AND i.imageset_id = s.imageset_id";
		$result = $db->sql_query($sql, 3600);
		$this->theme = $db->sql_fetchrow($result);
		$db->sql_freeresult($result);

		// User has wrong style
		if (!$this->theme && $style == $this->data['user_style'])
		{
			$style = $this->data['user_style'] = $config['default_style'];

			$sql = 'UPDATE ' . USERS_TABLE . "
				SET user_style = $style
				WHERE user_id = {$this->data['user_id']}";
			$db->sql_query($sql);

			$sql = 'SELECT s.style_id, t.template_storedb, t.template_path, t.template_id, t.bbcode_bitfield, c.theme_path, c.theme_name, c.theme_storedb, c.theme_id, i.imageset_path, i.imageset_id, i.imageset_name
				FROM ' . STYLES_TABLE . ' s, ' . STYLES_TEMPLATE_TABLE . ' t, ' . STYLES_THEME_TABLE . ' c, ' . STYLES_IMAGESET_TABLE . " i
				WHERE s.style_id = $style
					AND t.template_id = s.template_id
					AND c.theme_id = s.theme_id
					AND i.imageset_id = s.imageset_id";
			$result = $db->sql_query($sql, 3600);
			$this->theme = $db->sql_fetchrow($result);
			$db->sql_freeresult($result);
		}

		if (!$this->theme)
		{
			trigger_error('Could not get style data', E_USER_ERROR);
		}

		// Now parse the cfg file and cache it
		$parsed_items = $cache->obtain_cfg_items($this->theme);

		// We are only interested in the theme configuration for now
		$parsed_items = $parsed_items['theme'];

		$check_for = array(
			'parse_css_file'	=> (int) 0,
			'pagination_sep'	=> (string) ', '
		);

		foreach ($check_for as $key => $default_value)
		{
			$this->theme[$key] = (isset($parsed_items[$key])) ? $parsed_items[$key] : $default_value;
			settype($this->theme[$key], gettype($default_value));

			if (is_string($default_value))
			{
				$this->theme[$key] = htmlspecialchars($this->theme[$key]);
			}
		}

		// If the style author specified the theme needs to be cached
		// (because of the used paths and variables) than make sure it is the case.
		// For example, if the theme uses language-specific images it needs to be stored in db.
		if (!$this->theme['theme_storedb'] && $this->theme['parse_css_file'])
		{
			$this->theme['theme_storedb'] = 1;

			$stylesheet = file_get_contents("{$phpbb_root_path}styles/{$this->theme['theme_path']}/theme/stylesheet.css");
			// Match CSS imports
			$matches = array();
			preg_match_all('/@import url\(["\'](.*)["\']\);/i', $stylesheet, $matches);

			if (sizeof($matches))
			{
				$content = '';
				foreach ($matches[0] as $idx => $match)
				{
					if ($content = @file_get_contents("{$phpbb_root_path}styles/{$this->theme['theme_path']}/theme/" . $matches[1][$idx]))
					{
						$content = trim($content);
					}
					else
					{
						$content = '';
					}
					$stylesheet = str_replace($match, $content, $stylesheet);
				}
				unset($content);
			}

			$stylesheet = str_replace('./', 'styles/' . $this->theme['theme_path'] . '/theme/', $stylesheet);

			$sql_ary = array(
				'theme_data'	=> $stylesheet,
				'theme_mtime'	=> time(),
				'theme_storedb'	=> 1
			);

			$sql = 'UPDATE ' . STYLES_THEME_TABLE . '
				SET ' . $db->sql_build_array('UPDATE', $sql_ary) . '
				WHERE theme_id = ' . $this->theme['theme_id'];
			$db->sql_query($sql);

			unset($sql_ary);
		}

		$template->set_template();

		$this->img_lang = (file_exists($phpbb_root_path . 'styles/' . $this->theme['imageset_path'] . '/imageset/' . $this->lang_name)) ? $this->lang_name : $config['default_lang'];

		// Same query in style.php
		$sql = 'SELECT *
			FROM ' . STYLES_IMAGESET_DATA_TABLE . '
			WHERE imageset_id = ' . $this->theme['imageset_id'] . "
			AND image_filename <> ''
			AND image_lang IN ('" . $db->sql_escape($this->img_lang) . "', '')";
		$result = $db->sql_query($sql, 3600);

		$localised_images = false;
		while ($row = $db->sql_fetchrow($result))
		{
			if ($row['image_lang'])
			{
				$localised_images = true;
			}

			$row['image_filename'] = rawurlencode($row['image_filename']);
			$this->img_array[$row['image_name']] = $row;
		}
		$db->sql_freeresult($result);

		// there were no localised images, try to refresh the localised imageset for the user's language
		if (!$localised_images)
		{
			// Attention: this code ignores the image definition list from acp_styles and just takes everything
			// that the config file contains
			$sql_ary = array();

			$db->sql_transaction('begin');

			$sql = 'DELETE FROM ' . STYLES_IMAGESET_DATA_TABLE . '
				WHERE imageset_id = ' . $this->theme['imageset_id'] . '
					AND image_lang = \'' . $db->sql_escape($this->img_lang) . '\'';
			$result = $db->sql_query($sql);

			if (@file_exists("{$phpbb_root_path}styles/{$this->theme['imageset_path']}/imageset/{$this->img_lang}/imageset.cfg"))
			{
				$cfg_data_imageset_data = parse_cfg_file("{$phpbb_root_path}styles/{$this->theme['imageset_path']}/imageset/{$this->img_lang}/imageset.cfg");
				foreach ($cfg_data_imageset_data as $image_name => $value)
				{
					if (strpos($value, '*') !== false)
					{
						if (substr($value, -1, 1) === '*')
						{
							list($image_filename, $image_height) = explode('*', $value);
							$image_width = 0;
						}
						else
						{
							list($image_filename, $image_height, $image_width) = explode('*', $value);
						}
					}
					else
					{
						$image_filename = $value;
						$image_height = $image_width = 0;
					}

					if (strpos($image_name, 'img_') === 0 && $image_filename)
					{
						$image_name = substr($image_name, 4);
						$sql_ary[] = array(
							'image_name'		=> (string) $image_name,
							'image_filename'	=> (string) $image_filename,
							'image_height'		=> (int) $image_height,
							'image_width'		=> (int) $image_width,
							'imageset_id'		=> (int) $this->theme['imageset_id'],
							'image_lang'		=> (string) $this->img_lang,
						);
					}
				}
			}

			if (sizeof($sql_ary))
			{
				$db->sql_multi_insert(STYLES_IMAGESET_DATA_TABLE, $sql_ary);
				$db->sql_transaction('commit');
				$cache->destroy('sql', STYLES_IMAGESET_DATA_TABLE);

				add_log('admin', 'LOG_IMAGESET_LANG_REFRESHED', $this->theme['imageset_name'], $this->img_lang);
			}
			else
			{
				$db->sql_transaction('commit');
				add_log('admin', 'LOG_IMAGESET_LANG_MISSING', $this->theme['imageset_name'], $this->img_lang);
			}
		}

		// Call phpbb_user_session_handler() in case external application want to "bend" some variables or replace classes...
		// After calling it we continue script execution...
		phpbb_user_session_handler();

		// If this function got called from the error handler we are finished here.
		if (defined('IN_ERROR_HANDLER'))
		{
			return;
		}

		// Disable board if the install/ directory is still present
		// For the brave development army we do not care about this, else we need to comment out this everytime we develop locally
		if (!defined('DEBUG_EXTRA') && !defined('ADMIN_START') && !defined('IN_INSTALL') && !defined('IN_LOGIN') && file_exists($phpbb_root_path . 'install') && !is_file($phpbb_root_path . 'install'))
		{
			// Adjust the message slightly according to the permissions
			if ($auth->acl_gets('a_', 'm_') || $auth->acl_getf_global('m_'))
			{
				$message = 'REMOVE_INSTALL';
			}
			else
			{
				$message = (!empty($config['board_disable_msg'])) ? $config['board_disable_msg'] : 'BOARD_DISABLE';
			}
			trigger_error($message);
		}

		// Is board disabled and user not an admin or moderator?
		if ($config['board_disable'] && !defined('IN_LOGIN') && !$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_'))
		{
			if ($this->data['is_bot'])
			{
				header('HTTP/1.1 503 Service Unavailable');
			}

			$message = (!empty($config['board_disable_msg'])) ? $config['board_disable_msg'] : 'BOARD_DISABLE';
			trigger_error($message);
		}

		// Is load exceeded?
		if ($config['limit_load'] && $this->load !== false)
		{
			if ($this->load > floatval($config['limit_load']) && !defined('IN_LOGIN'))
			{
				// Set board disabled to true to let the admins/mods get the proper notification
				$config['board_disable'] = '1';

				if (!$auth->acl_gets('a_', 'm_') && !$auth->acl_getf_global('m_'))
				{
					if ($this->data['is_bot'])
					{
						header('HTTP/1.1 503 Service Unavailable');
					}
					trigger_error('BOARD_UNAVAILABLE');
				}
			}
		}

		if (isset($this->data['session_viewonline']))
		{
			// Make sure the user is able to hide his session
			if (!$this->data['session_viewonline'])
			{
				// Reset online status if not allowed to hide the session...
				if (!$auth->acl_get('u_hideonline'))
				{
					$sql = 'UPDATE ' . SESSIONS_TABLE . '
						SET session_viewonline = 1
						WHERE session_user_id = ' . $this->data['user_id'];
					$db->sql_query($sql);
					$this->data['session_viewonline'] = 1;
				}
			}
			else if (!$this->data['user_allow_viewonline'])
			{
				// the user wants to hide and is allowed to  -> cloaking device on.
				if ($auth->acl_get('u_hideonline'))
				{
					$sql = 'UPDATE ' . SESSIONS_TABLE . '
						SET session_viewonline = 0
						WHERE session_user_id = ' . $this->data['user_id'];
					$db->sql_query($sql);
					$this->data['session_viewonline'] = 0;
				}
			}
		}

//-- mod: Prime Ban to Group -----------------------------------------------//
		$this->add_lang('mods/prime_ban_to_group');
//-- end: Prime Ban to Group -----------------------------------------------//

		// Does the user need to change their password? If so, redirect to the
		// ucp profile reg_details page ... of course do not redirect if we're already in the ucp
		if (!defined('IN_ADMIN') && !defined('ADMIN_START') && $config['chg_passforce'] && !empty($this->data['is_registered']) && $auth->acl_get('u_chgpasswd') && $this->data['user_passchg'] < time() - ($config['chg_passforce'] * 86400))
		{
			if (strpos($this->page['query_string'], 'mode=reg_details') === false && $this->page['page_name'] != "ucp.$phpEx")
			{
				redirect(append_sid("{$phpbb_root_path}ucp.$phpEx", 'i=profile&mode=reg_details'));
				//-- mod: Prime Birthdate ---------------------------------------------------//
		include($phpbb_root_path . 'includes/prime_birthdate.' . $phpEx);
		$prime_birthdate->enforce_birthdate($this);
//-- end: Prime Birthdate ---------------------------------------------------//
			}
		}

		return;
	}

	/**
	* More advanced language substitution
	* Function to mimic sprintf() with the possibility of using phpBB's language system to substitute nullar/singular/plural forms.
	* Params are the language key and the parameters to be substituted.
	* This function/functionality is inspired by SHS` and Ashe.
	*
	* Example call: <samp>$user->lang('NUM_POSTS_IN_QUEUE', 1);</samp>
	*/
	function lang()
	{
		$args = func_get_args();
		$key = $args[0];

		if (is_array($key))
		{
			$lang = &$this->lang[array_shift($key)];

			foreach ($key as $_key)
			{
				$lang = &$lang[$_key];
			}
		}
		else
		{
			$lang = &$this->lang[$key];
		}

		// Return if language string does not exist
		if (!isset($lang) || (!is_string($lang) && !is_array($lang)))
		{
			return $key;
		}

		// If the language entry is a string, we simply mimic sprintf() behaviour
		if (is_string($lang))
		{
			if (sizeof($args) == 1)
			{
				return $lang;
			}

			// Replace key with language entry and simply pass along...
			$args[0] = $lang;
			return call_user_func_array('sprintf', $args);
		}

		// It is an array... now handle different nullar/singular/plural forms
		$key_found = false;

		// We now get the first number passed and will select the key based upon this number
		for ($i = 1, $num_args = sizeof($args); $i < $num_args; $i++)
		{
			if (is_int($args[$i]))
			{
				$numbers = array_keys($lang);

				foreach ($numbers as $num)
				{
					if ($num > $args[$i])
					{
						break;
					}

					$key_found = $num;
				}
			}
		}

		// Ok, let's check if the key was found, else use the last entry (because it is mostly the plural form)
		if ($key_found === false)
		{
			$numbers = array_keys($lang);
			$key_found = end($numbers);
		}

		// Use the language string we determined and pass it to sprintf()
		$args[0] = $lang[$key_found];
		return call_user_func_array('sprintf', $args);
	}

	/**
	* Add Language Items - use_db and use_help are assigned where needed (only use them to force inclusion)
	*
	* @param mixed $lang_set specifies the language entries to include
	* @param bool $use_db internal variable for recursion, do not use
	* @param bool $use_help internal variable for recursion, do not use
	*
	* Examples:
	* <code>
	* $lang_set = array('posting', 'help' => 'faq');
	* $lang_set = array('posting', 'viewtopic', 'help' => array('bbcode', 'faq'))
	* $lang_set = array(array('posting', 'viewtopic'), 'help' => array('bbcode', 'faq'))
	* $lang_set = 'posting'
	* $lang_set = array('help' => 'faq', 'db' => array('help:faq', 'posting'))
	* </code>
	*/
	function add_lang($lang_set, $use_db = false, $use_help = false)
	{
		global $phpEx;

		if (is_array($lang_set))
		{
			foreach ($lang_set as $key => $lang_file)
			{
				// Please do not delete this line.
				// We have to force the type here, else [array] language inclusion will not work
				$key = (string) $key;

				if ($key == 'db')
				{
					$this->add_lang($lang_file, true, $use_help);
				}
				else if ($key == 'help')
				{
					$this->add_lang($lang_file, $use_db, true);
				}
				else if (!is_array($lang_file))
				{
					$this->set_lang($this->lang, $this->help, $lang_file, $use_db, $use_help);
				}
				else
				{
					$this->add_lang($lang_file, $use_db, $use_help);
				}
			}
			unset($lang_set);
		}
		else if ($lang_set)
		{
			$this->set_lang($this->lang, $this->help, $lang_set, $use_db, $use_help);
		}
	}

	/**
	* Set language entry (called by add_lang)
	* @access private
	*/
	function set_lang(&$lang, &$help, $lang_file, $use_db = false, $use_help = false)
	{
		global $phpEx;

		// Make sure the language name is set (if the user setup did not happen it is not set)
		if (!$this->lang_name)
		{
			global $config;
			$this->lang_name = basename($config['default_lang']);
		}

		// $lang == $this->lang
		// $help == $this->help
		// - add appropriate variables here, name them as they are used within the language file...
		if (!$use_db)
		{
			if ($use_help && strpos($lang_file, '/') !== false)
			{
				$language_filename = $this->lang_path . $this->lang_name . '/' . substr($lang_file, 0, stripos($lang_file, '/') + 1) . 'help_' . substr($lang_file, stripos($lang_file, '/') + 1) . '.' . $phpEx;
			}
			else
			{
				$language_filename = $this->lang_path . $this->lang_name . '/' . (($use_help) ? 'help_' : '') . $lang_file . '.' . $phpEx;
			}

			if (!file_exists($language_filename))
			{
				global $config;

				if ($this->lang_name == 'en')
				{
					// The user's selected language is missing the file, the board default's language is missing the file, and the file doesn't exist in /en.
					$language_filename = str_replace($this->lang_path . 'en', $this->lang_path . $this->data['user_lang'], $language_filename);
					trigger_error('Language file ' . $language_filename . ' couldn\'t be opened.', E_USER_ERROR);
				}
				else if ($this->lang_name == basename($config['default_lang']))
				{
					// Fall back to the English Language
					$this->lang_name = 'en';
					$this->set_lang($lang, $help, $lang_file, $use_db, $use_help);
				}
				else if ($this->lang_name == $this->data['user_lang'])
				{
					// Fall back to the board default language
					$this->lang_name = basename($config['default_lang']);
					$this->set_lang($lang, $help, $lang_file, $use_db, $use_help);
				}

				// Reset the lang name
				$this->lang_name = (file_exists($this->lang_path . $this->data['user_lang'] . "/common.$phpEx")) ? $this->data['user_lang'] : basename($config['default_lang']);
				return;
			}

			// Do not suppress error if in DEBUG_EXTRA mode
			$include_result = (defined('DEBUG_EXTRA')) ? (include $language_filename) : (@include $language_filename);

			if ($include_result === false)
			{
				trigger_error('Language file ' . $language_filename . ' couldn\'t be opened.', E_USER_ERROR);
			}
		}
		else if ($use_db)
		{
			// Get Database Language Strings
			// Put them into $lang if nothing is prefixed, put them into $help if help: is prefixed
			// For example: help:faq, posting
		}
	}
/**
       * Format user date for the Upcoming Birthday Mod
       */
       function format_dateucb($date, $format = false)
       {

          $lang_dates = $this->lang['datetime'];
          $format = (!$format) ? $this->date_format : $format;

          // Short representation of month in format
          if ((strpos($format, '\M') === false && strpos($format, 'M') !== false) || (strpos($format, '\r') === false && strpos($format, 'r') !== false))
          {
             $lang_dates['May'] = $lang_dates['May_short'];
          }

          unset($lang_dates['May_short']);


          return strtr(@date(str_replace('|', '', $format), $date), $lang_dates);
       }
	/**
	* Format user date
	*
	* @param int $gmepoch unix timestamp
	* @param string $format date format in date() notation. | used to indicate relative dates, for example |d m Y|, h:i is translated to Today, h:i.
	* @param bool $forcedate force non-relative date format.
	*
	* @return mixed translated date
	*/
	function format_date($gmepoch, $format = false, $forcedate = false)
	{
		static $midnight;
		static $date_cache;

		$format = (!$format) ? $this->date_format : $format;
		$now = time();
		$delta = $now - $gmepoch;

		if (!isset($date_cache[$format]))
		{
			// Is the user requesting a friendly date format (i.e. 'Today 12:42')?
			$date_cache[$format] = array(
				'is_short'		=> strpos($format, '|'),
				'format_short'	=> substr($format, 0, strpos($format, '|')) . '||' . substr(strrchr($format, '|'), 1),
				'format_long'	=> str_replace('|', '', $format),
				'lang'			=> $this->lang['datetime'],
			);

			// Short representation of month in format? Some languages use different terms for the long and short format of May
			if ((strpos($format, '\M') === false && strpos($format, 'M') !== false) || (strpos($format, '\r') === false && strpos($format, 'r') !== false))
			{
				$date_cache[$format]['lang']['May'] = $this->lang['datetime']['May_short'];
			}
		}

		// Zone offset
		$zone_offset = $this->timezone + $this->dst;

		// Show date <= 1 hour ago as 'xx min ago'
		// A small tolerence is given for times in the future but in the same minute are displayed as '< than a minute ago'
		if ($delta <= 3600 && ($delta >= -5 || (($now / 60) % 60) == (($gmepoch / 60) % 60)) && $date_cache[$format]['is_short'] !== false && !$forcedate && isset($this->lang['datetime']['AGO']))
		{
			return $this->lang(array('datetime', 'AGO'), max(0, (int) floor($delta / 60)));
		}

		if (!$midnight)
		{
			list($d, $m, $y) = explode(' ', gmdate('j n Y', time() + $zone_offset));
			$midnight = gmmktime(0, 0, 0, $m, $d, $y) - $zone_offset;
		}

		if ($date_cache[$format]['is_short'] !== false && !$forcedate && !($gmepoch < $midnight - 86400 || $gmepoch > $midnight + 172800))
		{
			$day = false;

			if ($gmepoch > $midnight + 86400)
			{
				$day = 'TOMORROW';
			}
			else if ($gmepoch > $midnight)
			{
				$day = 'TODAY';
			}
			else if ($gmepoch > $midnight - 86400)
			{
				$day = 'YESTERDAY';
			}

			if ($day !== false)
			{
				return str_replace('||', $this->lang['datetime'][$day], strtr(@gmdate($date_cache[$format]['format_short'], $gmepoch + $zone_offset), $date_cache[$format]['lang']));
			}
		}

		return strtr(@gmdate($date_cache[$format]['format_long'], $gmepoch + $zone_offset), $date_cache[$format]['lang']);
	}

	/**
	* Get language id currently used by the user
	*/
	function get_iso_lang_id()
	{
		global $config, $db;

		if (!empty($this->lang_id))
		{
			return $this->lang_id;
		}

		if (!$this->lang_name)
		{
			$this->lang_name = $config['default_lang'];
		}

		$sql = 'SELECT lang_id
			FROM ' . LANG_TABLE . "
			WHERE lang_iso = '" . $db->sql_escape($this->lang_name) . "'";
		$result = $db->sql_query($sql);
		$this->lang_id = (int) $db->sql_fetchfield('lang_id');
		$db->sql_freeresult($result);

		return $this->lang_id;
	}

	/**
	* Get users profile fields
	*/
	function get_profile_fields($user_id)
	{
		global $db;

		if (isset($this->profile_fields))
		{
			return;
		}

		$sql = 'SELECT *
			FROM ' . PROFILE_FIELDS_DATA_TABLE . "
			WHERE user_id = $user_id";
		$result = $db->sql_query_limit($sql, 1);
		$this->profile_fields = (!($row = $db->sql_fetchrow($result))) ? array() : $row;
		$db->sql_freeresult($result);
	}

	/**
	* Specify/Get image
	* $suffix is no longer used - we know it. ;) It is there for backward compatibility.
	*/
	function img($img, $alt = '', $width = false, $suffix = '', $type = 'full_tag')
	{
		static $imgs;
		global $phpbb_root_path;

		$img_data = &$imgs[$img];

		if (empty($img_data))
		{
			if (!isset($this->img_array[$img]))
			{
				// Do not fill the image to let designers decide what to do if the image is empty
				$img_data = '';
				return $img_data;
			}

			// Use URL if told so
			$root_path = (defined('PHPBB_USE_BOARD_URL_PATH') && PHPBB_USE_BOARD_URL_PATH) ? generate_board_url() . '/' : $phpbb_root_path;

			$img_data['src'] = $root_path . 'styles/' . rawurlencode($this->theme['imageset_path']) . '/imageset/' . ($this->img_array[$img]['image_lang'] ? $this->img_array[$img]['image_lang'] .'/' : '') . $this->img_array[$img]['image_filename'];
			$img_data['width'] = $this->img_array[$img]['image_width'];
			$img_data['height'] = $this->img_array[$img]['image_height'];
		}

		$alt = (!empty($this->lang[$alt])) ? $this->lang[$alt] : $alt;

		switch ($type)
		{
			case 'src':
				return $img_data['src'];
			break;

			case 'width':
				return ($width === false) ? $img_data['width'] : $width;
			break;

			case 'height':
				return $img_data['height'];
			break;

			default:
				$use_width = ($width === false) ? $img_data['width'] : $width;

				return '<img src="' . $img_data['src'] . '"' . (($use_width) ? ' width="' . $use_width . '"' : '') . (($img_data['height']) ? ' height="' . $img_data['height'] . '"' : '') . ' alt="' . $alt . '" title="' . $alt . '" />';
			break;
		}
	}

	/**
	* Get option bit field from user options
	*/
	function optionget($key, $data = false)
	{
		if (!isset($this->keyvalues[$key]))
		{
			$var = ($data) ? $data : $this->data['user_options'];
			$this->keyvalues[$key] = ($var & 1 << $this->keyoptions[$key]) ? true : false;
		}

		return $this->keyvalues[$key];
	}

	/**
	* Set option bit field for user options
	*/
	function optionset($key, $value, $data = false)
	{
		$var = ($data) ? $data : $this->data['user_options'];

		if ($value && !($var & 1 << $this->keyoptions[$key]))
		{
			$var += 1 << $this->keyoptions[$key];
		}
		else if (!$value && ($var & 1 << $this->keyoptions[$key]))
		{
			$var -= 1 << $this->keyoptions[$key];
		}
		else
		{
			return ($data) ? $var : false;
		}

		if (!$data)
		{
			$this->data['user_options'] = $var;
			return true;
		}
		else
		{
			return $var;
		}
	}

	/**
	* Funtion to make the user leave the NEWLY_REGISTERED system group.
	* @access public
	*/
	function leave_newly_registered()
	{
		global $db;

		if (empty($this->data['user_new']))
		{
			return false;
		}

		if (!function_exists('remove_newly_registered'))
		{
			global $phpbb_root_path, $phpEx;

			include($phpbb_root_path . 'includes/functions_user.' . $phpEx);
		}
		if ($group = remove_newly_registered($this->data['user_id'], $this->data))
		{
			$this->data['group_id'] = $group;

		}
		$this->data['user_permissions'] = '';
		$this->data['user_new'] = 0;

		return true;
	}
}

?>
Thanks again :)
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Re: function.strtr - Cannot modify header

Post by ibelphegor »

Any idea? Please help.

Thanks
uzi
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Re: function.strtr - Cannot modify header

Post by ibelphegor »

Anyone? I Really need help here. Thanks
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Re: function.strtr - Cannot modify header

Post by ibelphegor »

Nobody can help me? :|
User avatar
AmigoJack
Registered User
Posts: 6108
Joined: Tue Jun 15, 2010 11:33 am
Location: ใ‚ฐใƒชใƒผใƒณ ใƒ’ใƒซ ใ‚พใƒผใƒณ
Contact:

Re: function.strtr - Cannot modify header

Post by AmigoJack »

Please also post the whole content of the file /language/xx/common.php where xx is the language that was used when the error occured.

Also ensure that the file /styles/xxx/template/message_body.html exists where xxx is the style/theme that was used when the error occured.
  • "The problem is probably not my English but you do not want to understand correctly. ... We will not come anybody anyway, nevertheless, it's best to shit this." Affin, 2018-11-20 โ†‘
  • "But this shit is not here for you. You can follow with your. Maybe the question, instead, was for you, who know, so you shoved us how you are." axe70, 2020-10-10 โ†‘
  • "My reaction is not to everyone, especially to you." Raptiye, 2021-02-28 โ†‘
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Re: function.strtr - Cannot modify header

Post by ibelphegor »

Thank you.

common.php

Code: Select all

<?php
/** 
*
* common [Hebrew]
*
* @package language
* @version $Id: $
* @copyright (c) 2007 phpBB Group 
* @author 2007-06-06 - phpBBHebrew Group - www.phpBB.co.il
* @license http://opensource.org/licenses/gpl-license.php GNU Public License 
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

if (empty($lang) || !is_array($lang))
{
	$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
//
// Some characters you may want to copy&paste: 
// โ€™ ยป โ€œ โ€ โ€ฆ
//

$lang = array_merge($lang, array(
	'TRANSLATION_INFO'	=> 'ืžื‘ื•ืกืก ืขืœ <a href="http://www.phpbb.co.il">phpBB.co.il - ืคื•ืจื•ืžื™ื ื‘ืขื‘ืจื™ืช</a>. ื›ืœ ื”ื–ื›ื•ื™ื•ืช ืฉืžื•ืจื•ืช &copy; 2008 - phpBBHeb Group.',
	'DIRECTION'			=> 'rtl',
	'DATE_FORMAT'		=> '|d M Y|',	// 01 Jan 2007 (with Relative days enabled)
	'USER_LANG'			=> 'he',

	'1_DAY'			=> 'ื™ื•ื ืื—ื“',
	'1_MONTH'		=> 'ื—ื•ื“ืฉ ืื—ื“',
	'1_YEAR'		=> 'ืฉื ื” ืื—ืช',
	'2_WEEKS'		=> 'ืฉื‘ื•ืขื™ื™ื',
	'3_MONTHS'		=> 'ืฉืœื•ืฉื” ื—ื•ื“ืฉื™ื',
	'6_MONTHS'		=> 'ื—ืฆื™ ืฉื ื”',
	'7_DAYS'		=> 'ืฉื‘ื•ืข',

	'ACCOUNT_ALREADY_ACTIVATED'		=> 'ื—ืฉื‘ื•ื ืš ื›ื‘ืจ ื”ื•ืคืขืœ.',
	'ACCOUNT_DEACTIVATED'			=> 'ื—ืฉื‘ื•ื ืš ื”ื•ืคืกืง ื™ื“ื ื™ืช ื•ื ื™ืชืŸ ืœื”ืคืขืœื” ืžื—ื“ืฉ ืขืœ-ื™ื“ื™ ืžื ื”ืœ ืจืืฉื™ ื‘ืœื‘ื“.',
	'ACCOUNT_NOT_ACTIVATED'			=> 'ื—ืฉื‘ื•ื ืš ืขื“ื™ื™ืŸ ืœื ื”ื•ืคืขืœ.',
	'ACP'							=> 'ืœื•ื— ื‘ืงืจื” ืœืžื ื”ืœ ื”ืจืืฉื™',
	'ACTIVE'						=> 'ืคืขื™ืœ',
	'ACTIVE_ERROR'					=> 'ืฉื ื”ืžืฉืชืžืฉ ืฉืฆื•ื™ื™ืŸ ืœื ืคืขื™ืœ ื›ืจื’ืข. ืื ืืชื” ื ืชืงืœ ื‘ื‘ืขื™ื•ืช ื‘ื”ืคืขืœืช ื—ืฉื‘ื•ื ืš, ืฆื•ืจ ืงืฉืจ ืขื ืžื ื”ืœ ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช.',
	'ADMINISTRATOR'					=> 'ืžื ื”ืœ ืจืืฉื™',
	'ADMINISTRATORS'				=> 'ืžื ื”ืœื™ื ืจืืฉื™ื™ื',
	'AGE'							=> 'ื’ื™ืœ',
	'AIM'							=> 'AIM',
	'ALLOWED'						=> 'ืžื•ืจืฉื”',
	'ALL_FILES'						=> 'ื›ืœ ื”ืงื‘ืฆื™ื',
	'ALL_FORUMS'					=> 'ื›ืœ ื”ืคื•ืจื•ืžื™ื',
	'ALL_MESSAGES'					=> 'ื›ืœ ื”ื”ื•ื“ืขื•ืช',
	'ALL_POSTS'						=> 'ื›ืœ ื”ื”ื•ื“ืขื•ืช',
	'ALL_TIMES'						=> 'ื›ืœ ื”ื–ืžื ื™ื ื”ื %1$s %2$s',
	'ALL_TOPICS'					=> 'ื›ืœ ื”ื ื•ืฉืื™ื',
	'AND'							=> 'ื•ื’ื',
	'ANNOUNCEMENT_TITLE_GUESTS'		=> 'ื”ื•ื“ืขืช ืื•ืจื—ื™ื',
	'ANNOUNCEMENT_TITLE'			=> 'ื”ื•ื“ืขืช ื—ื‘ืจื™ื',
	'ARE_WATCHING_FORUM'			=> 'ื ืจืฉืžืช ืœืงื‘ืœ ืขื™ื“ื›ื•ื ื™ื ืขืœ ื”ื•ื“ืขื•ืช ื—ื“ืฉื•ืช ื‘ืคื•ืจื•ื ื–ื”.',
	'ARE_WATCHING_TOPIC'			=> 'ื ืจืฉืžืช ืœืงื‘ืœ ืขื™ื“ื›ื•ื ื™ื ืขืœ ื”ื•ื“ืขื•ืช ื—ื“ืฉื•ืช ื‘ื ื•ืฉื ื–ื”.',
	'ASCENDING'						=> 'ืขื•ืœื”',
	'ATTACHMENTS'					=> 'ืงื‘ืฆื™ื ืžืฆื•ืคื™ื',
	'ATTACHED_IMAGE_NOT_IMAGE'		=> 'ืงื•ื‘ืฅ ื”ืชืžื•ื ื” ืืฉืจ ื ื™ืกื™ืช ืœืฆืจืฃ ืื™ื ื• ื—ื•ืงื™.',
	'AUTHOR'						=> 'ืžื—ื‘ืจ',
	'AUTH_NO_PROFILE_CREATED'		=> 'ื”ื™ืฆื™ืจื” ืฉืœ ืคืจื•ืคื™ืœ ืžืฉืชืžืฉ ืœื ื”ื™ื™ืชื” ืžื•ืฆืœื—ืช.',
	'AVATAR_DISALLOWED_EXTENSION'	=> 'ื”ืงื•ื‘ืฅ ืื™ื ื• ื ื™ืชืŸ ืœืชืฆื•ื’ื” ืžืคื ื™ ืฉื”ืกื™ื•ืžืช <strong>%s</strong> ืื™ื ื” ืžื•ืจืฉืช.',
	'AVATAR_EMPTY_REMOTE_DATA'		=> 'ื”ืกืžืœ ื”ืื™ืฉื™ ืฉืฆื•ื™ื™ืŸ ืื™ื ื• ื ื™ืชืŸ ืœื”ืขืœืื” ืžืคื ื™ ืฉื”ื ืชื•ื ื™ื ื”ืจื—ื•ืงื™ื ื ืจืื™ื ืœื ื—ื•ืงื™ื™ื ืื• ืคื’ื•ืžื™ื.',
	'AVATAR_EMPTY_FILEUPLOAD'		=> 'ืงื•ื‘ืฅ ื”ืกืžืœ ื”ืื™ืฉื™ ืฉื”ื•ืขืœื” ืจื™ืง.',
	'AVATAR_INVALID_FILENAME'		=> '%s ืื™ื ื• ืฉื ืงื•ื‘ืฅ ื—ื•ืงื™.',
	'AVATAR_NOT_UPLOADED'			=> 'ื”ืกืžืœ ื”ืื™ืฉื™ ืื™ื ื• ื ื™ืชืŸ ืœื”ืขืœืื”.',
	'AVATAR_NO_SIZE'				=> 'ืœื ื ื™ืชืŸ ืœืงื‘ื•ืข ืืช ื”ืจื•ื—ื‘ ืื• ื”ื’ื•ื‘ื” ืฉืœ ื”ืกืžืœ ื”ืื™ืฉื™ ื”ืžืงื•ืฉืจ. ื”ื–ืŸ ืื•ืชื ื™ื“ื ื™ืช.',
	'AVATAR_PARTIAL_UPLOAD'			=> 'ื”ืงื•ื‘ืฅ ืฉืฆื•ื™ื™ืŸ ื”ื•ืขืœื” ื—ืœืงื™ืช ื‘ืœื‘ื“.',
	'AVATAR_PHP_SIZE_NA'			=> 'ืงื•ื‘ืฅ ื”ืกืžืœ ื”ืื™ืฉื™ ื’ื“ื•ืœ ืžื“ื™.<br />ืœื ื ื™ืชืŸ ืœืงื‘ืœ ืืช ื’ื•ื“ืœ ื”ืงื•ื‘ืฅ ื”ืžื™ืจื‘ื™ ืืฉืจ ืžื•ื’ื“ืจ ื‘ php.ini.',
	'AVATAR_PHP_SIZE_OVERRUN'		=> 'ืงื•ื‘ืฅ ื”ืกืžืœ ื”ืื™ืฉื™ ื’ื“ื•ืœ ืžื“ื™. ื”ื’ื•ื“ืœ ืœื”ืขืœืื” ื”ืžื™ืจื‘ื™ ื”ืžื•ืจืฉื” ื”ื•ื %d MB.<br />ืฉื™ื ืœื‘ ืฉื”ื’ื•ื“ืœ ื ืงื‘ืข ื‘ php.ini ื•ืื™ื ื• ื ื™ืชืŸ ืœืฉื™ื ื•ื™.',
	'AVATAR_URL_INVALID'			=> 'ื”ื›ืชื•ื‘ืช ืฉืฆื™ื™ื ืช ืื™ื ื” ื—ื•ืงื™ืช.',
	'AVATAR_URL_NOT_FOUND'			=> 'ื”ืงื•ื‘ืฅ ืฉืฆื•ื™ื™ืŸ ืœื ื ืžืฆื.',
	'AVATAR_WRONG_FILESIZE'			=> 'ื”ืกืžืœ ื”ืื™ืฉื™ ื—ื™ื™ื‘ ืœื”ื™ื•ืช ื‘ื™ืŸ 0 ื• %1d %2s.',
	'AVATAR_WRONG_SIZE'				=> 'ื”ืกืžืœ ื”ืื™ืฉื™ ืฉื ืฉืœื— ื”ื•ื %5$d ืคื™ืงืกืœื™ื ื‘ืจื•ื—ื‘ ื• %6$d ืคื™ืงืกืœื™ื ื‘ื’ื•ื‘ื”. ื”ืกืžืœ ื”ืื™ืฉื™ ื—ื™ื™ื‘ ืœื”ื™ื•ืช ืœืคื—ื•ืช %1$d ืคื™ืงืกืœื™ื ื‘ืจื•ื—ื‘ ื• %2$d ืคื™ืงืกืœื™ื ื‘ื’ื•ื‘ื”, ืื‘ืœ ืœื ื™ื•ืชืจ ื’ื“ื•ืœ ืž %3$d ืคื™ืงืกืœื™ื ื‘ืจื•ื—ื‘ ื• %4$d ืคื™ืงืกืœื™ื ื‘ื’ื•ื‘ื”.',

	'BACK_TO_TOP'			=> 'ื—ื–ื•ืจ ืœืžืขืœื”',
	'BACK_TO_PREV'			=> 'ื—ื–ืจื” ืœืขืžื•ื“ ื”ืงื•ื“ื',
	'BAN_TRIGGERED_BY_EMAIL'=> 'ื—ืกื™ืžื” ื”ืชื‘ืฆืขื” ืขืœ ื›ืชื•ื‘ืช ื”ื“ื•ืืจ ื”ืืœืงื˜ืจื•ื ื™ ืฉืœืš.',
	'BAN_TRIGGERED_BY_IP'	=> 'ื—ืกื™ืžื” ื”ืชื‘ืฆืขื” ืขืœ ื›ืชื•ื‘ืช ื” IP ืฉืœืš.',
	'BAN_TRIGGERED_BY_USER'	=> 'ื—ืกื™ืžื” ื”ืชื‘ืฆืขื” ืขืœ ืฉื ื”ืžืฉืชืžืฉ ืฉืœืš.',
	'BBCODE_GUIDE'			=> 'BBCode ืžื“ืจื™ืš',
	'BCC'					=> 'ืขื•ืชืง ื—ืกื•ื™',
	'BIRTHDAYS'				=> 'ื™ืžื™ ื”ื•ืœื“ืช',
	'BIRTHDAYS_AHEAD'		=> 'ื—ื‘ืจื™ื ืืฉืจ ื—ื•ื’ื’ื™ื ื™ืžื™ ื”ื•ืœื“ืช ื‘- %d ื™ืžื™ื ื”ื‘ืื™ื',
	'BOARD_BAN_PERM'		=> 'ื ื—ืกืžืช <strong>ืœืฆืžื™ืชื•ืช</strong> ืžื”ืžืขืจื›ืช.<br /><br />ืฆื•ืจ ืงืฉืจ ืขื %2$sื”ืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช%3$s ืœืžื™ื“ืข ื ื•ืกืฃ.',
	'BOARD_BAN_REASON'		=> 'ื”ืกื™ื‘ื” ืฉื ื™ืชื ื” ืœื—ืกื™ืžื”: <strong>%s</strong>',
	'BOARD_BAN_TIME'		=> 'ื ื—ืกืžืช ืžื”ืžืขืจื›ืช ืขื“ <strong>%1$s</strong>.<br /><br />ืฆื•ืจ ืงืฉืจ ืขื %2$sื”ืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช%3$s ืœืžื™ื“ืข ื ื•ืกืฃ.',
	'BOARD_DISABLE'			=> 'ืกืœื™ื—ื” ืื‘ืœ ื”ืžืขืจื›ืช ื›ืจื’ืข ืœื ื–ืžื™ื ื”.',
	'BOARD_DISABLED'		=> 'ื”ืžืขืจื›ืช ื›ืจื’ืข ื›ื‘ื•ื™ื”.',
	'BOARD_UNAVAILABLE'		=> 'ืกืœื™ื—ื” ืื‘ืœ ื”ืžืขืจื›ืช ืœื ื–ืžื™ื ื” ื–ืžื ื™ืช, ืื ื ื ืกื• ืฉื•ื‘ ื‘ืขื•ื“ ืžืกืคืจ ื“ืงื•ืช.',
	'BROWSING_FORUM_GUEST'	=> 'ืžืฉืชืžืฉื™ื ื”ื’ื•ืœืฉื™ื ื‘ืคื•ืจื•ื ื–ื”: %1$s ื•ืื•ืจื— ืื—ื“',
	'BROWSING_FORUM_GUESTS'	=> 'ืžืฉืชืžืฉื™ื ื”ื’ื•ืœืฉื™ื ื‘ืคื•ืจื•ื ื–ื”: %1$s ื• %2$d ืื•ืจื—ื™ื',
	'BYTES'					=> 'Bytes',

	'CANCEL'				=> 'ื‘ื˜ืœ',
	'CHANGE'				=> 'ืฉื ื”',
	'CHANGE_FONT_SIZE'		=> 'ืฉื ื” ื’ื•ื“ืœ ื’ื•ืคืŸ',
	'CHANGING_PREFERENCES'	=> 'ืžืฉื ื” ื”ืขื“ืคื•ืช ืžืขืจื›ืช',
	'CHANGING_PROFILE'		=> 'ืžืฉื ื” ื”ื’ื“ืจื•ืช ืคืจื•ืคื™ืœ',
	'CLICK_VIEW_PRIVMSG'	=> '%sืขื‘ื•ืจ ืœืชื™ื‘ืช ื”ื“ื•ืืจ ื”ื ื›ื ืก%s',
	'COLLAPSE_VIEW'			=> 'ืชืฆื•ื’ืช ืงืจื™ืกื”',
	'CLOSE_WINDOW'			=> 'ืกื’ื•ืจ ื—ืœื•ืŸ',
	'COLOUR_SWATCH'			=> 'ืžืื’ืจ ืฆื‘ืขื™ื',
	'COMMA_SEPARATOR'		=> ', ',	// Used in pagination of ACP & prosilver, use localised comma if appropriate, eg: Ideographic or Arabic
	'CONFIRM'				=> 'ืื™ืฉื•ืจ',
	'CONFIRM_CODE'			=> 'ืงื•ื“ ืื™ืฉื•ืจ',
	'CONFIRM_CODE_EXPLAIN'	=> 'ื”ื–ืŸ ืืช ื”ืงื•ื“ ื‘ื“ื™ื•ืง ื›ืคื™ ืฉื”ื•ื ืžื•ืคื™ืข. ื›ืœ ื”ืื•ืชื™ื•ืช ื”ื ืื•ืชื™ื•ืช ื’ื“ื•ืœื•ืช, ืื™ืŸ ืืช ื”ืกืคืจื” ืืคืก.',
	'CONFIRM_CODE_WRONG'	=> 'ืงื•ื“ ื”ืื™ืฉื•ืจ ืฉื”ื–ื ืช ืฉื’ื•ื™.',
	'CONFIRM_OPERATION'		=> 'ื”ืื ืืชื” ื‘ื˜ื•ื— ืฉื‘ืจืฆื•ื ืš ืœื”ืžืฉื™ืš ื‘ืคืขื•ืœื” ืฉื‘ื—ืจืช?',
	'CONGRATULATIONS'		=> 'ืžื–ืœ ื˜ื•ื‘ ืœ',
	'CONNECTION_FAILED'		=> 'ื”ื”ืชื—ื‘ืจื•ืช ื ื›ืฉืœื”.',
	'CONNECTION_SUCCESS'	=> 'ื”ื”ืชื—ื‘ืจื•ืช ื”ืฆืœื™ื—ื”!',
	'COOKIES_DELETED'		=> 'ื›ืœ ืขื•ื’ื™ื•ืช ื”ืžืขืจื›ืช ื ืžื—ืงื• ื‘ื”ืฆืœื—ื”.',
	'CURRENT_TIME'			=> '%s', // phpBBHebrew Group:: Original english is 'It is currently %s', but in hebrew we don't really need to say "It is.. bla bla", just showing the date and time is enough.

	'DAY'					=> 'ื™ื•ื',
	'DAYS'					=> 'ื™ืžื™ื',
	'DELETE'				=> 'ืžื—ืง',
	'DELETE_ALL'			=> 'ืžื—ืง ื”ื›ืœ',
	'DELETE_COOKIES'		=> 'ืžื—ืง ืืช ื›ืœ ืขื•ื’ื™ื•ืช ื”ืžืขืจื›ืช',
	'DELETE_MARKED'			=> 'ืžื—ืง ืžืกื•ืžื ื™ื',
	'DELETE_POST'			=> 'ืžื—ืง ื”ื•ื“ืขื”',
	'DELIMITER'				=> 'ืชื•ื—ื',
	'DESCENDING'			=> 'ื™ื•ืจื“',
	'DISABLED'				=> 'ืžื›ื•ื‘ื”',
	'DISPLAY'				=> 'ื”ืฆื’',
	'DISPLAY_GUESTS'		=> 'ื”ืฆื’ ืื•ืจื—ื™ื',
	'DISPLAY_MESSAGES'		=> 'ื”ืฆื’ ื”ื•ื“ืขื•ืช ืงื•ื“ืžื•ืช',
	'DISPLAY_POSTS'			=> 'ื”ืฆื’ ื”ื•ื“ืขื•ืช ื”ื—ืœ ืžื”',
	'DISPLAY_TOPICS'		=> 'ื”ืฆื’ ื ื•ืฉืื™ื ืงื•ื“ืžื™ื',
	'DOWNLOADED'			=> 'ื”ื•ืจื“',
	'DOWNLOADING_FILE'		=> 'ืžื•ืจื™ื“ ืงื•ื‘ืฅ',
	'DOWNLOAD_COUNT'		=> 'ื”ื•ืจื“ ืคืขื ืื—ืช', // phpBBHebrew Group:: Original english is 'Downloade %d time', but in hebrew we don't really need "%d", just say "Downloade one time" and that is it.
	'DOWNLOAD_COUNTS'		=> 'ื”ื•ืจื“ %d ืคืขืžื™ื',
	'DOWNLOAD_COUNT_NONE'	=> 'ืขื“ื™ื™ืŸ ืœื ื”ื•ืจื“',
	'VIEWED_COUNT'			=> 'ื ืฆืคื” ืคืขื ืื—ืช', // phpBBHebrew Group:: Original english is 'Viewed %d time', but in hebrew we don't really need "%d", just say "Viewed one time" and that is it.
	'VIEWED_COUNTS'			=> 'ื ืฆืคื” %d ืคืขืžื™ื',
	'VIEWED_COUNT_NONE'		=> 'ืขื“ื™ื™ืŸ ืœื ื ืฆืคื”',
    
	'EDIT_POST'							=> 'ืขืจื•ืš ื”ื•ื“ืขื”',
	'EMAIL'								=> 'ื“ื•ืืจ ืืœืงื˜ืจื•ื ื™',
	'EMAIL_ADDRESS'						=> 'ื›ืชื•ื‘ืช ื“ื•ืืจ ืืœืงื˜ืจื•ื ื™',
	'EMAIL_SMTP_ERROR_RESPONSE'			=> 'ืฉื’ื™ืื” ื‘ืฉืœื™ื—ืช ื”ื“ื•ืืจ ื”ืืœืงื˜ืจื•ื ื™ ื‘<strong>ืฉื•ืจื” %1$s</strong>. ืชืฉื•ื‘ื”: %2$s.',
	'EMPTY_SUBJECT'						=> 'ืืชื” ื—ื™ื™ื‘ ืœืฆื™ื™ืŸ ื›ื•ืชืจืช ื‘ืขืช ืฉืœื™ื—ืช ื ื•ืฉื ื—ื“ืฉ.',
	'EMPTY_MESSAGE_SUBJECT'				=> 'ืืชื” ื—ื™ื™ื‘ ืœืฆื™ื™ืŸ ื›ื•ืชืจืช ื‘ืขืช ืฉืœื™ื—ืช ื”ื•ื“ืขื” ื—ื“ืฉื”.',
	'ENABLED'							=> 'ืžื•ืคืขืœ',
	'ENCLOSURE'							=> 'ืกื’ื•ืจ',
	'ERR_CHANGING_DIRECTORY'			=> 'ืœื ื ื™ืชืŸ ืœืฉื ื•ืช ืชื™ืงื™ื”.',
	'ERR_CONNECTING_SERVER'				=> 'ืฉื’ื™ืื” ื‘ื”ืชื—ื‘ืจื•ืช ืœืฉืจืช.',
	'ERR_JAB_AUTH'						=> 'ืœื ื ื™ืชืŸ ืœืืžืช ื‘ืฉืจืช Jabber.',
	'ERR_JAB_CONNECT'					=> 'ืœื ื ื™ืชืŸ ืœื”ืชื—ื‘ืจ ืœืฉืจืช Jabber.',
	'ERR_UNABLE_TO_LOGIN'				=> 'ืฉื ื”ืžืฉืชืžืฉ ืื• ื”ืกื™ืกืžื” ืฉืฆื•ื™ื™ื ื• ืœื ื ื›ื•ื ื™ื.',
	'ERR_WRONG_PATH_TO_PHPBB'			=> 'ื”ื ืชื™ื‘ ืฉืœ phpBBHeb3 ืฉืฆื•ื™ื™ืŸ ื ืจืื” ืœื ื—ื•ืงื™.',
	'EXPAND_VIEW'						=> 'ื”ืจื—ื‘ ืชืฆื•ื’ื”',
	'EXTENSION'							=> 'ืกื™ื•ืžืช',
	'EXTENSION_DISABLED_AFTER_POSTING'	=> 'ื”ืกื™ื•ืžืช <strong>%s</strong> ื”ื•ืคืกืงื” ื•ืื™ื ื” ื ื™ืชื ืช ื™ื•ืชืจ ืœืชืฆื•ื’ื”.',

	'AFFILIATE'              => 'ืžืคืช ืืชืจ',
    'AFFILIATE_EXPLAIN'           => 'ืžืคืช ืืชืจ',
	'FAQ'					=> 'ืฉืืœื•ืช ื ืคื•ืฆื•ืช',
	'FAQ_EXPLAIN'			=> 'ืฉืืœื•ืช ื ืคื•ืฆื•ืช',
	'FILENAME'				=> 'ืฉื ื”ืงื•ื‘ืฅ',
	'FILESIZE'				=> 'ื’ื•ื“ืœ ื”ืงื•ื‘ืฅ',
	'FILEDATE'				=> 'ืชืืจื™ืš ืงื•ื‘ืฅ',
	'FILE_COMMENT'			=> 'ื”ืขืจื” ืœืงื•ื‘ืฅ',
	'FILE_NOT_FOUND'		=> 'ื”ืงื•ื‘ืฅ ื”ืžื‘ื•ืงืฉ ืœื ื ืžืฆื.',
	'FIND_USERNAME'			=> 'ืžืฆื ืžืฉืชืžืฉ',
	'FOLDER'				=> 'ืชื™ืงื™ื”',
	'FORGOT_PASS'			=> 'ืฉื›ื—ืชื™ ืืช ืกื™ืกืžืชื™',
	'FORM_INVALID'                  => 'ื”ื˜ื•ืคืก ืฉื ืฉืœื— ืœื ืชืงื™ืŸ. ื ืกื” ืœืฉืœื•ื— ืฉื ื™ืช.',
	'FORUM'					=> 'ืคื•ืจื•ื',
	'FORUMS'				=> 'ืคื•ืจื•ืžื™ื',
	'FORUMS_MARKED'			=> 'ื›ืœ ื”ืคื•ืจื•ืžื™ื ืกื•ืžื ื• ื›ื ืงืจืื•.',
	'FORUM_CAT'				=> 'ืงื˜ื’ื•ืจื™ื•ืช ื”ืคื•ืจื•ื',
	'FORUM_INDEX'			=> 'ืคื•ืจื•ื ืจืืฉื™',
	'FORUM_LINK'			=> 'ืคื•ืจื•ื ืงื™ืฉื•ืจ',
	'FORUM_LOCATION'		=> 'ืžื™ืงื•ื ื”ืคื•ืจื•ื',
	'FORUM_LOCKED'			=> 'ืคื•ืจื•ื ื ืขื•ืœ',
	'FORUM_RULES'			=> 'ื—ื•ืงื™ ื”ืคื•ืจื•ื',
	'FORUM_RULES_LINK'		=> 'ืื ื ืœื—ืฅ ื›ืืŸ ืขืœ ืžื ืช ืœืฆืคื•ืช ื‘ื—ื•ืงื™ ื”ืคื•ืจื•ื',
	'FROM'					=> 'ืžืืช',
	'FSOCK_DISABLED'		=> 'ืœื ื ื™ืชืŸ ืœื”ืฉืœื™ื ืืช ื”ืคืขื•ืœื” ืžืคื ื™ ืฉื”ืคื•ื ืงืฆื™ื” <var>fsockopen</var> ื›ื‘ื•ื™ื” ืื• ื”ืฉืจืช ืฉื”ืชื‘ืงืฉ ืœื ื ืžืฆื.',

	'FTP_FSOCK_HOST'				=> 'ืฉืจืช FTP',
	'FTP_FSOCK_HOST_EXPLAIN'		=> 'ืฉืจืช ื” FTP ืืฉืจ ื‘ืฉื™ืžื•ืฉ ืœื”ืชื—ื‘ืจื•ืช ืœืืชืจ ืฉืœืš.',
	'FTP_FSOCK_PASSWORD'			=> 'ืกื™ืกืžื” ืœ FTP',
	'FTP_FSOCK_PASSWORD_EXPLAIN'	=> 'ืกื™ืกืžื” ืœืžืฉืชืžืฉ ื” FTP.',
	'FTP_FSOCK_PORT'				=> 'ื™ืฆื™ืื” ืœ FTP',
	'FTP_FSOCK_PORT_EXPLAIN'		=> 'ื™ืฆื™ืื” ื‘ืฉื™ืžื•ืฉ ืœื”ืชื—ื‘ืจื•ืช ืœืฉืจืช ืฉืœืš.',
	'FTP_FSOCK_ROOT_PATH'			=> 'ื ืชื™ื‘ ืœ phpBBHeb',
	'FTP_FSOCK_ROOT_PATH_EXPLAIN'	=> 'ื ืชื™ื‘ ืžื”ืชื™ืงื™ื” ื”ืจืืฉื™ืช ืœืžืขืจื›ืช phpBBHeb.',
	'FTP_FSOCK_TIMEOUT'				=> 'ื–ืžืŸ ื”ืคืกืงื” ืœ FTP',
	'FTP_FSOCK_TIMEOUT_EXPLAIN'		=> 'ื›ืžื•ืช ื”ื–ืžืŸ, ื‘ืฉื ื™ื•ืช, ืืฉืจ ื”ืžืขืจื›ืช ืชืžืชื™ืŸ ืœืชื’ื•ื‘ื” ืžื”ืฉืจืช ืฉืœืš.',
	'FTP_FSOCK_USERNAME'			=> 'ืฉื ืžืฉืชืžืฉ ืœ FTP',
	'FTP_FSOCK_USERNAME_EXPLAIN'	=> 'ืฉื ื”ืžืฉืชืžืฉ ืืฉืจ ื‘ืฉื™ืžื•ืฉ ืœื”ืชื—ื‘ืจื•ืช ืœืฉืจืช ืฉืœืš.',

	'FTP_HOST'					=> 'ืฉืจืช FTP',
	'FTP_HOST_EXPLAIN'			=> 'ืฉืจืช ื” FTP ืืฉืจ ื‘ืฉื™ืžื•ืฉ ืœื”ืชื—ื‘ืจื•ืช ืœืืชืจ ืฉืœืš.',
	'FTP_PASSWORD'				=> 'ืกื™ืกืžื” ืœ FTP',
	'FTP_PASSWORD_EXPLAIN'		=> 'ืกื™ืกืžื” ืœืžืฉืชืžืฉ ื” FTP.',
	'FTP_PORT'					=> 'ื™ืฆื™ืื” ืœ FTP',
	'FTP_PORT_EXPLAIN'			=> 'ื™ืฆื™ืื” ื‘ืฉื™ืžื•ืฉ ืœื”ืชื—ื‘ืจื•ืช ืœืฉืจืช ืฉืœืš.',
	'FTP_ROOT_PATH'				=> 'ื ืชื™ื‘ ืœ phpBBHeb',
	'FTP_ROOT_PATH_EXPLAIN'		=> 'ื ืชื™ื‘ ืžื”ืชื™ืงื™ื” ื”ืจืืฉื™ืช ืœืžืขืจื›ืช phpBBHeb.',
	'FTP_TIMEOUT'				=> 'ื–ืžืŸ ื”ืคืกืงื” ืœ FTP',
	'FTP_TIMEOUT_EXPLAIN'		=> 'ื›ืžื•ืช ื”ื–ืžืŸ, ื‘ืฉื ื™ื•ืช, ืืฉืจ ื”ืžืขืจื›ืช ืชืžืชื™ืŸ ืœืชื’ื•ื‘ื” ืžื”ืฉืจืช ืฉืœืš.',
	'FTP_USERNAME'				=> 'ืฉื ืžืฉืชืžืฉ ืœ FTP',
	'FTP_USERNAME_EXPLAIN'		=> 'ืฉื ื”ืžืฉืชืžืฉ ืืฉืจ ื‘ืฉื™ืžื•ืฉ ืœื”ืชื—ื‘ืจื•ืช ืœืฉืจืช ืฉืœืš.',

	'GENERAL_ERROR'				=> 'ืฉื’ื™ืื” ื›ืœืœื™ืช',
	'GO'						=> 'ืขื‘ื•ืจ',
	'GOTO_PAGE'					=> 'ืขื‘ื•ืจ ืœืขืžื•ื“',
	'GROUP'						=> 'ืงื‘ื•ืฆื”',
	'GROUPS'					=> 'ืงื‘ื•ืฆื•ืช',
	'GROUP_ERR_TYPE'			=> 'ืกื•ื’ ื”ืงื‘ื•ืฆื” ืฉืฆื•ื™ื™ืŸ ืœื ืžืชืื™ื.',
	'GROUP_ERR_USERNAME'		=> 'ืœื ืฆื•ื™ื™ืŸ ืฉื ื”ืงื‘ื•ืฆื”.',
	'GROUP_ERR_USER_LONG'		=> 'ืฉืžื•ืช ื”ืงื‘ื•ืฆื•ืช ืœื ื™ื›ื•ืœื•ืช ืœืขื‘ื•ืจ ืืช ืžื’ื‘ืœืช 60 ื”ืชื•ื•ื™ื. ืฉื ื”ืงื‘ื•ืฆื” ืฉืฆื•ื™ื™ืŸ ืืจื•ืš ืžื“ื™.',
	'GUEST'						=> 'ืื•ืจื—',
	'GUEST_USERS_ONLINE'		=> 'ื™ืฉื ื %d ืžืฉืชืžืฉื™ื ืื•ืจื—ื™ื ืžื—ื•ื‘ืจื™ื',
	'GUEST_USERS_TOTAL'			=> '%d ืื•ืจื—ื™ื',
	'GUEST_USERS_ZERO_ONLINE'	=> 'ืื™ืŸ ืžืฉืชืžืฉื™ื ืื•ืจื—ื™ื ืžื—ื•ื‘ืจื™ื',
	'GUEST_USERS_ZERO_TOTAL'	=> 'ืื™ืŸ ืื•ืจื—ื™ื',
	'GUEST_USER_ONLINE'			=> 'ื™ืฉ ืžืฉืชืžืฉ ืื•ืจื— ืื—ื“ ืžื—ื•ื‘ืจ',
	'GUEST_USER_TOTAL'			=> 'ืื•ืจื— ืื—ื“',
	'GUEST_VIEWS'				=> 'ืฆืคื™ืชื ื‘: %d ื“ืคื™ื. ืœื”ืžืฉืš ื’ืœื™ืฉื” ืื ื ื”ืจืฉืžื• (ื—ื™ื ื) ืื• ื”ืชื—ื‘ืจื•',
	'GUEST_TITLE'				=> 'ื“ืคื™ื ืœืคื ื™ ื”ืชื—ื‘ืจื•ืช',
	'GUEST_TITLE_EXPLAIN'		=> 'ืžืกืคืจ ื”ื“ืคื™ื ืืฉืจ ืื•ืจื—ื™ื ื™ื›ื•ืœื™ื ืœืจืื•ืช ืœืคื ื™ ื”ืฆื•ืจืš ื‘ื”ืจืฉืžื”\ื”ืชื—ื‘ืจื•ืช',
	'GUEST_SUCCESS'				=> 'ื”ื™ื ื›ื ื™ื›ื•ืœื™ื ื›ืขืช ืœื”ืžืฉื™ืš ืœื’ืœื•ืฉ ื‘ืงื”ื™ืœื”',
	'G_ADMINISTRATORS'			=> 'ืžื ื”ืœื™ื ืจืืฉื™ื™ื',
	'G_BOTS'					=> 'ืจื•ื‘ื•ื˜ื™ื',
	'G_GUESTS'					=> 'ืื•ืจื—ื™ื',
	'G_REGISTERED'				=> 'ืžืฉืชืžืฉื™ื ืจืฉื•ืžื™ื',
	'G_REGISTERED_COPPA'		=> 'ืžืฉืชืžืฉื™ COPPA ืจืฉื•ืžื™ื',
	'G_GLOBAL_MODERATORS'		=> 'ืžื ื”ืœื™ื ื’ืœื•ื‘ืืœื™ื',

	'HIDDEN_USERS_ONLINE'		=> '%d ืžืฉืชืžืฉื™ื ืžื•ืกืชืจื™ื ืžื—ื•ื‘ืจื™ื',
	'HIDDEN_USERS_TOTAL'		=> '%d ืžื•ืกืชืจื™ื ื•',
	'HIDDEN_USERS_ZERO_ONLINE'	=> 'ืื™ืŸ ืžืฉืชืžืฉื™ื ืžื•ืกืชืจื™ื ืžื—ื•ื‘ืจื™ื',
	'HIDDEN_USERS_ZERO_TOTAL'	=> 'ืื™ืŸ ืžื•ืกืชืจื™ื ื•',
	'HIDDEN_USER_ONLINE'		=> 'ืžืฉืชืžืฉ ืžืกื•ืชืจ ืื—ื“ ืžื—ื•ื‘ืจ',
	'HIDDEN_USER_TOTAL'			=> 'ืžื•ืกืชืจ ืื—ื“ ื•',
	'HIDE_GUESTS'				=> 'ื”ืกืชืจ ืื•ืจื—ื™ื',
	'HIDE_ME'					=> 'ื‘ื”ืชื—ื‘ืจื•ืช ื–ื• ืืœ ืชืืคืฉืจ ืœืžืฉืชืžืฉื™ื ืื—ืจื™ื ืœืจืื•ืช ืื ืื ื™ ืžื—ื•ื‘ืจ',
	'HOURS'						=> 'ืฉืขื•ืช',
	'HOME'						=> 'ืจืืฉื™',

	'ICQ'						=> 'ICQ',
	'ICQ_STATUS'				=> 'ICQ ืžืฆื‘',	
	'IF'						=> 'ืื',
	'IMAGE'						=> 'ืชืžื•ื ื”',
	'IMAGE_FILETYPE_INVALID'	=> 'ืกื•ื’ ืงื•ื‘ืฅ ื”ืชืžื•ื ื” %d ืœืกื•ื’ mime %s ืื™ื ื• ื ืชืžืš.',
	'IMAGE_FILETYPE_MISMATCH'	=> 'ืกื•ื’ ืงื•ื‘ืฅ ื”ืชืžื•ื ื” ืื™ื ื• ืžืชืื™ื: ื”ืกื™ื•ืžืช ื”ืฆืคื•ื™ื” ื”ื™ื %1$s ืื‘ืœ ื”ืกื™ื•ืžืช ืฉื”ืชืงื‘ืœื” ื”ื™ื %2$s.',
	'IN'						=> 'ื‘',
	'INDEX'						=> 'ืคื•ืจื˜ืœ',
	'HOME'                      => 'ืคื•ืจื˜ืœ',
	'INFORMATION'				=> 'ืžื™ื“ืข',
	'INTERESTS'					=> 'ืชื—ื•ืžื™ ืขื ื™ื™ืŸ',
	'INVALID_DIGEST_CHALLENGE'	=> 'ืืชื’ืจ ืชืงืฆื™ืจ ืฉื’ื•ื™.',
	'INVALID_EMAIL_LOG'			=> '<strong>%s</strong> ืืคืฉืจื™ ืœื”ื™ื•ืช ื›ืชื•ื‘ืช ื“ื•ืืจ ืืœืงื˜ืจื•ื ื™ ืœื ื—ื•ืงื™ืช?',
	'IP'						=> 'IP',
	'IP_BLACKLISTED'			=> 'ื” IPืฉืœืš %1$s ื ื—ืกื ืžืคื ื™ ืฉื”ื•ื ืจืฉื•ื ื‘ืจืฉื™ืžื” ื”ืฉื—ื•ืจื”. ืœืคืจื˜ื™ื ืจืื” <a href="%2$s">%2$s</a>.',

	'JABBER'				=> 'Jabber',
	'JOINED'				=> 'ื”ืฆื˜ืจืฃ',
	'JUMP_PAGE'				=> 'ื”ื›ื ืก ืืช ืžืกืคืจ ื”ืขืžื•ื“ ืฉืืœื™ื• ื‘ืจืฆื•ื ืš ืœืขื‘ื•ืจ',
	'JUMP_TO'				=> 'ืขื‘ื•ืจ ืœ',
	'JUMP_TO_PAGE'			=> 'ืœื—ืฅ ื›ืืŸ ื‘ื›ื“ื™ ืœืงืคื•ืฅ ืœืขืžื•ื“ ืื—ืจโ€ฆ',

	'KB'					=> 'KB',

	'LAST_POST'							=> 'ื”ื•ื“ืขื” ืื—ืจื•ื ื”',
	'LAST_UPDATED'						=> 'ืขื•ื“ื›ืŸ ืœืื—ืจื•ื ื”',
	'LAST_VISIT'						=> 'ื‘ื™ืงื•ืจ ืื—ืจื•ืŸ',
	'LDAP_NO_LDAP_EXTENSION'			=> 'ืกื™ื•ืžืช LDAP ืœื ื–ืžื™ื ื”.',
	'LDAP_NO_SERVER_CONNECTION'			=> 'ืœื ื ื™ืชืŸ ืœื”ืชื—ื‘ืจ ืœืฉืจืช LDAP.',
	'LEGEND'							=> 'ืžืงืจื',
	'LOCATION'							=> 'ืžื™ืงื•ื',
	'LOCK_POST'							=> 'ื ืขืœ ื ื•ืฉื',
	'LOCK_POST_EXPLAIN'					=> 'ืžื ืข ืืคืฉืจื•ืช ืขืจื™ื›ื”',
	'LOCK_TOPIC'						=> 'ื ืขืœ ื ื•ืฉื',
	'LOGIN'								=> 'ื”ืชื—ื‘ืจ',
	'LOGIN_CHECK_PM'					=> 'ื”ืชื—ื‘ืจ ื‘ื›ื“ื™ ืœื‘ื“ื•ืง ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช.',
	'LOGIN_CONFIRMATION'				=> 'ืื™ืฉื•ืจ ื”ืชื—ื‘ืจื•ืช',
	'LOGIN_CONFIRM_EXPLAIN'				=> 'ื›ื“ื™ ืœื”ืžื ืข ืžื—ืฉื‘ื•ื ื•ืช ืฉืœ ื’ื•ืจืžื™ื ืขื•ื™ื ื™ื, ื”ืžืขืจื›ืช ื“ื•ืจืฉืช ืžืžืš ืœื”ื–ื™ืŸ ืงื•ื“ ืื™ืฉื•ืจ ืœืื—ืจ ื›ืžื•ืช ืžื™ืจื‘ื™ืช ืฉืœ ื”ืชื—ื‘ืจื•ื™ื•ืช ืฉื ื›ืฉืœื•. ื”ืงื•ื“ ืžื•ืฆื’ ื‘ืชืžื•ื ื” ืืฉืจ ืืชื” ืจื•ืื” ืœื”ืœืŸ. ืื ืื™ื ืš ืžืฆืœื™ื— ืœืจืื•ืช ืืช ื”ืชืžื•ื ื” ืฆื•ืจ ืงืฉืจ ืขื %sื”ืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช%s.',
	'LOGIN_ERROR_ATTEMPTS'				=> 'ืขื‘ืจืช ืืช ื”ืžืกืคืจ ื”ืžื™ืจื‘ื™ ื”ืžื•ืชืจ ืฉืœ ื ืกื™ื•ื ื•ืช ื”ืชื—ื‘ืจื•ืช. ื‘ื ื•ืกืฃ ืœืฉื ื”ืžืฉืชืžืฉ ื•ื”ืกื™ืกืžื” ืฉืœืš ืืชื” ืฆืจื™ืš ืœื”ื–ื™ืŸ ื›ืขืช ืงื•ื“ ืื™ืฉื•ืจ ืžื”ืชืžื•ื ื” ืืฉืจ ืืชื” ืจื•ืื” ืœื”ืœืŸ.',
	'LOGIN_ERROR_EXTERNAL_AUTH_APACHE'	=> 'ืื™ื ืš ืื•ืžืชืช ืขืœ-ื™ื“ื™ Apache.',
	'LOGIN_ERROR_PASSWORD'				=> 'ืฆื™ื™ื ืช ืกื™ืกืžื” ืฉื’ื•ื™ื™ื”. ื‘ื“ื•ืง ืืช ืกื™ืกืžืชืš ื•ื ืกื” ืฉื ื™ืช. ืื ืืชื” ืžืžืฉื™ืš ืœื”ืชืงืœ ื‘ื‘ืขื™ื•ืช ืฆื•ืจ ืงืฉืจ ืขื %sื”ืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช%s.',
	'LOGIN_ERROR_PASSWORD_CONVERT'		=> 'ืœื ื”ื™ื” ื ื™ืชืŸ ืœื”ืžื™ืจ ืืช ืกื™ืกืžืชืš ื‘ืขืช ืขื“ื›ื•ืŸ ืžืขืจื›ืช ื–ื•. ืื ื %sื‘ืงืฉ ืกื™ืกืžื” ื—ื“ืฉื”%s. ืื ืืชื” ืžืžืฉื™ืš ืœื”ืชืงืœ ื‘ื‘ืขื™ื•ืช ืฆื•ืจ ืงืฉืจ ืขื %sื”ืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช%s.',
	'LOGIN_ERROR_USERNAME'				=> 'ืฆื™ื™ื ืช ืฉื ืžืฉืชืžืฉ ืฉื’ื•ื™. ื‘ื“ื•ืง ืืช ืฉื ื”ืžืฉืชืžืฉ ืฉืœืš ื•ื ืกื” ืฉื ื™ืช. ืื ืืชื” ืžืžืฉื™ืš ืœื”ืชืงืœ ื‘ื‘ืขื™ื•ืช ืฆื•ืจ ืงืฉืจ ืขื %sื”ืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช%s.',
	'LOGIN_FORUM'						=> 'ื›ื“ื™ ืœืฆืคื•ืช ืื• ืœืฉืœื•ื— ื‘ืคื•ืจื•ื ื–ื” ืืชื” ื—ื™ื™ื‘ ืœื”ื–ื™ืŸ ืืช ืกื™ืกืžืชื•.',
	'LOGIN_INFO'						=> 'ื›ื“ื™ ืœื”ืชื—ื‘ืจ ืืชื” ื—ื™ื™ื‘ ืœื”ื™ื•ืช ืจืฉื•ื. ื”ื”ืจืฉืžื” ืœื•ืงื—ืช ืžืกืคืจ ืฉื ื™ื•ืช ื•ืžืืคืฉืจืช ืœืš ื™ื›ื•ืœื•ืช ื’ื‘ื•ื”ื•ืช ื™ื•ืชืจ. ื”ืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช ื™ื›ื•ืœ ืœืชืช ื‘ื ื•ืกืฃ ื”ืจืฉืื•ืช ื ื•ืกืคื•ืช ืœืžืฉืชืžืฉื™ื ืจืฉื•ืžื™ื. ืœืคื ื™ ืฉืืชื” ืžืชื—ื‘ืจ ื•ื•ื“ื ืฉืืชื” ืžืกื›ื™ื ืขื ืชื ืื™ ื”ืฉื™ืžื•ืฉ ืฉืœื ื• ื•ื›ืœืœื™ ื”ืžื“ื™ื ื™ื•ืช. ืื ื ื•ื•ื“ื ืฉืงืจืืช ื›ืœ ื›ืœืœื™ ืคื•ืจื•ื ื‘ื–ืžืŸ ืฉืืชื” ื’ื•ืœืฉ ื‘ืžืขืจื›ืช.',
	'LOGIN_VIEWFORUM'					=> 'ื”ืžืขืจื›ืช ื“ื•ืจืฉืช ืžืžืš ืœื”ื™ื•ืช ืจืฉื•ื ื•ืžื—ื•ื‘ืจ ื›ื“ื™ ืœืจืื•ืช ืคื•ืจื•ื ื–ื”.',
	'LOGIN_EXPLAIN_EDIT'				=> 'ื›ื“ื™ ืœืขืจื•ืš ื”ื•ื“ืขื•ืช ื‘ืคื•ืจื•ื ื–ื” ืืชื” ื—ื™ื™ื‘ ืœื”ื™ื•ืช ืจืฉื•ื ื•ืžื—ื•ื‘ืจ.',
	'LOGIN_EXPLAIN_VIEWONLINE'			=> 'ื›ื“ื™ ืœืจืื•ืช ืืช ืจืฉื™ืžืช ื”ืžื—ื•ื‘ืจื™ื ืืชื” ื—ื™ื™ื‘ ืœื”ื™ื•ืช ืจืฉื•ื ื•ืžื—ื•ื‘ืจ.',
	'LOGOUT'							=> 'ื”ืชื ืชืง',
	'LOGOUT_USER'						=> '[ %s ] ื”ืชื ืชืง',
	'LOG_ME_IN'							=> 'ื—ื‘ืจ ืื•ืชื™ ืื•ื˜ื•ืžื˜ื™ืช ื‘ื›ืœ ืคืขื ืฉืื‘ืงืจ ืžืžื—ืฉื‘ ื–ื”',

	'MARK'					=> 'ืกืžืŸ',
	'MARK_ALL'				=> 'ืกืžืŸ ื”ื›ืœ',
	'MARK_FORUMS_READ'		=> 'ืกืžืŸ ืืช ื›ืœ ื”ื”ื•ื“ืขื•ืช ื‘ื›ืœ ื”ืคื•ืจื•ืžื™ื ื›ื”ื•ื“ืขื•ืช ืฉื ืงืจืื•',
	'MB'					=> 'MB',
	'MCP'					=> 'ืœื•ื— ื‘ืงืจื” ืœืžื ื”ืœ',
	'MEMBERLIST'			=> 'ืžืฉืชืžืฉื™ื',
	'MEMBERLIST_EXPLAIN'	=> 'ืฆืคื” ื‘ืจืฉื™ืžืช ื”ืžืฉืชืžืฉื™ื ื”ืžืœืื”',
	'MERGE'					=> 'ืžื™ื–ื•ื’',
	'MERGE_POSTS'			=> 'ืžื–ื’ ื”ื•ื“ืขื•ืช',
	'MERGE_TOPIC'			=> 'ืžื–ื’ ื ื•ืฉืื™ื',
	'MESSAGE'				=> 'ื”ื•ื“ืขื”',
	'MESSAGES'				=> 'ื”ื•ื“ืขื•ืช',
	'MESSAGE_BODY'			=> 'ื’ื•ืฃ ื”ื”ื•ื“ืขื”',
	'MINUTES'				=> 'ื“ืงื•ืช',
	'MODERATE'				=> 'ื ื”ืœ',
	'MODERATOR'				=> 'ืžื ื”ืœ',
	'MODERATORS'			=> 'ื”ืžื ื”ืœื™ื',
	'MONTH'					=> 'ื—ื•ื“ืฉ',
	'MOVE'					=> 'ื”ืขื‘ืจ',
	'MSNM'					=> 'MSNM/WLM',	

	'NA'						=> 'ืœื ื–ืžื™ืŸ',
	'NEWEST_USER'				=> 'ื”ืžืฉืชืžืฉ ื”ื—ื“ืฉ ื‘ื™ื•ืชืจ <strong>%s</strong>',
	'NEW_MESSAGE'				=> 'ื”ื•ื“ืขื” ื—ื“ืฉื”',
	'NEW_MESSAGES'				=> 'ื”ื•ื“ืขื•ืช ื—ื“ืฉื•ืช',
	'NEW_PM'					=> '<strong>%d</strong> ื”ื•ื“ืขื” ื—ื“ืฉื”',
	'NEW_PMS'					=> '<strong>%d</strong> ื”ื•ื“ืขื•ืช ื—ื“ืฉื•ืช',
	'NEW_POST'					=> 'ื”ื•ื“ืขื” ื—ื“ืฉื”',
	'NEW_POSTS'					=> 'ื™ืฉ ื”ื•ื“ืขื•ืช ื—ื“ืฉื•ืช',
	'NEXT'						=> 'ื”ื‘ื',		// Used in pagination
	'NEXT_STEP'					=> 'ื”ื‘ื',
	'NEVER'						=> 'ืœืขื•ืœื ืœื',
	'NO'						=> 'ืœื',
	'NOT_ALLOWED_MANAGE_GROUP'	=> 'ืื™ื ืš ืžื•ืจืฉื” ืœื ื”ืœ ืืช ื”ืงื‘ื•ืฆื” ื”ื–ื•.',
	'NOT_AUTHORISED'			=> 'ืื™ื ืš ืžื•ืจืฉื” ืœื”ื›ื ืก ืœืื™ื–ื•ืจ ื–ื”.',
	'NOT_WATCHING_FORUM'		=> 'ืื™ื ืš ืจืฉื•ื ื™ื•ืชืจ ืœืงื‘ืœืช ืขื™ื“ื›ื•ื ื™ื ืขื‘ื•ืจ ืคื•ืจื•ื ื–ื”.',
	'NOT_WATCHING_TOPIC'		=> 'ืื™ื ืš ืจืฉื•ื ื™ื•ืชืจ ืœืงื‘ืœืช ืขื™ื“ื›ื•ื ื™ื ืขื‘ื•ืจ ื ื•ืฉื ื–ื”.',
	'NOTIFY_ADMIN'				=> 'ืื ื ื”ื•ื“ืข ืœืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช ืื• ืœืžื ื”ืœ ื”ืืชืจ.',
	'NOTIFY_ADMIN_EMAIL'		=> 'ืื ื ื”ื•ื“ืข ืœืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช ืื• ืœืžื ื”ืœ ื”ืืชืจ: <a href="mailto:%1$s">%1$s</a>',
	'NO_ACCESS_ATTACHMENT'		=> 'ืื™ื ืš ืžื•ืจืฉื” ืœื’ืฉืช ืœืงื•ื‘ืฅ ื–ื”.',
	'NO_ACTION'					=> 'ืœื ืฆื•ื™ื™ื ื” ืคืขื•ืœื”.',
	'NO_ADMINISTRATORS'			=> 'ืœื ื ืงื‘ืขื• ืžื ื”ืœื™ื ืจืืฉื™ื™ื ื‘ืžืขืจื›ืช ื–ื•.',
	'NO_AUTH_ADMIN'				=> 'ื”ื’ื™ืฉื” ืœืœื•ื— ื”ื‘ืงืจื” ืœืžื ื”ืœ ื”ืจืืฉื™ ืื™ื ื” ืžื•ืจืฉืช ืžืคื ื™ ืฉืื™ืŸ ืœืš ืืช ื”ืจืฉืื•ืช ื”ื ื™ื”ื•ืœ ื”ืจืืฉื™.',
	'NO_AUTH_ADMIN_USER_DIFFER'	=> 'ืืชื” ืœื ื™ื›ื•ืœ ืœื”ืชืืžืช ืžื—ื“ืฉ ื‘ืชื•ืจ ืžืฉืชืžืฉ ืื—ืจ.',
	'NO_AUTH_OPERATION'			=> 'ืื™ืŸ ืœืš ืืช ื”ื”ืจืฉืื•ืช ื”ืžืชืื™ืžื•ืช ืœื”ืฉืœืžืช ืคืขื•ืœื” ื–ื•.',
	'NO_CONNECT_TO_SMTP_HOST'	=> 'ืœื ื ื™ืชืŸ ืœื”ืชื—ื‘ืจ ืœืฉืจืช smtp : %1$s : %2$s',
	'NO_BIRTHDAYS'				=> 'ืืฃ ืžืฉืชืžืฉ ืœื ื—ื•ื’ื’ ื™ื•ื ื”ื•ืœื“ืช ื”ื™ื•ื',
	'NO_EMAIL_MESSAGE'			=> 'ื”ื•ื“ืขืช ื”ื“ื•ืืจ ื”ืืœืงื˜ืจื•ื ื™ ืจื™ืงื”.',
	'NO_EMAIL_RESPONSE_CODE'	=> 'ืœื ื ื™ืชืŸ ืœืงื‘ืœ ืืช ืชืฉื•ื‘ืช ืฉืจืช ื”ื“ื•ืืจ.',
	'NO_EMAIL_SUBJECT'			=> 'ืœื ืฆื•ื™ื™ื ื” ื›ื•ืชืจืช ื”ื•ื“ืขืช ื”ื“ื•ืืจ ื”ืืœืงื˜ืจื•ื ื™.',
	'NO_FORUM'					=> 'ื”ืคื•ืจื•ื ืฉื‘ื—ืจืช ืœื ืงื™ื™ื.',
	'NO_FORUMS'					=> 'ื‘ืžืขืจื›ืช ื–ื• ืื™ืŸ ืคื•ืจื•ืžื™ื.',
	'NO_GROUP'					=> 'ืงื‘ื•ืฆืช ื”ืžืฉืชืžืฉื™ื ืฉื”ืชื‘ืงืฉื” ืื™ื ื” ืงื™ื™ืžืช.',
	'NO_GROUP_MEMBERS'			=> 'ืœืงื‘ื•ืฆื” ื–ื• ืื™ืŸ ื›ืจื’ืข ื—ื‘ืจื™ื.',
	'NO_IPS_DEFINED'			=> 'ืื™ืŸ ื›ืชื•ื‘ื•ืช IP ืื• ืฉืžื•ืช ืฉืจืชื™ื ืžื•ื’ื“ืจื™ื',
	'NO_MEMBERS'				=> 'ืœื ื ืžืฆืื• ืžืฉืชืžืฉื™ื ืœืืคืฉืจื•ืช ื—ื™ืคื•ืฉ ื–ื•.',
	'NO_MESSAGES'				=> 'ืื™ืŸ ื”ื•ื“ืขื•ืช',
	'NO_MODE'					=> 'ืื™ืŸ ืžืฆื‘ ืžืกื•ื™ื™ื.',
	'NO_MODERATORS'				=> 'ืœื ื ืงื‘ืขื• ืžื ื”ืœื™ื ื‘ืžืขืจื›ืช ื–ื•.',
	'NO_NEW_MESSAGES'			=> 'ืื™ืŸ ื”ื•ื“ืขื•ืช ื—ื“ืฉื•ืช',
	'NO_NEW_PM'					=> '<strong>0</strong> ื”ื•ื“ืขื•ืช ื—ื“ืฉื•ืช',
	'NO_NEW_POSTS'				=> 'ืื™ืŸ ื”ื•ื“ืขื•ืช ื—ื“ืฉื•ืช',
	'NO_ONLINE_USERS'			=> 'ืื™ืŸ ืžืฉืชืžืฉื™ื ืจืฉื•ืžื™ื',
	'NO_POSTS'					=> 'ืื™ืŸ ื”ื•ื“ืขื•ืช',
	'NO_POSTS_TIME_FRAME'		=> 'ืื™ืŸ ื”ื•ื“ืขื•ืช ืงื™ื™ืžื•ืช ื‘ื ื•ืฉื ื–ื” ืœืžืกื’ืจืช ื”ื–ืžืŸ ืฉื ื‘ื—ืจื”.',
	'NO_SUBJECT'				=> 'ืœื ืฆื•ื™ื™ื ื” ื›ื•ืชืจืช', // Used for posts having no subject defined but displayed within management pages.
	'NO_SUCH_SEARCH_MODULE'		=> 'ืฉื™ื˜ืช ื”ื—ื™ืคื•ืฉ ืฉืฆื•ื™ื™ื ื” ืื™ื ื” ืงื™ื™ืžืช.',
	'NO_SUPPORTED_AUTH_METHODS'	=> 'ืื™ืŸ ืฉื™ื˜ื•ืช ืื™ืžื•ืช ื ืชืžื›ื•ืช.',
	'NO_TOPIC'					=> 'ื”ื ื•ืฉื ื”ืžื‘ื•ืงืฉ ืœื ืงื™ื™ื.',
	'NO_TOPIC_FORUM'                        => 'ื”ื ื•ืฉื ืื• ื”ืคื•ืจื•ื ืœื ืงื™ื™ืžื™ื ื™ื•ืชืจ.',
	'NO_TOPICS'					=> 'ืื™ืŸ ื ื•ืฉืื™ื ืื• ื”ื•ื“ืขื•ืช ื‘ืคื•ืจื•ื ื–ื”.',
	'NO_TOPICS_TIME_FRAME'		=> 'ืื™ืŸ ื ื•ืฉืื™ื ืงื™ื™ืžื™ื ื‘ืคื•ืจื•ื ื–ื” ืœืžืกื’ืจืช ื”ื–ืžืŸ ืฉื ื‘ื—ืจื”.',
	'NO_UNREAD_PM'				=> '<strong>0</strong> ื”ื•ื“ืขื•ืช ืฉืœื ื ืงืจืื•',
	'NO_UPLOAD_FORM_FOUND'		=> 'ื”ื”ืขืœืื” ื”ื•ืชื—ืœื” ืื‘ืœ ืœื ื ืžืฆื ื˜ื•ืคืก ื”ืขืœืืช ืงื•ื‘ืฅ ื—ื•ืงื™.',
	'NO_USER'					=> 'ื”ืžืฉืชืžืฉ ื”ืžื‘ื•ืงืฉ ืœื ื ืžืฆื.',
	'NO_USERS'					=> 'ื”ืžืฉืชืžืฉื™ื ื”ืžื‘ื•ืงืฉื™ื ืœื ื ืžืฆืื•.',
	'NO_USER_SPECIFIED'			=> 'ืœื ืฆื•ื™ื™ืŸ ืฉื ืžืฉืชืžืฉ.',

	'OCCUPATION'				=> 'ืžืงืฆื•ืข',
	'OFFLINE'					=> 'ืžื ื•ืชืง',
	'ONLINE'					=> 'ืžื—ื•ื‘ืจ',
	'ONLINE_BUDDIES'			=> 'ื—ื‘ืจื™ื ืžื—ื•ื‘ืจื™ื',
	'ONLINE_USERS_TOTAL'		=> 'ื‘ืกืš ื”ื›ืœ ื™ืฉ <strong>%d</strong> ืžืฉืชืžืฉื™ื ืžื—ื•ื‘ืจื™ื :: ',
	'ONLINE_USERS_ZERO_TOTAL'	=> 'ืื™ืŸ ืžืฉืชืžืฉื™ื ืžื—ื•ื‘ืจื™ื :: ',
	'ONLINE_USER_TOTAL'			=> 'ื›ืจื’ืข ืžื—ื•ื‘ืจ ืจืง <strong>ืžืฉืชืžืฉ ืื—ื“</strong> :: ',
	'OPTIONS'					=> 'ืืคืฉืจื•ื™ื•ืช',
	'PAGES'					=> 'ื“ืคื™ื',

	'PAGE_OF'				=> 'ืขืžื•ื“ <strong>%1$d</strong> ืžืชื•ืš <strong>%2$d</strong>',
	'PASSWORD'				=> 'ืกื™ืกืžื”',
	'PLAY_QUICKTIME_FILE'	=> 'Quicktime ื ื’ืŸ ืงื•ื‘ืฅ',
	'PM'					=> 'ื”ื•ื“ืขื” ืคืจื˜ื™ืช',
	'POSTING_MESSAGE'		=> 'ืžืคืจืกื ื”ื•ื“ืขื” ื‘%s',
	'POSTING_PRIVATE_MESSAGE'	=> 'ื›ื•ืชื‘ ื”ื•ื“ืขื” ืคืจื˜ื™ืช',
	'POST'					=> 'ื”ื•ื“ืขื”',
	'POST_ANNOUNCEMENT'		=> 'ื”ื›ืจื–ื”',
	'POST_STICKY'			=> 'ื“ื‘ื™ืง',
	'POSTED'				=> 'ืคื•ืจืกื',
	'POSTED_IN_FORUM'		=> 'ื‘',
	'POSTED_ON_DATE'		=> 'ื‘',
	'POSTS'					=> 'ื”ื•ื“ืขื•ืช',
	'POSTS_UNAPPROVED'		=> 'ืœืคื—ื•ืช ื”ื•ื“ืขื” ืื—ืช ื‘ื ื•ืฉื ื–ื” ืœื ืื•ืฉืจื”.',
	'POST_BY_AUTHOR'		=> 'ืขืœ ื™ื“ื™',
	'POST_BY_FOE'			=> 'ืฉื ืžืฆื ื‘ืจืฉื™ืžืช ื”ื ื•ื“ื ื™ืงื™ื ืฉืœืš <strong>%1$s</strong> ื”ื•ื“ืขื” ื–ื• ื ืฉืœื—ื” ืขืœ ื™ื“ื™. %2$sื”ืฆื’ ืืช ื”ื”ื•ื“ืขื•ืช ื‘ื›ืœ ืžืงืจื”%3$s.',
	'POST_DAY'				=> '%.2f ื”ื•ื“ืขื•ืช ืœื™ื•ื',
	'POST_DETAILS'			=> 'ืคืจื˜ื™ ื”ื”ื•ื“ืขื”',
	'POST_NEW_TOPIC'		=> 'ืคืจืกื ื ื•ืฉื ื—ื“ืฉ',
	'POST_PCT'				=> '%.2f%% ืžื›ืœ ื”ื”ื•ื“ืขื•ืช',
	'POST_PCT_ACTIVE'		=> '%.2f%% ืžื”ื”ื•ื“ืขื•ืช ืฉืœ ื”ืžืฉืชืžืฉ',
	'POST_PCT_ACTIVE_OWN'	=> '%.2f%% ืžื”ื”ื•ื“ืขื•ืช ืฉืœืš',
	'POST_REPLY'			=> 'ืคืจืกื ืชื’ื•ื‘ื”',
	//-- mod : Evil Quick Reply ------------------------------------------------------------
//-- add
	'QUICK_REPLY'			=> 'ืชื’ื•ื‘ื” ืžื”ื™ืจื”',
//-- fin mod : Evil Quick Reply --------------------------------------------------------
	'POST_REPORTED'			=> 'ืœื—ืฅ ืขืœ ืžื ืช ืœืฆืคื•ืช ื‘ื“ื™ื•ื•ื—',
	'POST_SUBJECT'			=> 'ื ื•ืฉื ื”ื”ื•ื“ืขื”',
	'POST_TIME'				=> 'ื–ืžืŸ ื”ื”ื•ื“ืขื”',
	'POST_TOPIC'			=> 'ืคืจืกื ื ื•ืฉื ื—ื“ืฉ',
	'POST_UNAPPROVED'		=> 'ื”ื•ื“ืขื” ื–ื• ืžื—ื›ื” ืœืื™ืฉื•ืจ',
	'PREVIEW'				=> 'ืชืฆื•ื’ื” ืžืงื“ื™ืžื”',
	'PREVIOUS'				=> 'ื”ืงื•ื“ื',		// Used in pagination
	'PREVIOUS_STEP'			=> 'ื”ืงื•ื“ื',
	'PRIVACY'				=> 'ืžื“ื™ื ื™ื•ืช ื”ืคืจื˜ื™ื•ืช',
	'PRIVATE_MESSAGE'		=> 'ื”ื•ื“ืขื” ืคืจื˜ื™ืช',
	'PRIVATE_MESSAGES'		=> 'ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช',
	'PRIVATE_MESSAGING'		=> 'ื”ืชื›ืชื‘ื•ืช ืคืจื˜ื™ืช',
	'PROFILE'				=> 'ืœื•ื— ื‘ืงืจื” ืœืžืฉืชืžืฉ',

	'READING_FORUM'				=> 'ืฆื•ืคื” ื‘ื ื•ืฉืื™ื ื‘%s',
	'READING_GLOBAL_ANNOUNCE'	=> 'ืงื•ืจื ื”ื›ืจื–ื” ื’ืœื•ื‘ืืœื™ืช',
	'READING_LINK'				=> 'ืขื•ื‘ืจ ื‘ืงื™ืฉื•ืจ ืœืคื•ืจื•ื %s',
	'READING_TOPIC'				=> 'ืงื•ืจื ื ื•ืฉื ื‘%s',
	'READING_TOPIC_TOPIC'		=> 'ืงื•ืจื ื ื•ืฉื %2$s ื‘- %1$s',
	'READ_PROFILE'				=> 'ืคืจื•ืคื™ืœ ืื™ืฉื™',
	'REASON'					=> 'ืกื™ื‘ื”',
	'RECORD_ONLINE_USERS'		=> 'ืžืกืคืจ ื”ื’ื•ืœืฉื™ื ื”ืจื‘ ื‘ื™ื•ืชืจ ืื™-ืคืขื ื”ื•ื <strong>%1$s</strong> ื‘ %2$s',
	'REDIRECT'					=> 'ื”ืขื‘ืจื”',
	'REDIRECTS'					=> 'ืกืš ื”ื›ืœ ื”ืขื‘ืจื•ืช',
	'REGISTER'					=> 'ื”ืจืฉืžื”',
	'REGISTERED_USERS'			=> 'ืžืฉืชืžืฉื™ื ืจืฉื•ืžื™ื:',
	'REG_USERS_ONLINE'			=> 'ื™ืฉื ื %d ืžืฉืชืžืฉื™ื ืจืฉื•ืžื™ื ื•',
	'REG_USERS_TOTAL'			=> '%d ืจืฉื•ืžื™ื, ',
	'REG_USERS_ZERO_ONLINE'		=> 'ืื™ืŸ ืžืฉืชืžืฉื™ื ืจืฉื•ืžื™ื ื•',
	'REG_USERS_ZERO_TOTAL'		=> 'ืื™ืŸ ืจืฉื•ืžื™ื, ',
	'REG_USER_ONLINE'			=> 'ื™ืฉ ืžืฉืชืžืฉ ืื—ื“ ืจืฉื•ื ื•',
	'REG_USER_TOTAL'			=> 'ืื—ื“ ืจืฉื•ื, ',
	'REMOVE'					=> 'ื”ืกืจ',
	'REMOVE_INSTALL'			=> 'ืื ื ืžื—ืง, ื”ืขื‘ืจ ืื• ืฉื ื” ืืช ืฉื ื”ืชื™ืงื™ื” install ืœืคื ื™ ืฉืืชื” ืžืฉืชืžืฉ ื‘ืžืขืจื›ืช. ืื ื”ืชื™ืงื™ื” ืขื“ื™ื™ืŸ ืงื™ื™ืžืช, ืœื•ื— ื”ื‘ืงืจื” ืœืžื ื”ืœ ื”ืจืืฉื™ ื‘ืœื‘ื“ ื™ื”ื™ื” ื ื’ื™ืฉ.',
	'REPLIES'					=> 'ืชื’ื•ื‘ื•ืช',
	'REPLY_WITH_QUOTE'			=> 'ื”ื’ื‘ ืขื ืฆื™ื˜ื•ื˜',
	'REPLYING_GLOBAL_ANNOUNCE'	=> 'ืžื’ื™ื‘ ืœื”ื›ืจื–ื” ื’ืœื•ื‘ืืœื™ืช',
	'REPLYING_MESSAGE'			=> 'ืžื’ื™ื‘ ืœื”ื•ื“ืขื” ื‘%s',
	'REPLYING_MESSAGE_TOPIC'	=> 'ืžื’ื™ื‘ ื‘ื ื•ืฉื %2$s ื‘ืชื•ืš %1$s',
	'REPORT_BY'					=> 'ื“ื•ื•ื— ืขืœ ื™ื“ื™',
	'REPORT_POST'				=> 'ื“ื•ื•ื— ืขืœ ื”ื•ื“ืขื” ื–ื•',
	'REPORTING_POST'			=> 'ืžื“ื•ื•ื— ืขืœ ื”ื•ื“ืขื”',
	'RESEND_ACTIVATION'			=> 'ืฉืœื— ืžื—ื“ืฉ ื”ืคืขืœื” ืœื“ื•ืืจ ืืœืงื˜ืจื•ื ื™',
	'RESET'						=> 'ืื™ืคื•ืก ื˜ื•ืคืก',
	'RESTORE_PERMISSIONS'		=> 'ืฉื—ื–ืจ ื”ืจืฉืื•ืช',
	'RETURN_INDEX'				=> '%sื—ื–ื•ืจ ืœืขืžื•ื“ ื”ืจืืฉื™%s',
	'RETURN_FORUM'				=> '%sื—ื–ื•ืจ ืœืคื•ืจื•ื ื‘ื• ื‘ื™ืงืจืช ืœืื—ืจื•ื ื”%s',
	'RETURN_PAGE'				=> '%sื—ื–ื•ืจ ืœืขืžื•ื“ ื”ืงื•ื“ื%s',
	'RETURN_TOPIC'				=> '%sื—ื–ื•ืจ ืœื ื•ืฉื ืฉื‘ื• ืฆืคื™ืช%s',
	'RETURN_TO'					=> 'ื—ื–ื•ืจ ืืœ',
	'RULES_ATTACH_CAN'			=> 'ืืชื” <strong>ื™ื›ื•ืœ</strong> ืœืฆืจืฃ ืงื‘ืฆื™ื ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_ATTACH_CANNOT'		=> 'ืืชื” <strong>ืœื ื™ื›ื•ืœ</strong> ืœืฆืจืฃ ืงื‘ืฆื™ื ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_DELETE_CAN'			=> 'ืืชื” <strong>ื™ื›ื•ืœ</strong> ืœืžื—ื•ืง ืืช ื”ื•ื“ืขื•ืชื™ืš ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_DELETE_CANNOT'		=> 'ืืชื” <strong>ืœื ื™ื›ื•ืœ</strong> ืœืžื—ื•ืง ืืช ื”ื•ื“ืขื•ืชื™ืš ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_DOWNLOAD_CAN'		=> 'ืืชื” <strong>ื™ื›ื•ืœ</strong> ืœื”ื•ืจื™ื“ ืงื‘ืฆื™ื ืฉืฆื•ืจืคื• ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_DOWNLOAD_CANNOT'		=> 'ืืชื” <strong>ืœื ื™ื›ื•ืœ</strong> ืœื”ื•ืจื™ื“ ืงื‘ืฆื™ื ืฉืฆื•ืจืคื• ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_EDIT_CAN'			=> 'ืืชื” <strong>ื™ื›ื•ืœ</strong> ืœืขืจื•ืš ืืช ื”ื”ื•ื“ืขื•ืช ืฉืœืš ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_EDIT_CANNOT'			=> 'ืืชื” <strong>ืœื ื™ื›ื•ืœ</strong> ืœืขืจื•ืš ืืช ื”ื”ื•ื“ืขื•ืช ืฉืœืš ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_LOCK_CAN'			=> 'ืืชื” <strong>ื™ื›ื•ืœ</strong> ืœื ืขื•ืœ ืืช ื”ื”ื•ื“ืขื•ืช ืฉืœืš ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_LOCK_CANNOT'			=> 'ืืชื” <strong>ืœื ื™ื›ื•ืœ</strong> ืœื ืขื•ืœ ืืช ื”ื”ื•ื“ืขื•ืช ืฉืœืš ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_POST_CAN'			=> 'ืืชื” <strong>ื™ื›ื•ืœ</strong> ืœื›ืชื•ื‘ ื ื•ืฉืื™ื ื—ื“ืฉื™ื ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_POST_CANNOT'			=> 'ืืชื” <strong>ืœื ื™ื›ื•ืœ</strong> ืœื›ืชื•ื‘ ื ื•ืฉืื™ื ื—ื“ืฉื™ื ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_REPLY_CAN'			=> 'ืืชื” <strong>ื™ื›ื•ืœ</strong> ืœื”ื’ื™ื‘ ืœื ื•ืฉืื™ื ืงื™ื™ืžื™ื ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_REPLY_CANNOT'		=> 'ืืชื” <strong>ืœื ื™ื›ื•ืœ</strong> ืœื”ื’ื™ื‘ ืœื ื•ืฉืื™ื ืงื™ื™ืžื™ื ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_VOTE_CAN'			=> 'ืืชื” <strong>ื™ื›ื•ืœ</strong> ืœื”ืฆื‘ื™ืข ื‘ืกืงืจื™ื ื‘ืคื•ืจื•ื ื–ื”',
	'RULES_VOTE_CANNOT'			=> 'ืืชื” <strong>ืœื ื™ื›ื•ืœ</strong> ืœื”ืฆื‘ื™ืข ื‘ืกืงืจื™ื ื‘ืคื•ืจื•ื ื–ื”',

	'SEARCH'					=> 'ื—ื™ืคื•ืฉ',
	'SEARCH_MINI'				=> 'ื—ื™ืคื•ืฉโ€ฆ',
	'SEARCH_ADV'				=> 'ื—ื™ืคื•ืฉ ืžืชืงื“ื',
	'SEARCH_ADV_EXPLAIN'		=> 'ืฆืคื” ื‘ืืคืฉืจื•ื™ื•ืช ื”ื—ื™ืคื•ืฉ ื”ืžืชืงื“ื',
	'SEARCH_KEYWORDS'			=> 'ื—ื™ืคื•ืฉ ืžื™ืœื•ืช ืžืคืชื—',
	'SEARCHING_FORUMS'			=> 'ืžื—ืคืฉ ื‘ืคื•ืจื•ืžื™ื',
	'SEARCH_ACTIVE_TOPICS'		=> 'ื”ืฆื’ ื ื•ืฉืื™ื ืคืขื™ืœื™ื',
	'SEARCH_FOR'				=> 'ื—ืคืฉ',
	'SEARCH_FORUM'				=> 'ื—ืคืฉ ื‘ืคื•ืจื•ื ื”ื–ื”โ€ฆ',	
	'SEARCH_NEW'				=> 'ื”ืฆื’ ื”ื•ื“ืขื•ืช ื—ื“ืฉื•ืช',
	'SEARCH_POSTS_BY'			=> 'ื—ืคืฉ ื”ื•ื“ืขื•ืช ืฉื ื›ืชื‘ื• ืข"ื™',
	'SEARCH_SELF'				=> 'ื”ืฆื’ ืืช ื”ื•ื“ืขื•ืชื™ืš',
	'SEARCH_UNREAD'				=> 'ื”ืฆื’ ื”ื•ื“ืขื•ืช ืฉืœื ื ืงืจืื•',
	// MOD : MSSTI RSS Feeds (V1.0.9) - Start
	'YOUR_POSTS'				=> 'ื”ืชื’ื•ื‘ื•ืช ืฉืœืš',
	'RSS_FEEDS'					=> 'RSS Feeds',
	'RSS_NEWS'					=> 'ื—ื“ืฉื•ืช',
// MOD : MSSTI RSS Feeds (V1.0.9) - End

	'SEARCH_TOPIC'				=> 'ื—ืคืฉ ื‘ืชื•ืš ื”ื ื•ืฉื ื”ื–ื”โ€ฆ',
	'SEARCH_UNANSWERED'			=> 'ื”ืฆื’ ื ื•ืฉืื™ื ืœืœื ืชื’ื•ื‘ื•ืช',
	'SECONDS'					=> 'ืฉื ื™ื•ืช',
	'SELECT'					=> 'ื‘ื—ืจ',
	'SELECT_ALL_CODE'			=> 'ื‘ื—ืจ ื”ื›ืœ',
	'SELECT_DESTINATION_FORUM'	=> 'ืื ื ื‘ื—ืจ ืคื•ืจื•ื ื™ืขื“',
	'SELECT_FORUM'				=> 'ื‘ื—ืจ ืคื•ืจื•ื',
	'SEND_EMAIL'				=> 'ื“ื•ืืจ ืืœืงื˜ืจื•ื ื™',
	'SEND_EMAIL_USER'         => 'ื“ื•ืืจ ืืœืงื˜ืจื•ื ื™', 
	'SEND_PRIVATE_MESSAGE'		=> 'ืฉืœื— ื”ื•ื“ืขื” ืคืจื˜ื™ืช',
	'SETTINGS'					=> 'ื”ื’ื“ืจื•ืช',
	// Mod_Share_On by JesusADS
	'SHARE_ON_FACEBOOK'	=> 'ืฉืชืฃ ื‘ืคื™ื™ืกื‘ื•ืง',
	'SHARE_ON_TWITTER'	=> 'ืฉืชืฃ ื‘ื˜ื•ื•ื™ื˜ืจ',
	'SHARE_ON_ORKUT'	=> 'ืฉืชืฃ ื‘ืื•ืจืงื•ื˜',
	// Mod_Share_On
	'SIGNATURE'					=> 'ื—ืชื™ืžื”',
	'SKIP'						=> 'ื“ืœื’ ืœืชื•ื›ืŸ',
	'SMTP_NO_AUTH_SUPPORT'		=> 'ืฉืจืช ื” SMTP ืื™ื ื• ืชื•ืžืš ื‘ืื™ืžื•ืช.',
	'SORRY_AUTH_READ'			=> 'ืื™ื ืš ืžื•ืจืฉื” ืœืงืจื•ื ื‘ืคื•ืจื•ื ื–ื”.',
	'SORRY_AUTH_VIEW_ATTACH'	=> 'ืื™ื ืš ืžื•ืจืฉื” ืœื”ื•ืจื™ื“ ืงื•ื‘ืฅ ืžืฆื•ืจืฃ ื–ื”.',
	'SORT_BY'					=> 'ืžื™ื™ืŸ ืœืคื™',
	'SORT_JOINED'				=> 'ืชืืจื™ืš ื”ืฆื˜ืจืคื•ืช',
	'SORT_LOCATION'				=> 'ืžื™ืงื•ื',
	'SORT_RANK'					=> 'ื“ืจื’ื”',
	'SORT_TOPIC_TITLE'			=> 'ื›ื•ืชืจืช ื”ื ื•ืฉื',
	'SORT_USERNAME'				=> 'ืฉื ืžืฉืชืžืฉ',
	'SPLIT_TOPIC'				=> 'ืคืฆืœ ื ื•ืฉื',
	'SQL_ERROR_OCCURRED'		=> 'ืฉื’ื™ืืช SQL ื”ืชืจื—ืฉื” ื‘ืขืช ื˜ืขื™ื ืช ืขืžื•ื“ ื–ื”. ืฆื•ืจ ืงืฉืจ ืขื %sื”ืžื ื”ืœ ื”ืจืืฉื™ ืฉืœ ื”ืžืขืจื›ืช%s ืื ื”ื‘ืขื™ื” ืžืžืฉื™ื›ื”.',
	'STATISTICS'				=> 'ืกื˜ื˜ื™ืกื˜ื™ืงื•ืช',
	'START_WATCHING_FORUM'		=> 'ื”ืจืฉื ืœืงื‘ืœืช ืขื“ื›ื•ื ื™ื ืžืคื•ืจื•ื ื–ื”',
	'START_WATCHING_TOPIC'		=> 'ื”ืจืฉื ืœืงื‘ืœืช ืขื“ื›ื•ื ื™ื ืžื ื•ืฉื ื–ื”',
	'STOP_WATCHING_FORUM'		=> 'ื‘ื˜ืœ ื”ืจืฉืžืชืš ืžืคื•ืจื•ื ื–ื”',
	'STOP_WATCHING_TOPIC'		=> 'ื‘ื˜ืœ ื”ืจืฉืžืชืš ืžื ื•ืฉื ื–ื”',
	'SUBFORUM'					=> 'ืชืช ืคื•ืจื•ื',
	'SUBFORUMS'					=> 'ืชืช ืคื•ืจื•ืžื™ื',
	'SUBJECT'					=> 'ื ื•ืฉื',
	'SUBMIT'					=> 'ืฉืœื—',

	'TERMS_USE'			=> 'ืชื ืื™ ืฉื™ืžื•ืฉ',
	'TEST_CONNECTION'	=> 'ื‘ื“ื•ืง ื—ื™ื‘ื•ืจ',
	// th23 start - error pages
	'TH23_ERROR_400_TITLE' => 'Error 400 - Bad Request',
	'TH23_ERROR_400_BAD_REQUEST' => 'The request contains bad syntax or cannot be fulfilled.',
	'TH23_ERROR_401_TITLE' => 'Error 401 - Unauthorized',
	'TH23_ERROR_401_UNAUTHORIZED' => 'The request requires user authentication. Authentication has failed or not yet been provided.',
	'TH23_ERROR_403_TITLE' => 'Error 403 - Forbidden',
	'TH23_ERROR_403_FORBIDDEN' => 'The request was a legal request and understood by the server, but the server is refusing to respond to it.',
	'TH23_ERROR_404_TITLE' => 'ืฉื’ื™ืื” 404 - ื“ืฃ\ืงื•ื‘ืฅ ืœื ื ืžืฆื',
	'TH23_ERROR_404_NOT_FOUND' => 'ื”ืฉืจืช ืœื ืžืฆื ืืช ื”ื“ืฃ\ืงื•ื‘ืฅ ื”ืžื‘ื•ืงืฉ <br ><a href="http://www.tukinfo.com"> ื—ื–ื•ืจ ืœื“ืฃ ืจืืฉื™</a>',
	'TH23_ERROR_500_TITLE' => 'Error 500 - Internal Server Error',
	'TH23_ERROR_500_INT_SERVER' => 'The server encountered an unexpected condition which prevented it from fulfilling the request.',
	'TH23_ERROR_UNKNOWN_TITLE' => 'Error - Unknown',
	'TH23_ERROR_UNKNOWN' => 'An unknown error occurred.<br />Direct access to this file is not allowed.',
	// th23 end - error pages

	'THE_TEAM'			=> 'ื”ืฆื•ื•ืช',
	'TIME'				=> 'ื–ืžืŸ',

	'TOO_LONG_AIM'					=> 'ืฉื ื”ืžืกืš ืฉื”ื–ื ืš ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_CONFIRM_CODE'			=> 'ืงื•ื“ ื”ืื™ืฉื•ืจ ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_DATEFORMAT'			=> 'ืชื‘ื ื™ืช ื”ืชืืจื™ืš ืฉื”ื–ื ืช ืืจื•ื›ื” ืžื“ื™.',
	'TOO_LONG_ICQ'					=> 'ืžืกืคืจ ื” ICQ ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_INTERESTS'			=> 'ืชื—ื•ืžื™ ื”ืขื ื™ื™ืŸ ืฉื”ื–ื ืช ืืจื•ื›ื™ื ืžื™ื“ื™.',
	'TOO_LONG_JABBER'				=> 'ืฉื ื—ืฉื‘ื•ืŸ ื” Jabber ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_LOCATION'				=> 'ื”ืžื™ืงื•ื ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_MSN'					=> 'ืฉื ื” MSNM/WLM name ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_NEW_PASSWORD'			=> 'ื”ืกื™ืกืžื” ืฉื”ื–ื ืช ืืจื•ื›ื” ืžื™ื“ื™.',
	'TOO_LONG_OCCUPATION'			=> 'ื”ืขื™ืกื•ืง ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_PASSWORD_CONFIRM'		=> 'ืกื™ืกืžื”ืช ื”ืื™ืฉื•ืจ ืฉื”ื–ื ืช ืืจื•ื›ื” ืžื™ื“ื™.',
	'TOO_LONG_USER_PASSWORD'		=> 'ื”ืกื™ืกืžื” ืฉื”ื–ื ืช ืืจื•ื›ื” ืžื™ื“ื™.',
	'TOO_LONG_USERNAME'				=> 'ืฉื ื”ืžืฉืชืžืฉ ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_EMAIL'				=> 'ื›ืชื•ื‘ืช ื”ื“ื•ืืจ ื”ืืœืงื˜ืจื•ื ื™ ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_EMAIL_CONFIRM'		=> 'ืื™ืฉื•ืจ ื›ืชื•ื‘ืช ื”ื“ื•ืืจ ื”ืืœืงื˜ืจื•ื ื™ ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_WEBSITE'				=> 'ื›ืชื•ื‘ืช ืืชืจ ื”ื‘ื™ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_LONG_YIM'					=> 'ืฉื ื” Yahoo! Messenger ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',

	'TOO_MANY_VOTE_OPTIONS'			=> 'ื ื™ืกืช ืœื”ืฆื‘ื™ืข ืœื™ื•ืชืจ ืžื™ื“ื™ ืืคืฉืจื•ื™ื•ืช.',

	'TOO_SHORT_AIM'					=> 'ืฉื ื”ืชืฆื•ื’ื” ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',
	'TOO_SHORT_CONFIRM_CODE'		=> 'ืงื•ื“ ื”ืื™ืฉื•ืจ ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',
	'TOO_SHORT_DATEFORMAT'			=> 'ืชื‘ื ื™ืช ื”ืชืืจื™ืš ืฉื”ื–ื ืช ืงืฆืจื” ืžื“ื™.',
	'TOO_SHORT_ICQ'					=> 'ืžืกืคืจ ื” ICQ ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',
	'TOO_SHORT_INTERESTS'			=> 'ืชื—ื•ืžื™ ื”ืขื ื™ื™ืŸ ืฉื”ื–ื ืช ืงืฆืจื™ื ืžื™ื“ื™.',
	'TOO_SHORT_JABBER'				=> 'ืฉื ื—ืฉื‘ื•ืŸ ื” Jabber ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',
	'TOO_SHORT_LOCATION'			=> 'ื”ืžื™ืงื•ื ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',
	'TOO_SHORT_MSN'					=> 'ืฉื ื” MSNM/WLM ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',
	'TOO_SHORT_NEW_PASSWORD'		=> 'ื”ืกื™ืกืžื” ืฉื”ื–ื ืช ืงืฆืจื” ืžื™ื“ื™.',
	'TOO_SHORT_OCCUPATION'			=> 'ื”ืขื™ืกื•ืง ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',
	'TOO_SHORT_PASSWORD_CONFIRM'	=> 'ืกื™ืกืžื”ืช ื”ืื™ืฉื•ืจ ืฉื”ื–ื ืช ืงืฆืจื” ืžื™ื“ื™.',
	'TOO_SHORT_USER_PASSWORD'		=> 'ื”ืกื™ืกืžื” ืฉื”ื–ื ืช ืงืฆืจื” ืžื™ื“ื™.',
	'TOO_SHORT_USERNAME'			=> 'ืฉื ื”ืžืฉืชืžืฉ ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',
	'TOO_SHORT_EMAIL'				=> 'ื›ืชื•ื‘ืช ื”ื“ื•ืืจ ื”ืืœืงื˜ืจื•ื ื™ ืฉื”ื–ื ืช ืืจื•ื›ื” ืžื™ื“ื™.',
	'TOO_SHORT_EMAIL_CONFIRM'		=> 'ืื™ืฉื•ืจ ื›ืชื•ื‘ืช ื”ื“ื•ืืจ ื”ืืœืงื˜ืจื•ื ื™ ืฉื”ื–ื ืช ืืจื•ืš ืžื™ื“ื™.',
	'TOO_SHORT_WEBSITE'				=> 'ื›ืชื•ื‘ืช ืืชืจ ื”ื‘ื™ืช ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',
	'TOO_SHORT_YIM'					=> 'ืฉื ื” Yahoo! Messenger ืฉื”ื–ื ืช ืงืฆืจ ืžื™ื“ื™.',

	'TOPIC'				=> 'ื ื•ืฉื',
	'TOPICS'			=> 'ื ื•ืฉืื™ื',
	'TOPIC_ICON'		=> 'ืื™ื™ืงื•ืŸ ืœื ื•ืฉื',
	'TOPIC_LOCKED'		=> 'ื ื•ืฉื ื–ื” ื ืขื•ืœ, ืื™ื ืš ื™ื›ื•ืœ ืœืขืจื•ืš ื”ื•ื“ืขื•ืช ืื• ืœื‘ืฆืข ืชื’ื•ื‘ื•ืช ืขืชื™ื“ื™ื•ืช.',
	'TOPIC_LOCKED_SHORT'=> 'ื ื•ืฉื ื ืขื•ืœ',
	'TOPIC_MOVED'		=> 'ื ื•ืฉื ื”ื•ืขื‘ืจ',
	'TOPIC_REVIEW'		=> 'ืชืงืฆื™ืจ ื”ื ื•ืฉื',
	'TOPIC_TITLE'		=> 'ื›ื•ืชืจืช ื”ื ื•ืฉื',
	'TOPIC_UNAPPROVED'	=> 'ื ื•ืฉื ื–ื” ืœื ืื•ืฉืจ',
	'TOTAL_ATTACHMENTS'	=> 'ืงื‘ืฆื™ื ืžืฆื•ืจืคื™ื',
	'TOTAL_LOG'			=> 'ืคืขื•ืœื” ืื—ืช',
	'TOTAL_LOGS'		=> '%d ืคืขื•ืœื•ืช',
	'TOTAL_NO_PM'		=> '0 ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช ื‘ืกืš ื”ื›ืœ',
	'TOTAL_PM'			=> 'ื”ื•ื“ืขื” ืคืจื˜ื™ืช ืื—ืช ื‘ืกืš ื”ื›ืœ',
	'TOTAL_PMS'			=> '%d ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช ื‘ืกืš ื”ื›ืœ',
	'TOTAL_POSTS'		=> 'ื”ื•ื“ืขื•ืช ื‘ืกืš ื”ื›ืœ',
	'TOTAL_POSTS_OTHER'	=> '<strong>%d</strong> ื”ื•ื“ืขื•ืช ื‘ืกืš ื”ื›ืœ',
	'TOTAL_POSTS_ZERO'	=> '<strong>0</strong> ื ื•ืฉืื™ื ื‘ืกืš ื”ื›ืœ',
	'TOPIC_REPORTED'	=> 'ื ื•ืฉื ื–ื” ื“ื•ื•ื—',
	'TOTAL_TOPICS_OTHER'=> '<strong>%d</strong> ื ื•ืฉืื™ื ื‘ืกืš ื”ื›ืœ',
	'TOTAL_TOPICS_ZERO'	=> '<strong>0</strong> ื ื•ืฉืื™ื ื‘ืกืš ื”ื›ืœ',
	'TOTAL_USERS_OTHER'	=> '<strong>%d</strong> ืžืฉืชืžืฉื™ื ื‘ืกืš ื”ื›ืœ',
	'TOTAL_USERS_ZERO'	=> '<strong>0</strong> ืžืฉืชืžืฉื™ื ื‘ืกืš ื”ื›ืœ',
	'TRACKED_PHP_ERROR'	=> 'ืฉื’ื™ืื•ืช PHP ืžืขื•ืงื‘ื•ืช: %s',

	'UNABLE_GET_IMAGE_SIZE'	=> 'ืœื ื ื™ืชืŸ ืœืงื‘ื•ืข ืืช ืžื™ืžื“ื™ ื”ืชืžื•ื ื”.',
	'UNABLE_TO_DELIVER_FILE'=> 'ืœื ื ื™ืชืŸ ืœืžืกื•ืจ ืงื•ื‘ืฅ.',
	'UNKNOWN_BROWSER'		=> 'ื“ืคื“ืคืŸ ืœื ื™ื“ื•ืข',
	'UNMARK_ALL'			=> 'ื‘ื˜ืœ ืกื™ืžื•ืŸ',
	'UNREAD_MESSAGES'		=> 'ื”ื•ื“ืขื•ืช ืฉืœื ื ืงืจืื•',
	'UNREAD_PM'				=> '<strong>ื”ื•ื“ืขื” ืฉืœื ื ืงืจืื”</strong>',
	'UNREAD_PMS'			=> '<strong>%d</strong> ื”ื•ื“ืขื•ืช ืฉืœื ื ืงืจืื•',
	'UNWATCHED_FORUMS'		=> 'ืื™ื ืš ืจืฉื•ื ื™ื•ืชืจ ืœืขื“ื›ื•ื ื™ื ืœืคื•ืจื•ืžื™ื ืฉื ื‘ื—ืจื•.',
	'UNWATCHED_TOPICS'		=> 'ืื™ื ืš ืจืฉื•ื ื™ื•ืชืจ ืœืขื“ื›ื•ื ื™ื ืœื ื•ืฉืื™ื ืฉื ื‘ื—ืจื•.',
	'UNWATCHED_FORUMS_TOPICS'	=> 'ืื™ื ืš ืจืฉื•ื ื™ื•ืชืจ ืœืงื‘ืœืช ืขื“ื›ื•ื ื™ื ื‘ืคืจื™ื˜ื™ื ื”ื ื‘ื—ืจื™ื.',
	'UPDATE'				=> 'ืขื“ื›ืŸ',
	'UPLOAD_IN_PROGRESS'	=> 'ื”ื”ืขืœืื” ื›ืจื’ืข ื‘ื‘ื™ืฆื•ืข.',
	'URL_REDIRECT'			=> 'ืื ื”ื“ืคื“ืคืŸ ืฉืœืš ืื™ื ื• ืชื•ืžืš ื‘ื”ืคื ื™ื™ืช meta %sืœื—ืฅ ื›ืืŸ ื›ื“ื™ ืœืขื‘ื•ืจ%s.',
	'USERGROUPS'			=> 'ืงื‘ื•ืฆื•ืช',
	'USERNAME'				=> 'ืฉื ืžืฉืชืžืฉ',
	'USERNAMES'				=> 'ืฉืžื•ืช ืžืฉืชืžืฉื™ื',
	'USER_AVATAR'			=> 'ืกืžืœ ืื™ืฉื™ ืฉืœ ื”ืžืฉืชืžืฉ',
	'USER_CANNOT_READ'		=> 'ืื™ื ืš ื™ื›ื•ืœ ืœืงืจื•ื ื”ื•ื“ืขื•ืช ื‘ืคื•ืจื•ื ื–ื”.',
	'USER_POST'				=> 'ื”ื•ื“ืขื” ืื—ืช',
	'USER_POSTS'			=> '%d ื”ื•ื“ืขื•ืช',
	'USERS'					=> 'ืžืฉืชืžืฉื™ื',
	'USE_PERMISSIONS'		=> 'ื ืกื” ืืช ื”ืจืฉืื•ืช ื”ืžืฉืชืžืฉ',

	'VARIANT_DATE_SEPARATOR'	=> ' / ',	// Used in date format dropdown, eg: "Today, 13:37 / 01 Jan 2007, 13:37" ... to join a relative date with calendar date
	'VIEWED'					=> 'ื ืฆืคื”',
	'VIEWING_FAQ'				=> 'ืฆื•ืคื” ื‘ืฉืืœื•ืช ื ืคื•ืฆื•ืช',
	'VIEWING_MEMBERS'			=> 'ืฆื•ืคื” ื‘ืคืจื˜ื™ ืžืฉืชืžืฉ',
	'VIEWING_ONLINE'			=> 'ืฆื•ืคื” ื‘ืžื™ ืžื—ื•ื‘ืจ',
	'VIEWING_BOARD'			    => 'ืคื•ืจื•ื ืจืืฉื™',
	'VIEWING_MEDALS'            => 'ืฆื•ืคื” ื‘ืžื“ืœื™ื•ืช',
	'VIEWING_BLOG'              => 'ืฆื•ืคื” ื‘ื‘ืœื•ื’ื™ื',
	'VIEWING_CONTACT'           => 'ืžืžืœื ื˜ื•ืคืก ืฆื•ืจ ืงืฉืจ',
	'VIEWING_MCP'				=> 'ืฆื•ืคื” ื‘ืœื•ื— ื”ื‘ืงืจื” ืœืžื ื”ืœ',
	'VIEWING_MEMBER_PROFILE'	=> 'ืฆื•ืคื” ื‘ืคืจื•ืคื™ืœ ืžืฉืชืžืฉ',
	'VIEWING_PRIVATE_MESSAGES'	=> 'ืฆื•ืคื” ื‘ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช',
	'VIEWING_REGISTER'			=> 'ื ืจืฉื ืœืคื•ืจื•ื',
	'VIEWING_UCP'				=> 'ืฆื•ืคื” ื‘ืœื•ื— ื”ื‘ืงืจื” ืœืžืฉืชืžืฉ',
	'VIEWS'						=> 'ืฆืคื™ื•ืช',
	'VIEW_BOOKMARKS'			=> 'ืฆืคื” ื‘ื ื•ืฉืื™ื ืžื•ืขื“ืคื™ื',
	'VIEW_FORUM_LOGS'			=> 'ืฆื•ืคื” ื‘ืœื•ื’ื™ื ืฉืœ ื”ืคื•ืจื•ื',
	'VIEW_LATEST_POST'			=> 'ืฆืคื” ื‘ื”ื•ื“ืขื” ื”ืื—ืจื•ื ื”',
	'VIEW_NEWEST_POST'			=> 'ืฆืคื” ื‘ื”ื•ื“ืขื” ื”ืจืืฉื•ื ื” ืฉืœื ื ืงืจืื”',
	'VIEW_NOTES'				=> 'ืฆืคื” ื‘ื”ืขืจื•ืช ืขืœ ื”ืžืฉืชืžืฉ',
	'VIEW_ONLINE_TIME'			=> 'ืžื‘ื•ืกืก ืขืœ ืžืฉืชืžืฉื™ื ืคืขื™ืœื™ื ื‘ื“ืงื” ื”ืื—ืจื•ื ื”',
	'VIEW_ONLINE_TIMES'			=> 'ืžื‘ื•ืกืก ืขืœ ืžืฉืชืžืฉื™ื ืคืขื™ืœื™ื ื‘-%d ื”ื“ืงื•ืช ื”ืื—ืจื•ื ื•ืช',
	'VIEW_TOPIC'				=> 'ืฆืคื” ื‘ื ื•ืฉื',
	'VIEW_TOPIC_ANNOUNCEMENT'	=> 'ื”ื›ืจื–ื”: ',
	'VIEW_TOPIC_GLOBAL'			=> 'ื”ื›ืจื–ื” ื’ืœื•ื‘ืืœื™ืช: ',
	'VIEW_TOPIC_LOCKED'			=> 'ื ืขื•ืœ: ',
	'VIEW_TOPIC_LOGS'			=> 'ืจืื” ืคืขื•ืœื•ืช',
	'VIEW_TOPIC_MOVED'			=> 'ื”ื•ืขื‘ืจ: ',
	'VIEW_TOPIC_POLL'			=> 'ืกืงืจ: ',
	'VIEW_TOPIC_STICKY'			=> 'ื“ื‘ื™ืง: ',
	'VISIT_WEBSITE'				=> 'ื‘ืงืจ ื‘ืืชืจ ื”ื‘ื™ืช',
	'VO_VIEWING_SUBSCRIBED'				=> 'Viewing subscribtions',
	'VO_VIEWING_BOOKMARKS'				=> 'Viewing bookmarks',
	'VO_VIEWING_DRAFTS'				=> 'Viewing drafts',
	'VO_VIEWING_ATTACHMENTS'				=> 'ืฆื•ืคื” ื‘ืงื•ื‘ืฅ ืžืฆื•ืจืฃ',
	'VO_EDITING_PROFILE'				=> 'ืขื•ืจืš ืคืจื•ืคื™ืœ',
	'VO_EDITING_SIGNATURE'				=> 'ืขื•ืจืš ื—ืชื™ืžื”',
	'VO_EDITING_AVATAR'				=> 'ืขื•ืจืš ืกืžืœ ืื™ืฉื™',
	'VO_EDITING_AS'				=> 'ืขื•ืจืš ื”ื’ื“ืจื•ืช ื—ืฉื‘ื•ืŸ',
	'VO_EDITING_GS'				=> 'ืขื•ืจืš ื”ื’ื“ืจื•ืช ื›ืœืœื™ื•ืช',
	'VO_EDITING_PD'				=> 'ืขื•ืจืš ืชืฆื•ื’ืช ื”ื•ื“ืขื•ืช',
	'VO_EDITING_DO'				=> 'ืขื•ืจืš ืืคืฉืจื•ื™ื•ืช ืชืฆื•ื’ื”',
	'VO_MANAGE_PM_DRAFTS'				=> 'ืžื ื”ืœ ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช',
	'VO_PM_INBOX'				=> 'ืฆื•ืคื” ื‘ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช ื ื›ื ืกื•ืช',
	'VO_PM_OUTBOX'				=> 'ืฆื•ืคื” ื‘ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช ื™ื•ืฆืื•ืช',
	'VO_PM_SENTBOX'				=> 'ืฆื•ืคื” ื‘ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช ืฉื ืฉืœื—ื•',
	'VO_PM_OPTIONS'				=> 'ืขื•ืจืš ืืคืฉืจื•ื™ื•ืช ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช',
	'VO_EDITING_MEMBERSHIP'				=> 'ืขื•ืจืš ื”ื’ื“ืจื•ืช ื—ื‘ืจื•ืช',
	'VO_EDITING_GROUP'				=> 'ืขื•ืจืš ืงื‘ื•ืฆื”',
	'VO_EDITING_FRIENDS'				=> 'ืขื•ืจืš ื—ื‘ืจื™ื',
	'VO_EDITING_FOES'				=> 'ืขื•ืจืš ื ื•ื“ื ื™ืงื™ื',

	'WARNINGS'			=> 'ืื–ื”ืจื•ืช',
	'WARN_USER'			=> 'ื”ื–ื”ืจ ืžืฉืชืžืฉ',
	'WELCOME_SUBJECT'	=> 'ื‘ืจื•ืš ื”ื‘ื ืœืคื•ืจื•ื %s',
	'WEBSITE'			=> 'ืืชืจ ื‘ื™ืช',
	'WHOIS'				=> 'ืžื™ ื–ื”',
	'WHO_IS_ONLINE'		=> 'ืžื™ ืžื—ื•ื‘ืจ',
	'WRONG_PASSWORD'	=> 'ื”ื–ื ืช ืกื™ืกืžื” ืฉื’ื•ื™ื”.',

	'WRONG_DATA_ICQ'			=> 'ื”ืžืกืคืจ ืฉื”ื–ื ืช ืื™ื ื• ืžืกืคืจ ICQ ื—ื•ืงื™.',
	'WRONG_DATA_JABBER'			=> 'ื”ืฉื ืฉื”ื–ื ืช ืื™ื ื• ืฉื ื—ืฉื‘ื•ืŸ Jabber ื—ื•ืงื™.',
	'WRONG_DATA_LANG'			=> 'ื”ืฉืคื” ืฉืฆื™ื™ื ืช ืื™ื ื” ื—ื•ืงื™ืช.',
	'WRONG_DATA_WEBSITE'		=> 'ื›ืชื•ื‘ืช ืืชืจ ื”ืื™ื ื˜ืจื ื˜ ื—ื™ื™ื‘ืช ืœื”ื™ื•ืช ื›ืชื•ื‘ืช ื—ื•ืงื™ืช, ื›ื•ืœืœ ื”ืคืจื•ื˜ื•ืงื•ืœ. ืœื“ื•ื’ืžื” http://www.example.com/.',
	'WROTE'						=> 'ื›ืชื‘',

	'YEAR'				=> 'ืฉื ื”',
	'YEAR_MONTH_DAY'	=> '(YYYY-MM-DD)',
	'YES'				=> 'ื›ืŸ',
	'YIM'				=> 'YIM',	
	'YOU_LAST_VISIT'	=> 'ื‘ื™ืงื•ืจืš ื”ืื—ืจื•ืŸ ื”ื™ื” ื‘: %s',
	'YOU_NEW_PM'		=> 'ื”ื•ื“ืขื” ืคืจื˜ื™ืช ื—ื“ืฉื” ืžื—ื›ื” ืœืš ื‘ืชื™ื‘ืช ื”ื“ื•ืืจ ื”ื ื›ื ืก ืฉืœืš.',
	'YOU_NEW_PMS'		=> 'ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช ืžื—ื›ื•ืช ืฉืœืš ื‘ืชื™ื‘ืช ื”ื“ื•ืืจ ื”ื ื›ื ืก ืฉืœืš.',
	'YOU_NO_NEW_PM'		=> 'ืื™ืŸ ื”ื•ื“ืขื•ืช ืคืจื˜ื™ื•ืช ื—ื“ืฉื•ืช ื‘ืชื™ื‘ืช ื”ื“ื•ืืจ ื”ื ื›ื ืก ืฉืœืš.',	'SIMILAR_TOPICS'		=> 'ื ื•ืฉืื™ื ื“ื•ืžื™ื - ื ื•ืฉืื™ื ืงืจื•ื‘ื™ื',
	//MOD FTRT
	'FTRT_LOGIN_PROMPT'				=> 'ืฆื•ื•ืช ื”ืืชืจ ืžื‘ืงืฉ ืœืงืจื ืืช ื›ืœืœื™ ื”ืงื”ื™ืœื”. ื—ืฉื•ื‘ ืœืฆื™ื™ืŸ ื›ื™ ืœื ืชื”ื™ื” ืืคืฉืจื•ืช ื”ืžืฉืš ื’ืœื™ืฉื” ืœืคื ื™ ืงืจื™ืื” ืฉืœ ื›ืœืœื™ ื”ืงื”ื™ืœื”<br /><br />',
	'FTRT_VIEWTOPIC_PROMPT'		=> 'ืื ื ืงืจื ืืช ื›ืœืœื™ ื”ืงื”ื™ืœื”',
	//END MOD

	'datetime'			=> array(
		'TODAY'		=> 'ื”ื™ื•ื',
		'TOMORROW'	=> 'ืžื—ืจ',
		'YESTERDAY'	=> 'ืืชืžื•ืœ',

		'Sunday'	=> 'ื™ื•ื ืจืืฉื•ืŸ',
		'Monday'	=> 'ื™ื•ื ืฉื ื™',
		'Tuesday'	=> 'ื™ื•ื ืฉืœื™ืฉื™',
		'Wednesday'	=> 'ื™ื•ื ืจื‘ื™ืขื™',
		'Thursday'	=> 'ื™ื•ื ื—ืžื™ืฉื™',
		'Friday'	=> 'ื™ื•ื ืฉื™ืฉื™',
		'Saturday'	=> 'ื™ื•ื ืฉื‘ืช',

		'Sun'		=> 'ื\'',
		'Mon'		=> 'ื‘\'',
		'Tue'		=> 'ื’\'',
		'Wed'		=> 'ื“\'',
		'Thu'		=> 'ื”\'',
		'Fri'		=> 'ื•\'',
		'Sat'		=> 'ืฉ\'',

		'January'	=> 'ื™ื ื•ืืจ',
		'February'	=> 'ืคื‘ื•ืืจ',
		'March'		=> 'ืžืจืฅ',
		'April'		=> 'ืืคืจื™ืœ',
		'May'		=> 'ืžืื™',
		'June'		=> 'ื™ื•ื ื™',
		'July'		=> 'ื™ื•ืœื™',
		'August'	=> 'ืื•ื’ื•ืกื˜',
		'September' 	=> 'ืกืคื˜ืžื‘ืจ',
		'October'	=> 'ืื•ืงื˜ื•ื‘ืจ',
		'November'	=> 'ื ื•ื‘ืžื‘ืจ',
		'December'	=> 'ื“ืฆืžื‘ืจ',

		'Jan'		=> 'ื™ื ื•ืืจ',
		'Feb'		=> 'ืคื‘ื•ืืจ',
		'Mar'		=> 'ืžืจืฅ',
		'Apr'		=> 'ืืคืจื™ืœ',
		'May_short'	=> 'ืžืื™',	// Short representation of "May". May_short used because in English the short and long date are the same for May.
		'Jun'		=> 'ื™ื•ื ื™',
		'Jul'		=> 'ื™ื•ืœื™',
		'Aug'		=> 'ืื•ื’ื•ืกื˜',
		'Sep'		=> 'ืกืคื˜ืžื‘ืจ',
		'Oct'		=> 'ืื•ืงื˜ื•ื‘ืจ',
		'Nov'		=> 'ื ื•ื‘ืžื‘ืจ',
		'Dec'		=> 'ื“ืฆืžื‘ืจ',
	),

	'tz'				=> array(
		'-12'	=> 'UTC - 12 ืฉืขื•ืช',
		'-11'	=> 'UTC - 11 ืฉืขื•ืช',
		'-10'	=> 'UTC - 10 ืฉืขื•ืช',
		'-9.5'	=> 'UTC - 9:30 ืฉืขื•ืช',
		'-9'	=> 'UTC - 9 ืฉืขื•ืช',
		'-8'	=> 'UTC - 8 ืฉืขื•ืช',
		'-7'	=> 'UTC - 7 ืฉืขื•ืช',
		'-6'	=> 'UTC - 6 ืฉืขื•ืช',
		'-5'	=> 'UTC - 5 ืฉืขื•ืช',
		'-4'	=> 'UTC - 4 ืฉืขื•ืช',
		'-3.5'	=> 'UTC - 3:30 ืฉืขื•ืช',
		'-3'	=> 'UTC - 3 ืฉืขื•ืช',
		'-2'	=> 'UTC - 2 ืฉืขื•ืช',
		'-1'	=> 'UTC - ืฉืขื”',
		'0'	=> 'UTC',
		'1'	=> 'UTC + ืฉืขื”',
		'2'	=> 'UTC + 2 ืฉืขื•ืช',
		'3'	=> 'UTC + 3 ืฉืขื•ืช',
		'3.5'	=> 'UTC + 3:30 ืฉืขื•ืช',
		'4'	=> 'UTC + 4 ืฉืขื•ืช',
		'4.5'	=> 'UTC + 4:30 ืฉืขื•ืช',
		'5'	=> 'UTC + 5 ืฉืขื•ืช',
		'5.5'	=> 'UTC + 5:30 ืฉืขื•ืช',
		'5.75'	=> 'UTC + 5:45 ืฉืขื•ืช',
		'6'	=> 'UTC + 6 ืฉืขื•ืช',
		'6.5'	=> 'UTC + 6:30 ืฉืขื•ืช',
		'7'	=> 'UTC + 7 ืฉืขื•ืช',
		'8'	=> 'UTC + 8 ืฉืขื•ืช',
		'8.75'	=> 'UTC + 8:45 ืฉืขื•ืช',
		'9'	=> 'UTC + 9 ืฉืขื•ืช',
		'9.5'	=> 'UTC + 9:30 ืฉืขื•ืช',
		'10'	=> 'UTC + 10 ืฉืขื•ืช',
		'10.5'	=> 'UTC + 10:30 ืฉืขื•ืช',
		'11'	=> 'UTC + 11 ืฉืขื•ืช',
		'11.5'	=> 'UTC + 11:30 ืฉืขื•ืช',
		'12'	=> 'UTC + 12 ืฉืขื•ืช',
		'12.75'	=> 'UTC + 12:45 ืฉืขื•ืช',
		'13'	=> 'UTC + 13 ืฉืขื•ืช',
		'14'	=> 'UTC + 14 ืฉืขื•ืช',
		'dst'	=> '[ ืฉืขื•ืŸ ืงื™ืฅ ]',
	),

	'tz_zones'	=> array(
		'-12'	=> '[UTC - 12] ืฉืขื•ืŸ ื”ืื™ ื‘ืงืจ',
		'-11'	=> '[UTC - 11] ืฉืขื•ืŸ ื ื™ื•, ืฉืขื•ืŸ ืกืžื•ืื” ืจื’ื™ืœ',
		'-10'	=> '[UTC - 10] ืฉืขื•ืŸ ื”ื•ื•ืื™ ื”ืืœืื•ื˜ื™ืช ืจื’ื™ืœ, ืฉืขื•ืŸ ื”ืื™ ืงื•ืง',
		'-9.5'	=> '[UTC - 9:30] ืฉืขื•ืŸ ืื™ื™ ืžืจืงื•ืกืก',
		'-9'	=> '[UTC - 9] ืฉืขื•ืŸ ืืœืกืงื” ืจื’ื™ืœ, ืฉืขื•ืŸ ื”ืื™ ื’ืžื‘ื™ื™ืจ',
		'-8'	=> '[UTC - 8] ืฉืขื•ืŸ ื”ืื•ืงื™ื™ื ื•ืก ื”ืฉืงื˜ ืจื’ื™ืœ',
		'-7'	=> '[UTC - 7] ืฉืขื•ืŸ ื”ืจืจื™ ืจื’ื™ืœ',
		'-6'	=> '[UTC - 6] ืฉืขื•ืŸ ืžืจื›ื–ื™ ืจื’ื™ืœ',
		'-5'	=> '[UTC - 5] ืฉืขื•ืŸ ืžื–ืจื—ื™ ืจื’ื™ืœ',
		'-4'	=> '[UTC - 4] ืฉืขื•ืŸ ืื˜ืœื ื˜ื™ ืจื’ื™ืœ',
		'-3.5'	=> '[UTC - 3:30] ืฉืขื•ืŸ ื ื™ื• ืคืื•ื ื“ืœื ื“ ืจื’ื™ืœ',
		'-3'	=> '[UTC - 3] ืฉืขื•ืŸ ืืžื–ื•ื ืก ืจื’ื™ืœ, ืฉืขื•ืŸ ื’ืจื™ื ืœื ื“ ืจื’ื™ืœ',
		'-2'	=> '[UTC - 2] ืฉืขื•ืŸ ืคืจื ื ื“ื• ื“ื” ื ื•ืจื•ื ื”, ื“ืจื•ื ื’\'ื•ืจื’\'ื™ื” & ืฉืขื•ืŸ ืื™ื™ ืกื ื“ื•ื•ื™ืฅ\' ื“ืจื•ืžื™',
		'-1'	=> '[UTC - 1] ืฉืขื•ืŸ ืื–ื•ืจืก ืจื’ื™ืœ, ืฉืขื•ืŸ ื›ืฃ ื•ืจื“ื”, ืฉืขื•ืŸ ื’ืจื™ื ืœื ื“ ืžื–ืจื—ื™',
		'0'		=> '[UTC] ืฉืขื•ืŸ ืื™ืจื•ืคื” ืžืขืจื‘ื™, ืฉืขื•ืŸ ื’ืจื™ื ื™ืฅ\'',
		'1'		=> '[UTC + 1] ืฉืขื•ืŸ ืื™ืจื•ืคื” ื”ืžืจื›ื–ื™ืช, ืฉืขื•ืŸ ืžืขืจื‘ ืืคืจื™ืงื”',
		'2'		=> '[UTC + 2] ืฉืขื•ืŸ ืื™ืจื•ืคื” ื”ืžื–ืจื—ื™ืช, ืฉืขื•ืŸ ืืคืจื™ืงื” ื”ืžืจื›ื–ื™ืช',
		'3'		=> '[UTC + 3] ืฉืขื•ืŸ ืžื•ืกืงื•ื•ื” ืจื’ื™ืœ, ืฉืขื•ืŸ ืืคืจื™ืงื” ื”ืžื–ืจื—ื™ืช',
		'3.5'	=> '[UTC + 3:30] ืฉืขื•ืŸ ืื™ืจืืŸ ืจื’ื™ืœ',
		'4'		=> '[UTC + 4] ืฉืขื•ืŸ ื’ื•ืœืฃ ืจื’ื™ืœ, ืฉืขื•ืŸ ืกืืžืืจื” ืจื’ื™ืœ',
		'4.5'	=> '[UTC + 4:30] ืฉืขื•ืŸ ืืคื’ื ื™ืกื˜ืŸ',
		'5'		=> '[UTC + 5] ืฉืขื•ืŸ ืคืงื™ืกื˜ืŸ ืจื’ื™ืœ, ืฉืขื•ืŸ ื™ืงื˜ืจื™ื ื‘ื•ืจื’ ืจื’ื™ืœ',
		'5.5'	=> '[UTC + 5:30] ืฉืขื•ืŸ ื”ื•ื“ื• ืจื’ื™ืœ, ืฉืขื•ืŸ ืกืจื™ ืœื ืงื”',
		'5.75'	=> '[UTC + 5:45] ืฉืขื•ืŸ ื ืคืืœ',
		'6'		=> '[UTC + 6] ืฉืขื•ืŸ ื‘ื ื’ืœื“ืฉ, ืฉืขื•ืŸ ื‘ื•ื˜ืŸ, ืฉืขื•ืŸ ื ื•ื‘ื•ืกื™ื‘ื™ืจืกืง ืจื’ื™ืœ',
		'6.5'	=> '[UTC + 6:30] ืฉืขื•ืŸ ืื™ื™ ืงื•ืงื•ื–, ืฉืขื•ืŸ ืžื™ืื ืžืจ',
		'7'		=> '[UTC + 7] ืฉืขื•ืŸ ื”ื•ื“ื•-ืกื™ืŸ, ืฉืขื•ืŸ ืงืจืกื ื•ื™ืืจืกืง ืจื’ื™ืœ',
		'8'		=> '[UTC + 8] ืฉืขื•ืŸ ืกื™ืŸ ืจื’ื™ืœ, ืฉืขื•ืŸ ืื•ืกื˜ืจืœื™ื” ื”ืžืขืจื‘ื™ืช ืจื’ื™ืœ, ืฉืขื•ืŸ ืื™ืจืงื•ื˜ืกืง ืจื’ื™ืœ',
		'8.75'	=> '[UTC + 8:45] ืฉืขื•ืŸ ื“ืจื•ื ืžืขืจื‘ ืื•ืกื˜ืจืœื™ื” ืจื’ื™ืœ',
		'9'		=> '[UTC + 9] ืฉืขื•ืŸ ื™ืคืŸ ืจื’ื™ืœ, ืฉืขื•ืŸ ืงื•ืจื™ืื” ืจื’ื™ืœ, ืฉืขื•ืŸ ืฆื™\'ื˜ื” ืจื’ื™ืœ',
		'9.5'	=> '[UTC + 9:30] ืฉืขื•ืŸ ืื•ืกื˜ืจืœื™ื” ื”ืžืจื›ื–ื™ืช ืจื’ื™ืœ',
		'10'	=> '[UTC + 10] ืฉืขื•ืŸ ืื•ืกื˜ืจืœื™ื” ื”ืžื–ืจื—ื™ืช ืจื’ื™ืœ, ืฉืขื•ืŸ ื•ืœืื“ื™ื‘ื•ืกื˜ื•ืง ืจื’ื™ืœ',
		'10.5'	=> '[UTC + 10:30] ืฉืขื•ืŸ ืœื•ืจื“ ื”ื•ื•ื” ืจื’ื™ืœ',
		'11'	=> '[UTC + 11] ืฉืขื•ืŸ ื”ืื™ ืฉืœืžื”, ืฉืขื•ืŸ ืžื’ืื“ืŸ ืจื’ื™ืœ',
		'11.5'	=> '[UTC + 11:30] ืฉืขื•ืŸ ื”ืื™ ื ื•ืจืคื•ืœืง',
		'12'	=> '[UTC + 12] ืฉืขื•ืŸ ื ื™ื• ื–ื™ืœื ื“, ืฉืขื•ืŸ ืคื™ื’\'ื™, ืฉืขื•ืŸ ืงืžื—ื˜ืงื” ืจื’ื™ืœ',
		'12.75'	=> '[UTC + 12:45] ืฉืขื•ืŸ ืื™ื™ ืฆ\'ืื“ื',
		'13'	=> '[UTC + 13] ืฉืขื•ืŸ ื˜ื•ื ื’ื”, ืฉืขื•ืŸ ืื™ื™ ืคื™ื ื™ืงืก',
		'14'	=> '[UTC + 14] ืฉืขื•ืŸ ื”ืื™ ืœื™ื™ืŸ',
	),

	// The value is only an example and will get replaced by the current time on view
	'dateformats'	=> array(
		'd M Y, H:i'			=> '01 Jan 2007, 13:37',
		'd M Y H:i'				=> '01 Jan 2007 13:37',
		'M jS, \'y, H:i'		=> 'Jan 1st, \'07, 13:37',
		'D M d, Y g:i a'		=> 'Mon Jan 01, 2007 1:37 pm',
		'F jS, Y, g:i a'		=> 'January 1st, 2007, 1:37 pm',
		'|d M Y|, H:i'			=> 'Today, 13:37 / 01 Jan 2007, 13:37',
		'|F jS, Y|, g:i a'		=> 'Today, 1:37 pm / January 1st, 2007, 1:37 pm'
	),

	// The default dateformat which will be used on new installs in this language
	// Translators should change this if a the usual date format is different
	'default_dateformat'	=> 'D M d, Y g:i a', // Mon Jan 01, 2007 1:37 pm

));

// Express News System
$lang = array_merge($lang, array(
	'BOARD'			=> 'ืคื•ืจื•ื',
	'BOARD_EXPLAIN'	=> 'ื›ื ื™ืกื” ืœืงื”ื™ืœื•ืช',

	'RETURN_BOARD'	=> '%sื—ื–ื•ืจ ืœืคื•ืจื•ื%s',
));
// Express News System
$lang = array_merge($lang, array(
	'ACP_EXPRESS'					=> 'ื ื™ื”ื•ืœ ืคื•ืจื˜ืœ "ื—ื“ืฉื•ืช ืืงืกืคืจืก"',
	'ACP_EXPRESS_ADS'				=> 'ืคืจืกื•ื',
	'ACP_EXPRESS_ARTICLES'			=> 'ืžืืžืจื™ื',
	'ACP_EXPRESS_BLOCKS'			=> 'ื‘ืœื•ืงื™ื',
	'ACP_EXPRESS_CATEGORIES'		=> 'ืงื˜ื’ื•ืจื™ื•ืช',
	'ACP_EXPRESS_LINKS'				=> 'ืชืคืจื™ื˜ ืœื™ื ืงื™ื',
	'ACP_EXPRESS_MANAGE_ADS'		=> 'ื ื”ืœ ืคืจืกื•ื',
	'ACP_EXPRESS_MANAGE_ARTICLES'	=> 'ื ื”ืœ ืžืืžืจื™ื',
	'ACP_EXPRESS_MANAGE_BLOCKS'		=> 'ื ื”ืœ ื‘ืœื•ืงื™ื',
	'ACP_EXPRESS_MANAGE_CATS'		=> 'ื ื”ืœ ืงื˜ื’ื•ืจื™ื•ืช',
	'ACP_EXPRESS_MANAGE_LINKS'		=> 'ื ื”ืœ ืœื™ื ืงื™ื',
	'ACP_EXPRESS_MANAGE_PAGES'		=> 'ื ื”ืœ ื“ืคื™ื ืžื•ืชืืžื™ื',
	'ACP_EXPRESS_PAGES'				=> 'ื“ืคื™ื ืžื•ืชืืžื™ื',
	'ACP_EXPRESS_SETTINGS'			=> 'ืืคืฉืจื•ื™ื•ืช ืคื•ืจื˜ืœ "ื—ื“ืฉื•ืช ืืงืกืคืจืก"',
	'ARTICLES_PER_DAY'				=> 'ืžืืžืจื™ื ืœื™ื•ื',

	'COUNTER_STARTED'	=> 'ื”ืกืคื™ืจื” ื”ื—ืœื”',

	'HITS_PER_DAY'	=> 'ืœื—ื™ืฆื•ืช ืœื™ื•ื',

	'LOG_CONFIG_EXPRESS'			=> '<strong>ืฉื™ื ื•ื™ื™ื\ื”ื’ื“ืจื•ืช ื—ื“ืฉื•ืช ืืงืกืคืจืก</strong>',
	'LOG_EXPRESS_ARTICLE_ADDED'		=> '<strong>ื ื•ืกืฃ ืžืืžืจ</strong><br />ยป %s',
	'LOG_EXPRESS_ARTICLE_REMOVED'	=> '<strong>ืžืืžืจ ื”ื•ืกืจ</strong><br />ยป %s',
	'LOG_EXPRESS_ARTICLE_UPDATED'	=> '<strong>ืžืืžืจ ืขื•ื“ื›ืŸ</strong><br />ยป %s',
	'LOG_EXPRESS_BLOCK_ADDED'		=> '<strong>ื ื•ืกืฃ ื‘ืœื•ืง</strong><br />ยป %s',
	'LOG_EXPRESS_BLOCK_DISABLED'	=> '<strong>ื‘ืœื•ืง ื‘ื•ื˜ืœ</strong><br />ยป %s',
	'LOG_EXPRESS_BLOCK_REMOVED'		=> '<strong>ื‘ืœื•ืง ื”ื•ืกืจ</strong><br />ยป %s',
	'LOG_EXPRESS_BLOCK_UPDATED'		=> '<strong>ื‘ืœื•ืง ืขื•ื“ื›ืŸ</strong><br />ยป %s',
	'LOG_EXPRESS_CAT_ADDED'			=> '<strong>ื ื•ืกืคื” ืงื˜ื’ื•ืจื™ืช ื—ื“ืฉื•ืช</strong><br />ยป %s',
	'LOG_EXPRESS_CAT_REMOVED'		=> '<strong>ืงื˜ื’ื•ืจื™ืช ื—ื“ืฉื•ืช ื”ื•ืกืจื”</strong><br />ยป %s',
	'LOG_EXPRESS_CAT_RESYNCED'		=> '<strong>ืงื˜ื’ื•ืจื™ืช ื—ื“ืฉื•ืช ืกื•ื ื›ืจื ื”</strong><br />ยป %s',
	'LOG_EXPRESS_CAT_UPDATED'		=> '<strong>ืงื˜ื’ื•ืจื™ืช ื—ื“ืฉื•ืช ืขื•ื“ื›ื ื”</strong><br />ยป %s',
	'LOG_EXPRESS_LINK_ADDED'		=> '<strong>ื ื•ืกืฃ ืœื™ื ืง</strong><br />ยป %s',
	'LOG_EXPRESS_LINK_REMOVED'		=> '<strong>ืœื™ื ืง ื”ื•ืกืจ</strong><br />ยป %s',
	'LOG_EXPRESS_LINK_UPDATED'		=> '<strong>ืœื™ื ืง ืขื•ื“ื›ืŸ</strong><br />ยป %s',
	'LOG_EXPRESS_PAGE_ADDED'		=> '<strong>ื ื•ืกืฃ ื“ืฃ ืžื•ืชืื</strong><br />ยป %s',
	'LOG_EXPRESS_PAGE_REMOVED'		=> '<strong>ื“ืฃ ืžื•ืชืื ื”ื•ืกืจ</strong><br />ยป %s',
	'LOG_EXPRESS_PAGE_UPDATED'		=> '<strong>ื“ืฃ ืžื•ืชืื ืขื•ื“ื›ืŸ</strong><br />ยป %s',
	'LOG_RESET_COUNTER'				=> '<strong>ื”ืžื•ื ื” ืื•ืชื—ืœ</strong>',
	'LOG_RESYNC_EXPRESS'			=> '<strong>ืงื˜ื’ื•ืจื™ืช ื—ื“ืฉื•ืช, ืžืืžืจื™ื, ื“ืคื™ื ืžื•ืชืืžื™ื ื•ื‘ืœื•ืงื™ื - ืกื˜ื˜ื™ืกื˜ื™ืงื”</strong>',

	'NUMBER_ARTICLES'	=> 'ืžืกืคืจ ืžืืžืจื™ื',
	'NUMBER_HITS'		=> 'ืžืกืคืจ ืœื—ื™ืฆื•ืช',

	'RESET_COUNTER'				=> 'ืืชื—ืœ ืžื•ื ื”',
	'RESET_COUNTER_CONFIRM'		=> 'ื”ื™ื ืš ืžื•ืฉื›ื ืข ื›ื™ ืืชื” ืžืขื•ื ื™ื™ืŸ ืœืืชื—ืœ ืžื™ื“ืข?',
	'RESET_COUNTER_EXPLAIN'		=> 'ืืชื—ืœ ืžื•ื ื” ื•ืžื™ื“ืข ืœื—ื™ืฆื•ืช.',
	'RESYNC_EXPRESS'			=> 'ืกื ื›ืจื•ืŸ ื—ื“ืฉื•ืช ืืงืกืคืจืก',
	'RESYNC_EXPRESS_CONFIRM'	=> 'ืืชื” ืžืฉื•ื›ื ืข ื›ื™ ื‘ืจืฆื•ื ืš ืœืกื ื›ืจืŸ ืžื—ื“ืฉ ืกื˜ื˜ื™ืกื˜ื™ืงืช ื—ื“ืฉื•ืช ืืงืกืคืจืก?',
	'RESYNC_EXPRESS_EXPLAIN'	=> 'ืกื ื›ืจืŸ ืžื—ื“ืฉ ืกื˜ื˜ื™ืกื˜ื™ืงืช ื—ื“ืฉื•ืช ืืงืกืคืจืก - ืžืืžืจื™ื,ื‘ืœื•ืงื™ื,ืœื—ื™ืฆื•ืช ื•ืขื•ื“..',		// Medals System MOD for phpBB3	'MEDALS_VIEW'					=> 'ืžื“ืœื™ื•ืช',	'MEDALS_VIEW_EXPLAIN'			=> 'ืฆืคื” ื‘ืžื“ืœื™ื•ืช',
));
//-- mod : Contact board administration ------------------------------------------------------------
//-- add
$lang = array_merge($lang, array(
	'CONTACT_BOARD_ADMIN'		=> 'ืฆื•ืจ ืงืฉืจ ืขื ืžื ื”ืœ ื”ืืชืจ',
	'CONTACT_BOARD_ADMIN_SHORT'	=> 'ืฆื•ืจ ืงืฉืจ',
	'SORT_TOPIC_TIME' => 'ื–ืžืŸ ื”ื“ื™ื•ืŸ',
));
//-- fin mod : Contact board administration --------------------------------------------------------
// annual stars
$lang['YEARS_OF_MEMBERSHIP'] = 'ืฉื ื•ืช ื—ื‘ืจื•ืช ื‘ืงื”ื™ืœื”';

// BEGIN: OurTube
$lang = array_merge($lang, array(
	'TUBE'		=> 'OurTube',
));
// END

// Smiley page by stoker   
$lang = array_merge($lang, array(
	'SMSMILIES'			=> 'ื”ืฆื’ ืืช ื“ืฃ ื”ืกืžื™ื™ืœื™ื',
	'VIEW_SMSMILIES'	=> 'ืฆืคื” ื‘ืกืžื™ื™ืœื™ื',
	'SMID'				=> 'ื–ื™ื”ื•ื™',
	'SMCODE'			=> 'ืงื•ื“',
	'SMEMOTION'			=> 'ืจื’ืฉ',
	'SMWIDTH'			=> 'ืจื•ื—ื‘',
	'SMHEIGHT'			=> 'ื’ื•ื‘ื”',
	'SMSMILEY'			=> 'ืกืžื™ื™ืœื™',
	'SMDISPLAY'			=> 'ืคืขื™ืœ',
	'SMORDER'			=> 'ืกื“ืจ',
	'SMPX'				=> 'px',
	'SMILIEY_COUNT'     => '1 ืกืžื™ื™ืœื™',
    'SMILIES_COUNT'     => '%d ืกืžื™ื™ืœื™ื',
));
// view user's topics
$lang = array_merge($lang, array(
	'SHOW_USER_TOPICS' => 'ื—ืคืฉ ื ื•ืฉืื™ ืžืฉืชืžืฉ',
));
?>
message_body.html exists.

Best Regards,
uzi
User avatar
AmigoJack
Registered User
Posts: 6108
Joined: Tue Jun 15, 2010 11:33 am
Location: ใ‚ฐใƒชใƒผใƒณ ใƒ’ใƒซ ใ‚พใƒผใƒณ
Contact:

Re: function.strtr - Cannot modify header

Post by AmigoJack »

This cannot be handled easily and would need extended analysis. Try removing the MODs "Prime Birthday" and/or "Prime Ban To Group".
  • "The problem is probably not my English but you do not want to understand correctly. ... We will not come anybody anyway, nevertheless, it's best to shit this." Affin, 2018-11-20 โ†‘
  • "But this shit is not here for you. You can follow with your. Maybe the question, instead, was for you, who know, so you shoved us how you are." axe70, 2020-10-10 โ†‘
  • "My reaction is not to everyone, especially to you." Raptiye, 2021-02-28 โ†‘
ibelphegor
Registered User
Posts: 453
Joined: Wed Oct 24, 2007 8:37 am

Re: function.strtr - Cannot modify header

Post by ibelphegor »

Ok i will try And update.
Thank you.
stylerro
Registered User
Posts: 68
Joined: Mon Dec 07, 2009 12:34 pm
Contact:

Re: function.strtr - Cannot modify header

Post by stylerro »

Hi, I find this in erorr_log in my host.

Code: Select all

[16-Sep-2010 14:09:57] PHP Warning:  strtr() [<a href='function.strtr'>function.strtr</a>]: The second argument is not an array in /home/myhost/public_html/includes/session.php on line 2193
[16-Sep-2010 14:09:57] PHP Warning:  strtr() [<a href='function.strtr'>function.strtr</a>]: The second argument is not an array in /home/myhost/public_html/includes/session.php on line 2193
[16-Sep-2010 14:09:57] PHP Warning:  strtr() [<a href='function.strtr'>function.strtr</a>]: The second argument is not an array in /home/myhost/public_html/includes/session.php on line 2193
[16-Sep-2010 14:09:57] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/myhost/public_html/includes/session.php:2193) in /home/myhost/public_html/includes/functions.php on line 4577
[16-Sep-2010 14:09:57] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/myhost/public_html/includes/session.php:2193) in /home/myhost/public_html/includes/functions.php on line 4579
[16-Sep-2010 14:09:57] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/myhost/public_html/includes/session.php:2193) in /home/myhost/public_html/includes/functions.php on line 4580
[16-Sep-2010 14:09:57] PHP Warning:  Cannot modify header information - headers already sent by (output started at /home/myhost/public_html/includes/session.php:2193) in /home/myhost/public_html/includes/functions.php on line 4581
[16-Sep-2010 14:09:57] PHP Fatal error:  template->_tpl_load_file() error:<br />File /message_body.html or <br />File /message_body.html does not exist or is empty in /home/myhost/public_html/includes/functions_template.php on line 80


session.php:2193

Code: Select all

return strtr(@gmdate($date_cache[$format]['format_long'], $gmepoch + $zone_offset), $date_cache[$format]['lang']);
Last edited by stylerro on Sun Oct 03, 2010 10:07 pm, edited 2 times in total.
User avatar
AmigoJack
Registered User
Posts: 6108
Joined: Tue Jun 15, 2010 11:33 am
Location: ใ‚ฐใƒชใƒผใƒณ ใƒ’ใƒซ ใ‚พใƒผใƒณ
Contact:

Re: function.strtr - Cannot modify header

Post by AmigoJack »

One of your MODs must be the issue. Make sure that no files in your /language/ folder (and below) contain the text 'datetime' (including apostrophes, please use copy and paste) except the common.php ones. If that is already the case your problem cannot easily be solved either, as one has to find out which MOD is causing what issue to end up bringing this message.
  • "The problem is probably not my English but you do not want to understand correctly. ... We will not come anybody anyway, nevertheless, it's best to shit this." Affin, 2018-11-20 โ†‘
  • "But this shit is not here for you. You can follow with your. Maybe the question, instead, was for you, who know, so you shoved us how you are." axe70, 2020-10-10 โ†‘
  • "My reaction is not to everyone, especially to you." Raptiye, 2021-02-28 โ†‘
User avatar
Brf
Support Team Member
Support Team Member
Posts: 53400
Joined: Tue May 10, 2005 7:47 pm
Location: {postrow.POSTER_FROM}
Contact:

Re: function.strtr - Cannot modify header

Post by Brf »

Normally, this error occurs when a Mod loads its language file and then some error happens before the user->setup is done in viewtopic, viewforum or posting.
Locked

Return to โ€œ[3.0.x] Support Forumโ€