|
|
ef5584 |
|
|
|
ef5584 |
/**
|
|
|
ef5584 |
*
|
|
|
ef5584 |
* acp_email [English]
|
|
|
ef5584 |
*
|
|
|
ef5584 |
* @package language
|
|
|
ef5584 |
* @version $Id: email.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 |
// Email settings
|
|
|
ef5584 |
$lang = array_merge($lang, array(
|
|
|
ef5584 |
'ACP_MASS_EMAIL_EXPLAIN' => 'Here you can e-mail a message to either all of your users or all users of a specific group having the option to receive mass e-mails enabled. 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.',
|
|
|
ef5584 |
'ALL_USERS' => 'All users',
|
|
|
ef5584 |
|
|
|
ef5584 |
'COMPOSE' => 'Compose',
|
|
|
ef5584 |
|
|
|
ef5584 |
'EMAIL_SEND_ERROR' => 'There were one or more errors while sending the e-mail. Please check the %sError log%s for detailed error messages.',
|
|
|
ef5584 |
'EMAIL_SENT' => 'This message has been sent.',
|
|
|
ef5584 |
'EMAIL_SENT_QUEUE' => 'This message has been queued for sending.',
|
|
|
ef5584 |
|
|
|
ef5584 |
'LOG_SESSION' => 'Log mail session to critical log',
|
|
|
ef5584 |
|
|
|
ef5584 |
'SEND_IMMEDIATELY' => 'Send immediately',
|
|
|
ef5584 |
'SEND_TO_GROUP' => 'Send to group',
|
|
|
ef5584 |
'SEND_TO_USERS' => 'Send to users',
|
|
|
ef5584 |
'SEND_TO_USERS_EXPLAIN' => 'Entering names here will override any group selected above. Enter each username on a new line.',
|
|
|
ef5584 |
|
|
|
ef5584 |
'MAIL_HIGH_PRIORITY' => 'High',
|
|
|
ef5584 |
'MAIL_LOW_PRIORITY' => 'Low',
|
|
|
ef5584 |
'MAIL_NORMAL_PRIORITY' => 'Normal',
|
|
|
ef5584 |
'MAIL_PRIORITY' => 'Mail priority',
|
|
|
ef5584 |
'MASS_MESSAGE' => 'Your message',
|
|
|
ef5584 |
'MASS_MESSAGE_EXPLAIN' => 'Please note that you may enter only plain text. All markup will be removed before sending.',
|
|
|
ef5584 |
|
|
|
ef5584 |
'NO_EMAIL_MESSAGE' => 'You must enter a message.',
|
|
|
ef5584 |
'NO_EMAIL_SUBJECT' => 'You must specify a subject for your message.',
|
|
|
ef5584 |
));
|
|
|
ef5584 |
|
|
|
ef5584 |
?>
|