- queue trigger feature
[phpbb.git] / phpBB / language / en / acp / board.php
blobb0cbc7e184fac0e725b71d75a250158a9aa3d7c4
1 <?php
2 /**
4 * acp_board [English]
6 * @package language
7 * @version $Id$
8 * @copyright (c) 2005 phpBB Group
9 * @license http://opensource.org/licenses/gpl-license.php GNU Public License
13 /**
14 * DO NOT CHANGE
16 if (!defined('IN_PHPBB'))
18 exit;
21 if (empty($lang) || !is_array($lang))
23 $lang = array();
26 // DEVELOPERS PLEASE NOTE
28 // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
30 // Placeholders can now contain order information, e.g. instead of
31 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
32 // translators to re-order the output of data while ensuring it remains correct
34 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
35 // equally where a string contains only two placeholders which are used to wrap text
36 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
38 // Board Settings
39 $lang = array_merge($lang, array(
40 '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.',
41 'CUSTOM_DATEFORMAT' => 'Custom…',
42 'DEFAULT_DATE_FORMAT' => 'Date format',
43 'DEFAULT_DATE_FORMAT_EXPLAIN' => 'The date format is the same as the PHP <code>date</code> function.',
44 'DEFAULT_LANGUAGE' => 'Default language',
45 'DEFAULT_STYLE' => 'Default style',
46 'DISABLE_BOARD' => 'Disable board',
47 'DISABLE_BOARD_EXPLAIN' => 'This will make the board unavailable to users. You can also enter a short (255 character) message to display if you wish.',
48 'OVERRIDE_STYLE' => 'Override user style',
49 'OVERRIDE_STYLE_EXPLAIN' => 'Replaces user’s style with the default.',
50 'SITE_DESC' => 'Site description',
51 'SITE_NAME' => 'Site name',
52 'SYSTEM_DST' => 'Enable Summer Time/<abbr title="Daylight Saving Time">DST</abbr>',
53 'SYSTEM_TIMEZONE' => 'System timezone',
54 'WARNINGS_EXPIRE' => 'Warning duration',
55 'WARNINGS_EXPIRE_EXPLAIN' => 'Number of days that will elapse before the warning will automatically expire from a user’s record.',
56 ));
58 // Board Features
59 $lang = array_merge($lang, array(
60 'ACP_BOARD_FEATURES_EXPLAIN' => 'Here you can enable/disable several board features.',
62 'ALLOW_ATTACHMENTS' => 'Allow attachments',
63 'ALLOW_BIRTHDAYS' => 'Allow birthdays',
64 '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.',
65 'ALLOW_BOOKMARKS' => 'Allow bookmarking topics',
66 'ALLOW_BOOKMARKS_EXPLAIN' => 'User is able to store personal bookmarks.',
67 'ALLOW_BBCODE' => 'Allow BBCode',
68 'ALLOW_FORUM_NOTIFY' => 'Allow subscribing to forums',
69 'ALLOW_NAME_CHANGE' => 'Allow username changes',
70 'ALLOW_NO_CENSORS' => 'Allow disabling of word censoring',
71 'ALLOW_NO_CENSORS_EXPLAIN' => 'Users can choose to disable the automatic word censoring of posts and private messages.',
72 'ALLOW_PM_ATTACHMENTS' => 'Allow attachments in private messages',
73 'ALLOW_SIG' => 'Allow signatures',
74 'ALLOW_SIG_BBCODE' => 'Allow BBCode in user signatures',
75 'ALLOW_SIG_FLASH' => 'Allow use of <code>[FLASH]</code> BBCode tag in user signatures',
76 'ALLOW_SIG_IMG' => 'Allow use of <code>[IMG]</code> BBCode tag in user signatures',
77 'ALLOW_SIG_LINKS' => 'Allow use of links in user signatures',
78 'ALLOW_SIG_LINKS_EXPLAIN' => 'If disallowed the <code>[URL]</code> BBCode tag and automatic/magic URLs are disabled.',
79 'ALLOW_SIG_SMILIES' => 'Allow use of smilies in user signatures',
80 'ALLOW_SMILIES' => 'Allow smilies',
81 'ALLOW_TOPIC_NOTIFY' => 'Allow subscribing to topics',
82 'BOARD_PM' => 'Private messaging',
83 'BOARD_PM_EXPLAIN' => 'Enable or disable private messaging for all users.',
84 ));
86 // Avatar Settings
87 $lang = array_merge($lang, array(
88 '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.',
90 'ALLOW_LOCAL' => 'Enable gallery avatars',
91 'ALLOW_REMOTE' => 'Enable remote avatars',
92 'ALLOW_REMOTE_EXPLAIN' => 'Avatars linked to from another website.',
93 'ALLOW_UPLOAD' => 'Enable avatar uploading',
94 'AVATAR_GALLERY_PATH' => 'Avatar gallery path',
95 'AVATAR_GALLERY_PATH_EXPLAIN' => 'Path under your phpBB root directory for pre-loaded images, e.g. <samp>images/avatars/gallery</samp>.',
96 'AVATAR_STORAGE_PATH' => 'Avatar storage path',
97 'AVATAR_STORAGE_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/avatars/upload</samp>.',
98 'MAX_AVATAR_SIZE' => 'Maximum avatar dimensions',
99 'MAX_AVATAR_SIZE_EXPLAIN' => 'Width x Height in pixels.',
100 'MAX_FILESIZE' => 'Maximum avatar file size',
101 'MAX_FILESIZE_EXPLAIN' => 'For uploaded avatar files.',
102 'MIN_AVATAR_SIZE' => 'Minimum avatar dimensions',
103 'MIN_AVATAR_SIZE_EXPLAIN' => 'Width x Height in pixels.',
106 // Message Settings
107 $lang = array_merge($lang, array(
108 'ACP_MESSAGE_SETTINGS_EXPLAIN' => 'Here you can set all default settings for private messaging.',
110 'ALLOW_BBCODE_PM' => 'Allow BBCode in private messages',
111 'ALLOW_FLASH_PM' => 'Allow use of <code>[FLASH]</code> BBCode tag',
112 'ALLOW_FLASH_PM_EXPLAIN' => 'Note that the ability to use flash in private messages, if enabled here, also depends on the permissions.',
113 'ALLOW_FORWARD_PM' => 'Allow forwarding of private messages',
114 'ALLOW_IMG_PM' => 'Allow use of <code>[IMG]</code> BBCode tag',
115 'ALLOW_MASS_PM' => 'Allow sending of private messages to multiple users and groups',
116 'ALLOW_PRINT_PM' => 'Allow print view in private messaging',
117 'ALLOW_QUOTE_PM' => 'Allow quotes in private messages',
118 'ALLOW_SIG_PM' => 'Allow signature in private messages',
119 'ALLOW_SMILIES_PM' => 'Allow smilies in private messages',
120 'BOXES_LIMIT' => 'Maximum private messages per box',
121 '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.',
122 'BOXES_MAX' => 'Maximum private message folders',
123 'BOXES_MAX_EXPLAIN' => 'By default users may create this many personal folders for private messages.',
124 'ENABLE_PM_ICONS' => 'Enable use of topic icons in private messages',
125 'FULL_FOLDER_ACTION' => 'Full folder default action',
126 '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.',
127 'HOLD_NEW_MESSAGES' => 'Hold new messages',
128 'PM_EDIT_TIME' => 'Limit editing time',
129 'PM_EDIT_TIME_EXPLAIN' => 'Limits the time available to edit a private message not already delivered. Setting the value to 0 disables this behaviour.',
132 // Post Settings
133 $lang = array_merge($lang, array(
134 'ACP_POST_SETTINGS_EXPLAIN' => 'Here you can set all default settings for posting.',
135 'ALLOW_POST_LINKS' => 'Allow links in posts/private messages',
136 'ALLOW_POST_LINKS_EXPLAIN' => 'If disallowed the <code>[URL]</code> BBCode tag and automatic/magic URLs are disabled.',
137 'ALLOW_POST_FLASH' => 'Allow use of <code>[FLASH]</code> BBCode tag in posts',
138 '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.',
140 'ENABLE_QUEUE_TRIGGER' => 'Enable queued posts',
141 'ENABLE_QUEUE_TRIGGER_EXPLAIN' => 'Ability to put registered users posts to post approval if their post count is lower than the specified value below. This setting has no effect on the permission setting for post/topic approval.',
142 'QUEUE_TRIGGER_POSTS' => 'Maximum post count for queued posts',
143 'QUEUE_TRIGGER_POSTS_EXPLAIN' => 'If queued posts is enabled, this is the post count the user need to reach in order to post without post approval. If the users post count is below this number, the post is stored in the queue automatically.',
145 'BUMP_INTERVAL' => 'Bump interval',
146 'BUMP_INTERVAL_EXPLAIN' => 'Number of minutes, hours or days between the last post to a topic and the ability to bump this topic.',
147 'CHAR_LIMIT' => 'Maximum characters per post',
148 'CHAR_LIMIT_EXPLAIN' => 'The number of characters allowed within a post. Set to 0 for unlimited characters.',
149 'DISPLAY_LAST_EDITED' => 'Display last edited time information',
150 'DISPLAY_LAST_EDITED_EXPLAIN' => 'Choose if the last edited by information to be displayed on posts.',
151 'EDIT_TIME' => 'Limit editing time',
152 'EDIT_TIME_EXPLAIN' => 'Limits the time available to edit a new post. Setting the value to 0 disables this behaviour.',
153 'FLOOD_INTERVAL' => 'Flood interval',
154 'FLOOD_INTERVAL_EXPLAIN' => 'Number of seconds a user must wait between posting new messages. To enable users to ignore this alter their permissions.',
155 'HOT_THRESHOLD' => 'Popular topic threshold',
156 'HOT_THRESHOLD_EXPLAIN' => 'Posts per topic threshold required for the popular topic annotation. Set to 0 to disable popular topics.',
157 'MAX_POLL_OPTIONS' => 'Maximum number of poll options',
158 'MAX_POST_FONT_SIZE' => 'Maximum font size per post',
159 'MAX_POST_FONT_SIZE_EXPLAIN' => 'Maximum font size allowed in a post. Set to 0 for unlimited font size.',
160 'MAX_POST_IMG_HEIGHT' => 'Maximum image height per post',
161 'MAX_POST_IMG_HEIGHT_EXPLAIN' => 'Maximum height of an image/flash file in postings. Set to 0 for unlimited size.',
162 'MAX_POST_IMG_WIDTH' => 'Maximum image width per post',
163 'MAX_POST_IMG_WIDTH_EXPLAIN' => 'Maximum width of an image/flash file in postings. Set to 0 for unlimited size.',
164 'MAX_POST_URLS' => 'Maximum links per post',
165 'MAX_POST_URLS_EXPLAIN' => 'Maximum number of URLs in a post. Set to 0 for unlimited links.',
166 'POSTING' => 'Posting',
167 'POSTS_PER_PAGE' => 'Posts per page',
168 'QUOTE_DEPTH_LIMIT' => 'Maximum nested quotes per post',
169 'QUOTE_DEPTH_LIMIT_EXPLAIN' => 'Maximum number of nested quotes in a post. Set to 0 for unlimited depth.',
170 'SMILIES_LIMIT' => 'Maximum smilies per post',
171 'SMILIES_LIMIT_EXPLAIN' => 'Maximum number of smilies in a post. Set to 0 for unlimited smilies.',
172 'TOPICS_PER_PAGE' => 'Topics per page',
175 // Signature Settings
176 $lang = array_merge($lang, array(
177 'ACP_SIGNATURE_SETTINGS_EXPLAIN' => 'Here you can set all default settings for signatures.',
179 'MAX_SIG_FONT_SIZE' => 'Maximum signature font size',
180 'MAX_SIG_FONT_SIZE_EXPLAIN' => 'Maximum font size allowed in user signatures. Set to 0 for unlimited size.',
181 'MAX_SIG_IMG_HEIGHT' => 'Maximum signature image height',
182 'MAX_SIG_IMG_HEIGHT_EXPLAIN' => 'Maximum height of an image/flash file in user signatures. Set to 0 for unlimited height.',
183 'MAX_SIG_IMG_WIDTH' => 'Maximum signature image width',
184 'MAX_SIG_IMG_WIDTH_EXPLAIN' => 'Maximum width of an image/flash file in user signatures. Set to 0 for unlimited width.',
185 'MAX_SIG_LENGTH' => 'Maximum signature length',
186 'MAX_SIG_LENGTH_EXPLAIN' => 'Maximum number of characters in user signatures.',
187 'MAX_SIG_SMILIES' => 'Maximum smilies per signature',
188 'MAX_SIG_SMILIES_EXPLAIN' => 'Maximum smilies allowed in user signatures. Set to 0 for unlimited smilies.',
189 'MAX_SIG_URLS' => 'Maximum signature links',
190 'MAX_SIG_URLS_EXPLAIN' => 'Maximum number of links in user signatures. Set to 0 for unlimited links.',
193 // Registration Settings
194 $lang = array_merge($lang, array(
195 'ACP_REGISTER_SETTINGS_EXPLAIN' => 'Here you are able to define registration and profile related settings.',
197 'ACC_ACTIVATION' => 'Account activation',
198 '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.',
199 'ACC_ADMIN' => 'By Admin',
200 'ACC_DISABLE' => 'Disable',
201 'ACC_NONE' => 'None',
202 'ACC_USER' => 'By User',
203 // 'ACC_USER_ADMIN' => 'User + Admin',
204 'ALLOW_EMAIL_REUSE' => 'Allow e-mail address re-use',
205 'ALLOW_EMAIL_REUSE_EXPLAIN' => 'Different users can register with the same e-mail address.',
206 'COPPA' => 'COPPA',
207 'COPPA_FAX' => 'COPPA fax number',
208 'COPPA_MAIL' => 'COPPA mailing address',
209 'COPPA_MAIL_EXPLAIN' => 'This is the mailing address where parents will send COPPA registration forms.',
210 'ENABLE_COPPA' => 'Enable COPPA',
211 '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.',
212 'MAX_CHARS' => 'Max',
213 'MIN_CHARS' => 'Min',
214 'NO_AUTH_PLUGIN' => 'No suitable auth plugin found.',
215 'PASSWORD_LENGTH' => 'Password length',
216 'PASSWORD_LENGTH_EXPLAIN' => 'Minimum and maximum number of characters in passwords.',
217 'REG_LIMIT' => 'Registration attempts',
218 'REG_LIMIT_EXPLAIN' => 'Number of attempts users can make at the confirmation code before being locked out that session.',
219 'USERNAME_ALPHA_ONLY' => 'Alphanumeric only',
220 'USERNAME_ALPHA_SPACERS' => 'Alphanumeric and spacers',
221 'USERNAME_ASCII' => 'ASCII (no international unicode)',
222 'USERNAME_LETTER_NUM' => 'Any letter and number',
223 'USERNAME_LETTER_NUM_SPACERS' => 'Any letter, number, and spacer',
224 'USERNAME_CHARS' => 'Limit username chars',
225 'USERNAME_CHARS_ANY' => 'Any character',
226 'USERNAME_CHARS_EXPLAIN' => 'Restrict type of characters that may be used in usernames, spacers are: space, -, +, _, [ and ].',
227 'USERNAME_LENGTH' => 'Username length',
228 'USERNAME_LENGTH_EXPLAIN' => 'Minimum and maximum number of characters in usernames.',
231 // Visual Confirmation Settings
232 $lang = array_merge($lang, array(
233 'ACP_VC_SETTINGS_EXPLAIN' => 'Here you are able to define visual confirmation defaults and CAPTCHA settings.',
235 'CAPTCHA_GD' => 'GD CAPTCHA',
236 'CAPTCHA_GD_FOREGROUND_NOISE' => 'GD CAPTCHA foreground noise',
237 'CAPTCHA_GD_EXPLAIN' => 'Use GD to make a more advanced CAPTCHA.',
238 'CAPTCHA_GD_FOREGROUND_NOISE_EXPLAIN' => 'Use foreground noise to make the GD based CAPTCHA harder.',
239 'CAPTCHA_GD_X_GRID' => 'GD CAPTCHA background noise x-axis',
240 'CAPTCHA_GD_X_GRID_EXPLAIN' => 'Use lower settings of this to make the GD based CAPTCHA harder. 0 will disable x-axis background noise.',
241 'CAPTCHA_GD_Y_GRID' => 'GD CAPTCHA background noise y-axis',
242 'CAPTCHA_GD_Y_GRID_EXPLAIN' => 'Use lower settings of this to make the GD based CAPTCHA harder. 0 will disable y-axis background noise.',
244 'CAPTCHA_PREVIEW_MSG' => 'Your changes to the visual confirmation setting were not saved. This is just a preview.',
245 'CAPTCHA_PREVIEW_EXPLAIN' => 'The CAPTCHA as it will look like using the current settings. Use the preview button to refresh. Note that captchas are randomized and will differ from one view to the next.',
246 'VISUAL_CONFIRM_POST' => 'Enable visual confirmation for guest postings',
247 'VISUAL_CONFIRM_POST_EXPLAIN' => 'Requires anonymous users to enter a random code matching an image to help prevent mass postings.',
248 'VISUAL_CONFIRM_REG' => 'Enable visual confirmation for registrations',
249 'VISUAL_CONFIRM_REG_EXPLAIN' => 'Requires new users to enter a random code matching an image to help prevent mass registrations.',
252 // Cookie Settings
253 $lang = array_merge($lang, array(
254 '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.',
256 'COOKIE_DOMAIN' => 'Cookie domain',
257 'COOKIE_NAME' => 'Cookie name',
258 'COOKIE_PATH' => 'Cookie path',
259 'COOKIE_SECURE' => 'Cookie secure',
260 '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.',
261 'ONLINE_LENGTH' => 'View online time span',
262 '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.',
263 'SESSION_LENGTH' => 'Session length',
264 'SESSION_LENGTH_EXPLAIN' => 'Sessions will expire after this time, in seconds.',
267 // Load Settings
268 $lang = array_merge($lang, array(
269 '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.',
271 'CUSTOM_PROFILE_FIELDS' => 'Custom profile fields',
272 'LIMIT_LOAD' => 'Limit system load',
273 '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.',
274 'LIMIT_SESSIONS' => 'Limit sessions',
275 '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.',
276 'LOAD_CPF_MEMBERLIST' => 'Allow styles to display custom profile fields in memberlist',
277 'LOAD_CPF_VIEWPROFILE' => 'Display custom profile fields in user profiles',
278 'LOAD_CPF_VIEWTOPIC' => 'Display custom profile fields on topic pages',
279 'LOAD_USER_ACTIVITY' => 'Show user’s activity',
280 '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.',
281 'RECOMPILE_STYLES' => 'Recompile stale style components',
282 'RECOMPILE_STYLES_EXPLAIN' => 'Check for updated style components on filesystem and recompile.',
283 'YES_ANON_READ_MARKING' => 'Enable topic marking for guests',
284 'YES_ANON_READ_MARKING_EXPLAIN' => 'Stores read/unread status information for guests. If disabled posts are always read for guests.',
285 'YES_BIRTHDAYS' => 'Enable birthday listing',
286 'YES_BIRTHDAYS_EXPLAIN' => 'If disabled the birthday listing is no longer displayed. To let this setting take effect the birthday feature need to be enabled too.',
287 'YES_JUMPBOX' => 'Enable display of jumpbox',
288 'YES_MODERATORS' => 'Enable display of moderators',
289 'YES_ONLINE' => 'Enable online user listings',
290 'YES_ONLINE_EXPLAIN' => 'Display online user information on index, forum and topic pages.',
291 'YES_ONLINE_GUESTS' => 'Enable online guest listings in viewonline',
292 'YES_ONLINE_GUESTS_EXPLAIN' => 'Allow display of guest user information in viewonline.',
293 'YES_ONLINE_TRACK' => 'Enable display of user online/offline information',
294 'YES_ONLINE_TRACK_EXPLAIN' => 'Display online information for user in profiles and topic pages.',
295 'YES_POST_MARKING' => 'Enable dotted topics',
296 'YES_POST_MARKING_EXPLAIN' => 'Indicates whether user has posted to a topic.',
297 'YES_READ_MARKING' => 'Enable server-side topic marking',
298 'YES_READ_MARKING_EXPLAIN' => 'Stores read/unread status information in the database rather than a cookie.',
301 // Auth settings
302 $lang = array_merge($lang, array(
303 '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 three plug-ins are provided; DB, LDAP and Apache. Not all methods require additional information so only fill out fields if they are relevant to the selected method.',
305 'AUTH_METHOD' => 'Select an authentication method',
307 '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) and safe_mode disabled.',
309 'LDAP_DN' => 'LDAP base <var>dn</var>',
310 'LDAP_DN_EXPLAIN' => 'This is the Distinguished Name, locating the user information, e.g. <samp>o=My Company,c=US</samp>.',
311 'LDAP_EMAIL' => 'LDAP e-mail attribute',
312 'LDAP_EMAIL_EXPLAIN' => 'Set this to the name of your user entry e-mail attribute (if one exists) in order to automatically set the e-mail address for new users. Leaving this empty results in empty e-mail address for users who log in for the first time.',
313 'LDAP_INCORRECT_USER_PASSWORD' => 'Binding to LDAP server failed with specified user/password.',
314 'LDAP_NO_EMAIL' => 'The specified e-mail attribute does not exist.',
315 'LDAP_NO_IDENTITY' => 'Could not find a login identity for %s.',
316 'LDAP_PASSWORD' => 'LDAP password',
317 'LDAP_PASSWORD_EXPLAIN' => 'Leave blank to use anonymous binding. Else fill in the password for the above user. Required for Active Directory Servers. <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.',
318 'LDAP_PORT' => 'LDAP server port',
319 '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.',
320 'LDAP_SERVER' => 'LDAP server name',
321 '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/',
322 'LDAP_UID' => 'LDAP <var>uid</var>',
323 '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.',
324 'LDAP_USER' => 'LDAP user <var>dn</var>',
325 '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.',
326 'LDAP_USER_FILTER' => 'LDAP user filter',
327 '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>',
330 // Server Settings
331 $lang = array_merge($lang, array(
332 'ACP_SERVER_SETTINGS_EXPLAIN' => 'Here you define server and domain dependant settings. Please ensure the data you enter is accurate, errors will result in e-mails 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.',
334 'ENABLE_GZIP' => 'Enable GZip compression',
335 '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.',
336 'FORCE_SERVER_VARS' => 'Force server URL settings',
337 'FORCE_SERVER_VARS_EXPLAIN' => 'If set to yes the server settings defined here will be used in favour of the automatically determined values.',
338 'ICONS_PATH' => 'Post icons storage path',
339 'ICONS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/icons</samp>.',
340 'PATH_SETTINGS' => 'Path settings',
341 'RANKS_PATH' => 'Rank image storage path',
342 'RANKS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/ranks</samp>.',
343 'SCRIPT_PATH' => 'Script path',
344 'SCRIPT_PATH_EXPLAIN' => 'The path where phpBB is located relative to the domain name, e.g. <samp>/phpBB3</samp>.',
345 'SERVER_NAME' => 'Domain name',
346 'SERVER_NAME_EXPLAIN' => 'The domain name this board runs from (for example: <samp>www.example.com</samp>).',
347 'SERVER_PORT' => 'Server port',
348 'SERVER_PORT_EXPLAIN' => 'The port your server is running on, usually 80, only change if different.',
349 'SERVER_PROTOCOL' => 'Server protocol',
350 '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>).',
351 'SERVER_URL_SETTINGS' => 'Server URL settings',
352 'SMILIES_PATH' => 'Smilies storage path',
353 'SMILIES_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/smilies</samp>.',
354 'UPLOAD_ICONS_PATH' => 'Extension group icons storage path',
355 'UPLOAD_ICONS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/upload_icons</samp>.',
358 // Security Settings
359 $lang = array_merge($lang, array(
360 'ACP_SECURITY_SETTINGS_EXPLAIN' => 'Here you are able to define session and login related settings.',
362 'ALL' => 'All',
363 'ALLOW_AUTOLOGIN' => 'Allow persistent logins',
364 'ALLOW_AUTOLOGIN_EXPLAIN' => 'Determines whether users can autologin when they visit the board.',
365 'AUTOLOGIN_LENGTH' => 'Persistent login key expiration length (in days)',
366 'AUTOLOGIN_LENGTH_EXPLAIN' => 'Number of days after which persistent login keys are removed or zero to disable.',
367 'BROWSER_VALID' => 'Validate browser',
368 'BROWSER_VALID_EXPLAIN' => 'Enables browser validation for each session improving security.',
369 'CHECK_DNSBL' => 'Check IP against DNS Blackhole List',
370 '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>, <a href="http://dsbl.org">dsbl.org</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.',
371 'CLASS_B' => 'A.B',
372 'CLASS_C' => 'A.B.C',
373 'EMAIL_CHECK_MX' => 'Check e-mail domain for valid MX record',
374 'EMAIL_CHECK_MX_EXPLAIN' => 'If enabled, the e-mail domain provided on registration and profile changes is checked for a valid MX record.',
375 'FORCE_PASS_CHANGE' => 'Force password change',
376 'FORCE_PASS_CHANGE_EXPLAIN' => 'Require user to change their password after a set number of days. Setting this value to 0 disables this behaviour.',
377 'FORM_TIME_MAX' => 'Maximum time to submit forms',
378 '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.',
379 'FORM_SID_GUESTS' => 'Tie forms to guest sessions',
380 'FORM_SID_GUESTS_EXPLAIN' => 'If enabled, the form token issued to guests will be session-exclusive. This can cause problems with some ISPs.',
381 'FORWARDED_FOR_VALID' => 'Validated <var>X_FORWARDED_FOR</var> header',
382 '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.',
383 'IP_VALID' => 'Session IP validation',
384 '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.',
385 'MAX_LOGIN_ATTEMPTS' => 'Maximum number of login attempts',
386 'MAX_LOGIN_ATTEMPTS_EXPLAIN' => 'After this number of failed logins the user needs to additionally confirm his login visually (visual confirmation).',
387 'NO_IP_VALIDATION' => 'None',
388 'NO_REF_VALIDATION' => 'None',
389 'PASSWORD_TYPE' => 'Password complexity',
390 'PASSWORD_TYPE_EXPLAIN' => 'Determines how complex a password needs to be when set or altered, subsequent options include the previous ones.',
391 'PASS_TYPE_ALPHA' => 'Must contain letters and numbers',
392 'PASS_TYPE_ANY' => 'No requirements',
393 'PASS_TYPE_CASE' => 'Must be mixed case',
394 'PASS_TYPE_SYMBOL' => 'Must contain symbols',
395 'REF_HOST' => 'Only validate host',
396 'REF_PATH' => 'Also validate path',
397 'REFERER_VALID' => 'Validate Referer',
398 'REFERER_VALID_EXPLAIN' => 'If enabled, the referer 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.',
399 'TPL_ALLOW_PHP' => 'Allow php in templates',
400 'TPL_ALLOW_PHP_EXPLAIN' => 'If this option is enabled, <code>PHP</code> and <code>INCLUDEPHP</code> statements will be recognised and parsed in templates.',
403 // Email Settings
404 $lang = array_merge($lang, array(
405 'ACP_EMAIL_SETTINGS_EXPLAIN' => 'This information is used when the board sends e-mails to your users. Please ensure the e-mail 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) e-mail 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.',
407 'ADMIN_EMAIL' => 'Return e-mail address',
408 'ADMIN_EMAIL_EXPLAIN' => 'This will be used as the return address on all e-mails, the technical contact e-mail address. It will always be used as the <samp>Return-Path</samp> and <samp>Sender</samp> address in e-mails.',
409 'BOARD_EMAIL_FORM' => 'Users send e-mail via board',
410 'BOARD_EMAIL_FORM_EXPLAIN' => 'Instead of showing the users e-mail address users are able to send e-mails via the board.',
411 'BOARD_HIDE_EMAILS' => 'Hide e-mail addresses',
412 'BOARD_HIDE_EMAILS_EXPLAIN' => 'This function keeps e-mail addresses completely private.',
413 'CONTACT_EMAIL' => 'Contact e-mail address',
414 '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 e-mails.',
415 'EMAIL_FUNCTION_NAME' => 'E-mail function name',
416 'EMAIL_FUNCTION_NAME_EXPLAIN' => 'The e-mail function used to send mails through PHP.',
417 'EMAIL_PACKAGE_SIZE' => 'E-mail package size',
418 'EMAIL_PACKAGE_SIZE_EXPLAIN' => 'This is the number of maximum e-mails 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.',
419 'EMAIL_SIG' => 'E-mail signature',
420 'EMAIL_SIG_EXPLAIN' => 'This text will be attached to all e-mails the board sends.',
421 'ENABLE_EMAIL' => 'Enable board-wide e-mails',
422 'ENABLE_EMAIL_EXPLAIN' => 'If this is set to disabled no e-mails will be sent by the board at all.',
423 'SMTP_AUTH_METHOD' => 'Authentication method for SMTP',
424 'SMTP_AUTH_METHOD_EXPLAIN' => 'Only used if a username/password is set, ask your provider if you are unsure which method to use.',
425 'SMTP_CRAM_MD5' => 'CRAM-MD5',
426 'SMTP_DIGEST_MD5' => 'DIGEST-MD5',
427 'SMTP_LOGIN' => 'LOGIN',
428 'SMTP_PASSWORD' => 'SMTP password',
429 'SMTP_PASSWORD_EXPLAIN' => 'Only enter a password if your SMTP server requires it.',
430 'SMTP_PLAIN' => 'PLAIN',
431 'SMTP_POP_BEFORE_SMTP' => 'POP-BEFORE-SMTP',
432 'SMTP_PORT' => 'SMTP server port',
433 'SMTP_PORT_EXPLAIN' => 'Only change this if you know your SMTP server is on a different port.',
434 'SMTP_SERVER' => 'SMTP server address',
435 'SMTP_SETTINGS' => 'SMTP settings',
436 'SMTP_USERNAME' => 'SMTP username',
437 'SMTP_USERNAME_EXPLAIN' => 'Only enter a username if your SMTP server requires it.',
438 'USE_SMTP' => 'Use SMTP server for e-mail',
439 'USE_SMTP_EXPLAIN' => 'Select “Yes” if you want or have to send e-mail via a named server instead of the local mail function.',
442 // Jabber settings
443 $lang = array_merge($lang, array(
444 '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.',
446 'JAB_ENABLE' => 'Enable Jabber',
447 'JAB_ENABLE_EXPLAIN' => 'Enables use of Jabber messaging and notifications.',
448 '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.',
449 'JAB_PACKAGE_SIZE' => 'Jabber package size',
450 '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.',
451 'JAB_PASSWORD' => 'Jabber password',
452 'JAB_PORT' => 'Jabber port',
453 'JAB_PORT_EXPLAIN' => 'Leave blank unless you know it is not port 5222.',
454 'JAB_SERVER' => 'Jabber server',
455 'JAB_SERVER_EXPLAIN' => 'See %sjabber.org%s for a list of servers.',
456 'JAB_SETTINGS_CHANGED' => 'Jabber settings changed successfully.',
457 'JAB_USE_SSL' => 'Use SSL to connect',
458 '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.',
459 'JAB_USERNAME' => 'Jabber username',
460 'JAB_USERNAME_EXPLAIN' => 'Specify a registered username. The username will not be checked for validity.',