Blame Identity/Models/Html/phpBB/3.0.4/language/en/acp/modules.php

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