Blame Extras/phpBB/3.0.4/language/en/acp/email.php

4c79b5
4c79b5
/**
4c79b5
*
4c79b5
* acp_email [English]
4c79b5
*
4c79b5
* @package language
4c79b5
* @version $Id: email.php 8479 2008-03-29 00:22:48Z naderman $
4c79b5
* @copyright (c) 2005 phpBB Group
4c79b5
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
4c79b5
*
4c79b5
*/
4c79b5
4c79b5
/**
4c79b5
* DO NOT CHANGE
4c79b5
*/
4c79b5
if (!defined('IN_PHPBB'))
4c79b5
{
4c79b5
	exit;
4c79b5
}
4c79b5
4c79b5
if (empty($lang) || !is_array($lang))
4c79b5
{
4c79b5
	$lang = array();
4c79b5
}
4c79b5
4c79b5
// DEVELOPERS PLEASE NOTE
4c79b5
//
4c79b5
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
4c79b5
//
4c79b5
// Placeholders can now contain order information, e.g. instead of
4c79b5
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
4c79b5
// translators to re-order the output of data while ensuring it remains correct
4c79b5
//
4c79b5
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
4c79b5
// equally where a string contains only two placeholders which are used to wrap text
4c79b5
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
4c79b5
4c79b5
// Email settings
4c79b5
$lang = array_merge($lang, array(
4c79b5
	'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.',
4c79b5
	'ALL_USERS'						=> 'All users',
4c79b5
4c79b5
	'COMPOSE'				=> 'Compose',
4c79b5
4c79b5
	'EMAIL_SEND_ERROR'		=> 'There were one or more errors while sending the e-mail. Please check the %sError log%s for detailed error messages.',
4c79b5
	'EMAIL_SENT'			=> 'This message has been sent.',
4c79b5
	'EMAIL_SENT_QUEUE'		=> 'This message has been queued for sending.',
4c79b5
4c79b5
	'LOG_SESSION'			=> 'Log mail session to critical log',
4c79b5
4c79b5
	'SEND_IMMEDIATELY'		=> 'Send immediately',
4c79b5
	'SEND_TO_GROUP'			=> 'Send to group',
4c79b5
	'SEND_TO_USERS'			=> 'Send to users',
4c79b5
	'SEND_TO_USERS_EXPLAIN'	=> 'Entering names here will override any group selected above. Enter each username on a new line.',
4c79b5
	
4c79b5
	'MAIL_HIGH_PRIORITY'	=> 'High',
4c79b5
	'MAIL_LOW_PRIORITY'		=> 'Low',
4c79b5
	'MAIL_NORMAL_PRIORITY'	=> 'Normal',
4c79b5
	'MAIL_PRIORITY'			=> 'Mail priority',
4c79b5
	'MASS_MESSAGE'			=> 'Your message',
4c79b5
	'MASS_MESSAGE_EXPLAIN'	=> 'Please note that you may enter only plain text. All markup will be removed before sending.',
4c79b5
	
4c79b5
	'NO_EMAIL_MESSAGE'		=> 'You must enter a message.',
4c79b5
	'NO_EMAIL_SUBJECT'		=> 'You must specify a subject for your message.',
4c79b5
));
4c79b5
4c79b5
?>