Blame Identity/Models/Html/phpBB/3.0.4/language/en/acp/bots.php

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