|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* acp_modules [English]
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
* @package language
|
|
|
4c79b5 |
* @version $Id: modules.php 8479 2008-03-29 00:22:48Z naderman $
|
|
|
4c79b5 |
* @copyright (c) 2005 phpBB Group
|
|
|
4c79b5 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
|
4c79b5 |
*
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
|
|
|
4c79b5 |
/**
|
|
|
4c79b5 |
* DO NOT CHANGE
|
|
|
4c79b5 |
*/
|
|
|
4c79b5 |
if (!defined('IN_PHPBB'))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
exit;
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
if (empty($lang) || !is_array($lang))
|
|
|
4c79b5 |
{
|
|
|
4c79b5 |
$lang = array();
|
|
|
4c79b5 |
}
|
|
|
4c79b5 |
|
|
|
4c79b5 |
// DEVELOPERS PLEASE NOTE
|
|
|
4c79b5 |
//
|
|
|
4c79b5 |
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
|
|
4c79b5 |
//
|
|
|
4c79b5 |
// Placeholders can now contain order information, e.g. instead of
|
|
|
4c79b5 |
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|
|
4c79b5 |
// translators to re-order the output of data while ensuring it remains correct
|
|
|
4c79b5 |
//
|
|
|
4c79b5 |
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|
|
4c79b5 |
// equally where a string contains only two placeholders which are used to wrap text
|
|
|
4c79b5 |
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|
|
4c79b5 |
|
|
|
4c79b5 |
$lang = array_merge($lang, array(
|
|
|
4c79b5 |
'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.',
|
|
|
4c79b5 |
'ADD_MODULE' => 'Add module',
|
|
|
4c79b5 |
'ADD_MODULE_CONFIRM' => 'Are you sure you want to add the selected module with the selected mode?',
|
|
|
4c79b5 |
'ADD_MODULE_TITLE' => 'Add module',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'CANNOT_REMOVE_MODULE' => 'Unable to remove module, it has assigned children. Please remove or move all children before performing this action.',
|
|
|
4c79b5 |
'CATEGORY' => 'Category',
|
|
|
4c79b5 |
'CHOOSE_MODE' => 'Choose module mode',
|
|
|
4c79b5 |
'CHOOSE_MODE_EXPLAIN' => 'Choose the modules mode being used.',
|
|
|
4c79b5 |
'CHOOSE_MODULE' => 'Choose module',
|
|
|
4c79b5 |
'CHOOSE_MODULE_EXPLAIN' => 'Choose the file being called by this module.',
|
|
|
4c79b5 |
'CREATE_MODULE' => 'Create new module',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'DEACTIVATED_MODULE' => 'Deactivated module',
|
|
|
4c79b5 |
'DELETE_MODULE' => 'Delete module',
|
|
|
4c79b5 |
'DELETE_MODULE_CONFIRM' => 'Are you sure you want to remove this module?',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'EDIT_MODULE' => 'Edit module',
|
|
|
4c79b5 |
'EDIT_MODULE_EXPLAIN' => 'Here you are able to enter module specific settings.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'HIDDEN_MODULE' => 'Hidden module',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'MODULE' => 'Module',
|
|
|
4c79b5 |
'MODULE_ADDED' => 'Module successfully added.',
|
|
|
4c79b5 |
'MODULE_DELETED' => 'Module successfully removed.',
|
|
|
4c79b5 |
'MODULE_DISPLAYED' => 'Module displayed',
|
|
|
4c79b5 |
'MODULE_DISPLAYED_EXPLAIN' => 'If you do not wish to display this module, but want to use it, set this to no.',
|
|
|
4c79b5 |
'MODULE_EDITED' => 'Module successfully edited.',
|
|
|
4c79b5 |
'MODULE_ENABLED' => 'Module enabled',
|
|
|
4c79b5 |
'MODULE_LANGNAME' => 'Module language name',
|
|
|
4c79b5 |
'MODULE_LANGNAME_EXPLAIN' => 'Enter the displayed module name. Use language constant if name is served from language file.',
|
|
|
4c79b5 |
'MODULE_TYPE' => 'Module type',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'NO_CATEGORY_TO_MODULE' => 'Unable to turn category into module. Please remove/move all children before performing this action.',
|
|
|
4c79b5 |
'NO_MODULE' => 'No module found.',
|
|
|
4c79b5 |
'NO_MODULE_ID' => 'No module id specified.',
|
|
|
4c79b5 |
'NO_MODULE_LANGNAME' => 'No module language name specified.',
|
|
|
4c79b5 |
'NO_PARENT' => 'No Parent',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'PARENT' => 'Parent',
|
|
|
4c79b5 |
'PARENT_NO_EXIST' => 'Parent does not exist.',
|
|
|
4c79b5 |
|
|
|
4c79b5 |
'SELECT_MODULE' => 'Select a module',
|
|
|
4c79b5 |
));
|
|
|
4c79b5 |
|
|
|
4c79b5 |
?>
|