[ Index ] |
PHP Cross Reference of phpBB 3.0 Beta 3 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * acp_ban [English] 5 * 6 * @package language 7 * @version $Id: ban.php,v 1.9 2006/10/02 15:10:29 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 (empty($lang) || !is_array($lang)) 17 { 18 $lang = array(); 19 } 20 21 // DEVELOPERS PLEASE NOTE 22 // 23 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 24 // 25 // Placeholders can now contain order information, e.g. instead of 26 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 27 // translators to re-order the output of data while ensuring it remains correct 28 // 29 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 30 // equally where a string contains only two placeholders which are used to wrap text 31 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 32 33 // Banning 34 $lang = array_merge($lang, array( 35 '1_HOUR' => '1 hour', 36 '30_MINS' => '30 minutes', 37 '6_HOURS' => '6 hours', 38 39 'ACP_BAN_EXPLAIN' => 'Here you can control the banning of users by name, IP or email address. These methods prevent a user reaching any part of the board. You can give a short (255 character) reason for the ban if you wish. This will be displayed in the admin log. The length 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 <u>Until</u> for the ban length and enter a date in yyyy-mm-dd format.', 40 41 'BAN_EXCLUDE' => 'Exclude from banning', 42 'BAN_LENGTH' => 'Length of ban', 43 'BAN_REASON' => 'Reason for ban', 44 'BAN_GIVE_REASON' => 'Reason shown to the banned', 45 'BAN_UPDATE_SUCCESSFUL' => 'The banlist has been updated successfully.', 46 47 'EMAIL_BAN' => 'Ban one or more email addresses', 48 'EMAIL_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered email address from all current bans.', 49 'EMAIL_BAN_EXPLAIN' => 'To specify more than one email 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.', 50 'EMAIL_NO_BANNED' => 'No banned email addresses', 51 'EMAIL_UNBAN' => 'Un-ban or un-exclude emails', 52 'EMAIL_UNBAN_EXPLAIN' => 'You can unban (or un-exclude) multiple email addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser. Excluded email addresses have a marked background.', 53 54 'IP_BAN' => 'Ban one or more IPs', 55 'IP_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered IP from all current bans.', 56 '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 *', 57 'IP_HOSTNAME' => 'IP addresses or hostnames', 58 'IP_NO_BANNED' => 'No banned IP addresses', 59 'IP_UNBAN' => 'Un-ban or Un-exclude IPs', 60 '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 have a marked background.', 61 62 'PERMANENT' => 'Permanent', 63 64 'UNTIL' => 'Until', 65 'USER_BAN' => 'Ban one or more usernames', 66 'USER_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered users from all current bans.', 67 'USER_BAN_EXPLAIN' => 'You can ban multiple users in one go by entering each name on a new line. Use the <u>Find a member</u> facility to look up and add one or more users automatically.', 68 'USER_NO_BANNED' => 'No banned usernames', 69 'USER_UNBAN' => 'Un-ban or Un-exclude usernames', 70 '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 have a marked background.', 71 )); 72 73 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Nov 22 00:35:05 2006 | Cross-referenced by PHPXref 0.6 |