[ Index ]

PHP Cross Reference of phpBB 3.0 Beta 3

title

Body

[close]

/language/en/acp/ -> email.php (source)

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


Generated: Wed Nov 22 00:35:05 2006 Cross-referenced by PHPXref 0.6