[ Index ] |
PHP Cross Reference of phpBB 3.0 Beta 3 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * acp_bots [English] 5 * 6 * @package language 7 * @version $Id: bots.php,v 1.6 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 // Placeholders can now contain order information, e.g. instead of 24 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 25 // translators to re-order the output of data while ensuring it remains correct 26 // 27 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 28 // equally where a string contains only two placeholders which are used to wrap text 29 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 30 31 // Bot settings 32 $lang = array_merge($lang, array( 33 'BOTS' => 'Manage bots', 34 'BOTS_EXPLAIN' => 'Bots 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.', 35 'BOT_ACTIVATE' => 'Activate', 36 'BOT_ACTIVE' => 'Bot active', 37 'BOT_ADD' => 'Add bot', 38 'BOT_ADDED' => 'New bot successfully added.', 39 'BOT_AGENT' => 'Agent match', 40 'BOT_AGENT_EXPLAIN' => 'A string matching the bots browser agent, partial matches are allowed.', 41 'BOT_DEACTIVATE' => 'Deactivate', 42 'BOT_DELETED' => 'Bot deleted successfully.', 43 'BOT_EDIT' => 'Edit bots', 44 '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.', 45 'BOT_LANG' => 'Bot language', 46 'BOT_LANG_EXPLAIN' => 'The language presented to the bot as it browses.', 47 'BOT_LAST_VISIT' => 'Last visit', 48 'BOT_IP' => 'Bot IP address', 49 'BOT_IP_EXPLAIN' => 'Partial matches are allowed, seperate addresses with a comma.', 50 'BOT_NAME' => 'Bot name', 51 'BOT_NAME_EXPLAIN' => 'Used only for your own information.', 52 'BOT_NEVER' => 'Never', 53 'BOT_STYLE' => 'Bot style', 54 'BOT_STYLE_EXPLAIN' => 'The style used for the board by the bot.', 55 'BOT_UPDATED' => 'Existing bot updated successfully.', 56 'BOT_VIS' => 'Bot visible', 57 'BOT_VIS_EXPLAIN' => 'Allow bot to be seen by all users in online lists.', 58 59 '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.', 60 'ERR_BOT_NO_IP' => 'The IP addresses you supplied were invalid or the hostname could not be resolved.', 61 'ERR_BOT_NO_MATCHES' => 'You must supply at least one of an agent or IP for this bot match.', 62 63 'NO_BOT' => 'Found no bot with the specified ID.', 64 'NO_BOT_GROUP' => 'Unable to find special bot group.', 65 )); 66 67 ?>
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 |