1 | <?php
|
---|
2 | /**
|
---|
3 | *
|
---|
4 | * acp_modules [English]
|
---|
5 | *
|
---|
6 | * @package language
|
---|
7 | * @version $Id: modules.php 8479 2008-03-29 00:22:48Z naderman $
|
---|
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 | $lang = array_merge($lang, array(
|
---|
39 | 'ACP_MODULE_MANAGEMENT_EXPLAIN' => 'Here you are able to manage all kind of modules. Please note that the ACP has a three-level menu structure (Category -> Category -> Module) whereby the others having a two-level menu structure (Category -> Module) which must be kept. Please also be aware that you may lock out yourself if you disable or delete the modules responsible for the module management itself.',
|
---|
40 | 'ADD_MODULE' => 'Add module',
|
---|
41 | 'ADD_MODULE_CONFIRM' => 'Are you sure you want to add the selected module with the selected mode?',
|
---|
42 | 'ADD_MODULE_TITLE' => 'Add module',
|
---|
43 |
|
---|
44 | 'CANNOT_REMOVE_MODULE' => 'Unable to remove module, it has assigned children. Please remove or move all children before performing this action.',
|
---|
45 | 'CATEGORY' => 'Category',
|
---|
46 | 'CHOOSE_MODE' => 'Choose module mode',
|
---|
47 | 'CHOOSE_MODE_EXPLAIN' => 'Choose the modules mode being used.',
|
---|
48 | 'CHOOSE_MODULE' => 'Choose module',
|
---|
49 | 'CHOOSE_MODULE_EXPLAIN' => 'Choose the file being called by this module.',
|
---|
50 | 'CREATE_MODULE' => 'Create new module',
|
---|
51 |
|
---|
52 | 'DEACTIVATED_MODULE' => 'Deactivated module',
|
---|
53 | 'DELETE_MODULE' => 'Delete module',
|
---|
54 | 'DELETE_MODULE_CONFIRM' => 'Are you sure you want to remove this module?',
|
---|
55 |
|
---|
56 | 'EDIT_MODULE' => 'Edit module',
|
---|
57 | 'EDIT_MODULE_EXPLAIN' => 'Here you are able to enter module specific settings.',
|
---|
58 |
|
---|
59 | 'HIDDEN_MODULE' => 'Hidden module',
|
---|
60 |
|
---|
61 | 'MODULE' => 'Module',
|
---|
62 | 'MODULE_ADDED' => 'Module successfully added.',
|
---|
63 | 'MODULE_DELETED' => 'Module successfully removed.',
|
---|
64 | 'MODULE_DISPLAYED' => 'Module displayed',
|
---|
65 | 'MODULE_DISPLAYED_EXPLAIN' => 'If you do not wish to display this module, but want to use it, set this to no.',
|
---|
66 | 'MODULE_EDITED' => 'Module successfully edited.',
|
---|
67 | 'MODULE_ENABLED' => 'Module enabled',
|
---|
68 | 'MODULE_LANGNAME' => 'Module language name',
|
---|
69 | 'MODULE_LANGNAME_EXPLAIN' => 'Enter the displayed module name. Use language constant if name is served from language file.',
|
---|
70 | 'MODULE_TYPE' => 'Module type',
|
---|
71 |
|
---|
72 | 'NO_CATEGORY_TO_MODULE' => 'Unable to turn category into module. Please remove/move all children before performing this action.',
|
---|
73 | 'NO_MODULE' => 'No module found.',
|
---|
74 | 'NO_MODULE_ID' => 'No module id specified.',
|
---|
75 | 'NO_MODULE_LANGNAME' => 'No module language name specified.',
|
---|
76 | 'NO_PARENT' => 'No Parent',
|
---|
77 |
|
---|
78 | 'PARENT' => 'Parent',
|
---|
79 | 'PARENT_NO_EXIST' => 'Parent does not exist.',
|
---|
80 |
|
---|
81 | 'SELECT_MODULE' => 'Select a module',
|
---|
82 | ));
|
---|
83 |
|
---|
84 | ?>
|
---|