[ Index ] |
PHP Cross Reference of phpBB 3.0 Beta 3 |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * acp_modules [English] 5 * 6 * @package language 7 * @version $Id: modules.php,v 1.9 2006/11/10 13:49:52 acydburn Exp $ 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 (empty($lang) || !is_array($lang)) 17 { 18 $lang = array(); 19 } 20 21 // DEVELOPERS PLEASE NOTE 22 // 23 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 24 // 25 // Placeholders can now contain order information, e.g. instead of 26 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 27 // translators to re-order the output of data while ensuring it remains correct 28 // 29 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 30 // equally where a string contains only two placeholders which are used to wrap text 31 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 32 33 $lang = array_merge($lang, array( 34 '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.', 35 'ADD_MODULE' => 'Add module', 36 'ADD_MODULE_CONFIRM' => 'Are you sure you want to add the selected module with the selected mode?', 37 'ADD_MODULE_TITLE' => 'Add module', 38 39 'CANNOT_REMOVE_MODULE' => 'Unable to remove module, it has assigned childs. Please remove or move all childs before performing this action', 40 'CATEGORY' => 'Category', 41 'CHOOSE_MODE' => 'Choose module mode', 42 'CHOOSE_MODE_EXPLAIN' => 'Choose the modules mode being used.', 43 'CHOOSE_MODULE' => 'Choose module', 44 'CHOOSE_MODULE_EXPLAIN' => 'Choose the file being called by this module.', 45 'CREATE_MODULE' => 'Create new module', 46 47 'DEACTIVATED_MODULE' => 'Deactivated module', 48 'DELETE_MODULE' => 'Delete module', 49 'DELETE_MODULE_CONFIRM' => 'Are you sure you want to remove this module?', 50 51 'EDIT_MODULE' => 'Edit module', 52 'EDIT_MODULE_EXPLAIN' => 'Here you are able to enter module specific settings', 53 54 'HIDDEN_MODULE' => 'Hidden module', 55 56 'MODULE' => 'Module', 57 'MODULE_ADDED' => 'Module successfully added.', 58 'MODULE_DELETED' => 'Module successfully removed.', 59 'MODULE_DISPLAYED' => 'Module displayed', 60 'MODULE_DISPLAYED_EXPLAIN' => 'If you do not wish to display this module, but want to use it, set this to no.', 61 'MODULE_EDITED' => 'Module successfully edited.', 62 'MODULE_ENABLED' => 'Module enabled', 63 'MODULE_LANGNAME' => 'Module language name', 64 'MODULE_LANGNAME_EXPLAIN' => 'Enter the displayed module name. Use language constant if name is served from language file.', 65 'MODULE_TYPE' => 'Module type', 66 67 'NO_CATEGORY_TO_MODULE' => 'Unable to turn category into module. Please remove/move all childs before performing this action.', 68 'NO_MODULE' => 'No module found.', 69 'NO_MODULE_ID' => 'No module id specified.', 70 'NO_MODULE_LANGNAME' => 'No module language name specified.', 71 'NO_PARENT' => 'No Parent', 72 73 'PARENT' => 'Parent', 74 'PARENT_NO_EXIST' => 'Parent does not exist.', 75 76 'SELECT_MODULE' => 'Select a module', 77 )); 78 79 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Nov 22 00:35:05 2006 | Cross-referenced by PHPXref 0.6 |