Blame Identity/Webenv/phpBB/3.0.4/language/en/acp/modules.php

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