Blame Identity/Webenv/phpBB/3.0.4/language/en/acp/ban.php

ef5584
ef5584
/**
ef5584
*
ef5584
* acp_ban [English]
ef5584
*
ef5584
* @package language
ef5584
* @version $Id: ban.php 8479 2008-03-29 00:22:48Z naderman $
ef5584
* @copyright (c) 2005 phpBB Group
ef5584
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
ef5584
*
ef5584
*/
ef5584
ef5584
/**
ef5584
* DO NOT CHANGE
ef5584
*/
ef5584
if (!defined('IN_PHPBB'))
ef5584
{
ef5584
	exit;
ef5584
}
ef5584
ef5584
if (empty($lang) || !is_array($lang))
ef5584
{
ef5584
	$lang = array();
ef5584
}
ef5584
ef5584
// DEVELOPERS PLEASE NOTE
ef5584
//
ef5584
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
ef5584
//
ef5584
// Placeholders can now contain order information, e.g. instead of
ef5584
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
ef5584
// translators to re-order the output of data while ensuring it remains correct
ef5584
//
ef5584
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
ef5584
// equally where a string contains only two placeholders which are used to wrap text
ef5584
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
ef5584
ef5584
// Banning
ef5584
$lang = array_merge($lang, array(
ef5584
	'1_HOUR'		=> '1 hour',
ef5584
	'30_MINS'		=> '30 minutes',
ef5584
	'6_HOURS'		=> '6 hours',
ef5584
ef5584
	'ACP_BAN_EXPLAIN'	=> 'Here you can control the banning of users by name, IP or e-mail address. These methods prevent a user reaching any part of the board. You can give a short (maximum 3000 characters) reason for the ban if you wish. This will be displayed in the admin log. The duration of a ban can also be specified. If you want the ban to end on a specific date rather than after a set time period select Until -> for the ban length and enter a date in YYYY-MM-DD format.',
ef5584
ef5584
	'BAN_EXCLUDE'			=> 'Exclude from banning',
ef5584
	'BAN_LENGTH'			=> 'Length of ban',
ef5584
	'BAN_REASON'			=> 'Reason for ban',
ef5584
	'BAN_GIVE_REASON'		=> 'Reason shown to the banned',
ef5584
	'BAN_UPDATE_SUCCESSFUL'	=> 'The banlist has been updated successfully.',
ef5584
ef5584
	'EMAIL_BAN'					=> 'Ban one or more e-mail addresses',
ef5584
	'EMAIL_BAN_EXCLUDE_EXPLAIN'	=> 'Enable this to exclude the entered e-mail address from all current bans.',
ef5584
	'EMAIL_BAN_EXPLAIN'			=> 'To specify more than one e-mail address enter each on a new line. To match partial addresses use * as the wildcard, e.g. <samp>*@hotmail.com</samp>, <samp>*@*.domain.tld</samp>, etc.',
ef5584
	'EMAIL_NO_BANNED'			=> 'No banned e-mail addresses',
ef5584
	'EMAIL_UNBAN'				=> 'Un-ban or un-exclude e-mails',
ef5584
	'EMAIL_UNBAN_EXPLAIN'		=> 'You can unban (or un-exclude) multiple e-mail addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser. Excluded e-mail addresses are emphasised.',
ef5584
ef5584
	'IP_BAN'					=> 'Ban one or more IPs',
ef5584
	'IP_BAN_EXCLUDE_EXPLAIN'	=> 'Enable this to exclude the entered IP from all current bans.',
ef5584
	'IP_BAN_EXPLAIN'			=> 'To specify several different IPs or hostnames enter each on a new line. To specify a range of IP addresses separate the start and end with a hyphen (-), to specify a wildcard use “*”.',
ef5584
	'IP_HOSTNAME'				=> 'IP addresses or hostnames',
ef5584
	'IP_NO_BANNED'				=> 'No banned IP addresses',
ef5584
	'IP_UNBAN'					=> 'Un-ban or un-exclude IPs',
ef5584
	'IP_UNBAN_EXPLAIN'			=> 'You can unban (or un-exclude) multiple IP addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser. Excluded IPs are emphasised.',
ef5584
ef5584
	'LENGTH_BAN_INVALID'		=> 'The date has to be formatted YYYY-MM-DD.',
ef5584
ef5584
	'PERMANENT'		=> 'Permanent',
ef5584
	
ef5584
	'UNTIL'						=> 'Until',
ef5584
	'USER_BAN'					=> 'Ban one or more usernames',
ef5584
	'USER_BAN_EXCLUDE_EXPLAIN'	=> 'Enable this to exclude the entered users from all current bans.',
ef5584
	'USER_BAN_EXPLAIN'			=> 'You can ban multiple users in one go by entering each name on a new line. Use the Find a member facility to look up and add one or more users automatically.',
ef5584
	'USER_NO_BANNED'			=> 'No banned usernames',
ef5584
	'USER_UNBAN'				=> 'Un-ban or un-exclude usernames',
ef5584
	'USER_UNBAN_EXPLAIN'		=> 'You can unban (or un-exclude) multiple users in one go using the appropriate combination of mouse and keyboard for your computer and browser. Excluded users are emphasised.',
ef5584
	
ef5584
ef5584
));
ef5584
ef5584
?>