1 | <?php
|
---|
2 | /**
|
---|
3 | *
|
---|
4 | * acp_ban [English]
|
---|
5 | *
|
---|
6 | * @package language
|
---|
7 | * @version $Id$
|
---|
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 | 'BANNED_UNTIL_DATE' => 'until %s', // Example: "until Mon 13.Jul.2009, 14:44"
|
---|
52 | 'BANNED_UNTIL_DURATION' => '%1$s (until %2$s)', // Example: "7 days (until Tue 14.Jul.2009, 14:44)"
|
---|
53 |
|
---|
54 | 'EMAIL_BAN' => 'Ban one or more e-mail addresses',
|
---|
55 | 'EMAIL_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered e-mail address from all current bans.',
|
---|
56 | '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.',
|
---|
57 | 'EMAIL_NO_BANNED' => 'No banned e-mail addresses',
|
---|
58 | 'EMAIL_UNBAN' => 'Un-ban or un-exclude e-mails',
|
---|
59 | '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.',
|
---|
60 |
|
---|
61 | 'IP_BAN' => 'Ban one or more IPs',
|
---|
62 | 'IP_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered IP from all current bans.',
|
---|
63 | '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 “*”.',
|
---|
64 | 'IP_HOSTNAME' => 'IP addresses or hostnames',
|
---|
65 | 'IP_NO_BANNED' => 'No banned IP addresses',
|
---|
66 | 'IP_UNBAN' => 'Un-ban or un-exclude IPs',
|
---|
67 | '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.',
|
---|
68 |
|
---|
69 | 'LENGTH_BAN_INVALID' => 'The date has to be formatted <kbd>YYYY-MM-DD</kbd>.',
|
---|
70 |
|
---|
71 | 'PERMANENT' => 'Permanent',
|
---|
72 |
|
---|
73 | 'UNTIL' => 'Until',
|
---|
74 | 'USER_BAN' => 'Ban one or more usernames',
|
---|
75 | 'USER_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered users from all current bans.',
|
---|
76 | '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.',
|
---|
77 | 'USER_NO_BANNED' => 'No banned usernames',
|
---|
78 | 'USER_UNBAN' => 'Un-ban or un-exclude usernames',
|
---|
79 | '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.',
|
---|
80 | ));
|
---|
81 |
|
---|
82 | ?>
|
---|