[ Index ]

PHP Cross Reference of phpBB-3.3.11-deutsch

title

Body

[close]

/language/en/acp/ -> board.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  // Board Settings
  40  $lang = array_merge($lang, array(
  41      'ACP_BOARD_SETTINGS_EXPLAIN'    => 'Here you can determine the basic operation of your board, give it a fitting name and description, and among other settings adjust the default values for timezone and language.',
  42      'BOARD_INDEX_TEXT'                => 'Board index text',
  43      'BOARD_INDEX_TEXT_EXPLAIN'        => 'This text is displayed as the board index in the board’s breadcrumbs. If not specified, it will default to “Board index”.',
  44      'BOARD_STYLE'                    => 'Board style',
  45      'CUSTOM_DATEFORMAT'                => 'Custom…',
  46      'DEFAULT_DATE_FORMAT'            => 'Date format',
  47      'DEFAULT_DATE_FORMAT_EXPLAIN'    => 'The syntax uses the same format as the PHP <a href="https://www.php.net/manual/datetime.format.php">date functions</a>.',
  48      'DEFAULT_LANGUAGE'                => 'Default language',
  49      'DEFAULT_STYLE'                    => 'Default style',
  50      'DEFAULT_STYLE_EXPLAIN'            => 'The default style for new users.',
  51      'DISABLE_BOARD'                    => 'Disable board',
  52      'DISABLE_BOARD_EXPLAIN'            => 'This will make the board unavailable to users who are neither administrators nor moderators. You can also enter a short (255 character) message to display if you wish.',
  53      'DISPLAY_LAST_SUBJECT'            => 'Display subject of last added post on forum list',
  54      'DISPLAY_LAST_SUBJECT_EXPLAIN'    => 'The subject of the last added post will be displayed in the forum list with a hyperlink to the post. Subjects from password protected forums and forums in which user doesn’t have read access are not shown.',
  55      'DISPLAY_UNAPPROVED_POSTS'        => 'Display unapproved posts to the author',
  56      'DISPLAY_UNAPPROVED_POSTS_EXPLAIN'    => 'Unapproved posts can be viewed by the author. Does not apply to Guest posts.',
  57      'GUEST_STYLE'                    => 'Guest style',
  58      'GUEST_STYLE_EXPLAIN'            => 'The board style for guests.',
  59      'OVERRIDE_STYLE'                => 'Override user style',
  60      'OVERRIDE_STYLE_EXPLAIN'        => 'Replaces user’s (and guest’s) style with the style as defined under "Default style".',
  61      'SITE_DESC'                        => 'Site description',
  62      'SITE_HOME_TEXT'                => 'Main website text',
  63      'SITE_HOME_TEXT_EXPLAIN'        => 'This text will be displayed as a link to your website homepage in the board’s breadcrumbs. If not specified, it will default to “Home”.',
  64      'SITE_HOME_URL'                    => 'Main website URL',
  65      'SITE_HOME_URL_EXPLAIN'            => 'If specified, a link to this URL will be prepended to your board’s breadcrumbs and the board logo will link to this URL instead of the forum index. An absolute URL is required, e.g. <samp>http://www.phpbb.com</samp>.',
  66      'SITE_NAME'                        => 'Site name',
  67      'SYSTEM_TIMEZONE'                => 'Guest timezone',
  68      'SYSTEM_TIMEZONE_EXPLAIN'            => 'Timezone to use for displaying times to users who are not logged in (guests, bots). Logged in users set their timezone during registration and can change it in their user control panel.',
  69      'WARNINGS_EXPIRE'                => 'Warning duration',
  70      'WARNINGS_EXPIRE_EXPLAIN'        => 'Number of days that will elapse before a warning will automatically expire from a user’s record. Set this value to 0 to make warnings permanent.',
  71  ));
  72  
  73  // Board Features
  74  $lang = array_merge($lang, array(
  75      'ACP_BOARD_FEATURES_EXPLAIN'    => 'Here you can enable/disable several board features.',
  76  
  77      'ALLOW_ATTACHMENTS'            => 'Allow attachments',
  78      'ALLOW_BIRTHDAYS'            => 'Allow birthdays',
  79      'ALLOW_BIRTHDAYS_EXPLAIN'    => 'Allow birthdays to be entered and age being displayed in profiles. Please note the birthday list within the board index is controlled by a separate load setting.',
  80      'ALLOW_BOOKMARKS'            => 'Allow bookmarking topics',
  81      'ALLOW_BOOKMARKS_EXPLAIN'    => 'User is able to store personal bookmarks.',
  82      'ALLOW_BBCODE'                => 'Allow BBCode',
  83      'ALLOW_FORUM_NOTIFY'        => 'Allow subscribing to forums',
  84      'ALLOW_NAME_CHANGE'            => 'Allow username changes',
  85      'ALLOW_NO_CENSORS'            => 'Allow disabling of word censoring',
  86      'ALLOW_NO_CENSORS_EXPLAIN'    => 'Users can choose to disable the automatic word censoring of posts and private messages.',
  87      'ALLOW_PM_ATTACHMENTS'        => 'Allow attachments in private messages',
  88      'ALLOW_PM_REPORT'            => 'Allow users to report private messages',
  89      'ALLOW_PM_REPORT_EXPLAIN'    => 'If this setting is enabled, users have the option of reporting a private message they have received or sent to the board’s moderators. These private messages will then be visible in the Moderator Control Panel.',
  90      'ALLOW_QUICK_REPLY'            => 'Allow quick reply',
  91      'ALLOW_QUICK_REPLY_EXPLAIN'    => 'This switch allows for the quick reply to be disabled board-wide. When enabled, forum specific settings will be used to determine whether the quick reply is displayed in individual forums.',
  92      'ALLOW_QUICK_REPLY_BUTTON'    => 'Submit and enable quick reply in all forums',
  93      'ALLOW_SIG'                    => 'Allow signatures',
  94      'ALLOW_SIG_BBCODE'            => 'Allow BBCode in user signatures',
  95      'ALLOW_SIG_FLASH'            => 'Allow use of <code>[FLASH]</code> BBCode tag in user signatures',
  96      'ALLOW_SIG_IMG'                => 'Allow use of <code>[IMG]</code> BBCode tag in user signatures',
  97      'ALLOW_SIG_LINKS'            => 'Allow use of links in user signatures',
  98      'ALLOW_SIG_LINKS_EXPLAIN'    => 'If disallowed the <code>[URL]</code> BBCode tag and automatic/magic URLs are disabled.',
  99      'ALLOW_SIG_SMILIES'            => 'Allow use of smilies in user signatures',
 100      'ALLOW_SMILIES'                => 'Allow smilies',
 101      'ALLOW_TOPIC_NOTIFY'        => 'Allow subscribing to topics',
 102      'BOARD_PM'                    => 'Private messaging',
 103      'BOARD_PM_EXPLAIN'            => 'Enable private messaging for all users.',
 104      'ALLOW_BOARD_NOTIFICATIONS' => 'Allow board notifications',
 105  ));
 106  
 107  // Avatar Settings
 108  $lang = array_merge($lang, array(
 109      'ACP_AVATAR_SETTINGS_EXPLAIN'    => 'Avatars are generally small, unique images a user can associate with themselves. Depending on the style they are usually displayed below the username when viewing topics. Here you can determine how users can define their avatars. Please note that in order to upload avatars you need to have created the directory you name below and ensure it can be written to by the web server. Please also note that file size limits are only imposed on uploaded avatars, they do not apply to remotely linked images.',
 110  
 111      'ALLOW_AVATARS'                    => 'Enable avatars',
 112      'ALLOW_AVATARS_EXPLAIN'            => 'Allow general usage of avatars;<br>If you disable avatars in general or avatars of a certain mode, the disabled avatars will no longer be shown on the board, but users will still be able to download their own avatars in the User Control Panel.',
 113      'ALLOW_GRAVATAR'                => 'Enable gravatar avatars',
 114      'ALLOW_LOCAL'                    => 'Enable gallery avatars',
 115      'ALLOW_REMOTE'                    => 'Enable remote avatars',
 116      'ALLOW_REMOTE_EXPLAIN'            => 'Avatars linked to from another website.<br><em><strong class="error">Warning:</strong> Enabling this feature might allow users to check for the existence of files and services that are only accessible on the local network.</em>',
 117      'ALLOW_REMOTE_UPLOAD'            => 'Enable remote avatar uploading',
 118      'ALLOW_REMOTE_UPLOAD_EXPLAIN'    => 'Allow uploading of avatars from another website.<br><em><strong class="error">Warning:</strong> Enabling this feature might allow users to check for the existence of files and services that are only accessible on the local network.</em>',
 119      'ALLOW_UPLOAD'                    => 'Enable avatar uploading',
 120      'AVATAR_GALLERY_PATH'            => 'Avatar gallery path',
 121      'AVATAR_GALLERY_PATH_EXPLAIN'    => 'Path under your phpBB root directory for pre-loaded images, e.g. <samp>images/avatars/gallery</samp>.<br>Double dots like <samp>../</samp> will be stripped from the path for security reasons.',
 122      'AVATAR_STORAGE_PATH'            => 'Avatar storage path',
 123      'AVATAR_STORAGE_PATH_EXPLAIN'    => 'Path under your phpBB root directory, e.g. <samp>images/avatars/upload</samp>.<br>Avatar uploading <strong>will not be available</strong> if this path is not writable.<br>Double dots like <samp>../</samp> will be stripped from the path for security reasons.',
 124      'MAX_AVATAR_SIZE'                => 'Maximum avatar dimensions',
 125      'MAX_AVATAR_SIZE_EXPLAIN'        => 'Width x Height in pixels.',
 126      'MAX_FILESIZE'                    => 'Maximum avatar file size',
 127      'MAX_FILESIZE_EXPLAIN'            => 'For uploaded avatar files. If this value is 0, the uploaded filesize is only limited by your PHP configuration.',
 128      'MIN_AVATAR_SIZE'                => 'Minimum avatar dimensions',
 129      'MIN_AVATAR_SIZE_EXPLAIN'        => 'Width x Height in pixels.',
 130  ));
 131  
 132  // Message Settings
 133  $lang = array_merge($lang, array(
 134      'ACP_MESSAGE_SETTINGS_EXPLAIN'        => 'Here you can set all default settings for private messaging.',
 135  
 136      'ALLOW_BBCODE_PM'            => 'Allow BBCode in private messages',
 137      'ALLOW_FLASH_PM'            => 'Allow use of <code>[FLASH]</code> BBCode tag',
 138      'ALLOW_FLASH_PM_EXPLAIN'    => 'Note that the ability to use flash in private messages, if enabled here, also depends on the permissions.',
 139      'ALLOW_FORWARD_PM'            => 'Allow forwarding of private messages',
 140      'ALLOW_IMG_PM'                => 'Allow use of <code>[IMG]</code> BBCode tag',
 141      'ALLOW_MASS_PM'                => 'Allow sending of private messages to multiple users and groups',
 142      'ALLOW_MASS_PM_EXPLAIN'        => 'Sending to groups can be adjusted per group within the group settings page.',
 143      'ALLOW_PRINT_PM'            => 'Allow print view in private messaging',
 144      'ALLOW_QUOTE_PM'            => 'Allow quotes in private messages',
 145      'ALLOW_SIG_PM'                => 'Allow signature in private messages',
 146      'ALLOW_SMILIES_PM'            => 'Allow smilies in private messages',
 147      'BOXES_LIMIT'                => 'Maximum private messages per box',
 148      'BOXES_LIMIT_EXPLAIN'        => 'Users may receive no more than this many messages in each of their private message boxes. Set this value to 0 to allow unlimited messages.',
 149      'BOXES_MAX'                    => 'Maximum private message folders',
 150      'BOXES_MAX_EXPLAIN'            => 'By default users may create this many personal folders for private messages.',
 151      'ENABLE_PM_ICONS'            => 'Enable use of topic icons in private messages',
 152      'FULL_FOLDER_ACTION'        => 'Full folder default action',
 153      'FULL_FOLDER_ACTION_EXPLAIN'=> 'Default action to take if a user’s folder is full assuming the user’s folder action, if set at all, is not applicable. The only exception is for the “Sent messages” folder where the default action is always to delete old messages.',
 154      'HOLD_NEW_MESSAGES'            => 'Hold new messages',
 155      'PM_EDIT_TIME'                => 'Limit editing time',
 156      'PM_EDIT_TIME_EXPLAIN'        => 'Limits the time available to edit a private message not already delivered. Setting the value to 0 disables this behaviour.',
 157      'PM_MAX_RECIPIENTS'            => 'Maximum number of allowed recipients',
 158      'PM_MAX_RECIPIENTS_EXPLAIN'    => 'The maximum number of allowed recipients in a private message. If 0 is entered, an unlimited number is allowed. This setting can be adjusted for every group within the group settings page.',
 159  ));
 160  
 161  // Post Settings
 162  $lang = array_merge($lang, array(
 163      'ACP_POST_SETTINGS_EXPLAIN'            => 'Here you can set all default settings for posting.',
 164      'ALLOW_POST_LINKS'                    => 'Allow links in posts/private messages',
 165      'ALLOW_POST_LINKS_EXPLAIN'            => 'If disallowed the <code>[URL]</code> BBCode tag and automatic/magic URLs are disabled.',
 166      'ALLOWED_SCHEMES_LINKS'                => 'Allowed schemes in links',
 167      'ALLOWED_SCHEMES_LINKS_EXPLAIN'        => 'Users can only post schemeless URLs or one of the comma-separated list of allowed schemes.',
 168      'ALLOW_POST_FLASH'                    => 'Allow use of <code>[FLASH]</code> BBCode tag in posts',
 169      'ALLOW_POST_FLASH_EXPLAIN'            => 'If disallowed the <code>[FLASH]</code> BBCode tag is disabled in posts. Otherwise the permission system controls which users can use the <code>[FLASH]</code> BBCode tag.',
 170  
 171      'BUMP_INTERVAL'                    => 'Bump interval',
 172      'BUMP_INTERVAL_EXPLAIN'            => 'Number of minutes, hours or days between the last post to a topic and the ability to bump that topic. Setting the value to 0 disables bumping entirely.',
 173      'CHAR_LIMIT'                    => 'Maximum characters per post/message',
 174      'CHAR_LIMIT_EXPLAIN'            => 'The number of characters allowed within a post/private message. Set to 0 for unlimited characters.',
 175      'DELETE_TIME'                    => 'Limit deleting time',
 176      'DELETE_TIME_EXPLAIN'            => 'Limits the time available to delete a new post. Setting the value to 0 disables this behaviour.',
 177      'DISPLAY_LAST_EDITED'            => 'Display last edited time information',
 178      'DISPLAY_LAST_EDITED_EXPLAIN'    => 'Choose if the last edited by information to be displayed on posts.',
 179      'EDIT_TIME'                        => 'Limit editing time',
 180      'EDIT_TIME_EXPLAIN'                => 'Limits the time available to edit a new post. Setting the value to 0 disables this behaviour.',
 181      'FLOOD_INTERVAL'                => 'Flood interval',
 182      'FLOOD_INTERVAL_EXPLAIN'        => 'Number of seconds a user must wait between posting new messages. To enable users to ignore this alter their permissions.',
 183      'HOT_THRESHOLD'                    => 'Popular topic threshold',
 184      'HOT_THRESHOLD_EXPLAIN'            => 'Posts per topic threshold required for the popular topic annotation. Set to 0 to disable popular topics.',
 185      'MAX_POLL_OPTIONS'                => 'Maximum number of poll options',
 186      'MAX_POST_FONT_SIZE'            => 'Maximum font size per post',
 187      'MAX_POST_FONT_SIZE_EXPLAIN'    => 'Maximum font size allowed in a post. Set to 0 for unlimited font size.',
 188      'MAX_POST_IMG_HEIGHT'            => 'Maximum flash height per post',
 189      'MAX_POST_IMG_HEIGHT_EXPLAIN'    => 'Maximum height of a flash file in postings. Set to 0 for unlimited size.',
 190      'MAX_POST_IMG_WIDTH'            => 'Maximum flash width per post',
 191      'MAX_POST_IMG_WIDTH_EXPLAIN'    => 'Maximum width of a flash file in postings. Set to 0 for unlimited size.',
 192      'MAX_POST_URLS'                    => 'Maximum links per post',
 193      'MAX_POST_URLS_EXPLAIN'            => 'Maximum number of URLs in a post. Set to 0 for unlimited links.',
 194      'MIN_CHAR_LIMIT'                => 'Minimum characters per post/message',
 195      'MIN_CHAR_LIMIT_EXPLAIN'        => 'The minimum number of characters the user need to enter within a post/private message. The minimum for this setting is 1.',
 196      'POSTING'                        => 'Posting',
 197      'POSTS_PER_PAGE'                => 'Posts per page',
 198      'QUOTE_DEPTH_LIMIT'                => 'Maximum nesting depth for quotes',
 199      'QUOTE_DEPTH_LIMIT_EXPLAIN'        => 'Maximum quote nesting depth in a post. Set to 0 for unlimited depth.',
 200      'SMILIES_LIMIT'                    => 'Maximum smilies per post',
 201      'SMILIES_LIMIT_EXPLAIN'            => 'Maximum number of smilies in a post. Set to 0 for unlimited smilies.',
 202      'SMILIES_PER_PAGE'                => 'Smilies per page',
 203      'TOPICS_PER_PAGE'                => 'Topics per page',
 204  ));
 205  
 206  // Signature Settings
 207  $lang = array_merge($lang, array(
 208      'ACP_SIGNATURE_SETTINGS_EXPLAIN'    => 'Here you can set all default settings for signatures.',
 209  
 210      'MAX_SIG_FONT_SIZE'                => 'Maximum signature font size',
 211      'MAX_SIG_FONT_SIZE_EXPLAIN'        => 'Maximum font size allowed in user signatures. Set to 0 for unlimited size.',
 212      'MAX_SIG_IMG_HEIGHT'            => 'Maximum signature image height',
 213      'MAX_SIG_IMG_HEIGHT_EXPLAIN'    => 'Maximum height of an image/flash file in user signatures. Set to 0 for unlimited height.',
 214      'MAX_SIG_IMG_WIDTH'                => 'Maximum signature image width',
 215      'MAX_SIG_IMG_WIDTH_EXPLAIN'        => 'Maximum width of an image/flash file in user signatures. Set to 0 for unlimited width.',
 216      'MAX_SIG_LENGTH'                => 'Maximum signature length',
 217      'MAX_SIG_LENGTH_EXPLAIN'        => 'Maximum number of characters in user signatures.',
 218      'MAX_SIG_SMILIES'                => 'Maximum smilies per signature',
 219      'MAX_SIG_SMILIES_EXPLAIN'        => 'Maximum smilies allowed in user signatures. Set to 0 for unlimited smilies.',
 220      'MAX_SIG_URLS'                    => 'Maximum signature links',
 221      'MAX_SIG_URLS_EXPLAIN'            => 'Maximum number of links in user signatures. Set to 0 for unlimited links.',
 222  ));
 223  
 224  // Registration Settings
 225  $lang = array_merge($lang, array(
 226      'ACP_REGISTER_SETTINGS_EXPLAIN'        => 'Here you are able to define registration and profile related settings.',
 227  
 228      'ACC_ACTIVATION'                => 'Account activation',
 229      'ACC_ACTIVATION_EXPLAIN'        => 'This determines whether users have immediate access to the board or if confirmation is required. You can also completely disable new registrations. <em>“Board-wide email” must be enabled in order to use user or admin activation.</em>',
 230      'ACC_ACTIVATION_WARNING'        => 'Please note that the currently selected activation method requires emails to be enabled, otherwise registration will be disabled. We recommend to either select a different activation method or reenable emails.',
 231      'NEW_MEMBER_POST_LIMIT'            => 'New member post limit',
 232      'NEW_MEMBER_POST_LIMIT_EXPLAIN'    => 'New members are within the <em>Newly Registered Users</em> group until they reach this number of posts. You can use this group to keep them from using the PM system or to review their posts. <strong>A value of 0 disables this feature.</strong>',
 233      'NEW_MEMBER_GROUP_DEFAULT'        => 'Set Newly Registered Users group to default',
 234      'NEW_MEMBER_GROUP_DEFAULT_EXPLAIN'    => 'If set to yes, and a new member post limit is specified, newly registered users will not only be put into the <em>Newly Registered Users</em> group, but this group will also be their default one. This may come in handy if you want to assign a group default rank and/or avatar the user then inherits.',
 235  
 236      'ACC_ADMIN'                    => 'By admin',
 237      'ACC_DISABLE'                => 'Disable registration',
 238      'ACC_NONE'                    => 'No activation (immediate access)',
 239      'ACC_USER'                    => 'By user (email verification)',
 240  //    'ACC_USER_ADMIN'            => 'User + Admin',
 241      'ALLOW_EMAIL_REUSE'            => 'Allow email address re-use',
 242      'ALLOW_EMAIL_REUSE_EXPLAIN'    => 'Different users can register with the same email address.',
 243      'COPPA'                        => 'COPPA',
 244      'COPPA_FAX'                    => 'COPPA fax number',
 245      'COPPA_MAIL'                => 'COPPA mailing address',
 246      'COPPA_MAIL_EXPLAIN'        => 'This is the mailing address where parents will send COPPA registration forms.',
 247      'ENABLE_COPPA'                => 'Enable COPPA',
 248      'ENABLE_COPPA_EXPLAIN'        => 'This requires users to declare whether they are 13 or over for compliance with the U.S. COPPA. If this is disabled the COPPA specific groups will no longer be displayed.',
 249      'MAX_CHARS'                    => 'Max',
 250      'MIN_CHARS'                    => 'Min',
 251      'NO_AUTH_PLUGIN'            => 'No suitable auth plugin found.',
 252      'PASSWORD_LENGTH'            => 'Password length',
 253      'PASSWORD_LENGTH_EXPLAIN'    => 'Minimum number of characters in passwords. Note that the maximum number is not limited.',
 254      'REG_LIMIT'                    => 'Registration attempts',
 255      'REG_LIMIT_EXPLAIN'            => 'Number of attempts users can make at solving the anti-spambot task before being locked out of that session.',
 256      'USERNAME_ALPHA_ONLY'        => 'Alphanumeric only',
 257      'USERNAME_ALPHA_SPACERS'    => 'Alphanumeric and spacers',
 258      'USERNAME_ASCII'            => 'ASCII (no international unicode)',
 259      'USERNAME_LETTER_NUM'        => 'Any letter and number',
 260      'USERNAME_LETTER_NUM_SPACERS'    => 'Any letter, number, and spacer',
 261      'USERNAME_CHARS'            => 'Limit username chars',
 262      'USERNAME_CHARS_ANY'        => 'Any character',
 263      'USERNAME_CHARS_EXPLAIN'    => 'Restrict type of characters that may be used in usernames, spacers are: space, -, +, _, [ and ].',
 264      'USERNAME_LENGTH'            => 'Username length',
 265      'USERNAME_LENGTH_EXPLAIN'    => 'Minimum and maximum number of characters in usernames.',
 266  ));
 267  
 268  // Feeds
 269  $lang = array_merge($lang, array(
 270      'ACP_FEED_MANAGEMENT'                => 'General syndication feeds settings',
 271      'ACP_FEED_MANAGEMENT_EXPLAIN'        => 'This module makes available various ATOM feeds, parsing any BBCode in posts to make them readable in external feeds.',
 272  
 273      'ACP_FEED_GENERAL'                    => 'General feed settings',
 274      'ACP_FEED_POST_BASED'                => 'Post-based feed settings',
 275      'ACP_FEED_TOPIC_BASED'                => 'Topic-based feed settings',
 276      'ACP_FEED_SETTINGS_OTHER'            => 'Other feeds and settings',
 277  
 278      'ACP_FEED_ENABLE'                    => 'Enable feeds',
 279      'ACP_FEED_ENABLE_EXPLAIN'            => 'Turns on or off ATOM feeds for the entire board.<br>Disabling this switches off all feeds, no matter how the options below are set.',
 280      'ACP_FEED_LIMIT'                    => 'Number of items',
 281      'ACP_FEED_LIMIT_EXPLAIN'            => 'The maximum number of feed items to display.',
 282  
 283      'ACP_FEED_OVERALL'                    => 'Enable board-wide feed',
 284      'ACP_FEED_OVERALL_EXPLAIN'            => 'Board-wide new posts.',
 285      'ACP_FEED_FORUM'                    => 'Enable per-forum feeds',
 286      'ACP_FEED_FORUM_EXPLAIN'            => 'Single forum and subforums new posts.',
 287      'ACP_FEED_TOPIC'                    => 'Enable per-topic feeds',
 288      'ACP_FEED_TOPIC_EXPLAIN'            => 'Single topics new posts.',
 289  
 290      'ACP_FEED_TOPICS_NEW'                => 'Enable new topics feed',
 291      'ACP_FEED_TOPICS_NEW_EXPLAIN'        => 'Enables the “New Topics” feed, which displays the last created topics including the first post.',
 292      'ACP_FEED_TOPICS_ACTIVE'            => 'Enable active topics feed',
 293      'ACP_FEED_TOPICS_ACTIVE_EXPLAIN'    => 'Enables the “Active Topics” feed, which displays the last active topics including the last post.',
 294      'ACP_FEED_NEWS'                        => 'News feed',
 295      'ACP_FEED_NEWS_EXPLAIN'                => 'Pull the first post from these forums. Select no forums to disable news feed.<br>Select multiple forums by holding <samp>CTRL</samp> and clicking.',
 296  
 297      'ACP_FEED_OVERALL_FORUMS'            => 'Enable forums feed',
 298      'ACP_FEED_OVERALL_FORUMS_EXPLAIN'    => 'Enables the “All forums” feed, which displays a list of forums.',
 299  
 300      'ACP_FEED_HTTP_AUTH'                => 'Allow HTTP Authentication',
 301      'ACP_FEED_HTTP_AUTH_EXPLAIN'        => 'Enables HTTP authentication, which allows users to receive content that is hidden to guest users by adding the <samp>auth=http</samp> parameter to the feed URL. Please note that some PHP setups require additional changes to the .htaccess file. Instructions can be found in that file.',
 302      'ACP_FEED_ITEM_STATISTICS'            => 'Item statistics',
 303      'ACP_FEED_ITEM_STATISTICS_EXPLAIN'    => 'Display individual statistics underneath feed items<br>(e.g. posted by, date and time, replies, views)',
 304      'ACP_FEED_EXCLUDE_ID'                => 'Exclude these forums',
 305      'ACP_FEED_EXCLUDE_ID_EXPLAIN'        => 'Content from these will be <strong>not included in feeds</strong>. Select no forum to pull data from all forums.<br>Select/Deselect multiple forums by holding <samp>CTRL</samp> and clicking.',
 306  ));
 307  
 308  // Visual Confirmation Settings
 309  $lang = array_merge($lang, array(
 310      'ACP_VC_SETTINGS_EXPLAIN'                => 'Here you can select and configure plugins, which are designed to block automated form submissions by spambots. These plugins typically work by challenging the user with a <em>CAPTCHA</em>, a test which is designed to be difficult for computers to solve.',
 311      'ACP_VC_EXT_GET_MORE'                    => 'For additional (and possibly better) anti-spam plugins, visit the <a href="https://www.phpbb.com/go/anti-spam-ext"><strong>phpBB.com Extensions Database</strong></a>. For more information on preventing spam on your board, visit the <a href="https://www.phpbb.com/go/anti-spam"><strong>phpBB.com Knowledge Base</strong></a>.',
 312      'AVAILABLE_CAPTCHAS'                    => 'Available plugins',
 313      'CAPTCHA_UNAVAILABLE'                    => 'The plugin cannot be selected as its requirements are not met.',
 314      'CAPTCHA_GD'                            => 'GD image',
 315      'CAPTCHA_GD_3D'                            => 'GD 3D image',
 316      'CAPTCHA_GD_FOREGROUND_NOISE'            => 'Foreground noise',
 317      'CAPTCHA_GD_EXPLAIN'                    => 'Uses GD to make a more advanced anti-spambot image.',
 318      'CAPTCHA_GD_FOREGROUND_NOISE_EXPLAIN'    => 'Use foreground noise to make the image harder to read.',
 319      'CAPTCHA_GD_X_GRID'                        => 'Background noise x-axis',
 320      'CAPTCHA_GD_X_GRID_EXPLAIN'                => 'Use lower settings of this to make the image harder to read. 0 will disable x-axis background noise.',
 321      'CAPTCHA_GD_Y_GRID'                        => 'Background noise y-axis',
 322      'CAPTCHA_GD_Y_GRID_EXPLAIN'                => 'Use lower settings of this to make the image harder to read. 0 will disable y-axis background noise.',
 323      'CAPTCHA_GD_WAVE'                        => 'Wave distortion',
 324      'CAPTCHA_GD_WAVE_EXPLAIN'                => 'This applies a wave distortion to the image.',
 325      'CAPTCHA_GD_3D_NOISE'                    => 'Add 3D-noise objects',
 326      'CAPTCHA_GD_3D_NOISE_EXPLAIN'            => 'This adds additional objects to the image, over the letters.',
 327      'CAPTCHA_GD_FONTS'                        => 'Use different fonts',
 328      'CAPTCHA_GD_FONTS_EXPLAIN'                => 'This setting controls how many different letter shapes are used. You can just use the default shapes or introduce altered letters. Adding lowercase letters is also possible.',
 329      'CAPTCHA_FONT_DEFAULT'                    => 'Default',
 330      'CAPTCHA_FONT_NEW'                        => 'New Shapes',
 331      'CAPTCHA_FONT_LOWER'                    => 'Also use lowercase',
 332      'CAPTCHA_NO_GD'                            => 'Simple image',
 333      'CAPTCHA_PREVIEW_MSG'                    => 'Your changes have not been saved, this is just a preview.',
 334      'CAPTCHA_PREVIEW_EXPLAIN'                => 'The plugin as it would look like using the current selection.',
 335  
 336      'CAPTCHA_SELECT'                        => 'Installed plugins',
 337      'CAPTCHA_SELECT_EXPLAIN'                => 'The dropdown holds the plugins recognised by the board. Grey entries are not available right now and might need configuration prior to use.',
 338      'CAPTCHA_CONFIGURE'                        => 'Configure plugins',
 339      'CAPTCHA_CONFIGURE_EXPLAIN'                => 'Change the settings for the selected plugin.',
 340      'CONFIGURE'                                => 'Configure',
 341      'CAPTCHA_NO_OPTIONS'                    => 'This plugin has no configuration options.',
 342  
 343      'VISUAL_CONFIRM_POST'                    => 'Enable spambot countermeasures for guest postings',
 344      'VISUAL_CONFIRM_POST_EXPLAIN'            => 'Requires guest users to pass the anti-spambot task to help prevent automated postings.',
 345      'VISUAL_CONFIRM_REG'                    => 'Enable spambot countermeasures for registrations',
 346      'VISUAL_CONFIRM_REG_EXPLAIN'            => 'Requires new users to pass the anti-spambot task to help prevent automated registrations.',
 347      'VISUAL_CONFIRM_REFRESH'                => 'Allow users to refresh the anti-spambot task',
 348      'VISUAL_CONFIRM_REFRESH_EXPLAIN'        => 'Allows users to request a new anti-spambot task if they are unable to solve the current task during registration. Some plugins might not support this option.',
 349  ));
 350  
 351  // Cookie Settings
 352  $lang = array_merge($lang, array(
 353      'ACP_COOKIE_SETTINGS_EXPLAIN'        => 'These details define the data used to send cookies to your users browsers. In most cases the default values for the cookie settings should be sufficient. If you do need to change any do so with care, incorrect settings can prevent users logging in. If you have problems with users staying logging in to your board, visit the <strong><a href="https://www.phpbb.com/support/go/cookie-settings">phpBB.com Knowledge Base - Fixing incorrect cookie settings</a></strong>.',
 354  
 355      'COOKIE_DOMAIN'                => 'Cookie domain',
 356      'COOKIE_DOMAIN_EXPLAIN'        => 'In most cases the cookie domain is optional. Leave it blank if you are unsure.<br><br> In the case where you have a board integrated with other software or have multiple domains, then to determine the cookie domain you need to do the following. If you have something like <i>example.com</i> and <i>forums.example.com</i>, or perhaps <i>forums.example.com</i> and <i>blog.example.com</i>. Remove the subdomains until you find the common domain, <i>example.com</i>. Now add a dot in front of the common domain and you would enter .example.com (note the dot at the beginning).',
 357      'COOKIE_NAME'                => 'Cookie name',
 358      'COOKIE_NAME_EXPLAIN'        => 'This can be anything what you want, make it original. Whenever the cookie settings are changed the name of the cookie should be changed.',
 359      'COOKIE_NOTICE'                => 'Cookie notice',
 360      'COOKIE_NOTICE_EXPLAIN'        => 'If enabled a cookie notice will be displayed to users when visiting your board. This might be required by law depending on the content of your board and enabled extensions.',
 361      'COOKIE_PATH'                => 'Cookie path',
 362      'COOKIE_PATH_EXPLAIN'        => 'This will usually be the same as your script path or simply a slash to make the cookie accessible across the site domain.',
 363      'COOKIE_SECURE'                => 'Cookie secure',
 364      'COOKIE_SECURE_EXPLAIN'        => 'If your server is running via SSL set this to enabled else leave as disabled. Having this enabled and not running via SSL will result in server errors during redirects.',
 365      'ONLINE_LENGTH'                => 'View online time span',
 366      'ONLINE_LENGTH_EXPLAIN'        => 'Number of minutes after which inactive users will not appear in “Who is online” listings. The higher this value the greater is the processing required to generate the listing.',
 367      'SESSION_LENGTH'            => 'Session length',
 368      'SESSION_LENGTH_EXPLAIN'    => 'Sessions will expire after this time, in seconds.',
 369  ));
 370  
 371  // Contact Settings
 372  $lang = array_merge($lang, array(
 373      'ACP_CONTACT_SETTINGS_EXPLAIN'        => 'Here you can enable and disable the contact page and also add a text that is displayed on the page.',
 374  
 375      'CONTACT_US_ENABLE'                => 'Enable contact page',
 376      'CONTACT_US_ENABLE_EXPLAIN'        => 'This page allows users to send emails to board administrators. Please note that board-wide emails option must be enabled as well. You can find this option in General &gt; Client Communication &gt; Email settings.',
 377  
 378      'CONTACT_US_INFO'                => 'Contact information',
 379      'CONTACT_US_INFO_EXPLAIN'        => 'The message is displayed on the contact page',
 380      'CONTACT_US_INFO_PREVIEW'        => 'Contact page information - Preview',
 381      'CONTACT_US_INFO_UPDATED'        => 'Contact page information has been updated.',
 382  ));
 383  
 384  // Load Settings
 385  $lang = array_merge($lang, array(
 386      'ACP_LOAD_SETTINGS_EXPLAIN'    => 'Here you can enable and disable certain board functions to reduce the amount of processing required. On most servers there is no need to disable any functions. However on certain systems or in shared hosting environments it may be beneficial to disable capabilities you do not really need. You can also specify limits for system load and active sessions beyond which the board will go offline.',
 387  
 388      'ALLOW_CDN'                        => 'Allow usage of third party content delivery networks',
 389      'ALLOW_CDN_EXPLAIN'                => 'If this setting is enabled, some files will be served from external third party servers instead of your server. This reduces the network bandwidth used by your server, but may present a privacy issue in some countries. In a default phpBB installation, this includes loading “jQuery” and the font “Open Sans” from Google’s content delivery network. This also applies to the “Font Awesome” font, which phpBB and some extensions use to render icons.',
 390      'ALLOW_LIVE_SEARCHES'            => 'Allow live searches',
 391      'ALLOW_LIVE_SEARCHES_EXPLAIN'    => 'If this setting is enabled, users are provided with keyword suggestions as they type in certain fields throughout the board.',
 392      'CUSTOM_PROFILE_FIELDS'            => 'Custom profile fields',
 393      'LIMIT_LOAD'                    => 'Limit system load',
 394      'LIMIT_LOAD_EXPLAIN'            => 'If the system’s 1-minute load average exceeds this value the board will automatically go offline. A value of 1.0 equals ~100% utilisation of one processor. This only functions on UNIX based servers and where this information is accessible. The value here resets itself to 0 if phpBB was unable to get the load limit.',
 395      'LIMIT_SESSIONS'                => 'Limit sessions',
 396      'LIMIT_SESSIONS_EXPLAIN'        => 'If the number of sessions exceeds this value within a one minute period the board will go offline. Set to 0 for unlimited sessions.',
 397      'LOAD_CPF_MEMBERLIST'            => 'Allow styles to display custom profile fields in memberlist',
 398      'LOAD_CPF_PM'                    => 'Display custom profile fields in private messages',
 399      'LOAD_CPF_VIEWPROFILE'            => 'Display custom profile fields in user profiles',
 400      'LOAD_CPF_VIEWTOPIC'            => 'Display custom profile fields on topic pages',
 401      'LOAD_USER_ACTIVITY'            => 'Show user’s activity',
 402      'LOAD_USER_ACTIVITY_EXPLAIN'    => 'Displays active topic/forum in user profiles and user control panel. It is recommended to disable this on boards with more than one million posts.',
 403      'LOAD_USER_ACTIVITY_LIMIT'        => 'User’s activity post limit',
 404      'LOAD_USER_ACTIVITY_LIMIT_EXPLAIN'    => 'The active topic/forum won’t be shown for users having more than this number of posts. Set to 0 to disable the limit.',
 405      'READ_NOTIFICATION_EXPIRE_DAYS'    => 'Read Notification Expiration',
 406      'READ_NOTIFICATION_EXPIRE_DAYS_EXPLAIN' => 'Number of days that will elapse before a read notification will automatically be deleted. Set this value to 0 to make notifications permanent.',
 407      'RECOMPILE_STYLES'                => 'Recompile stale style components',
 408      'RECOMPILE_STYLES_EXPLAIN'        => 'Check for updated style components on filesystem and recompile.',
 409      'YES_ACCURATE_PM_BUTTON'            => 'Enable permission specific PM button in topic pages',
 410      'YES_ACCURATE_PM_BUTTON_EXPLAIN'    => 'If this setting is enabled, only post profiles of users who are permitted to read private messages will have a private message button.',
 411      'YES_ANON_READ_MARKING'            => 'Enable topic marking for guests',
 412      'YES_ANON_READ_MARKING_EXPLAIN'    => 'Stores read/unread status information for guests. If disabled, posts are always marked read for guests.',
 413      'YES_BIRTHDAYS'                    => 'Enable birthday listing',
 414      'YES_BIRTHDAYS_EXPLAIN'            => 'If disabled the birthday listing is no longer displayed. To let this setting take effect the birthday feature needs to be enabled too.',
 415      'YES_JUMPBOX'                    => 'Enable display of jumpbox',
 416      'YES_MODERATORS'                => 'Enable display of moderators',
 417      'YES_ONLINE'                    => 'Enable online user listings',
 418      'YES_ONLINE_EXPLAIN'            => 'Display online user information on index, forum and topic pages.',
 419      'YES_ONLINE_GUESTS'                => 'Enable online guest listings in viewonline',
 420      'YES_ONLINE_GUESTS_EXPLAIN'        => 'Allow display of guest user information in viewonline.',
 421      'YES_ONLINE_TRACK'                => 'Enable display of user online/offline information',
 422      'YES_ONLINE_TRACK_EXPLAIN'        => 'Display online information for user in profiles and topic pages.',
 423      'YES_POST_MARKING'                => 'Enable dotted topics',
 424      'YES_POST_MARKING_EXPLAIN'        => 'Indicates whether user has posted to a topic.',
 425      'YES_READ_MARKING'                => 'Enable server-side topic marking',
 426      'YES_READ_MARKING_EXPLAIN'        => 'Stores read/unread status information in the database rather than a cookie.',
 427      'YES_UNREAD_SEARCH'                => 'Enable search for unread posts',
 428  ));
 429  
 430  // Auth settings
 431  $lang = array_merge($lang, array(
 432      'ACP_AUTH_SETTINGS_EXPLAIN'    => 'phpBB supports authentication plug-ins, or modules. These allow you determine how users are authenticated when they log into the board. By default four plug-ins are provided: DB, LDAP, Apache, and OAuth. Not all methods require additional information so only fill out fields if they are relevant to the selected method.',
 433  
 434      'AUTH_METHOD'                => 'Select an authentication method',
 435  
 436      'AUTH_PROVIDER_OAUTH_ERROR_ELEMENT_MISSING'    => 'Both the key and secret of each enabled OAuth service provider must be provided. Only one was provided for an OAuth service provider.',
 437      'AUTH_PROVIDER_OAUTH_EXPLAIN'                => 'Each OAuth provider requires a unique secret and key in order to authenticate with the external server. These should be supplied by the OAuth service when you register your website with them and should be entered exactly as provided to you.<br>Any service that does not have both a key and a secret entered here will not be available for use by the forum users. Also note, that user can still register and login using the DB authentication plug-in.',
 438      'AUTH_PROVIDER_OAUTH_KEY'                    => 'Key',
 439      'AUTH_PROVIDER_OAUTH_TITLE'                    => 'OAuth',
 440      'AUTH_PROVIDER_OAUTH_SECRET'                => 'Secret',
 441  
 442      'APACHE_SETUP_BEFORE_USE'    => 'You have to setup apache authentication before you switch phpBB to this authentication method. Keep in mind that the username you use for apache authentication has to be the same as your phpBB username. Apache authentication can only be used with mod_php (not with a CGI version).',
 443  
 444      'LDAP'                            => 'LDAP',
 445      'LDAP_DN'                        => 'LDAP base <var>dn</var>',
 446      'LDAP_DN_EXPLAIN'                => 'This is the Distinguished Name, locating the user information, e.g. <samp>o=My Company,c=US</samp>.',
 447      'LDAP_EMAIL'                    => 'LDAP email attribute',
 448      'LDAP_EMAIL_EXPLAIN'            => 'Set this to the name of your user entry email attribute (if one exists) in order to automatically set the email address for new users. Leaving this empty results in empty email address for users who log in for the first time.',
 449      'LDAP_INCORRECT_USER_PASSWORD'    => 'Binding to LDAP server failed with specified user/password.',
 450      'LDAP_NO_EMAIL'                    => 'The specified email attribute does not exist.',
 451      'LDAP_NO_IDENTITY'                => 'Could not find a login identity for %s.',
 452      'LDAP_PASSWORD'                    => 'LDAP password',
 453      'LDAP_PASSWORD_EXPLAIN'            => 'Leave blank to use anonymous binding, otherwise fill in the password for the above user. Required for Active Directory Servers.<br><em><strong>Warning:</strong> This password will be stored as plain text in the database, visible to everybody who can access your database or who can view this configuration page.</em>',
 454      'LDAP_PORT'                        => 'LDAP server port',
 455      'LDAP_PORT_EXPLAIN'                => 'Optionally you can specify a port which should be used to connect to the LDAP server instead of the default port 389.',
 456      'LDAP_SERVER'                    => 'LDAP server name',
 457      'LDAP_SERVER_EXPLAIN'            => 'If using LDAP this is the hostname or IP address of the LDAP server. Alternatively you can specify an URL like ldap://hostname:port/',
 458      'LDAP_UID'                        => 'LDAP <var>uid</var>',
 459      'LDAP_UID_EXPLAIN'                => 'This is the key under which to search for a given login identity, e.g. <var>uid</var>, <var>sn</var>, etc.',
 460      'LDAP_USER'                        => 'LDAP user <var>dn</var>',
 461      'LDAP_USER_EXPLAIN'                => 'Leave blank to use anonymous binding. If filled in phpBB uses the specified distinguished name on login attempts to find the correct user, e.g. <samp>uid=Username,ou=MyUnit,o=MyCompany,c=US</samp>. Required for Active Directory Servers.',
 462      'LDAP_USER_FILTER'                => 'LDAP user filter',
 463      'LDAP_USER_FILTER_EXPLAIN'        => 'Optionally you can further limit the searched objects with additional filters. For example <samp>objectClass=posixGroup</samp> would result in the use of <samp>(&amp;(uid=$username)(objectClass=posixGroup))</samp>',
 464  ));
 465  
 466  // Server Settings
 467  $lang = array_merge($lang, array(
 468      'ACP_SERVER_SETTINGS_EXPLAIN'    => 'Here you define server and domain dependent settings. Please ensure the data you enter is accurate, errors will result in emails containing incorrect information. When entering the domain name remember it does include http:// or other protocol term. Only alter the port number if you know your server uses a different value, port 80 is correct in most cases.',
 469  
 470      'ENABLE_GZIP'                => 'Enable GZip compression',
 471      'ENABLE_GZIP_EXPLAIN'        => 'Generated content will be compressed prior to sending it to the user. This can reduce network traffic but will also increase CPU usage on both server and client side. Requires zlib PHP extension to be loaded.',
 472      'FORCE_SERVER_VARS'            => 'Force server URL settings',
 473      'FORCE_SERVER_VARS_EXPLAIN'    => 'If set to yes the server settings defined here will be used in favour of the automatically determined values.',
 474      'ICONS_PATH'                => 'Post icons storage path',
 475      'ICONS_PATH_EXPLAIN'        => 'Path under your phpBB root directory, e.g. <samp>images/icons</samp>.',
 476      'MOD_REWRITE_ENABLE'        => 'Enable URL Rewriting',
 477      'MOD_REWRITE_ENABLE_EXPLAIN' => 'When enabled, URLs containing ’app.php’ will be rewritten to remove the filename (i.e. app.php/foo will become /foo). <strong>Apache server’s mod_rewrite module is required for this functionality to work; if this option is enabled without mod_rewrite support, URLs on your board may be broken.</strong>',
 478      'MOD_REWRITE_DISABLED'        => 'The <strong>mod_rewrite</strong> module on your Apache web server is disabled. Enable the module or contact your web hosting provider if you wish to enable this feature.',
 479      'MOD_REWRITE_INFORMATION_UNAVAILABLE' => 'We are unable to determine whether or not this server supports URL rewriting. This setting may be enabled but if URL rewriting is not available, paths generated by this board (such as for use in links) may be broken. Contact your web hosting provider if you are unsure whether or not you can safely enable this feature.',
 480      'PATH_SETTINGS'                => 'Path settings',
 481      'RANKS_PATH'                => 'Rank image storage path',
 482      'RANKS_PATH_EXPLAIN'        => 'Path under your phpBB root directory, e.g. <samp>images/ranks</samp>.',
 483      'SCRIPT_PATH'                => 'Script path',
 484      'SCRIPT_PATH_EXPLAIN'        => 'The path where phpBB is located relative to the domain name, e.g. <samp>/phpBB3</samp>.',
 485      'SERVER_NAME'                => 'Domain name',
 486      'SERVER_NAME_EXPLAIN'        => 'The domain name this board runs from (for example: <samp>example.com</samp>).',
 487      'SERVER_PORT'                => 'Server port',
 488      'SERVER_PORT_EXPLAIN'        => 'The port your server is running on, usually 80, only change if different.',
 489      'SERVER_PROTOCOL'            => 'Server protocol',
 490      'SERVER_PROTOCOL_EXPLAIN'    => 'This is used as the server protocol if these settings are forced. If empty or not forced the protocol is determined by the cookie secure settings (<samp>http://</samp> or <samp>https://</samp>).',
 491      'SERVER_URL_SETTINGS'        => 'Server URL settings',
 492      'SMILIES_PATH'                => 'Smilies storage path',
 493      'SMILIES_PATH_EXPLAIN'        => 'Path under your phpBB root directory, e.g. <samp>images/smilies</samp>.',
 494      'UPLOAD_ICONS_PATH'            => 'Extension group icons storage path',
 495      'UPLOAD_ICONS_PATH_EXPLAIN'    => 'Path under your phpBB root directory, e.g. <samp>images/upload_icons</samp>.',
 496      'USE_SYSTEM_CRON'        => 'Run periodic tasks from system cron',
 497      'USE_SYSTEM_CRON_EXPLAIN'        => 'When off, phpBB will arrange for periodic tasks to be run automatically. When on, phpBB will not schedule any periodic tasks by itself; a system administrator must arrange for <code>bin/phpbbcli.php cron:run</code> to be run by the system cron facility at regular intervals (e.g. every 5 minutes).',
 498  ));
 499  
 500  // Security Settings
 501  $lang = array_merge($lang, array(
 502      'ACP_SECURITY_SETTINGS_EXPLAIN'        => 'Here you are able to define session and login related settings.',
 503  
 504      'ALL'                            => 'All',
 505      'ALLOW_AUTOLOGIN'                => 'Allow "Remember Me" logins',
 506      'ALLOW_AUTOLOGIN_EXPLAIN'        => 'Determines whether users are given "Remember Me" option when they visit the board.',
 507      'ALLOW_PASSWORD_RESET'            => 'Allow password reset ("Forgot Password")',
 508      'ALLOW_PASSWORD_RESET_EXPLAIN'    => 'Determines whether or not users are able to use the "I forgot my password" link on the login page to recover their account. If you use an external authentication mechanism you may wish to disable this feature.',
 509      'AUTOLOGIN_LENGTH'                => '"Remember Me" login key expiration length (in days)',
 510      'AUTOLOGIN_LENGTH_EXPLAIN'        => 'Number of days after which "Remember Me" login keys are removed or zero to disable.',
 511      'BROWSER_VALID'                    => 'Validate browser',
 512      'BROWSER_VALID_EXPLAIN'            => 'Enables browser validation for each session improving security.',
 513      'CHECK_DNSBL'                    => 'Check IP against DNS Blackhole List',
 514      'CHECK_DNSBL_EXPLAIN'            => 'If enabled the user’s IP address is checked against the following DNSBL services on registration and posting: <a href="http://spamcop.net">spamcop.net</a> and <a href="http://www.spamhaus.org">www.spamhaus.org</a>. This lookup may take a while, depending on the server’s configuration. If slowdowns are experienced or too many false positives reported it is recommended to disable this check.',
 515      'CLASS_B'                        => 'A.B',
 516      'CLASS_C'                        => 'A.B.C',
 517      'EMAIL_CHECK_MX'                => 'Check email domain for valid MX record',
 518      'EMAIL_CHECK_MX_EXPLAIN'        => 'If enabled, the email domain provided on registration and profile changes is checked for a valid MX record.',
 519      'FORCE_PASS_CHANGE'                => 'Force password change',
 520      'FORCE_PASS_CHANGE_EXPLAIN'        => 'Require user to change their password after a set number of days. Setting this value to 0 disables this behaviour.',
 521      'FORM_TIME_MAX'                    => 'Maximum time to submit forms',
 522      'FORM_TIME_MAX_EXPLAIN'            => 'The time a user has to submit a form. Use -1 to disable. Note that a form might become invalid if the session expires, regardless of this setting.',
 523      'FORM_SID_GUESTS'                => 'Tie forms to guest sessions',
 524      'FORM_SID_GUESTS_EXPLAIN'        => 'If enabled, the form token issued to guests will be session-exclusive. This can cause problems with some ISPs.',
 525      'FORWARDED_FOR_VALID'            => 'Validate <var>X_FORWARDED_FOR</var> header',
 526      'FORWARDED_FOR_VALID_EXPLAIN'    => 'Sessions will only be continued if the sent <var>X_FORWARDED_FOR</var> header equals the one sent with the previous request. Bans will be checked against IPs in <var>X_FORWARDED_FOR</var> too.',
 527      'IP_VALID'                        => 'Session IP validation',
 528      'IP_VALID_EXPLAIN'                => 'Determines how much of the users IP is used to validate a session; <samp>All</samp> compares the complete address, <samp>A.B.C</samp> the first x.x.x, <samp>A.B</samp> the first x.x, <samp>None</samp> disables checking. On IPv6 addresses <samp>A.B.C</samp> compares the first 4 blocks and <samp>A.B</samp> the first 3 blocks.',
 529      'IP_LOGIN_LIMIT_MAX'            => 'Maximum number of login attempts per IP address',
 530      'IP_LOGIN_LIMIT_MAX_EXPLAIN'    => 'The threshold of login attempts allowed from a single IP address before an anti-spambot task is triggered. Enter 0 to prevent the anti-spambot task from being triggered by IP addresses.',
 531      'IP_LOGIN_LIMIT_TIME'            => 'IP address login attempt expiration time',
 532      'IP_LOGIN_LIMIT_TIME_EXPLAIN'    => 'Login attempts expire after this period.',
 533      'IP_LOGIN_LIMIT_USE_FORWARDED'    => 'Limit login attempts by <var>X_FORWARDED_FOR</var> header',
 534      'IP_LOGIN_LIMIT_USE_FORWARDED_EXPLAIN'    => 'Instead of limiting login attempts by IP address they are limited by <var>X_FORWARDED_FOR</var> values. <br><em><strong>Warning:</strong> Only enable this if you are operating a proxy server that sets <var>X_FORWARDED_FOR</var> to trustworthy values.</em>',
 535      'MAX_LOGIN_ATTEMPTS'            => 'Maximum number of login attempts per username',
 536      'MAX_LOGIN_ATTEMPTS_EXPLAIN'    => 'The number of login attempts allowed for a single account before the anti-spambot task is triggered. Enter 0 to prevent the anti-spambot task from being triggered for distinct user accounts.',
 537      'NO_IP_VALIDATION'                => 'None',
 538      'NO_REF_VALIDATION'                => 'None',
 539      'PASSWORD_TYPE'                    => 'Password complexity',
 540      'PASSWORD_TYPE_EXPLAIN'            => 'Determines how complex a password needs to be when set or altered, subsequent options include the previous ones.',
 541      'PASS_TYPE_ALPHA'                => 'Must contain letters and numbers',
 542      'PASS_TYPE_ANY'                    => 'No requirements',
 543      'PASS_TYPE_CASE'                => 'Must be mixed case',
 544      'PASS_TYPE_SYMBOL'                => 'Must contain symbols',
 545      'REF_HOST'                        => 'Only validate host',
 546      'REF_PATH'                        => 'Also validate path',
 547      'REFERRER_VALID'                => 'Validate Referrer',
 548      'REFERRER_VALID_EXPLAIN'        => 'If enabled, the referrer of POST requests will be checked against the host/script path settings. This may cause issues with boards using several domains and or external logins.',
 549      'TPL_ALLOW_PHP'                    => 'Allow php in templates',
 550      'TPL_ALLOW_PHP_EXPLAIN'            => 'If this option is enabled, <code>PHP</code> and <code>INCLUDEPHP</code> statements will be recognised and parsed in templates.',
 551      'UPLOAD_CERT_VALID'                => 'Validate upload certificate',
 552      'UPLOAD_CERT_VALID_EXPLAIN'        => 'If enabled, certificates of remote uploads will be validated. This requires the CA bundle to be defined by the <samp>openssl.cafile</samp> or <samp>curl.cainfo</samp> setting in your php.ini.',
 553  ));
 554  
 555  // Email Settings
 556  $lang = array_merge($lang, array(
 557      'ACP_EMAIL_SETTINGS_EXPLAIN'    => 'This information is used when the board sends emails to your users. Please ensure the email address you specify is valid, any bounced or undeliverable messages will likely be sent to that address. If your host does not provide a native (PHP based) email service you can instead send messages directly using SMTP. This requires the address of an appropriate server (ask your provider if necessary). If the server requires authentication (and only if it does) enter the necessary username, password and authentication method.',
 558  
 559      'ADMIN_EMAIL'                    => 'From email address',
 560      'ADMIN_EMAIL_EXPLAIN'            => 'This will be used as the from address on all emails, the technical contact email address. It will always be used as the <samp>Sender</samp> address in emails.',
 561      'BOARD_EMAIL_FORM'                => 'Users send email via board',
 562      'BOARD_EMAIL_FORM_EXPLAIN'        => 'Instead of showing the users email address users are able to send emails via the board.',
 563      'BOARD_HIDE_EMAILS'                => 'Hide email addresses',
 564      'BOARD_HIDE_EMAILS_EXPLAIN'        => 'This function keeps email addresses completely private.',
 565      'CONTACT_EMAIL'                    => 'Contact email address',
 566      'CONTACT_EMAIL_EXPLAIN'            => 'This address will be used whenever a specific contact point is needed, e.g. spam, error output, etc. It will always be used as the <samp>From</samp> and <samp>Reply-To</samp> address in emails.',
 567      'CONTACT_EMAIL_NAME'            => 'Contact name',
 568      'CONTACT_EMAIL_NAME_EXPLAIN'    => 'This is the contact name that e-mail recipients will see. If you don’t want to have a contact name, leave this field empty.',
 569      'EMAIL_FORCE_SENDER'            => 'Force from email address',
 570      'EMAIL_FORCE_SENDER_EXPLAIN'    => 'This will set the <samp>Return-Path</samp> to the from email address instead of using the local user and hostname of the server. This setting does not apply when using SMTP.<br><em><strong>Warning:</strong> Requires the user that the webserver runs as to be added as trusted user to the sendmail configuration.</em>',
 571      'EMAIL_PACKAGE_SIZE'            => 'Email package size',
 572      'EMAIL_PACKAGE_SIZE_EXPLAIN'    => 'This is the number of maximum emails sent out in one package. This setting is applied to the internal message queue; set this value to 0 if you have problems with non-delivered notification emails.',
 573      'EMAIL_MAX_CHUNK_SIZE'            => 'Maximum allowed email recipients',
 574      'EMAIL_MAX_CHUNK_SIZE_EXPLAIN'    => 'If necessary, set this to not exceed the maximum number of recipients that your email server will allow in one email message.',
 575      'EMAIL_SIG'                        => 'Email signature',
 576      'EMAIL_SIG_EXPLAIN'                => 'This text will be attached to all emails the board sends.',
 577      'ENABLE_EMAIL'                    => 'Enable board-wide emails',
 578      'ENABLE_EMAIL_EXPLAIN'            => 'If this is set to disabled no emails will be sent by the board at all. <em>Note the user and admin account activation settings require this setting to be enabled. If currently using “user” or “admin” activation in the activation settings, disabling this setting will disable registration.</em>',
 579      'SEND_TEST_EMAIL'                => 'Send a test email',
 580      'SEND_TEST_EMAIL_EXPLAIN'        => 'This will send a test email to the address defined in your account.',
 581      'SMTP_ALLOW_SELF_SIGNED'        => 'Allow self-signed SSL certificates',
 582      'SMTP_ALLOW_SELF_SIGNED_EXPLAIN'=> 'Allow connections to SMTP server with self-signed SSL certificate. <br><em><strong>Warning:</strong> Allowing self-signed SSL certificates may cause security implications.</em>',
 583      'SMTP_AUTH_METHOD'                => 'Authentication method for SMTP',
 584      'SMTP_AUTH_METHOD_EXPLAIN'        => 'Only used if a username/password is set, ask your provider if you are unsure which method to use.',
 585      'SMTP_CRAM_MD5'                    => 'CRAM-MD5',
 586      'SMTP_DIGEST_MD5'                => 'DIGEST-MD5',
 587      'SMTP_LOGIN'                    => 'LOGIN',
 588      'SMTP_PASSWORD'                    => 'SMTP password',
 589      'SMTP_PASSWORD_EXPLAIN'            => 'Only enter a password if your SMTP server requires it.<br><em><strong>Warning:</strong> This password will be stored as plain text in the database, visible to everybody who can access your database or who can view this configuration page.</em>',
 590      'SMTP_PLAIN'                    => 'PLAIN',
 591      'SMTP_POP_BEFORE_SMTP'            => 'POP-BEFORE-SMTP',
 592      'SMTP_PORT'                        => 'SMTP server port',
 593      'SMTP_PORT_EXPLAIN'                => 'Only change this if you know your SMTP server is on a different port.',
 594      'SMTP_SERVER'                    => 'SMTP server address',
 595      'SMTP_SERVER_EXPLAIN'            => 'Do not provide a protocol (<samp>ssl://</samp> or <samp>tls://</samp>) unless your mail host tells you to do so.',
 596      'SMTP_SETTINGS'                    => 'SMTP settings',
 597      'SMTP_USERNAME'                    => 'SMTP username',
 598      'SMTP_USERNAME_EXPLAIN'            => 'Only enter a username if your SMTP server requires it.',
 599      'SMTP_VERIFY_PEER'                => 'Verify SSL certificate',
 600      'SMTP_VERIFY_PEER_EXPLAIN'        => 'Require verification of SSL certificate used by SMTP server. <br><em><strong>Warning:</strong> Connecting peers with unverified SSL certificates may cause security implications.</em>',
 601      'SMTP_VERIFY_PEER_NAME'            => 'Verify SMTP peer name',
 602      'SMTP_VERIFY_PEER_NAME_EXPLAIN'    => 'Require verification of peer name for SMTP servers using SSL / TLS connections. <br><em><strong>Warning:</strong> Connecting to unverified peers may cause security implications.</em>',
 603      'TEST_EMAIL_SENT'                => 'The test email has been sent.<br>If you don’t receive it, please check your emails configuration.<br><br>If you require assistance, please visit the <a href="https://www.phpbb.com/community/">phpBB support forums</a>.',
 604  
 605      'USE_SMTP'                        => 'Use SMTP server for email',
 606      'USE_SMTP_EXPLAIN'                => 'Select “Yes” if you want or have to send email via a named server instead of the local mail function.',
 607  ));
 608  
 609  // Jabber settings
 610  $lang = array_merge($lang, array(
 611      'ACP_JABBER_SETTINGS_EXPLAIN'    => 'Here you can enable and control the use of Jabber for instant messaging and board notifications. Jabber is an open source protocol and therefore available for use by anyone. Some Jabber servers include gateways or transports which allow you to contact users on other networks. Not all servers offer all transports and changes in protocols can prevent transports from operating. Please be sure to enter already registered account details - phpBB will use the details you enter here as is.',
 612  
 613      'JAB_ALLOW_SELF_SIGNED'            => 'Allow self-signed SSL certificates',
 614      'JAB_ALLOW_SELF_SIGNED_EXPLAIN'    => 'Allow connections to Jabber server with self-signed SSL certificate. <br><em><strong>Warning:</strong> Allowing self-signed SSL certificates may cause security implications.</em>',
 615      'JAB_ENABLE'                    => 'Enable Jabber',
 616      'JAB_ENABLE_EXPLAIN'            => 'Enables use of Jabber messaging and notifications.',
 617      'JAB_GTALK_NOTE'                => 'Please note that GTalk will not work because the <samp>dns_get_record</samp> function could not be found. This function is not available in PHP4, and is not implemented on Windows platforms. It currently does not work on BSD-based systems, including Mac OS.',
 618      'JAB_PACKAGE_SIZE'                => 'Jabber package size',
 619      'JAB_PACKAGE_SIZE_EXPLAIN'        => 'This is the number of messages sent in one package. If set to 0 the message is sent immediately and will not be queued for later sending.',
 620      'JAB_PASSWORD'                    => 'Jabber password',
 621      'JAB_PASSWORD_EXPLAIN'            => '<em><strong>Warning:</strong> This password will be stored as plain text in the database, visible to everybody who can access your database or who can view this configuration page.</em>',
 622      'JAB_PORT'                        => 'Jabber port',
 623      'JAB_PORT_EXPLAIN'                => 'Leave blank unless you know it is not port 5222.',
 624      'JAB_SERVER'                    => 'Jabber server',
 625      'JAB_SERVER_EXPLAIN'            => 'See %sjabber.org%s for a list of servers.',
 626      'JAB_SETTINGS_CHANGED'            => 'Jabber settings changed successfully.',
 627      'JAB_USE_SSL'                    => 'Use SSL to connect',
 628      'JAB_USE_SSL_EXPLAIN'            => 'If enabled a secure connection is tried to be established. The Jabber port will be modified to 5223 if port 5222 is specified.',
 629      'JAB_USERNAME'                    => 'Jabber username or JID',
 630      'JAB_USERNAME_EXPLAIN'            => 'Specify a registered username or a valid JID. The username will not be checked for validity. If you only specify a username, then your JID will be the username and the server you specified above. Else, specify a valid JID, for example user@jabber.org.',
 631      'JAB_VERIFY_PEER'                => 'Verify SSL certificate',
 632      'JAB_VERIFY_PEER_EXPLAIN'        => 'Require verification of SSL certificate used by Jabber server. <br><em><strong>Warning:</strong> Connecting peers with unverified SSL certificates may cause security implications.</em>',
 633      'JAB_VERIFY_PEER_NAME'            => 'Verify Jabber peer name',
 634      'JAB_VERIFY_PEER_NAME_EXPLAIN'    => 'Require verification of peer name for Jabber servers using SSL / TLS connections. <br><em><strong>Warning:</strong> Connecting to unverified peers may cause security implications.</em>',
 635  ));


Generated: Sat Nov 4 14:26:03 2023 Cross-referenced by PHPXref 0.7.1