[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

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

   1  <?php
   2  /**
   3  *
   4  * This file is part of the phpBB Forum Software package.
   5  *
   6  * @copyright (c) phpBB Limited <https://www.phpbb.com>
   7  * @license GNU General Public License, version 2 (GPL-2.0)
   8  *
   9  * 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  $lang = array_merge($lang, array(
  40      'ABOUT_USER'            => 'Profile',
  41      'ACTIVE_IN_FORUM'        => 'Most active forum',
  42      'ACTIVE_IN_TOPIC'        => 'Most active topic',
  43      'ADD_FOE'                => 'Add foe',
  44      'ADD_FRIEND'            => 'Add friend',
  45      'AFTER'                    => 'After',
  46  
  47      'ALL'                    => 'All',
  48  
  49      'BEFORE'                => 'Before',
  50  
  51      'CC_SENDER'                => 'Send a copy of this email to yourself.',
  52      'CONTACT_ADMIN'            => 'Contact a Board Administrator',
  53  
  54      'DEST_LANG'                => 'Language',
  55      'DEST_LANG_EXPLAIN'        => 'Select an appropriate language (if available) for the recipient of this message.',
  56  
  57      'EDIT_PROFILE'            => 'Edit profile',
  58  
  59      'EMAIL_BODY_EXPLAIN'    => 'This message will be sent as plain text, do not include any HTML or BBCode. The return address for this message will be set to your email address.',
  60      'EMAIL_DISABLED'        => 'Sorry but all email related functions have been disabled.',
  61      'EMAIL_SENT'            => 'The email has been sent.',
  62      'EMAIL_TOPIC_EXPLAIN'    => 'This message will be sent as plain text, do not include any HTML or BBCode. Please note that the topic information is already included in the message. The return address for this message will be set to your email address.',
  63      'EMPTY_ADDRESS_EMAIL'    => 'You must provide a valid email address for the recipient.',
  64      'EMPTY_MESSAGE_EMAIL'    => 'You must enter a message to be emailed.',
  65      'EMPTY_MESSAGE_IM'        => 'You must enter a message to be send.',
  66      'EMPTY_NAME_EMAIL'        => 'You must enter the real name of the recipient.',
  67      'EMPTY_SENDER_EMAIL'    => 'You must provide a valid email address.',
  68      'EMPTY_SENDER_NAME'        => 'You must provide a name.',
  69      'EMPTY_SUBJECT_EMAIL'    => 'You must specify a subject for the email.',
  70      'EQUAL_TO'                => 'Equal to',
  71  
  72      'FIND_USERNAME_EXPLAIN'    => 'Use this form to search for specific members. You do not need to fill out all fields. To match partial data use * as a wildcard. When entering dates use the format <kbd>YYYY-MM-DD</kbd>, e.g. <samp>2004-02-29</samp>. Use the mark checkboxes to select one or more usernames (several usernames may be accepted depending on the form itself) and click the Select Marked button to return to the previous form.',
  73      'FLOOD_EMAIL_LIMIT'        => 'You cannot send another email at this time. Please try again later.',
  74  
  75      'GROUP_LEADER'            => 'Group leader',
  76  
  77      'HIDE_MEMBER_SEARCH'    => 'Hide member search',
  78  
  79      'IM_ADD_CONTACT'        => 'Add Contact',
  80      'IM_DOWNLOAD_APP'        => 'Download application',
  81      'IM_JABBER'                => 'Please note that users may have selected to not receive unsolicited instant messages.',
  82      'IM_JABBER_SUBJECT'        => 'This is an automated message please do not reply! Message from user %1$s at %2$s.',
  83      'IM_MESSAGE'            => 'Your message',
  84      'IM_NAME'                => 'Your Name',
  85      'IM_NO_DATA'            => 'There is no suitable contact information for this user.',
  86      'IM_NO_JABBER'            => 'Sorry, direct messaging of Jabber users is not supported on this board. You will need a Jabber client installed on your system to contact the recipient above.',
  87      'IM_RECIPIENT'            => 'Recipient',
  88      'IM_SEND'                => 'Send message',
  89      'IM_SEND_MESSAGE'        => 'Send message',
  90      'IM_SENT_JABBER'        => 'Your message to %1$s has been sent successfully.',
  91      'IM_USER'                => 'Send an instant message',
  92  
  93      'LAST_ACTIVE'                => 'Last active',
  94      'LESS_THAN'                    => 'Less than',
  95      'LIST_USERS'                => array(
  96          1    => '%d user',
  97          2    => '%d users',
  98      ),
  99      'LOGIN_EXPLAIN_TEAM'        => 'The board requires you to be registered and logged in to view the team listing.',
 100      'LOGIN_EXPLAIN_MEMBERLIST'    => 'The board requires you to be registered and logged in to access the memberlist.',
 101      'LOGIN_EXPLAIN_SEARCHUSER'    => 'The board requires you to be registered and logged in to search users.',
 102      'LOGIN_EXPLAIN_VIEWPROFILE'    => 'The board requires you to be registered and logged in to view profiles.',
 103  
 104      'MANAGE_GROUP'            => 'Manage Group',
 105      'MORE_THAN'                => 'More than',
 106  
 107      'NO_CONTACT_FORM'        => 'The board administrator contact form has been disabled.',
 108      'NO_CONTACT_PAGE'        => 'The board administrator contact page has been disabled.',
 109      'NO_EMAIL'                => 'You are not permitted to send email to this user.',
 110      'NO_VIEW_USERS'            => 'You are not authorised to view the member list or profiles.',
 111  
 112      'ORDER'                    => 'Order',
 113      'OTHER'                    => 'Other',
 114  
 115      'POST_IP'                => 'Posted from IP/domain',
 116  
 117      'REAL_NAME'                => 'Recipient name',
 118      'RECIPIENT'                => 'Recipient',
 119      'REMOVE_FOE'            => 'Remove foe',
 120      'REMOVE_FRIEND'            => 'Remove friend',
 121  
 122      'SELECT_MARKED'            => 'Select marked',
 123      'SELECT_SORT_METHOD'    => 'Select sort method',
 124      'SENDER_EMAIL_ADDRESS'    => 'Your email address',
 125      'SENDER_NAME'            => 'Your name',
 126      'SEND_ICQ_MESSAGE'        => 'Send ICQ message',
 127      'SEND_IM'                => 'Instant messaging',
 128      'SEND_JABBER_MESSAGE'    => 'Send Jabber message',
 129      'SEND_MESSAGE'            => 'Message',
 130      'SEND_YIM_MESSAGE'        => 'Send YIM message',
 131      'SORT_EMAIL'            => 'Email',
 132      'SORT_LAST_ACTIVE'        => 'Last active',
 133      'SORT_POST_COUNT'        => 'Post count',
 134  
 135      'USERNAME_BEGINS_WITH'    => 'Username begins with',
 136      'USER_ADMIN'            => 'Administer user',
 137      'USER_BAN'                => 'Banning',
 138      'USER_FORUM'            => 'User statistics',
 139      'USER_LAST_REMINDED'    => array(
 140          0        => 'No reminder sent at this time',
 141          1        => '%1$d reminder sent<br />» %2$s',
 142          2        => '%1$d reminder sent<br />» %2$s',
 143      ),
 144      'USER_ONLINE'            => 'Online',
 145      'USER_PRESENCE'            => 'Board presence',
 146      'USERS_PER_PAGE'        => 'Users per page',
 147  
 148      'VIEWING_PROFILE'        => 'Viewing profile - %s',
 149      'VIEW_FACEBOOK_PROFILE'    => 'View Facebook Profile',
 150      'VIEW_SKYPE_PROFILE'    => 'View Skype Profile',
 151      'VIEW_TWITTER_PROFILE'    => 'View Twitter Profile',
 152      'VIEW_YOUTUBE_PROFILE'    => 'View YouTube Profile',
 153  ));


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1