2005-11-17 18:06:11 +00:00
< ? php
/**
*
* acp_modules [ English ]
*
* @ package language
* @ version $Id $
* @ copyright ( c ) 2005 phpBB Group
* @ license http :// opensource . org / licenses / gpl - license . php GNU Public License
*
*/
/**
* DO NOT CHANGE
*/
if ( empty ( $lang ) || ! is_array ( $lang ))
{
$lang = array ();
}
2006-09-17 22:02:28 +00:00
// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
2005-11-17 18:06:11 +00:00
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
2006-11-10 13:49:52 +00:00
'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.' ,
2005-11-17 18:06:11 +00:00
'ADD_MODULE' => 'Add module' ,
'ADD_MODULE_CONFIRM' => 'Are you sure you want to add the selected module with the selected mode?' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'ADD_MODULE_TITLE' => 'Add module' ,
2005-11-17 18:06:11 +00:00
'CANNOT_REMOVE_MODULE' => 'Unable to remove module, it has assigned childs. Please remove or move all childs before performing this action' ,
'CATEGORY' => 'Category' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'CHOOSE_MODE' => 'Choose module mode' ,
2005-11-17 18:06:11 +00:00
'CHOOSE_MODE_EXPLAIN' => 'Choose the modules mode being used.' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'CHOOSE_MODULE' => 'Choose module' ,
2005-11-17 18:06:11 +00:00
'CHOOSE_MODULE_EXPLAIN' => 'Choose the file being called by this module.' ,
'CREATE_MODULE' => 'Create new module' ,
'DEACTIVATED_MODULE' => 'Deactivated module' ,
'DELETE_MODULE' => 'Delete module' ,
'DELETE_MODULE_CONFIRM' => 'Are you sure you want to remove this module?' ,
'EDIT_MODULE' => 'Edit module' ,
'EDIT_MODULE_EXPLAIN' => 'Here you are able to enter module specific settings' ,
Righto... my first checkin for these language related thingies. Hopefully nothing
has blown up! ;)
The basic style guide is:
1) British English, Cambridge style... ie: -ise, not -ize, etc.
2) Sentence-case pervasively with exception of acronyms/abbreviations, which if not in their contracted form, shall be in title-case. If you don't like it, you can
restyle it via CSS using text-transform: none|uppercase|lowercase|capitalize; ...
additional hooks may be added to the strings to assist this.
3) For those that have missed the switch to UTF-8, it means that the language files need not use numeric entities anymore. <, > and & stay though, as
they must always be entitised.
There'll be more tweaks and changes, though this "big 'un" is out of the way and will get progressively chilly so that it can be frozen for RC1 after
however many betas there may be. ;) Wooh! :P
git-svn-id: file:///svn/phpbb/trunk@6399 89ea8834-ac86-4346-8a33-228a782c2dd0
2006-09-24 00:28:32 +00:00
'HIDDEN_MODULE' => 'Hidden module' ,
2005-12-19 18:55:52 +00:00
2005-11-17 18:06:11 +00:00
'MODULE' => 'Module' ,
2006-10-02 15:11:40 +00:00
'MODULE_ADDED' => 'Module successfully added.' ,
'MODULE_DELETED' => 'Module successfully removed.' ,
2005-11-17 18:06:11 +00:00
'MODULE_DISPLAYED' => 'Module displayed' ,
2006-06-22 15:14:03 +00:00
'MODULE_DISPLAYED_EXPLAIN' => 'If you do not wish to display this module, but want to use it, set this to no.' ,
2006-10-02 15:11:40 +00:00
'MODULE_EDITED' => 'Module successfully edited.' ,
2005-11-17 18:06:11 +00:00
'MODULE_ENABLED' => 'Module enabled' ,
2006-11-01 20:48:50 +00:00
'MODULE_LANGNAME' => 'Module language name' ,
2005-11-17 18:06:11 +00:00
'MODULE_LANGNAME_EXPLAIN' => 'Enter the displayed module name. Use language constant if name is served from language file.' ,
'MODULE_TYPE' => 'Module type' ,
'NO_CATEGORY_TO_MODULE' => 'Unable to turn category into module. Please remove/move all childs before performing this action.' ,
2006-10-02 15:11:40 +00:00
'NO_MODULE' => 'No module found.' ,
'NO_MODULE_ID' => 'No module id specified.' ,
'NO_MODULE_LANGNAME' => 'No module language name specified.' ,
2005-11-17 18:06:11 +00:00
'NO_PARENT' => 'No Parent' ,
'PARENT' => 'Parent' ,
2006-10-02 15:11:40 +00:00
'PARENT_NO_EXIST' => 'Parent does not exist.' ,
2005-11-17 18:06:11 +00:00
'SELECT_MODULE' => 'Select a module' ,
2005-12-12 23:17:30 +00:00
));
2005-11-17 18:06:11 +00:00
?>