[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * acp_bots [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 // Bot settings 39 $lang = array_merge($lang, array( 40 'BOTS' => 'Manage bots', 41 'BOTS_EXPLAIN' => '“Bots”, “spiders” or “crawlers” are automated agents most commonly used by search engines to update their databases. Since they rarely make proper use of sessions they can distort visitor counts, increase load and sometimes fail to index sites correctly. Here you can define a special type of user to overcome these problems.', 42 'BOT_ACTIVATE' => 'Activate', 43 'BOT_ACTIVE' => 'Bot active', 44 'BOT_ADD' => 'Add bot', 45 'BOT_ADDED' => 'New bot successfully added.', 46 'BOT_AGENT' => 'Agent match', 47 'BOT_AGENT_EXPLAIN' => 'A string matching the bots browser agent, partial matches are allowed.', 48 'BOT_DEACTIVATE' => 'Deactivate', 49 'BOT_DELETED' => 'Bot deleted successfully.', 50 'BOT_EDIT' => 'Edit bots', 51 'BOT_EDIT_EXPLAIN' => 'Here you can add or edit an existing bot entry. You may define an agent string and/or one or more IP addresses (or range of addresses) to match. Be careful when defining matching agent strings or addresses. You may also specify a style and language that the bot will view the board using. This may allow you to reduce bandwidth use by setting a simple style for bots. Remember to set appropriate permissions for the special Bot usergroup.', 52 'BOT_LANG' => 'Bot language', 53 'BOT_LANG_EXPLAIN' => 'The language presented to the bot as it browses.', 54 'BOT_LAST_VISIT' => 'Last visit', 55 'BOT_IP' => 'Bot IP address', 56 'BOT_IP_EXPLAIN' => 'Partial matches are allowed, separate addresses with a comma.', 57 'BOT_NAME' => 'Bot name', 58 'BOT_NAME_EXPLAIN' => 'Used only for your own information.', 59 'BOT_NAME_TAKEN' => 'The name is already in use on your board and can’t be used for the Bot.', 60 'BOT_NEVER' => 'Never', 61 'BOT_STYLE' => 'Bot style', 62 'BOT_STYLE_EXPLAIN' => 'The style used for the board by the bot.', 63 'BOT_UPDATED' => 'Existing bot updated successfully.', 64 65 'ERR_BOT_AGENT_MATCHES_UA' => 'The bot agent you supplied is similar to the one you are currently using. Please adjust the agent for this bot.', 66 'ERR_BOT_NO_IP' => 'The IP addresses you supplied were invalid or the hostname could not be resolved.', 67 'ERR_BOT_NO_MATCHES' => 'You must supply at least one of an agent or IP for this bot match.', 68 69 'NO_BOT' => 'Found no bot with the specified ID.', 70 'NO_BOT_GROUP' => 'Unable to find special bot group.', 71 )); 72 73 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Oct 2 15:03:47 2013 | Cross-referenced by PHPXref 0.7.1 |