443
by dcoles
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0 |
1 |
<?php
|
2 |
/**
|
|
3 |
*
|
|
4 |
* acp_ban [English]
|
|
5 |
*
|
|
6 |
* @package language
|
|
7 |
* @version $Id: ban.php,v 1.19 2007/10/04 15:07:24 acydburn Exp $
|
|
8 |
* @copyright (c) 2005 phpBB Group
|
|
9 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
10 |
*
|
|
11 |
*/
|
|
12 |
||
13 |
/**
|
|
14 |
* DO NOT CHANGE
|
|
15 |
*/
|
|
16 |
if (!defined('IN_PHPBB')) |
|
17 |
{
|
|
18 |
exit; |
|
19 |
}
|
|
20 |
||
21 |
if (empty($lang) || !is_array($lang)) |
|
22 |
{
|
|
23 |
$lang = array(); |
|
24 |
}
|
|
25 |
||
26 |
// DEVELOPERS PLEASE NOTE
|
|
27 |
//
|
|
28 |
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
|
29 |
//
|
|
30 |
// Placeholders can now contain order information, e.g. instead of
|
|
31 |
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|
32 |
// translators to re-order the output of data while ensuring it remains correct
|
|
33 |
//
|
|
34 |
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|
35 |
// equally where a string contains only two placeholders which are used to wrap text
|
|
36 |
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|
37 |
||
38 |
// Banning
|
|
39 |
$lang = array_merge($lang, array( |
|
40 |
'1_HOUR' => '1 hour', |
|
41 |
'30_MINS' => '30 minutes', |
|
42 |
'6_HOURS' => '6 hours', |
|
43 |
||
44 |
'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 <span style="text-decoration: underline;">Until -></span> for the ban length and enter a date in <kbd>YYYY-MM-DD</kbd> format.', |
|
45 |
||
46 |
'BAN_EXCLUDE' => 'Exclude from banning', |
|
47 |
'BAN_LENGTH' => 'Length of ban', |
|
48 |
'BAN_REASON' => 'Reason for ban', |
|
49 |
'BAN_GIVE_REASON' => 'Reason shown to the banned', |
|
50 |
'BAN_UPDATE_SUCCESSFUL' => 'The banlist has been updated successfully.', |
|
51 |
||
52 |
'EMAIL_BAN' => 'Ban one or more e-mail addresses', |
|
53 |
'EMAIL_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered e-mail address from all current bans.', |
|
54 |
'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.', |
|
55 |
'EMAIL_NO_BANNED' => 'No banned e-mail addresses', |
|
56 |
'EMAIL_UNBAN' => 'Un-ban or un-exclude e-mails', |
|
57 |
'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.', |
|
58 |
||
59 |
'IP_BAN' => 'Ban one or more IPs', |
|
60 |
'IP_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered IP from all current bans.', |
|
61 |
'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 “*”.', |
|
62 |
'IP_HOSTNAME' => 'IP addresses or hostnames', |
|
63 |
'IP_NO_BANNED' => 'No banned IP addresses', |
|
64 |
'IP_UNBAN' => 'Un-ban or un-exclude IPs', |
|
65 |
'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.', |
|
66 |
||
67 |
'LENGTH_BAN_INVALID' => 'The date has to be formatted <kbd>YYYY-MM-DD</kbd>.', |
|
68 |
||
69 |
'PERMANENT' => 'Permanent', |
|
70 |
||
71 |
'UNTIL' => 'Until', |
|
72 |
'USER_BAN' => 'Ban one or more usernames', |
|
73 |
'USER_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered users from all current bans.', |
|
74 |
'USER_BAN_EXPLAIN' => 'You can ban multiple users in one go by entering each name on a new line. Use the <span style="text-decoration: underline;">Find a member</span> facility to look up and add one or more users automatically.', |
|
75 |
'USER_NO_BANNED' => 'No banned usernames', |
|
76 |
'USER_UNBAN' => 'Un-ban or un-exclude usernames', |
|
77 |
'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.', |
|
78 |
||
79 |
||
80 |
));
|
|
81 |
||
82 |
?>
|