[ Index ]

PHP Cross Reference of phpBB 3.0 Beta 3

title

Body

[close]

/language/en/ -> ucp.php (source)

   1  <?php
   2  /** 
   3  *
   4  * ucp [English]
   5  *
   6  * @package language
   7  * @version $Id: ucp.php,v 1.83 2006/11/11 17:13:34 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  // Privacy policy and T&C
  34  $lang = array_merge($lang, array(
  35      'TERMS_OF_USE_CONTENT'    => 'By accessing “%1$s” (hereinafter “we”, “us”, “our”, “%1$s”, “%2$s”), you agree to be legally bound by the following terms. If you do not agree to be legally bound by all of the following terms then please do not access and/or use “%1$s”. We may change these at any time and we’ll do our utmost in informing you, though it would be prudent to review this regularly yourself as your continued usage of “%1$s” after changes mean you agree to be legally bound by these terms as they are updated and/or amended.<br />
  36      <br />
  37      Our forums are powered by phpBB (hereinafter “they”, “them”, “their”, “phpBB software”, “www.phpbb.com”, “phpBB Group”, “phpBB Teams”) which is a bulletin board solution released under the “<a href="http://www.gnu.org/licenses/gpl.html">General Public License</a>” (hereinafter “GPL”) and can be downloaded from <a href="http://www.phpbb.com/">www.phpbb.com</a>. The phpBB software only facilitates Internet based discussions and the GPL strictly forbids them in what we allow and/or disallow as permissible content and/or conduct. For further information about phpBB, please see: <a href="http://www.phpbb.com/">http://www.phpbb.com/</a>.<br />
  38      <br />
  39      You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-orientated or any other material that may violate any laws be it of your country, the country where “%1$s” is hosted or International Law. Doing so may lead to you being immediately and permanently banned, with notification of your Internet Service Provider if deemed required by us. The IP address of all posts are recorded to aid in enforcing these conditions. You agree that “%1$s” have the right to remove, edit, move or close any topic at any time should we see fit. As a user you agree to any information you have entered to being stored in a database. While this information will not be disclosed to any third party without your consent, neither “%1$s” nor phpBB shall be held responsible for any hacking attempt that may lead to the data being compromised.
  40      ',
  41  
  42      'PRIVACY_POLICY'        => 'This policy explains in detail how “%1$s” along with its affiliated companies (hereinafter “we”, “us”, “our”, “%1$s”, “%2$s”) and phpBB (hereinafter “they”, “them”, “their”, “phpBB software”, “www.phpbb.com”, “phpBB Group”, “phpBB Teams”) use any information collected during any session of usage by you (hereinafter “your information”).<br />
  43      <br />
  44      Your information is collected via two ways. Firstly, by browsing “%1$s” will cause the phpBB software to create a number of cookies, which are small text files that are downloaded on to your computer’s web browser temporary files. The first two cookies just contain a user identifier (hereinafter “user-id”) and an anonymous session identifier (hereinafter “session-id”), automatically assigned to you by the phpBB software. A third cookie will be created once you have browsed topics within “%1$s” and is used to store which topics have been read, thereby improving your user experience.<br />
  45      <br />
  46      We may also create cookies external to the phpBB software whilst browsing “%1$s”, though these are outside the scope of this document which is intended to only cover the pages created by the phpBB software. The second way in which we collect your information is by what you submit to us. This can be, and is not limited to: posting as an anonymous user (hereinafter “anonymous posts”), registering on “%1$s” (hereinafter “your account”) and posts submitted by you after registration and whilst logged in (hereinafter “your posts”).<br />
  47      <br />
  48      Your account will at a bare minimum contain a uniquely identifiable name (hereinafter “your user name”), a personal password used for logging into your account (hereinafter “your password”) and a personal, valid email address (hereinafter “your email”). Your information for your account at “%1$s” is protected by data-protection laws applicable in the country that hosts us. Any information beyond your user name, your password and your email required by “%1$s” during the registration process are at our digression what is mandatory and what is optional. In all cases, you have the option of what information in your account is publicly displayed. Furthermore, within your account, you have the option to opt-in or opt-out of automatically generated emails from the phpBB software.<br />
  49      <br />
  50      Your password is ciphered (a one-way hash) so that it is secure. However, it is recommended that you do not reuse the same password across a number of different websites. Your password is the means of accessing your account at “%1$s”, so please guard it carefully and under no circumstance will anyone affiliated with “%1$s”, phpBB or another 3rd party, legitimately ask you for your password. Should you forget your password for your account, you can use the “I forgot my password” feature provided by the phpBB software. This process will ask you to submit your user name and your email, then the phpBB software will generate a new password to reclaim your account.<br />
  51      ',
  52  ));
  53  
  54  $lang = array_merge($lang, array(
  55      'CAPTCHA' =>array(
  56          'cells'        => array(
  57              'Enter the code on',
  58              '  the right, in  ',
  59              ' the order shown ',
  60              '   on the left   ',
  61          ),
  62          'shape'        => array(
  63              'Enter the code on',
  64              ' the right which ',
  65              'matches the image',
  66              '   on the left   ',
  67          )
  68      )
  69  ));
  70  
  71  // Common language entries
  72  $lang = array_merge($lang, array(
  73      'ACCOUNT_ACTIVE'                => 'Your account has now been activated. Thank you for registering',
  74      'ACCOUNT_ACTIVE_ADMIN'            => 'The account has now been activated',
  75      'ACCOUNT_ADDED'                    => 'Thank you for registering, your account has been created. You may now login with your username and password',
  76      'ACCOUNT_COPPA'                    => 'Your account has been created but has to be approved, please check your email for details.',
  77      'ACCOUNT_INACTIVE'                => 'Your account has been created. However, this forum requires account activation, an activation key has been sent to the email address you provided. Please check your email for further information',
  78      'ACCOUNT_INACTIVE_ADMIN'        => 'Your account has been created. However, this forum requires account activation by the administrator. An email has been sent to them and you will be informed when your account has been activated',
  79      'ACTIVATION_EMAIL_SENT'            => 'The activation email has been sent to your email address',
  80      'ADD'                            => 'Add',
  81      'ADD_BCC'                        => 'Add [BCC]',
  82      'ADD_FOES'                        => 'Add new foes',
  83      'ADD_FOES_EXPLAIN'                => 'You may enter several usernames each on a different line',
  84      'ADD_FOLDER'                    => 'Add folder',
  85      'ADD_FRIENDS'                    => 'Add new friends',
  86      'ADD_FRIENDS_EXPLAIN'            => 'You may enter several usernames each on a different line',
  87      'ADD_NEW_RULE'                    => 'Add new Rule',
  88      'ADD_RULE'                        => 'Add Rule',
  89      'ADD_TO'                        => 'Add [To]',
  90      'ADMIN_EMAIL'                    => 'Administrators can email me information',
  91      'AGREE'                            => 'I agree to these terms',
  92      'ALLOW_PM'                        => 'Allow users to send you private messages',
  93      'ALLOW_PM_EXPLAIN'                => 'Note that admins and moderators will always be able to send you messages.',
  94      'ALREADY_ACTIVATED'                => 'You have already activated your account',
  95      'ATTACHMENTS_EXPLAIN'            => 'This is a list of attachements you have made in posts to this forum.',
  96      'ATTACHMENTS_DELETED'            => 'Attachments successfully deleted.',
  97      'ATTACHMENT_DELETED'            => 'Attachment successfully deleted.',
  98      'AVATAR_CATEGORY'                => 'Category',
  99      'AVATAR_EXPLAIN'                => 'Maximum dimensions; width %1$d pixels, height %2$d pixels, filesize %3$dkB.',
 100      'AVATAR_GALLERY'                => 'Local gallery',
 101      'AVATAR_GENERAL_UPLOAD_ERROR'    => 'Could not upload avatar to %s',
 102      'AVATAR_PAGE'                    => 'Page',
 103  
 104      'BACK_TO_DRAFTS'            => 'Back to saved drafts',
 105      'BACK_TO_LOGIN'                => 'Back to login screen',
 106      'BIRTHDAY'                    => 'Birthday',
 107      'BIRTHDAY_EXPLAIN'            => 'Setting a year will list your age when it is your birthday.',
 108      'BOARD_DATE_FORMAT'            => 'My date format',
 109      'BOARD_DATE_FORMAT_EXPLAIN'    => 'The syntax used is identical to the PHP <a href="http://www.php.net/date">date()</a> function',
 110      'BOARD_DST'                    => 'Daylight Saving Time is in effect',
 111      'BOARD_LANGUAGE'            => 'My language',
 112      'BOARD_STYLE'                => 'My board style',
 113      'BOARD_TIMEZONE'            => 'My timezone',
 114      'BOOKMARKS'                    => 'Bookmarks',
 115      'BOOKMARKS_EXPLAIN'            => 'You can bookmark topics for future reference. Select the checkbox for any bookmark you wish to delete, then press the <em>Remove marked bookmarks</em> button.',
 116      'BOOKMARKS_DISABLED'        => 'Bookmarks are disabled on this board',
 117      'BOOKMARKS_REMOVED'            => 'Bookmarks removed successfully',
 118  
 119      'CANNOT_EDIT_MESSAGE_TIME'    => 'You can no longer edit or delete that message',
 120      'CANNOT_MOVE_TO_SAME_FOLDER'=> 'Messages can not be moved to the folder you want to remove.',
 121      'CANNOT_RENAME_FOLDER'        => 'This folder can not be renamed.',
 122      'CANNOT_REMOVE_FOLDER'        => 'This folder can not be removed.',
 123      'CHANGE_DEFAULT_GROUP'        => 'Change default group',
 124      'CHANGE_PASSWORD'            => 'Change password',
 125      'CLICK_RETURN_FOLDER'        => '%1$sReturn to your “%3$s” folder%2$s',
 126      'CONFIRMATION'                => 'Confirmation of registration',
 127      'CONFIRM_EMAIL'                => 'Confirm email address',
 128      'CONFIRM_EMAIL_EXPLAIN'        => 'You only need to specify this if you are changing your email address.',
 129      'CONFIRM_EXPLAIN'            => 'To prevent automated registrations the board administrator requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.',
 130      'CONFIRM_PASSWORD'            => 'Confirm password',
 131      'CONFIRM_PASSWORD_EXPLAIN'    => 'You only need to confirm your password if you changed it above',
 132      'COPPA_BIRTHDAY'            => 'To continue with the registration procedure please tell us when you were born.',
 133      'COPPA_COMPLIANCE'            => 'COPPA compliance',
 134      'COPPA_EXPLAIN'                => 'Please note that clicking submit will create your account. However it cannot be activated until a parent or guardian approves your registration. You will be emailed a copy of the necessary form with details of where to send it.',
 135      'CREATE_FOLDER'                => 'Add folder…',
 136      'CURRENT_IMAGE'                => 'Current image',
 137      'CURRENT_PASSWORD'            => 'Current password',
 138      'CURRENT_PASSWORD_EXPLAIN'    => 'You must confirm your current password if you wish to change it, alter your email address or username.',
 139      'CUR_PASSWORD_ERROR'        => 'The current password you entered is incorrect.',
 140      'CUSTOM_DATEFORMAT'            => 'Custom…',
 141  
 142      'DEFAULT_ACTION'            => 'Default action',
 143      'DEFAULT_ACTION_EXPLAIN'    => 'This action will be triggered if none of the above is applicable',
 144      'DEFAULT_ADD_SIG'            => 'Attach my signature by default',
 145      'DEFAULT_BBCODE'            => 'Enable BBCode by default',
 146      'DEFAULT_NOTIFY'            => 'Notify me upon replies by default',
 147      'DEFAULT_SMILIES'            => 'Enable smilies by default',
 148      'DEFINED_RULES'                => 'Defined rules',
 149      'DELETED_TOPIC'                => 'Topic has been removed',
 150      'DELETE_ATTACHMENT'            => 'Delete attachment',
 151      'DELETE_ATTACHMENTS'        => 'Delete attachments',
 152      'DELETE_ATTACHMENT_CONFIRM'    => 'Are you sure you want to delete this attachment?',
 153      'DELETE_ATTACHMENTS_CONFIRM'=> 'Are you sure you want to delete these attachments?',
 154      'DELETE_AVATAR'                => 'Delete image',
 155      'DELETE_COOKIES_CONFIRM'    => 'Are you sure you want to delete all cookies set by this board?',
 156      'DELETE_MARKED_PM'            => 'Delete marked messages',
 157      'DELETE_MARKED_PM_CONFIRM'    => 'Are you sure you want to delete all marked messages?',
 158      'DELETE_OLDEST_MESSAGES'    => 'Delete oldest messages',
 159      'DELETE_MESSAGE'            => 'Delete message',
 160      'DELETE_MESSAGE_CONFIRM'    => 'Are you sure you want to delete this private message?',
 161      'DELETE_MESSAGES_IN_FOLDER'    => 'Delete all messages within removed folder',
 162      'DELETE_RULE'                => 'Delete rule',
 163      'DELETE_RULE_CONFIRM'        => 'Are you sure you want to delete this rule?',
 164      'DEMOTE_SELECTED'            => 'Demote selected',
 165      'DISABLE_CENSORS'            => 'Enable word censoring',
 166      'DISPLAY_GALLERY'            => 'Display gallery',
 167      'DOMAIN_NO_MX_RECORD_EMAIL'    => 'The entered email domain has no valid MX record.',
 168      'DOWNLOADS'                    => 'Downloads',
 169      'DRAFTS_DELETED'            => 'All selected drafts were successfully deleted.',
 170      'DRAFTS_EXPLAIN'            => 'Here you can view, edit and delete your saved drafts.',
 171      'DRAFT_UPDATED'                => 'Draft successfully updated.',
 172  
 173      'EDIT_DRAFT_EXPLAIN'        => 'Here you are able to edit your draft. Drafts do not contain attachment and poll informations.',
 174      'EMAIL_BANNED_EMAIL'        => 'The email address you entered is not allowed to be used.',
 175      'EMAIL_INVALID_EMAIL'        => 'The email address you entered is invalid.',
 176      'EMAIL_REMIND'                => 'This must be the email address you supplied when registering.',
 177      'EMAIL_TAKEN_EMAIL'            => 'The entered email address is already in use',
 178      'EMPTY_DRAFT'                => 'You must enter a message to submit your changes',
 179      'EMPTY_DRAFT_TITLE'            => 'You must enter a draft title',
 180      'EXPORT_AS_XML'                => 'Export as XML',
 181      'EXPORT_AS_CSV'                => 'Export as CSV',
 182      'EXPORT_AS_CSV_EXCEL'        => 'Export as CSV (Excel)',
 183      'EXPORT_AS_TXT'                => 'Export as TXT',
 184      'EXPORT_AS_MSG'                => 'Export as MSG',
 185      'EXPORT_FOLDER'                => 'Export Folder',
 186  
 187      'FIELD_REQUIRED'                    => 'The field “%s” must be completed.',
 188      'FIELD_TOO_SHORT'                    => 'The field “%1$s” is too short, a minimum of %2$d characters is required.',
 189      'FIELD_TOO_LONG'                    => 'The field “%1$s” is too long, a maximum of %2$d characters is allowed.',
 190      'FIELD_TOO_SMALL'                    => 'The value of “%1$s” is too small, a minimum value of %2$d is required.',
 191      'FIELD_TOO_LARGE'                    => 'The value of “%1$s” is too large, a maximum value of %2$d is allowed.',
 192      'FIELD_INVALID_CHARS_NUMBERS_ONLY'    => 'The field “%s” has invalid characters, only numbers are allowed.',
 193      'FIELD_INVALID_CHARS_ALPHA_ONLY'    => 'The field “%s” has invalid characters, only alphanumeric characters are allowed.',
 194      'FIELD_INVALID_CHARS_SPACERS_ONLY'    => 'The field “%s” has invalid characters, only alphanumeric, space or -+_[] characters are allowed.',
 195      'FIELD_INVALID_DATE'                => 'The field “%s” has an invalid date.',
 196  
 197      'FOE_MESSAGE'                => 'Message from foe',
 198      'FOES_EXPLAIN'                => 'Foes are users which will be ignored by default. Posts by these users will not be fully visible and personal messages will not be permitted. Please note that you cannot ignore moderators or administrators.',
 199      'FOES_UPDATED'                => 'Your foes list has been updated successfully',
 200      'FOLDER_ADDED'                => 'Folder successfully added',
 201      'FOLDER_MESSAGE_STATUS'        => '%1$d from %2$d messages stored',
 202      'FOLDER_NAME_EXIST'            => 'Folder <strong>%s</strong> already exist',
 203      'FOLDER_OPTIONS'            => 'Folder options',
 204      'FOLDER_RENAMED'            => 'Folder successfully renamed',
 205      'FOLDER_REMOVED'            => 'Folder successfully removed',
 206      'FOLDER_STATUS_MSG'            => 'Folder is %1$d%% full (%2$d from %3$d messages stored)',
 207      'FORWARD_PM'                => 'Forward PM',
 208      'FORCE_PASSWORD_EXPLAIN'    => 'Before you may continue browsing the board you are required to change your password',
 209      'FRIEND_MESSAGE'            => 'Message from friend',
 210      'FRIENDS'                    => 'Friends',
 211      'FRIENDS_EXPLAIN'            => 'Friends enable you quick access to members you communicate with frequently. If the template has relevant support any posts made by a friend may be highlighted.',
 212      'FRIENDS_OFFLINE'            => 'Offline',
 213      'FRIENDS_ONLINE'            => 'Online',
 214      'FRIENDS_UPDATED'            => 'Your friends list has been updated successfully',
 215      'FULL_FOLDER_OPTION_CHANGED'=> 'Full Folder Option changed successfully',
 216      'FWD_ORIGINAL_MESSAGE'        => '-------- Original Message --------',
 217      'FWD_SUBJECT'                => 'Subject: %s',
 218      'FWD_DATE'                    => 'Date: %s',
 219      'FWD_FROM'                    => 'From: %s',
 220      'FWD_TO'                    => 'To: %s',
 221  
 222      'GLOBAL_ANNOUNCEMENT'        => 'Global Announcement',
 223  
 224      'HIDE_ONLINE'                => 'Hide my online status',
 225      'HOLD_NEW_MESSAGES'            => 'Do not accept new messages (New messages will be held back until enough space is available)',
 226      'HOLD_NEW_MESSAGES_SHORT'    => 'New messages will be held back',
 227  
 228      'IF_FOLDER_FULL'            => 'If folder is full',
 229      'IMPORTANT_NEWS'            => 'Important announcements',
 230      'INVALID_CHARS_USERNAME'    => 'The username contains forbidden characters.',
 231      'INVALID_CHARS_NEW_PASSWORD'=> 'The password does not contain the required characters.',
 232      'ITEMS_REQUIRED'            => 'The items marked with * are required profile fields and need to be filled out',
 233  
 234      'JOIN_SELECTED'                => 'Join selected',
 235  
 236      'LANGUAGE'                    => 'Language',
 237      'LINK_REMOTE_AVATAR'        => 'Link off-site',
 238      'LINK_REMOTE_AVATAR_EXPLAIN'=> 'Enter the URL of the location containing the Avatar image you wish to link to.',
 239      'LINK_REMOTE_SIZE'            => 'Avatar dimensions',
 240      'LINK_REMOTE_SIZE_EXPLAIN'    => 'Specify the width and height of the avatar, leave blank to attempt automatic verification.',
 241      'LOGIN_EXPLAIN_UCP'            => 'Please login in order to access the User Control Panel',
 242      'LOGIN_REDIRECT'            => 'You have been successfully logged in.',
 243      'LOGOUT_REDIRECT'            => 'You have been successfully logged out.',
 244  
 245      'MARK_IMPORTANT'                => 'Mark as important',
 246      'MARKED_MESSAGE'                => 'Marked message',
 247      'MAX_FOLDER_REACHED'            => 'Maximum number of allowed user defined folder reached',
 248      'MESSAGE_BY_AUTHOR'                => 'by',
 249      'MESSAGE_COLOURS'                => 'Message colours',
 250      'MESSAGE_DELETED'                => 'Message successfully deleted',
 251      'MESSAGE_HISTORY'                => 'Message history',
 252      'MESSAGE_REMOVED_FROM_OUTBOX'    => 'This message has been removed by it’s author before it was delivered',
 253      'MESSAGE_SENT_ON'                => 'on',
 254      'MESSAGE_STORED'                => 'Your message has been sent successfully',
 255      'MESSAGE_TO'                    => 'To',
 256      'MESSAGES_DELETED'                => 'Messages successfully deleted',
 257      'MOVE_DELETED_MESSAGES_TO'        => 'Move messages from removed folder to',
 258      'MOVE_DOWN'                        => 'Move down',
 259      'MOVE_MARKED_TO_FOLDER'            => 'Move marked to %s',
 260      'MOVE_PM_ERROR'                    => 'An error occurred while moving the messages to the new folder, only %1d from %2d messages were moved.',
 261      'MOVE_TO_FOLDER'                => 'Move to Folder',
 262      'MOVE_UP'                        => 'Move up',
 263  
 264      'NEW_EMAIL_ERROR'                => 'The email addresses you entered do not match.',
 265      'NEW_FOLDER_NAME'                => 'New folder name',
 266      'NEW_PASSWORD'                    => 'Password',
 267      'NEW_PASSWORD_ERROR'            => 'The passwords you entered do not match.',
 268      'NOTIFY_METHOD'                    => 'Notification method',
 269      'NOTIFY_METHOD_BOTH'            => 'Both',
 270      'NOTIFY_METHOD_EMAIL'            => 'Email only',
 271      'NOTIFY_METHOD_EXPLAIN'            => 'Method for sending messages sent via this board.',
 272      'NOTIFY_METHOD_IM'                => 'Jabber only',
 273      'NOTIFY_ON_PM'                    => 'Notify me on new private messages',
 274      'NOT_ADDED_FRIENDS_ANONYMOUS'    => 'You cannot add the anonymous user to your friends list.',
 275      'NOT_ADDED_FRIENDS_FOES'        => 'You cannot add users to your friends list who are on your foes list',
 276      'NOT_ADDED_FRIENDS_SELF'        => 'You cannot add yourself to the friends list',
 277      'NOT_ADDED_FOES_MOD_ADMIN'        => 'You cannot add administrators and moderators to your foes list.',
 278      'NOT_ADDED_FOES_ANONYMOUS'        => 'You cannot add the anonymous user to your foes list.',
 279      'NOT_ADDED_FOES_FRIENDS'        => 'You cannot add users to your foes list who are on your friends list.',
 280      'NOT_ADDED_FOES_SELF'            => 'You cannot add yourself to the foes list.',
 281      'NOT_AGREE'                        => 'I do not agree to these terms',
 282      'NOT_ENOUGH_SPACE_FOLDER'        => 'The destination folder “%s” seems to be full. The requested action has not been taken.',
 283      'NOT_MOVED_MESSAGE'                => 'You have 1 private message currently on hold because of full folder.',
 284      'NOT_MOVED_MESSAGES'            => 'You have %d private messages currently on hold because of full folder.',
 285      'NO_ACTION_MODE'                => 'No message action specified.',
 286      'NO_AUTHOR'                        => 'No author defined for this message',
 287      'NO_AVATAR_CATEGORY'            => 'None',
 288  
 289      'NO_AUTH_DELETE_MESSAGE'        => 'You are not authorised to delete private messages.',
 290      'NO_AUTH_EDIT_MESSAGE'            => 'You are not authorised to edit private messages.',
 291      'NO_AUTH_FORWARD_MESSAGE'        => 'You are not authorised to forward private messages.',
 292      'NO_AUTH_GROUP_MESSAGE'            => 'You are not authorised to send private messages to groups.',
 293      'NO_AUTH_READ_MESSAGE'            => 'You are not authorised to read private messages.',
 294      'NO_AUTH_READ_REMOVED_MESSAGE'    => 'You are not able to read this message because it was removed by the author.',
 295      'NO_AUTH_SEND_MESSAGE'            => 'You are not authorised sending private messages.',
 296      'NO_AUTH_SIGNATURE'                => 'You are not authorised to define a signature',
 297  
 298      'NO_BCC_RECIPIENT'            => 'None',
 299      'NO_BOOKMARKS'                => 'You have no bookmarks',
 300      'NO_BOOKMARKS_SELECTED'        => 'You have selected no bookmarks',
 301      'NO_EMAIL_USER'                => 'The email/username information submitted could not be found',
 302      'NO_FOES'                    => 'No foes currently defined',
 303      'NO_FRIENDS'                => 'No friends currently defined',
 304      'NO_FRIENDS_OFFLINE'        => 'No friends offline',
 305      'NO_FRIENDS_ONLINE'            => 'No friends online',
 306      'NO_GROUP_SELECTED'            => 'No group specified',
 307      'NO_IMPORTANT_NEWS'            => 'No important announcements present',
 308      'NO_MESSAGE'                => 'Private Message could not be found',
 309      'NO_NEW_FOLDER_NAME'        => 'You have to specify a new folder name',
 310      'NO_NEWER_PM'                => 'No newer messages',
 311      'NO_OLDER_PM'                => 'No older messages',
 312      'NO_RECIPIENT'                => 'No recipient defined',
 313      'NO_RULES_DEFINED'            => 'No rules defined',
 314      'NO_SAVED_DRAFTS'            => 'No drafts saved',
 315      'NO_TO_RECIPIENT'            => 'None',
 316      'NO_WATCHED_FORUMS'            => 'You are not watching any forums.',
 317      'NO_WATCHED_TOPICS'            => 'You are not watching any topics.',
 318  
 319      'PASS_TYPE_ALPHA_EXPLAIN'    => 'Password must be between %1$d and %2$d chars long and must contain alphanumerics',
 320      'PASS_TYPE_ANY_EXPLAIN'        => 'Must be between %1$d and %2$d characters.',
 321      'PASS_TYPE_CASE_EXPLAIN'    => 'Password must be between %1$d and %2$d chars long and must be mixed case',
 322      'PASS_TYPE_SYMBOL_EXPLAIN'    => 'Password must be between %1$d and %2$d chars long and must contain symbols',
 323      'PASSWORD_ACTIVATED'        => 'Your new password has been activated',
 324      'PASSWORD_UPDATED'            => 'Your password has been sent successfully to your original email address.',
 325      'PERMISSIONS_RESTORED'        => 'Successfully restored original permissions.',
 326      'PERMISSIONS_TRANSFERED'    => 'Successfully transfered permissions from <strong>%s</strong>, you are now able to browse the forum with the users permissions.<br />Please note that admin permissions were not transfered. You are able to revert to your permission set at any time.',
 327      'PM_DISABLED'                => 'Private messaging has been disabled on this board',
 328      'PM_FROM'                    => 'From',
 329      'PM_FROM_REMOVED_AUTHOR'    => 'This message was sent by a user no longer registered.',
 330      'PM_ICON'                    => 'PM icon',
 331      'PM_INBOX'                    => 'Inbox',
 332      'PM_OUTBOX'                    => 'Outbox',
 333      'PM_SENTBOX'                => 'Sent Messages',
 334      'PM_SUBJECT'                => 'Message subject',
 335      'PM_TO'                        => 'Send to',
 336      'POPUP_ON_PM'                => 'Pop up window on new private message',
 337      'POST_EDIT_PM'                => 'Edit message',
 338      'POST_FORWARD_PM'            => 'Forward message',
 339      'POST_NEW_PM'                => 'Post message',
 340      'POST_PM_LOCKED'            => 'Private Messaging is locked',
 341      'POST_PM_POST'                => 'Quote post',
 342      'POST_QUOTE_PM'                => 'Quote message',
 343      'POST_REPLY_PM'                => 'Reply to message',
 344      'PRINT_PM'                    => 'Print View',
 345      'PREFERENCES_UPDATED'        => 'Your preferences have been updated.',
 346      'PROFILE_INFO_NOTICE'        => 'Please note that this information will be viewable to other members. Be careful when including any personal details. Any fields marked with a * must be completed.',
 347      'PROFILE_UPDATED'            => 'Your profile has been updated.',
 348  
 349      'RECIPIENT'                            => 'Recipient',
 350      'RECIPIENTS'                        => 'Recipients',
 351      'REGISTRATION'                        => 'Registration',
 352      'RELATIVE_DAYS'                        => 'Relative days',
 353      'RELEASE_MESSAGES'                    => '%sRelease all on-hold messages%s… they will be re-sorted into the appropiate folder if enough space is made available.',
 354      'REMOVE_ADDRESS'                    => 'Remove address',
 355      'REMOVE_SELECTED_BOOKMARKS'            => 'Remove selected bookmarks',
 356      'REMOVE_SELECTED_BOOKMARKS_CONFIRM'    => 'Are you sure you want to delete all selected bookmarks?',
 357      'REMOVE_BOOKMARK_MARKED'            => 'Remove marked bookmarks',
 358      'REMOVE_FOLDER'                        => 'Remove folder',
 359      'REMOVE_FOLDER_CONFIRM'                => 'Are you sure you want to remove this folder?',
 360      'RENAME'                            => 'Rename',
 361      'RENAME_FOLDER'                        => 'Rename folder',
 362      'REPLIED_MESSAGE'                    => 'Replied to message',
 363      'RESIGN_SELECTED'                    => 'Resign selected',
 364      'RETURN_FOLDER'                        => '%1$sReturn to previous folder%2$s',
 365      'RETURN_UCP'                        => '%sReturn to the User Control Panel%s',
 366      'RULE_ADDED'                        => 'Rule successfully added',
 367      'RULE_ALREADY_DEFINED'                => 'This rule was defined previously',
 368      'RULE_DELETED'                        => 'Rule successfully removed',
 369      'RULE_NOT_DEFINED'                    => 'Rule not correctly specified',
 370  
 371      'SAME_PASSWORD_ERROR'        => 'The new password you entered is the same as your current password',
 372      'SEARCH_YOUR_POSTS'            => 'Show your posts',
 373      'SEND_PASSWORD'                => 'Send password',
 374      'SENT_AT'                    => 'Sent at',
 375      'SHOW_EMAIL'                => 'Users can contact me by email',
 376      'SIGNATURE_EXPLAIN'            => 'This is a block of text that can be added to posts you make. There is a %d character limit',
 377      'SIGNATURE_PREVIEW'            => 'Your signature will appear like this in posts',
 378      'SIGNATURE_TOO_LONG'        => 'Your signature is too long.',
 379      'SORT'                        => 'Sort',
 380      'SORT_COMMENT'                => 'File comment',
 381      'SORT_DOWNLOADS'            => 'Downloads',
 382      'SORT_EXTENSION'            => 'Extension',
 383      'SORT_FILENAME'                => 'Filename',
 384      'SORT_POST_TIME'            => 'Post time',
 385      'SORT_SIZE'                    => 'Filesize',
 386  
 387      'TIMEZONE'                    => 'Timezone',
 388      'TO'                        => 'To',
 389      'TOO_MANY_RECIPIENTS'        => 'Too many recipients',
 390      'TOO_MANY_REGISTERS'        => 'You have exceeded the maximum number of registration attempts for this session. Please try again later.',
 391  
 392      'UCP'                        => 'User Control Panel',
 393      'UCP_ACTIVATE'                => 'Activate account',
 394      'UCP_ADMIN_ACTIVATE'        => 'Please note that you will need to enter a valid email address before your account is activated. The administrator will review your account and if approved you will receive an email at the address you specified.',
 395      'UCP_AIM'                    => 'AOL Instant Messenger',
 396      'UCP_ATTACHMENTS'            => 'Attachments',
 397      'UCP_COPPA_BEFORE'            => 'Before %s',
 398      'UCP_COPPA_ON_AFTER'        => 'On or After %s',
 399      'UCP_EMAIL_ACTIVATE'        => 'Please note that you will need to enter a valid email address before your account is activated. You will recieve an email at the address you provide that contains an account activation link.',
 400      'UCP_ICQ'                    => 'ICQ number',
 401      'UCP_JABBER'                => 'Jabber address',
 402  
 403      'UCP_MAIN'                    => 'Overview',
 404      'UCP_MAIN_ATTACHMENTS'        => 'Manage attachments',
 405      'UCP_MAIN_BOOKMARKS'        => 'Manage bookmarks',
 406      'UCP_MAIN_DRAFTS'            => 'Manage drafts',
 407      'UCP_MAIN_FRONT'            => 'Front page',
 408      'UCP_MAIN_SUBSCRIBED'        => 'Manage subscriptions',
 409  
 410      'UCP_MSNM'                    => 'MSN Messenger',
 411      'UCP_NO_ATTACHMENTS'        => 'You have posted no files',
 412  
 413      'UCP_PREFS'                    => 'Forum preferences',
 414      'UCP_PREFS_PERSONAL'        => 'Edit global settings',
 415      'UCP_PREFS_POST'            => 'Edit posting defaults',
 416      'UCP_PREFS_VIEW'            => 'Edit display options',
 417      
 418      'UCP_PM'                    => 'Private messages',
 419      'UCP_PM_COMPOSE'            => 'Compose message',
 420      'UCP_PM_DRAFTS'                => 'Manage PM drafts',
 421      'UCP_PM_OPTIONS'            => 'Edit options',
 422      'UCP_PM_POPUP'                => 'Private messages',
 423      'UCP_PM_POPUP_TITLE'        => 'Private message popup',
 424      'UCP_PM_UNREAD'                => 'Unread messages',
 425      'UCP_PM_VIEW'                => 'View messages',
 426  
 427      'UCP_PROFILE'                => 'Profile',
 428      'UCP_PROFILE_AVATAR'        => 'Edit avatar',
 429      'UCP_PROFILE_PROFILE_INFO'    => 'Edit profile',
 430      'UCP_PROFILE_REG_DETAILS'    => 'Edit account settings',
 431      'UCP_PROFILE_SIGNATURE'        => 'Edit signature',
 432  
 433      'UCP_USERGROUPS'            => 'Usergroups',
 434      'UCP_USERGROUPS_MEMBER'        => 'Edit memberships',
 435      'UCP_USERGROUPS_MANAGE'        => 'Manage groups',
 436  
 437      'UCP_REGISTER_DISABLE'            => 'Creating a new account is currently not possible.',
 438      'UCP_REMIND'                    => 'Send password',
 439      'UCP_RESEND'                    => 'Send activation email',
 440      'UCP_WELCOME'                    => 'Welcome to the User Control Panel. From here you can monitor, view and update your profile, preferences, subscribed forums and topics. You can also send messages to other users (if permitted). Please ensure you read any announcements before continuing.',
 441      'UCP_YIM'                        => 'Yahoo Messenger',
 442      'UCP_ZEBRA'                        => 'Friends &amp; Foes',
 443      'UCP_ZEBRA_FOES'                => 'Manage foes',
 444      'UCP_ZEBRA_FRIENDS'                => 'Manage friends',
 445      'UNKNOWN_FOLDER'                => 'Unknown folder',
 446      'UNWATCH_MARKED'                => 'Unwatch marked',
 447      'UPLOAD_AVATAR_FILE'            => 'Upload from your machine',
 448      'UPLOAD_AVATAR_URL'                => 'Upload from a URL',
 449      'UPLOAD_AVATAR_URL_EXPLAIN'        => 'Enter the URL of the location containing the image, it will be copied to this site.',
 450      'USERNAME_ALPHA_ONLY_EXPLAIN'    => 'Username must be between %1$d and %2$d chars long and use only alphanumeric characters',
 451      'USERNAME_ALPHA_SPACERS_EXPLAIN'=> 'Username must be between %1$d and %2$d chars long and use alphanumeric, space or -+_[] characters.',
 452      'USERNAME_CHARS_ANY_EXPLAIN'    => 'Length must be between %1$d and %2$d characters.',
 453      'USERNAME_TAKEN_USERNAME'        => 'The username you entered is already in use, please select an alternative.',
 454      'USERNAME_DISALLOWED_USERNAME'    => 'The username you entered has been banned.',
 455      'USER_NOT_FOUND_OR_INACTIVE'    => 'The usernames you specified could either not be found or are not activated users.',
 456  
 457      'VIEW_AVATARS'                => 'Display avatars',
 458      'VIEW_EDIT'                    => 'View/Edit',
 459      'VIEW_FLASH'                => 'Display Flash animations',
 460      'VIEW_IMAGES'                => 'Display images within posts',
 461      'VIEW_NEXT_HISTORY'            => 'Next PM in history',
 462      'VIEW_NEXT_PM'                => 'Next PM',
 463      'VIEW_PM'                    => 'View message',
 464      'VIEW_PM_INFO'                => 'Message details',
 465      'VIEW_PM_MESSAGE'            => '1 message',
 466      'VIEW_PM_MESSAGES'            => '%d messages',
 467      'VIEW_PREVIOUS_HISTORY'        => 'Previous PM in history',
 468      'VIEW_PREVIOUS_PM'            => 'Previous PM',
 469      'VIEW_SIGS'                    => 'Display signatures',
 470      'VIEW_SMILIES'                => 'Display smileys as images',
 471      'VIEW_TOPICS_DAYS'            => 'Display topics from previous days',
 472      'VIEW_TOPICS_DIR'            => 'Display topic order direction',
 473      'VIEW_TOPICS_KEY'            => 'Display topics ordering by',
 474      'VIEW_POSTS_DAYS'            => 'Display posts from previous days',
 475      'VIEW_POSTS_DIR'            => 'Display post order direction',
 476      'VIEW_POSTS_KEY'            => 'Display posts ordering by',
 477  
 478      'WATCHED_EXPLAIN'            => 'Below is a list of forums and topics you are subscribed to. You will be notified of new posts in either. To unsubscribe mark the forum or topic and then press the <em>Unwatch marked</em> button.',
 479      'WATCHED_FORUMS'            => 'Watched forums',
 480      'WATCHED_TOPICS'            => 'Watched topics',
 481      'WRONG_ACTIVATION'            => 'The activation key you supplied does not match any in the database',
 482  
 483      'YOUR_DETAILS'                => 'Your activity',
 484      'YOUR_FOES'                    => 'Your foes',
 485      'YOUR_FOES_EXPLAIN'            => 'To remove usernames select them and click submit',
 486      'YOUR_FRIENDS'                => 'Your friends',
 487      'YOUR_FRIENDS_EXPLAIN'        => 'To remove usernames select them and click submit',
 488      'YOUR_WARNINGS'                => 'Your warning level',
 489  
 490      'PM_ACTION' => array(
 491          'PLACE_INTO_FOLDER'    => 'Place into folder',
 492          'MARK_AS_READ'        => 'Mark as read',
 493          'MARK_AS_IMPORTANT'    => 'Mark message',
 494          'DELETE_MESSAGE'    => 'Delete message'
 495      ),
 496      'PM_CHECK' => array(
 497          'SUBJECT'    => 'Subject',
 498          'SENDER'    => 'Sender',
 499          'MESSAGE'    => 'Message',
 500          'STATUS'    => 'Message status',
 501          'TO'        => 'Sent To'
 502      ),
 503      'PM_RULE' => array(
 504          'IS_LIKE'        => 'is like',
 505          'IS_NOT_LIKE'    => 'is not like',
 506          'IS'            => 'is',
 507          'IS_NOT'        => 'is not',
 508          'BEGINS_WITH'    => 'begins with',
 509          'ENDS_WITH'        => 'ends with',
 510          'IS_FRIEND'        => 'is friend',
 511          'IS_FOE'        => 'is foe',
 512          'IS_USER'        => 'is user',
 513          'IS_GROUP'        => 'is in usergroup',
 514          'ANSWERED'        => 'answered',
 515          'FORWARDED'        => 'forwarded',
 516          'TO_GROUP'        => 'to my default usergroup',
 517          'TO_ME'            => 'to me'
 518      ),
 519  
 520  
 521      'GROUPS_EXPLAIN'    => 'Usergroups enable board admins to better administer users. By default you will be placed in a specific group, this is your default group. This group defines how you may appear to other users, for example your username colouration, avatar, rank, etc. Depending on whether the administrator allows it you may be allowed to change your default group. You may also be placed in or allowed to join other groups. Some groups may give you extra rights to view content or increase your capabilities in other areas.',
 522      'GROUP_LEADER'        => 'Leaderships',
 523      'GROUP_MEMBER'        => 'Memberships',
 524      'GROUP_PENDING'        => 'Pending memberships',
 525      'GROUP_NONMEMBER'    => 'Non-memberships',
 526      'GROUP_DETAILS'        => 'Group details',
 527  
 528      'NO_LEADER'        => 'No group leaderships',
 529      'NO_MEMBER'        => 'No group memberships',
 530      'NO_PENDING'    => 'No pending memberships',
 531      'NO_NONMEMBER'    => 'No non-member groups',
 532  ));
 533  
 534  ?>


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