Blame Extras/phpBB/3.0.4/language/en/acp/bots.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* acp_bots [English]
4c79b5
*
4c79b5
* @package language
4c79b5
* @version $Id: bots.php 8479 2008-03-29 00:22:48Z naderman $
4c79b5
* @copyright (c) 2005 phpBB Group
4c79b5
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
4c79b5
*
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* DO NOT CHANGE
4c79b5
*/
4c79b5
if (!defined('IN_PHPBB'))
4c79b5
{
4c79b5
	exit;
4c79b5
}
4c79b5
4c79b5
if (empty($lang) || !is_array($lang))
4c79b5
{
4c79b5
	$lang = array();
4c79b5
}
4c79b5
4c79b5
// DEVELOPERS PLEASE NOTE
4c79b5
//
4c79b5
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
4c79b5
//
4c79b5
// Placeholders can now contain order information, e.g. instead of
4c79b5
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
4c79b5
// translators to re-order the output of data while ensuring it remains correct
4c79b5
//
4c79b5
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
4c79b5
// equally where a string contains only two placeholders which are used to wrap text
4c79b5
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
4c79b5
4c79b5
// Bot settings
4c79b5
$lang = array_merge($lang, array(
4c79b5
	'BOTS'				=> 'Manage bots',
4c79b5
	'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.',
4c79b5
	'BOT_ACTIVATE'		=> 'Activate',
4c79b5
	'BOT_ACTIVE'		=> 'Bot active',
4c79b5
	'BOT_ADD'			=> 'Add bot',
4c79b5
	'BOT_ADDED'			=> 'New bot successfully added.',
4c79b5
	'BOT_AGENT'			=> 'Agent match',
4c79b5
	'BOT_AGENT_EXPLAIN'	=> 'A string matching the bots browser agent, partial matches are allowed.',
4c79b5
	'BOT_DEACTIVATE'	=> 'Deactivate',
4c79b5
	'BOT_DELETED'		=> 'Bot deleted successfully.',
4c79b5
	'BOT_EDIT'			=> 'Edit bots',
4c79b5
	'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.',
4c79b5
	'BOT_LANG'			=> 'Bot language',
4c79b5
	'BOT_LANG_EXPLAIN'	=> 'The language presented to the bot as it browses.',
4c79b5
	'BOT_LAST_VISIT'	=> 'Last visit',
4c79b5
	'BOT_IP'			=> 'Bot IP address',
4c79b5
	'BOT_IP_EXPLAIN'	=> 'Partial matches are allowed, separate addresses with a comma.',
4c79b5
	'BOT_NAME'			=> 'Bot name',
4c79b5
	'BOT_NAME_EXPLAIN'	=> 'Used only for your own information.',
4c79b5
	'BOT_NAME_TAKEN'	=> 'The name is already in use on your board and can’t be used for the Bot.',
4c79b5
	'BOT_NEVER'			=> 'Never',
4c79b5
	'BOT_STYLE'			=> 'Bot style',
4c79b5
	'BOT_STYLE_EXPLAIN'	=> 'The style used for the board by the bot.',
4c79b5
	'BOT_UPDATED'		=> 'Existing bot updated successfully.',
4c79b5
4c79b5
	'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.',
4c79b5
	'ERR_BOT_NO_IP'				=> 'The IP addresses you supplied were invalid or the hostname could not be resolved.',
4c79b5
	'ERR_BOT_NO_MATCHES'		=> 'You must supply at least one of an agent or IP for this bot match.',
4c79b5
4c79b5
	'NO_BOT'		=> 'Found no bot with the specified ID.',
4c79b5
	'NO_BOT_GROUP'	=> 'Unable to find special bot group.',
4c79b5
));
4c79b5
4c79b5
?>