Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 41
n/a
0 / 0
CRAP
n/a
0 / 0
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*/
17if (!defined('IN_PHPBB'))
18{
19    exit;
20}
21
22if (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$lang = array_merge($lang, array(
40    '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.',
41    'ADD_MODULE'                    => 'Add module',
42    'ADD_MODULE_CONFIRM'            => 'Are you sure you want to add the selected module with the selected mode?',
43    'ADD_MODULE_TITLE'                => 'Add module',
44
45    'CANNOT_REMOVE_MODULE'    => 'Unable to remove module, it has assigned children. Please remove or move all children before performing this action.',
46    'CATEGORY'                => 'Category',
47    'CHOOSE_MODE'            => 'Choose module mode',
48    'CHOOSE_MODE_EXPLAIN'    => 'Choose the modules mode being used.',
49    'CHOOSE_MODULE'            => 'Choose module',
50    'CHOOSE_MODULE_EXPLAIN'    => 'Choose the file being called by this module.',
51    'CREATE_MODULE'            => 'Create new module',
52
53    'DEACTIVATED_MODULE'    => 'Deactivated module',
54    'DELETE_MODULE'            => 'Delete module',
55    'DELETE_MODULE_CONFIRM'    => 'Are you sure you want to remove this module?',
56
57    'EDIT_MODULE'            => 'Edit module',
58    'EDIT_MODULE_EXPLAIN'    => 'Here you are able to enter module specific settings.',
59
60    'HIDDEN_MODULE'            => 'Hidden module',
61
62    'MODULE'                    => 'Module',
63    'MODULE_ADDED'                => 'Module successfully added.',
64    'MODULE_DELETED'            => 'Module successfully removed.',
65    'MODULE_DISPLAYED'            => 'Module displayed',
66    'MODULE_DISPLAYED_EXPLAIN'    => 'If you do not wish to display this module, but want to use it, set this to no.',
67    'MODULE_EDITED'                => 'Module successfully edited.',
68    'MODULE_ENABLED'            => 'Module enabled',
69    'MODULE_LANGNAME'            => 'Module language name',
70    'MODULE_LANGNAME_EXPLAIN'    => 'Enter the displayed module name. Use language constant if name is served from language file.',
71    'MODULE_TYPE'                => 'Module type',
72
73    'NO_CATEGORY_TO_MODULE'    => 'Unable to turn category into module. Please remove/move all children before performing this action.',
74    'NO_MODULE'                => 'No module found.',
75    'NO_MODULE_ID'            => 'No module id specified.',
76    'NO_MODULE_LANGNAME'    => 'No module language name specified.',
77    'NO_PARENT'                => 'No Parent',
78
79    'PARENT'                => 'Parent',
80    'PARENT_NO_EXIST'        => 'Parent does not exist.',
81
82    'SELECT_MODULE'            => 'Select a module',
83));