~azzar1/unity/add-show-desktop-key

« back to all changes in this revision

Viewing changes to www/php/phpBB3/language/en/acp/bots.php

  • Committer: William Grant
  • Date: 2009-02-23 23:47:02 UTC
  • mfrom: (1099.1.211 new-dispatch)
  • Revision ID: grantw@unimelb.edu.au-20090223234702-db4b1llly46ignwo
Merge from lp:~ivle-dev/ivle/new-dispatch.

Pretty much everything changes. Reread the setup docs. Backup your databases.
Every file is now in a different installed location, the configuration system
is rewritten, the dispatch system is rewritten, URLs are different, the
database is different, worksheets and exercises are no longer on the
filesystem, we use a templating engine, jail service protocols are rewritten,
we don't repeat ourselves, we have authorization rewritten, phpBB is gone,
and probably lots of other things that I cannot remember.

This is certainly the biggest commit I have ever made, and hopefully
the largest I ever will.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
<?php
2
 
/**
3
 
*
4
 
* acp_bots [English]
5
 
*
6
 
* @package language
7
 
* @version $Id: bots.php,v 1.12 2007/10/04 15:07:24 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 (!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
 
?>
 
 
b'\\ No newline at end of file'