Blame Identity/Models/Html/phpBB/3.0.4/language/en/acp/ban.php

d6e8d8
d6e8d8
/**
d6e8d8
*
d6e8d8
* acp_ban [English]
d6e8d8
*
d6e8d8
* @package language
d6e8d8
* @version $Id: ban.php 8479 2008-03-29 00:22:48Z naderman $
d6e8d8
* @copyright (c) 2005 phpBB Group
d6e8d8
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
d6e8d8
*
d6e8d8
*/
d6e8d8
d6e8d8
/**
d6e8d8
* DO NOT CHANGE
d6e8d8
*/
d6e8d8
if (!defined('IN_PHPBB'))
d6e8d8
{
d6e8d8
	exit;
d6e8d8
}
d6e8d8
d6e8d8
if (empty($lang) || !is_array($lang))
d6e8d8
{
d6e8d8
	$lang = array();
d6e8d8
}
d6e8d8
d6e8d8
// DEVELOPERS PLEASE NOTE
d6e8d8
//
d6e8d8
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
d6e8d8
//
d6e8d8
// Placeholders can now contain order information, e.g. instead of
d6e8d8
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
d6e8d8
// translators to re-order the output of data while ensuring it remains correct
d6e8d8
//
d6e8d8
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
d6e8d8
// equally where a string contains only two placeholders which are used to wrap text
d6e8d8
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
d6e8d8
d6e8d8
// Banning
d6e8d8
$lang = array_merge($lang, array(
d6e8d8
	'1_HOUR'		=> '1 hour',
d6e8d8
	'30_MINS'		=> '30 minutes',
d6e8d8
	'6_HOURS'		=> '6 hours',
d6e8d8
d6e8d8
	'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.',
d6e8d8
d6e8d8
	'BAN_EXCLUDE'			=> 'Exclude from banning',
d6e8d8
	'BAN_LENGTH'			=> 'Length of ban',
d6e8d8
	'BAN_REASON'			=> 'Reason for ban',
d6e8d8
	'BAN_GIVE_REASON'		=> 'Reason shown to the banned',
d6e8d8
	'BAN_UPDATE_SUCCESSFUL'	=> 'The banlist has been updated successfully.',
d6e8d8
d6e8d8
	'EMAIL_BAN'					=> 'Ban one or more e-mail addresses',
d6e8d8
	'EMAIL_BAN_EXCLUDE_EXPLAIN'	=> 'Enable this to exclude the entered e-mail address from all current bans.',
d6e8d8
	'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.',
d6e8d8
	'EMAIL_NO_BANNED'			=> 'No banned e-mail addresses',
d6e8d8
	'EMAIL_UNBAN'				=> 'Un-ban or un-exclude e-mails',
d6e8d8
	'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.',
d6e8d8
d6e8d8
	'IP_BAN'					=> 'Ban one or more IPs',
d6e8d8
	'IP_BAN_EXCLUDE_EXPLAIN'	=> 'Enable this to exclude the entered IP from all current bans.',
d6e8d8
	'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 “*”.',
d6e8d8
	'IP_HOSTNAME'				=> 'IP addresses or hostnames',
d6e8d8
	'IP_NO_BANNED'				=> 'No banned IP addresses',
d6e8d8
	'IP_UNBAN'					=> 'Un-ban or un-exclude IPs',
d6e8d8
	'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.',
d6e8d8
d6e8d8
	'LENGTH_BAN_INVALID'		=> 'The date has to be formatted YYYY-MM-DD.',
d6e8d8
d6e8d8
	'PERMANENT'		=> 'Permanent',
d6e8d8
	
d6e8d8
	'UNTIL'						=> 'Until',
d6e8d8
	'USER_BAN'					=> 'Ban one or more usernames',
d6e8d8
	'USER_BAN_EXCLUDE_EXPLAIN'	=> 'Enable this to exclude the entered users from all current bans.',
d6e8d8
	'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.',
d6e8d8
	'USER_NO_BANNED'			=> 'No banned usernames',
d6e8d8
	'USER_UNBAN'				=> 'Un-ban or un-exclude usernames',
d6e8d8
	'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.',
d6e8d8
	
d6e8d8
d6e8d8
));
d6e8d8
d6e8d8
?>