[ Index ]

PHP Cross Reference of phpBB-3.3.11-deutsch

title

Body

[close]

/language/en/acp/ -> bots.php (source)

   1  <?php
   2  /**
   3  *
   4  * This file is part of the phpBB Forum Software package.
   5  *
   6  * @copyright (c) phpBB Limited <https://www.phpbb.com>
   7  * @license GNU General Public License, version 2 (GPL-2.0)
   8  *
   9  * For full copyright and license information, please see
  10  * the docs/CREDITS.txt file.
  11  *
  12  */
  13  
  14  /**
  15  * DO NOT CHANGE
  16  */
  17  if (!defined('IN_PHPBB'))
  18  {
  19      exit;
  20  }
  21  
  22  if (empty($lang) || !is_array($lang))
  23  {
  24      $lang = array();
  25  }
  26  
  27  // DEVELOPERS PLEASE NOTE
  28  //
  29  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  30  //
  31  // Placeholders can now contain order information, e.g. instead of
  32  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  33  // translators to re-order the output of data while ensuring it remains correct
  34  //
  35  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  36  // equally where a string contains only two placeholders which are used to wrap text
  37  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  38  
  39  // Bot settings
  40  $lang = array_merge($lang, array(
  41      'BOTS'                => 'Manage bots',
  42      '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.',
  43      'BOT_ACTIVATE'        => 'Activate',
  44      'BOT_ACTIVE'        => 'Bot active',
  45      'BOT_ADD'            => 'Add bot',
  46      'BOT_ADDED'            => 'New bot successfully added.',
  47      'BOT_AGENT'            => 'Agent match',
  48      'BOT_AGENT_EXPLAIN'    => 'A string matching the bots browser agent, partial matches are allowed.',
  49      'BOT_DEACTIVATE'    => 'Deactivate',
  50      'BOT_DELETED'        => 'Bot deleted successfully.',
  51      'BOT_EDIT'            => 'Edit bots',
  52      '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.',
  53      'BOT_LANG'            => 'Bot language',
  54      'BOT_LANG_EXPLAIN'    => 'The language presented to the bot as it browses.',
  55      'BOT_LAST_VISIT'    => 'Last visit',
  56      'BOT_IP'            => 'Bot IP address',
  57      'BOT_IP_EXPLAIN'    => 'Partial matches are allowed, separate addresses with a comma.',
  58      'BOT_NAME'            => 'Bot name',
  59      'BOT_NAME_EXPLAIN'    => 'Used only for your own information.',
  60      'BOT_NAME_TAKEN'    => 'The name is already in use on your board and can’t be used for the Bot.',
  61      'BOT_NEVER'            => 'Never',
  62      'BOT_STYLE'            => 'Bot style',
  63      'BOT_STYLE_EXPLAIN'    => 'The style used for the board by the bot.',
  64      'BOT_UPDATED'        => 'Existing bot updated successfully.',
  65  
  66      '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.',
  67      'ERR_BOT_NO_IP'                => 'The IP addresses you supplied were invalid or the hostname could not be resolved.',
  68      'ERR_BOT_NO_MATCHES'        => 'You must supply at least one of an agent or IP for this bot match.',
  69  
  70      'NO_BOT'        => 'Found no bot with the specified ID.',
  71      'NO_BOT_GROUP'    => 'Unable to find special bot group.',
  72  ));


Generated: Sat Nov 4 14:26:03 2023 Cross-referenced by PHPXref 0.7.1