443
by dcoles
Added Forum application along with unmodifed version of phpBB3 "Olympus" 3.0.0 |
1 |
<?php
|
2 |
/**
|
|
3 |
*
|
|
4 |
* acp_email [English]
|
|
5 |
*
|
|
6 |
* @package language
|
|
7 |
* @version $Id: email.php,v 1.16 2007/10/04 15:07:24 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 (!defined('IN_PHPBB')) |
|
17 |
{
|
|
18 |
exit; |
|
19 |
}
|
|
20 |
||
21 |
if (empty($lang) || !is_array($lang)) |
|
22 |
{
|
|
23 |
$lang = array(); |
|
24 |
}
|
|
25 |
||
26 |
// DEVELOPERS PLEASE NOTE
|
|
27 |
//
|
|
28 |
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
|
29 |
//
|
|
30 |
// Placeholders can now contain order information, e.g. instead of
|
|
31 |
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|
32 |
// translators to re-order the output of data while ensuring it remains correct
|
|
33 |
//
|
|
34 |
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|
35 |
// equally where a string contains only two placeholders which are used to wrap text
|
|
36 |
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|
37 |
||
38 |
// Email settings
|
|
39 |
$lang = array_merge($lang, array( |
|
40 |
'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.', |
|
41 |
'ALL_USERS' => 'All users', |
|
42 |
||
43 |
'COMPOSE' => 'Compose', |
|
44 |
||
45 |
'EMAIL_SEND_ERROR' => 'There were one or more errors while sending the e-mail. Please check the %sError log%s for detailed error messages.', |
|
46 |
'EMAIL_SENT' => 'This message has been sent.', |
|
47 |
'EMAIL_SENT_QUEUE' => 'This message has been queued for sending.', |
|
48 |
||
49 |
'LOG_SESSION' => 'Log mail session to critical log', |
|
50 |
||
51 |
'SEND_IMMEDIATELY' => 'Send immediately', |
|
52 |
'SEND_TO_GROUP' => 'Send to group', |
|
53 |
'SEND_TO_USERS' => 'Send to users', |
|
54 |
'SEND_TO_USERS_EXPLAIN' => 'Entering names here will override any group selected above. Enter each username on a new line.', |
|
55 |
||
56 |
'MAIL_HIGH_PRIORITY' => 'High', |
|
57 |
'MAIL_LOW_PRIORITY' => 'Low', |
|
58 |
'MAIL_NORMAL_PRIORITY' => 'Normal', |
|
59 |
'MAIL_PRIORITY' => 'Mail priority', |
|
60 |
'MASS_MESSAGE' => 'Your message', |
|
61 |
'MASS_MESSAGE_EXPLAIN' => 'Please note that you may enter only plain text. All markup will be removed before sending.', |
|
62 |
||
63 |
'NO_EMAIL_MESSAGE' => 'You must enter a message.', |
|
64 |
'NO_EMAIL_SUBJECT' => 'You must specify a subject for your message.', |
|
65 |
));
|
|
66 |
||
67 |
?>
|