Verzeichnisstruktur phpBB-3.3.15


Veröffentlicht
28.08.2024

So funktioniert es


Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück

Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis.
Auf den Verzeichnisnamen klicken, dies zeigt nur das Verzeichnis mit Inhalt an

(Beispiel Datei-Icons)

Auf das Icon klicken um den Quellcode anzuzeigen

email.php

Zuletzt modifiziert: 02.04.2025, 15:02 - Dateigröße: 2.91 KiB


01  <?php
02  /**
03  *
04  * This file is part of the phpBB Forum Software package.
05  *
06  * @copyright (c) phpBB Limited <https://www.phpbb.com>
07  * @license GNU General Public License, version 2 (GPL-2.0)
08  *
09  * For full copyright and license information, please see
10  * the docs/CREDITS.txt file.
11  *
12  */
13   
14  /**
15  * DO NOT CHANGE
16  */
17  if (!defined('IN_PHPBB'))
18  {
19      exit;
20  }
21   
22  if (empty($lang) || !is_array($lang))
23  {
24      $lang = array();
25  }
26   
27  // DEVELOPERS PLEASE NOTE
28  //
29  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
30  //
31  // Placeholders can now contain order information, e.g. instead of
32  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
33  // translators to re-order the output of data while ensuring it remains correct
34  //
35  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
36  // equally where a string contains only two placeholders which are used to wrap text
37  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
38   
39  // Email settings
40  $lang = array_merge($lang, array(
41      'ACP_MASS_EMAIL_EXPLAIN'        => 'Here you can email a message to either all of your users or all users of a specific group <strong>having the option to receive mass emails enabled</strong>. To achieve this an email will be sent out to the administrative email address supplied, with a blind carbon copy sent to all recipients. The default setting is to only include 20 recipients in such an email, for more recipients more emails 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.',
42      'ALL_USERS'                        => 'All users',
43   
44      'COMPOSE'                => 'Compose',
45   
46      'EMAIL_SEND_ERROR'        => 'There were one or more errors while sending the email. Please check the %sError log%s for detailed error messages.',
47      'EMAIL_SENT'            => 'This message has been sent.',
48      'EMAIL_SENT_QUEUE'        => 'This message has been queued for sending.',
49   
50      'LOG_SESSION'            => 'Log mail session to critical log',
51   
52      'SEND_IMMEDIATELY'        => 'Send immediately',
53      'SEND_TO_GROUP'            => 'Send to group',
54      'SEND_TO_USERS'            => 'Send to users',
55      'SEND_TO_USERS_EXPLAIN'    => 'Entering names here will override any group selected above. Enter each username on a new line.',
56   
57      'MAIL_BANNED'            => 'Mail banned users',
58      'MAIL_BANNED_EXPLAIN'    => 'When sending a mass email to a group you can select here whether banned users will also receive the email.',
59      'MAIL_HIGH_PRIORITY'    => 'High',
60      'MAIL_LOW_PRIORITY'        => 'Low',
61      'MAIL_NORMAL_PRIORITY'    => 'Normal',
62      'MAIL_PRIORITY'            => 'Mail priority',
63      'MASS_MESSAGE'            => 'Your message',
64      'MASS_MESSAGE_EXPLAIN'    => 'Please note that you may enter only plain text. All markup will be removed before sending.',
65   
66      'NO_EMAIL_MESSAGE'        => 'You must enter a message.',
67      'NO_EMAIL_SUBJECT'        => 'You must specify a subject for your message.',
68  ));
69