2005-12-05 18:52:23 +00:00
< ? php
2007-10-04 15:08:22 +00:00
/**
2005-12-05 18:52:23 +00:00
*
* acp_email [ English ]
*
* @ package language
* @ version $Id $
2007-10-04 15:08:22 +00:00
* @ copyright ( c ) 2005 phpBB Group
* @ license http :// opensource . org / licenses / gpl - license . php GNU Public License
2005-12-05 18:52:23 +00:00
*
*/
/**
* DO NOT CHANGE
*/
2007-10-04 15:08:22 +00:00
if ( ! defined ( 'IN_PHPBB' ))
{
exit ;
}
2005-12-05 18:52:23 +00:00
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-12-05 18:52:23 +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
2006-12-02 13:19:40 +00:00
// Email settings
2005-12-12 23:17:30 +00:00
$lang = array_merge ( $lang , array (
2007-05-12 12:32:28 +00:00
'ACP_MASS_EMAIL_EXPLAIN' => 'Here you can e-mail a message to either all of your users or all users of a specific group <strong>having the option to receive mass e-mails enabled</strong>. To achieve this an e-mail will be sent out to the administrative e-mail address supplied, with a blind carbon copy sent to all recipients. The default setting is to only include 50 recipients in such an e-mail, for more recipients more e-mails will be sent. If you are emailing a large group of people please be patient after submitting and do not stop the page halfway through. It is normal for a mass emailing to take a long time, you will be notified when the script has completed.' ,
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
'ALL_USERS' => 'All users' ,
2005-12-05 18:52:23 +00:00
'COMPOSE' => 'Compose' ,
2007-05-03 14:29:22 +00:00
'EMAIL_SEND_ERROR' => 'There were one or more errors while sending the e-mail. Please check the %sError log%s for detailed error messages.' ,
2006-12-10 14:43:59 +00:00
'EMAIL_SENT' => 'This message has been sent.' ,
'EMAIL_SENT_QUEUE' => 'This message has been queued for sending.' ,
2005-12-05 18:52:23 +00:00
'LOG_SESSION' => 'Log mail session to critical log' ,
2007-01-21 18:33:45 +00:00
'SEND_IMMEDIATELY' => 'Send immediately' ,
2005-12-05 18:52:23 +00:00
'SEND_TO_GROUP' => 'Send to group' ,
'SEND_TO_USERS' => 'Send to users' ,
'SEND_TO_USERS_EXPLAIN' => 'Entering names here will override any group selected above. Enter each username on a new line.' ,
2011-02-03 14:36:37 +01:00
'MAIL_BANNED' => 'Mail banned users' ,
'MAIL_BANNED_EXPLAIN' => 'When sending a mass e-mail to a group you can select here whether banned users will also receive the e-mail.' ,
2005-12-05 18:52:23 +00:00
'MAIL_HIGH_PRIORITY' => 'High' ,
'MAIL_LOW_PRIORITY' => 'Low' ,
'MAIL_NORMAL_PRIORITY' => 'Normal' ,
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
'MAIL_PRIORITY' => 'Mail priority' ,
2005-12-05 18:52:23 +00:00
'MASS_MESSAGE' => 'Your message' ,
'MASS_MESSAGE_EXPLAIN' => 'Please note that you may enter only plain text. All markup will be removed before sending.' ,
2011-02-03 14:36:37 +01:00
2005-12-05 18:52:23 +00:00
'NO_EMAIL_MESSAGE' => 'You must enter a message.' ,
'NO_EMAIL_SUBJECT' => 'You must specify a subject for your message.' ,
2005-12-12 23:17:30 +00:00
));
2005-12-05 18:52:23 +00:00
?>