Blame Extras/phpBB/3.0.4/language/en/acp/ban.php

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