punctuation changes in language files

git-svn-id: file:///svn/phpbb/trunk@7524 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen 2007-05-10 15:31:35 +00:00
parent f2aea5a725
commit c1a738ce5f
27 changed files with 404 additions and 402 deletions

View file

@ -95,7 +95,8 @@ class acp_permission_roles
{ {
$this->remove_role($role_id, $permission_type); $this->remove_role($role_id, $permission_type);
add_log('admin', 'LOG_' . strtoupper($permission_type) . 'ROLE_REMOVED', $role_row['role_name']); $role_name = (!empty($user->lang[$role_row['role_name']])) ? $user->lang[$role_row['role_name']] : $role_row['role_name'];
add_log('admin', 'LOG_' . strtoupper($permission_type) . 'ROLE_REMOVED', $role_name);
trigger_error($user->lang['ROLE_DELETED'] . adm_back_link($this->u_action)); trigger_error($user->lang['ROLE_DELETED'] . adm_back_link($this->u_action));
} }
else else
@ -196,6 +197,7 @@ class acp_permission_roles
// Now add the auth settings // Now add the auth settings
$auth_admin->acl_set_role($role_id, $auth_settings); $auth_admin->acl_set_role($role_id, $auth_settings);
$role_name = (!empty($user->lang[$role_name]])) ? $user->lang[$role_name] : $role_name;
add_log('admin', 'LOG_' . strtoupper($permission_type) . 'ROLE_' . strtoupper($action), $role_name); add_log('admin', 'LOG_' . strtoupper($permission_type) . 'ROLE_' . strtoupper($action), $role_name);
trigger_error($user->lang['ROLE_' . strtoupper($action) . '_SUCCESS'] . adm_back_link($this->u_action)); trigger_error($user->lang['ROLE_' . strtoupper($action) . '_SUCCESS'] . adm_back_link($this->u_action));

View file

@ -33,13 +33,13 @@ if (empty($lang) || !is_array($lang))
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_ATTACHMENT_SETTINGS_EXPLAIN' => 'Here you can configure the main settings for attachments and the associated special categories.', 'ACP_ATTACHMENT_SETTINGS_EXPLAIN' => 'Here you can configure the main settings for attachments and the associated special categories.',
'ACP_EXTENSION_GROUPS_EXPLAIN' => 'Here you can add, delete, modify or disable your extension groups. Further options include the assignment of a special category to them, changing the download mechanism and defining an upload icon which will be displayed in front of the attachment which belongs to the group.', 'ACP_EXTENSION_GROUPS_EXPLAIN' => 'Here you can add, delete, modify or disable your extension groups. Further options include the assignment of a special category to them, changing the download mechanism and defining an upload icon which will be displayed in front of the attachment which belongs to the group.',
'ACP_MANAGE_EXTENSIONS_EXPLAIN' => 'Here you can manage your allowed extensions. To activate your extensions, please refer to the extension groups management panel. We strongly recommend not to allow scripting extensions (such as <code>php</code>, <code>php3</code>, <code>php4</code>, <code>phtml</code>, <code>pl</code>, <code>cgi</code>, <code>py</code>, <code>rb</code>, <code>asp</code>, <code>aspx</code>, and so forth…)', 'ACP_MANAGE_EXTENSIONS_EXPLAIN' => 'Here you can manage your allowed extensions. To activate your extensions, please refer to the extension groups management panel. We strongly recommend not to allow scripting extensions (such as <code>php</code>, <code>php3</code>, <code>php4</code>, <code>phtml</code>, <code>pl</code>, <code>cgi</code>, <code>py</code>, <code>rb</code>, <code>asp</code>, <code>aspx</code>, and so forth…).',
'ACP_ORPHAN_ATTACHMENTS_EXPLAIN' => 'Here you are able to see files within the attachments upload directory but not assigned to posts. This happens mostly if users are attaching files but not submitting the post. You are able to delete the files or attach them to existing posts. Attaching to posts requires a valid post ID, you have to determine this id by yourself, this feature is mainly for those people wanting to upload files with another program and assigning those (mostly large) files to an existing post.', 'ACP_ORPHAN_ATTACHMENTS_EXPLAIN' => 'Here you are able to see files within the attachments upload directory but not assigned to posts. This happens mostly if users are attaching files but not submitting the post. You are able to delete the files or attach them to existing posts. Attaching to posts requires a valid post ID, you have to determine this id by yourself, this feature is mainly for those people wanting to upload files with another program and assigning those (mostly large) files to an existing post.',
'ADD_EXTENSION' => 'Add extension', 'ADD_EXTENSION' => 'Add extension',
'ADD_EXTENSION_GROUP' => 'Add extension group', 'ADD_EXTENSION_GROUP' => 'Add extension group',
'ADMIN_UPLOAD_ERROR' => 'Errors while trying to attach file: %s', 'ADMIN_UPLOAD_ERROR' => 'Errors while trying to attach file: %s”.',
'ALLOWED_FORUMS' => 'Allowed forums', 'ALLOWED_FORUMS' => 'Allowed forums',
'ALLOWED_FORUMS_EXPLAIN' => 'Able to post the assigned extensions at the selected (or all if selected) forums', 'ALLOWED_FORUMS_EXPLAIN' => 'Able to post the assigned extensions at the selected (or all if selected) forums.',
'ALLOW_ATTACHMENTS' => 'Allow attachments', 'ALLOW_ATTACHMENTS' => 'Allow attachments',
'ALLOW_ALL_FORUMS' => 'Allow all forums', 'ALLOW_ALL_FORUMS' => 'Allow all forums',
'ALLOW_IN_PM' => 'Allowed in private messaging', 'ALLOW_IN_PM' => 'Allowed in private messaging',
@ -71,7 +71,7 @@ $lang = array_merge($lang, array(
'DEFINE_ALLOWED_IPS' => 'Define allowed IPs/hostnames', 'DEFINE_ALLOWED_IPS' => 'Define allowed IPs/hostnames',
'DEFINE_DISALLOWED_IPS' => 'Define disallowed IPs/hostnames', 'DEFINE_DISALLOWED_IPS' => 'Define disallowed IPs/hostnames',
'DOWNLOAD_ADD_IPS_EXPLAIN' => 'To specify several different IPs or hostnames enter each on a new line. To specify a range of IP addresses separate the start and end with a hyphen (-), to specify a wildcard use *', 'DOWNLOAD_ADD_IPS_EXPLAIN' => 'To specify several different IPs or hostnames enter each on a new line. To specify a range of IP addresses separate the start and end with a hyphen (-), to specify a wildcard use “*”.',
'DOWNLOAD_REMOVE_IPS_EXPLAIN' => 'You can remove (or un-exclude) multiple IP addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser. Excluded IPs have a blue background.', 'DOWNLOAD_REMOVE_IPS_EXPLAIN' => 'You can remove (or un-exclude) multiple IP addresses in one go using the appropriate combination of mouse and keyboard for your computer and browser. Excluded IPs have a blue background.',
'DISPLAY_INLINED' => 'Display images inline', 'DISPLAY_INLINED' => 'Display images inline',
'DISPLAY_INLINED_EXPLAIN' => 'If set to No image attachments will show as a link.', 'DISPLAY_INLINED_EXPLAIN' => 'If set to No image attachments will show as a link.',
@ -82,12 +82,12 @@ $lang = array_merge($lang, array(
'EXCLUDE_ENTERED_IP' => 'Enable this to exclude the entered IP/hostname.', 'EXCLUDE_ENTERED_IP' => 'Enable this to exclude the entered IP/hostname.',
'EXCLUDE_FROM_ALLOWED_IP' => 'Exclude IP from allowed IPs/hostnames', 'EXCLUDE_FROM_ALLOWED_IP' => 'Exclude IP from allowed IPs/hostnames',
'EXCLUDE_FROM_DISALLOWED_IP' => 'Exclude IP from disallowed IPs/hostnames', 'EXCLUDE_FROM_DISALLOWED_IP' => 'Exclude IP from disallowed IPs/hostnames',
'EXTENSIONS_UPDATED' => 'Extensions successfully updated', 'EXTENSIONS_UPDATED' => 'Extensions successfully updated.',
'EXTENSION_EXIST' => 'The extension %s already exists', 'EXTENSION_EXIST' => 'The extension %s already exists.',
'EXTENSION_GROUP' => 'Extension group', 'EXTENSION_GROUP' => 'Extension group',
'EXTENSION_GROUPS' => 'Extension groups', 'EXTENSION_GROUPS' => 'Extension groups',
'EXTENSION_GROUP_DELETED' => 'Extension group successfully deleted.', 'EXTENSION_GROUP_DELETED' => 'Extension group successfully deleted.',
'EXTENSION_GROUP_EXIST' => 'The extension group %s already exists', 'EXTENSION_GROUP_EXIST' => 'The extension group %s already exists.',
'GO_TO_EXTENSIONS' => 'Go to extension management screen', 'GO_TO_EXTENSIONS' => 'Go to extension management screen',
'GROUP_NAME' => 'Group name', 'GROUP_NAME' => 'Group name',
@ -95,7 +95,7 @@ $lang = array_merge($lang, array(
'IMAGE_LINK_SIZE' => 'Image link dimensions', 'IMAGE_LINK_SIZE' => 'Image link dimensions',
'IMAGE_LINK_SIZE_EXPLAIN' => 'Display image attachment as an inline text link if image is larger than this. To disable this behaviour, set the values to 0px by 0px.', 'IMAGE_LINK_SIZE_EXPLAIN' => 'Display image attachment as an inline text link if image is larger than this. To disable this behaviour, set the values to 0px by 0px.',
'IMAGICK_PATH' => 'Imagemagick path', 'IMAGICK_PATH' => 'Imagemagick path',
'IMAGICK_PATH_EXPLAIN' => 'Full path to the imagemagick convert application, e.g. <samp>/usr/bin/</samp>', 'IMAGICK_PATH_EXPLAIN' => 'Full path to the imagemagick convert application, e.g. <samp>/usr/bin/</samp>.',
'MAX_ATTACHMENTS' => 'Max attachments per post', 'MAX_ATTACHMENTS' => 'Max attachments per post',
'MAX_ATTACHMENTS_PM' => 'Max attachments per message', 'MAX_ATTACHMENTS_PM' => 'Max attachments per message',
@ -103,7 +103,7 @@ $lang = array_merge($lang, array(
'MAX_IMAGE_SIZE' => 'Maximum image dimensions', 'MAX_IMAGE_SIZE' => 'Maximum image dimensions',
'MAX_IMAGE_SIZE_EXPLAIN' => 'Maximum size of image attachments. Set both values to 0px by 0px to disable dimension checking.', 'MAX_IMAGE_SIZE_EXPLAIN' => 'Maximum size of image attachments. Set both values to 0px by 0px to disable dimension checking.',
'MAX_THUMB_WIDTH' => 'Maximum thumbnail width in pixel', 'MAX_THUMB_WIDTH' => 'Maximum thumbnail width in pixel',
'MAX_THUMB_WIDTH_EXPLAIN' => 'A generated thumbnail will not exceed the width set here', 'MAX_THUMB_WIDTH_EXPLAIN' => 'A generated thumbnail will not exceed the width set here.',
'MIN_THUMB_FILESIZE' => 'Minimum thumbnail file size', 'MIN_THUMB_FILESIZE' => 'Minimum thumbnail file size',
'MIN_THUMB_FILESIZE_EXPLAIN' => 'Do not create a thumbnail for images smaller than this.', 'MIN_THUMB_FILESIZE_EXPLAIN' => 'Do not create a thumbnail for images smaller than this.',
'MODE_INLINE' => 'Inline', 'MODE_INLINE' => 'Inline',
@ -129,7 +129,7 @@ $lang = array_merge($lang, array(
'SEARCH_IMAGICK' => 'Search for Imagemagick', 'SEARCH_IMAGICK' => 'Search for Imagemagick',
'SECURE_ALLOW_DENY' => 'Allow/Deny list', 'SECURE_ALLOW_DENY' => 'Allow/Deny list',
'SECURE_ALLOW_DENY_EXPLAIN' => 'Change the default behaviour when secure downloads are enabled of the Allow/Deny list to that of a <strong>whitelist</strong> (Allow) or a <strong>blacklist</strong> (Deny)', 'SECURE_ALLOW_DENY_EXPLAIN' => 'Change the default behaviour when secure downloads are enabled of the Allow/Deny list to that of a <strong>whitelist</strong> (Allow) or a <strong>blacklist</strong> (Deny).',
'SECURE_DOWNLOADS' => 'Enable secure downloads', 'SECURE_DOWNLOADS' => 'Enable secure downloads',
'SECURE_DOWNLOADS_EXPLAIN' => 'With this option enabled, downloads are limited to IPs/hostnames you define.', 'SECURE_DOWNLOADS_EXPLAIN' => 'With this option enabled, downloads are limited to IPs/hostnames you define.',
'SECURE_DOWNLOAD_NOTICE' => 'Secure Downloads are not enabled. The settings below will be applied after enabling secure downloads.', 'SECURE_DOWNLOAD_NOTICE' => 'Secure Downloads are not enabled. The settings below will be applied after enabling secure downloads.',
@ -139,13 +139,13 @@ $lang = array_merge($lang, array(
'SETTINGS_CAT_IMAGES' => 'Image category settings', 'SETTINGS_CAT_IMAGES' => 'Image category settings',
'SPECIAL_CATEGORY' => 'Special category', 'SPECIAL_CATEGORY' => 'Special category',
'SPECIAL_CATEGORY_EXPLAIN' => 'Special categories differ between the way presented within posts.', 'SPECIAL_CATEGORY_EXPLAIN' => 'Special categories differ between the way presented within posts.',
'SUCCESSFULLY_UPLOADED' => 'Successfully uploaded', 'SUCCESSFULLY_UPLOADED' => 'Successfully uploaded.',
'SUCCESS_EXTENSION_GROUP_ADD' => 'Extension group successfully added', 'SUCCESS_EXTENSION_GROUP_ADD' => 'Extension group successfully added.',
'SUCCESS_EXTENSION_GROUP_EDIT' => 'Extension group successfully updated', 'SUCCESS_EXTENSION_GROUP_EDIT' => 'Extension group successfully updated.',
'UPLOADING_FILES' => 'Uploading files', 'UPLOADING_FILES' => 'Uploading files',
'UPLOADING_FILE_TO' => 'Uploading file “%1$s” to post number %2$d…', 'UPLOADING_FILE_TO' => 'Uploading file “%1$s” to post number %2$d…',
'UPLOAD_DENIED_FORUM' => 'You do not have the permission to upload files to forum “%s”', 'UPLOAD_DENIED_FORUM' => 'You do not have the permission to upload files to forum “%s”.',
'UPLOAD_DIR' => 'Upload directory', 'UPLOAD_DIR' => 'Upload directory',
'UPLOAD_DIR_EXPLAIN' => 'Storage path for attachments. Please note that if you change this directory while already having uploaded attachments you need to manually copy the files to their new location.', 'UPLOAD_DIR_EXPLAIN' => 'Storage path for attachments. Please note that if you change this directory while already having uploaded attachments you need to manually copy the files to their new location.',
'UPLOAD_ICON' => 'Upload icon', 'UPLOAD_ICON' => 'Upload icon',

View file

@ -53,7 +53,7 @@ $lang = array_merge($lang, array(
'IP_BAN' => 'Ban one or more IPs', 'IP_BAN' => 'Ban one or more IPs',
'IP_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered IP from all current bans.', 'IP_BAN_EXCLUDE_EXPLAIN' => 'Enable this to exclude the entered IP from all current bans.',
'IP_BAN_EXPLAIN' => 'To specify several different IPs or hostnames enter each on a new line. To specify a range of IP addresses separate the start and end with a hyphen (-), to specify a wildcard use *', 'IP_BAN_EXPLAIN' => 'To specify several different IPs or hostnames enter each on a new line. To specify a range of IP addresses separate the start and end with a hyphen (-), to specify a wildcard use “*”.',
'IP_HOSTNAME' => 'IP addresses or hostnames', 'IP_HOSTNAME' => 'IP addresses or hostnames',
'IP_NO_BANNED' => 'No banned IP addresses', 'IP_NO_BANNED' => 'No banned IP addresses',
'IP_UNBAN' => 'Un-ban or un-exclude IPs', 'IP_UNBAN' => 'Un-ban or un-exclude IPs',

View file

@ -47,16 +47,16 @@ $lang = array_merge($lang, array(
'SYSTEM_DST' => 'Enable Summer Time/<abbr title="Daylight Saving Time">DST</abbr>', 'SYSTEM_DST' => 'Enable Summer Time/<abbr title="Daylight Saving Time">DST</abbr>',
'SYSTEM_TIMEZONE' => 'System timezone', 'SYSTEM_TIMEZONE' => 'System timezone',
'WARNINGS_EXPIRE' => 'Warning duration', 'WARNINGS_EXPIRE' => 'Warning duration',
'WARNINGS_EXPIRE_EXPLAIN' => 'Number of days that will elapse before the warning will automatically expire from a users record', 'WARNINGS_EXPIRE_EXPLAIN' => 'Number of days that will elapse before the warning will automatically expire from a users record.',
)); ));
// Board Features // Board Features
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_BOARD_FEATURES_EXPLAIN' => 'Here you can enable/disable several board features', 'ACP_BOARD_FEATURES_EXPLAIN' => 'Here you can enable/disable several board features.',
'ALLOW_ATTACHMENTS' => 'Allow attachments', 'ALLOW_ATTACHMENTS' => 'Allow attachments',
'ALLOW_BOOKMARKS' => 'Allow bookmarking topics', 'ALLOW_BOOKMARKS' => 'Allow bookmarking topics',
'ALLOW_BOOKMARKS_EXPLAIN' => 'User is able to store personal bookmarks', 'ALLOW_BOOKMARKS_EXPLAIN' => 'User is able to store personal bookmarks.',
'ALLOW_BBCODE' => 'Allow BBCode', 'ALLOW_BBCODE' => 'Allow BBCode',
'ALLOW_FORUM_NOTIFY' => 'Allow forum watching', 'ALLOW_FORUM_NOTIFY' => 'Allow forum watching',
'ALLOW_NAME_CHANGE' => 'Allow username changes', 'ALLOW_NAME_CHANGE' => 'Allow username changes',
@ -82,23 +82,23 @@ $lang = array_merge($lang, array(
'ALLOW_LOCAL' => 'Enable gallery avatars', 'ALLOW_LOCAL' => 'Enable gallery avatars',
'ALLOW_REMOTE' => 'Enable remote avatars', 'ALLOW_REMOTE' => 'Enable remote avatars',
'ALLOW_REMOTE_EXPLAIN' => 'Avatars linked to from another website', 'ALLOW_REMOTE_EXPLAIN' => 'Avatars linked to from another website.',
'ALLOW_UPLOAD' => 'Enable avatar uploading', 'ALLOW_UPLOAD' => 'Enable avatar uploading',
'AVATAR_GALLERY_PATH' => 'Avatar gallery path', 'AVATAR_GALLERY_PATH' => 'Avatar gallery path',
'AVATAR_GALLERY_PATH_EXPLAIN' => 'Path under your phpBB root directory for pre-loaded images, e.g. <samp>images/avatars/gallery</samp>', 'AVATAR_GALLERY_PATH_EXPLAIN' => 'Path under your phpBB root directory for pre-loaded images, e.g. <samp>images/avatars/gallery</samp>.',
'AVATAR_STORAGE_PATH' => 'Avatar storage path', 'AVATAR_STORAGE_PATH' => 'Avatar storage path',
'AVATAR_STORAGE_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/avatars/upload</samp>', 'AVATAR_STORAGE_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/avatars/upload</samp>.',
'MAX_AVATAR_SIZE' => 'Maximum avatar dimensions', 'MAX_AVATAR_SIZE' => 'Maximum avatar dimensions',
'MAX_AVATAR_SIZE_EXPLAIN' => '(Height x Width in pixels)', 'MAX_AVATAR_SIZE_EXPLAIN' => '(Height x Width in pixels)',
'MAX_FILESIZE' => 'Maximum avatar file size', 'MAX_FILESIZE' => 'Maximum avatar file size',
'MAX_FILESIZE_EXPLAIN' => 'For uploaded avatar files', 'MAX_FILESIZE_EXPLAIN' => 'For uploaded avatar files.',
'MIN_AVATAR_SIZE' => 'Minimum avatar dimensions', 'MIN_AVATAR_SIZE' => 'Minimum avatar dimensions',
'MIN_AVATAR_SIZE_EXPLAIN' => '(Height x Width in pixels)', 'MIN_AVATAR_SIZE_EXPLAIN' => '(Height x Width in pixels)',
)); ));
// Message Settings // Message Settings
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_MESSAGE_SETTINGS_EXPLAIN' => 'Here you can set all default settings for private messaging', 'ACP_MESSAGE_SETTINGS_EXPLAIN' => 'Here you can set all default settings for private messaging.',
'ALLOW_BBCODE_PM' => 'Allow BBCode in private messages', 'ALLOW_BBCODE_PM' => 'Allow BBCode in private messages',
'ALLOW_FLASH_PM' => 'Allow use of <code>[FLASH]</code> BBCode tag', 'ALLOW_FLASH_PM' => 'Allow use of <code>[FLASH]</code> BBCode tag',
@ -123,7 +123,7 @@ $lang = array_merge($lang, array(
// Post Settings // Post Settings
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_POST_SETTINGS_EXPLAIN' => 'Here you can set all default settings for posting', 'ACP_POST_SETTINGS_EXPLAIN' => 'Here you can set all default settings for posting.',
'ALLOW_POST_LINKS' => 'Allow links in posts/private messages', 'ALLOW_POST_LINKS' => 'Allow links in posts/private messages',
'ALLOW_POST_LINKS_EXPLAIN' => 'If disallowed the <code>[URL]</code> BBCode tag and automatic/magic URLs are disabled.', 'ALLOW_POST_LINKS_EXPLAIN' => 'If disallowed the <code>[URL]</code> BBCode tag and automatic/magic URLs are disabled.',
@ -132,7 +132,7 @@ $lang = array_merge($lang, array(
'CHAR_LIMIT' => 'Maximum characters per post', 'CHAR_LIMIT' => 'Maximum characters per post',
'CHAR_LIMIT_EXPLAIN' => 'The number of characters allowed within a post. Set to 0 for unlimited characters.', 'CHAR_LIMIT_EXPLAIN' => 'The number of characters allowed within a post. Set to 0 for unlimited characters.',
'DISPLAY_LAST_EDITED' => 'Display last edited time information', 'DISPLAY_LAST_EDITED' => 'Display last edited time information',
'DISPLAY_LAST_EDITED_EXPLAIN' => 'Choose if the last edited by information to be displayed on posts', 'DISPLAY_LAST_EDITED_EXPLAIN' => 'Choose if the last edited by information to be displayed on posts.',
'EDIT_TIME' => 'Limit editing time', 'EDIT_TIME' => 'Limit editing time',
'EDIT_TIME_EXPLAIN' => 'Limits the time available to edit a new post. Setting the value to 0 disables this behaviour.', 'EDIT_TIME_EXPLAIN' => 'Limits the time available to edit a new post. Setting the value to 0 disables this behaviour.',
'FLOOD_INTERVAL' => 'Flood interval', 'FLOOD_INTERVAL' => 'Flood interval',
@ -159,7 +159,7 @@ $lang = array_merge($lang, array(
// Signature Settings // Signature Settings
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_SIGNATURE_SETTINGS_EXPLAIN' => 'Here you can set all default settings for signatures', 'ACP_SIGNATURE_SETTINGS_EXPLAIN' => 'Here you can set all default settings for signatures.',
'MAX_SIG_FONT_SIZE' => 'Maximum signature font size', 'MAX_SIG_FONT_SIZE' => 'Maximum signature font size',
'MAX_SIG_FONT_SIZE_EXPLAIN' => 'Maximum font size allowed in user signatures. Set to 0 for unlimited size.', 'MAX_SIG_FONT_SIZE_EXPLAIN' => 'Maximum font size allowed in user signatures. Set to 0 for unlimited size.',
@ -177,7 +177,7 @@ $lang = array_merge($lang, array(
// Registration Settings // Registration Settings
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_REGISTER_SETTINGS_EXPLAIN' => 'Here you are able to define registration and profile related settings', 'ACP_REGISTER_SETTINGS_EXPLAIN' => 'Here you are able to define registration and profile related settings.',
'ACC_ACTIVATION' => 'Account activation', 'ACC_ACTIVATION' => 'Account activation',
'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.', '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.',
@ -191,7 +191,7 @@ $lang = array_merge($lang, array(
'COPPA' => 'COPPA', 'COPPA' => 'COPPA',
'COPPA_FAX' => 'COPPA fax number', 'COPPA_FAX' => 'COPPA fax number',
'COPPA_MAIL' => 'COPPA mailing address', 'COPPA_MAIL' => 'COPPA mailing address',
'COPPA_MAIL_EXPLAIN' => 'This is the mailing address where parents will send COPPA registration forms', 'COPPA_MAIL_EXPLAIN' => 'This is the mailing address where parents will send COPPA registration forms.',
'ENABLE_COPPA' => 'Enable COPPA', 'ENABLE_COPPA' => 'Enable COPPA',
'ENABLE_COPPA_EXPLAIN' => 'This requires users to declare whether they are 13 or over for compliance with the U.S. COPPA Act. If this is disabled the COPPA specific groups will no longer be displayed.', 'ENABLE_COPPA_EXPLAIN' => 'This requires users to declare whether they are 13 or over for compliance with the U.S. COPPA Act. If this is disabled the COPPA specific groups will no longer be displayed.',
'MAX_CHARS' => 'Max', 'MAX_CHARS' => 'Max',
@ -208,7 +208,7 @@ $lang = array_merge($lang, array(
'USERNAME_LETTER_NUM_SPACERS' => 'Any letter, number, and spacer', 'USERNAME_LETTER_NUM_SPACERS' => 'Any letter, number, and spacer',
'USERNAME_CHARS' => 'Limit username chars', 'USERNAME_CHARS' => 'Limit username chars',
'USERNAME_CHARS_ANY' => 'Any character', 'USERNAME_CHARS_ANY' => 'Any character',
'USERNAME_CHARS_EXPLAIN' => 'Restrict type of characters that may be used in usernames, spacers are: space, -, +, _, [ and ]', 'USERNAME_CHARS_EXPLAIN' => 'Restrict type of characters that may be used in usernames, spacers are: space, -, +, _, [ and ].',
'USERNAME_LENGTH' => 'Username length', 'USERNAME_LENGTH' => 'Username length',
'USERNAME_LENGTH_EXPLAIN' => 'Minimum and maximum number of characters in usernames.', 'USERNAME_LENGTH_EXPLAIN' => 'Minimum and maximum number of characters in usernames.',
)); ));
@ -219,8 +219,8 @@ $lang = array_merge($lang, array(
'CAPTCHA_GD' => 'GD CAPTCHA', 'CAPTCHA_GD' => 'GD CAPTCHA',
'CAPTCHA_GD_FOREGROUND_NOISE' => 'GD CAPTCHA foreground noise', 'CAPTCHA_GD_FOREGROUND_NOISE' => 'GD CAPTCHA foreground noise',
'CAPTCHA_GD_EXPLAIN' => 'Use GD to make a more advanced CAPTCHA', 'CAPTCHA_GD_EXPLAIN' => 'Use GD to make a more advanced CAPTCHA.',
'CAPTCHA_GD_FOREGROUND_NOISE_EXPLAIN' => 'Use foreground noise to make the GD based CAPTCHA harder', 'CAPTCHA_GD_FOREGROUND_NOISE_EXPLAIN' => 'Use foreground noise to make the GD based CAPTCHA harder.',
'CAPTCHA_GD_X_GRID' => 'GD CAPTCHA background noise x-axis', 'CAPTCHA_GD_X_GRID' => 'GD CAPTCHA background noise x-axis',
'CAPTCHA_GD_X_GRID_EXPLAIN' => 'Use lower settings of this to make the GD based CAPTCHA harder. 0 will disable x-axis background noise.', 'CAPTCHA_GD_X_GRID_EXPLAIN' => 'Use lower settings of this to make the GD based CAPTCHA harder. 0 will disable x-axis background noise.',
'CAPTCHA_GD_Y_GRID' => 'GD CAPTCHA background noise y-axis', 'CAPTCHA_GD_Y_GRID' => 'GD CAPTCHA background noise y-axis',
@ -291,12 +291,12 @@ $lang = array_merge($lang, array(
'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_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.',
'LDAP_DN' => 'LDAP base <var>dn</var>', 'LDAP_DN' => 'LDAP base <var>dn</var>',
'LDAP_DN_EXPLAIN' => 'This is the Distinguished Name, locating the user information, e.g. <samp>o=My Company,c=US</samp>', 'LDAP_DN_EXPLAIN' => 'This is the Distinguished Name, locating the user information, e.g. <samp>o=My Company,c=US</samp>.',
'LDAP_EMAIL' => 'LDAP e-mail attribute', 'LDAP_EMAIL' => 'LDAP e-mail attribute',
'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.', '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.',
'LDAP_INCORRECT_USER_PASSWORD' => 'Binding to LDAP server failed with specified user/password.', 'LDAP_INCORRECT_USER_PASSWORD' => 'Binding to LDAP server failed with specified user/password.',
'LDAP_NO_EMAIL' => 'The specified e-mail attribute does not exist.', 'LDAP_NO_EMAIL' => 'The specified e-mail attribute does not exist.',
'LDAP_NO_IDENTITY' => 'Could not find a login identity for %s', 'LDAP_NO_IDENTITY' => 'Could not find a login identity for %s.',
'LDAP_PASSWORD' => 'LDAP password', 'LDAP_PASSWORD' => 'LDAP password',
'LDAP_PASSWORD_EXPLAIN' => 'Leave blank to use anonymous access. Else fill in the password for the above user. <strong>WARNING:</strong> This password will be stored as plain text in the database visible to everybody who can access your database.', 'LDAP_PASSWORD_EXPLAIN' => 'Leave blank to use anonymous access. Else fill in the password for the above user. <strong>WARNING:</strong> This password will be stored as plain text in the database visible to everybody who can access your database.',
'LDAP_SERVER' => 'LDAP server name', 'LDAP_SERVER' => 'LDAP server name',
@ -316,28 +316,28 @@ $lang = array_merge($lang, array(
'FORCE_SERVER_VARS' => 'Force server URL settings', 'FORCE_SERVER_VARS' => 'Force server URL settings',
'FORCE_SERVER_VARS_EXPLAIN' => 'If set to yes the server settings defined here will be used in favour of the automatically determined values.', 'FORCE_SERVER_VARS_EXPLAIN' => 'If set to yes the server settings defined here will be used in favour of the automatically determined values.',
'ICONS_PATH' => 'Post icons storage path', 'ICONS_PATH' => 'Post icons storage path',
'ICONS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/icons</samp>', 'ICONS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/icons</samp>.',
'PATH_SETTINGS' => 'Path settings', 'PATH_SETTINGS' => 'Path settings',
'RANKS_PATH' => 'Rank image storage path', 'RANKS_PATH' => 'Rank image storage path',
'RANKS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/ranks</samp>', 'RANKS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/ranks</samp>.',
'SCRIPT_PATH' => 'Script path', 'SCRIPT_PATH' => 'Script path',
'SCRIPT_PATH_EXPLAIN' => 'The path where phpBB is located relative to the domain name, e.g. <samp>/phpBB3</samp>', 'SCRIPT_PATH_EXPLAIN' => 'The path where phpBB is located relative to the domain name, e.g. <samp>/phpBB3</samp>.',
'SERVER_NAME' => 'Domain name', 'SERVER_NAME' => 'Domain name',
'SERVER_NAME_EXPLAIN' => 'The domain name this board runs from (for example: <samp>www.foo.bar</samp>)', 'SERVER_NAME_EXPLAIN' => 'The domain name this board runs from (for example: <samp>www.foo.bar</samp>).',
'SERVER_PORT' => 'Server port', 'SERVER_PORT' => 'Server port',
'SERVER_PORT_EXPLAIN' => 'The port your server is running on, usually 80, only change if different', 'SERVER_PORT_EXPLAIN' => 'The port your server is running on, usually 80, only change if different.',
'SERVER_PROTOCOL' => 'Server protocol', 'SERVER_PROTOCOL' => 'Server protocol',
'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>)', '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>).',
'SERVER_URL_SETTINGS' => 'Server URL settings', 'SERVER_URL_SETTINGS' => 'Server URL settings',
'SMILIES_PATH' => 'Smilies storage path', 'SMILIES_PATH' => 'Smilies storage path',
'SMILIES_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/smilies</samp>', 'SMILIES_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/smilies</samp>.',
'UPLOAD_ICONS_PATH' => 'Extension group icons storage path', 'UPLOAD_ICONS_PATH' => 'Extension group icons storage path',
'UPLOAD_ICONS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/upload_icons</samp>', 'UPLOAD_ICONS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/upload_icons</samp>.',
)); ));
// Security Settings // Security Settings
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_SECURITY_SETTINGS_EXPLAIN' => 'Here you are able to define session and login related settings', 'ACP_SECURITY_SETTINGS_EXPLAIN' => 'Here you are able to define session and login related settings.',
'ALL' => 'All', 'ALL' => 'All',
'ALLOW_AUTOLOGIN' => 'Allow persistent logins', 'ALLOW_AUTOLOGIN' => 'Allow persistent logins',
@ -359,7 +359,7 @@ $lang = array_merge($lang, array(
'IP_VALID' => 'Session IP validation', 'IP_VALID' => 'Session IP validation',
'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.', '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.',
'MAX_LOGIN_ATTEMPTS' => 'Maximum number of login attempts', 'MAX_LOGIN_ATTEMPTS' => 'Maximum number of login attempts',
'MAX_LOGIN_ATTEMPTS_EXPLAIN' => 'After this number of failed logins the user needs to additionally confirm his login visually (visual confirmation)', 'MAX_LOGIN_ATTEMPTS_EXPLAIN' => 'After this number of failed logins the user needs to additionally confirm his login visually (visual confirmation).',
'NO_IP_VALIDATION' => 'None', 'NO_IP_VALIDATION' => 'None',
'PASSWORD_TYPE' => 'Password complexity', 'PASSWORD_TYPE' => 'Password complexity',
'PASSWORD_TYPE_EXPLAIN' => 'Determines how complex a password needs to be when set or altered, subsequent options include the previous ones.', 'PASSWORD_TYPE_EXPLAIN' => 'Determines how complex a password needs to be when set or altered, subsequent options include the previous ones.',
@ -423,18 +423,18 @@ $lang = array_merge($lang, array(
'JAB_CHANGED' => 'Jabber account changed successfully.', 'JAB_CHANGED' => 'Jabber account changed successfully.',
'JAB_ENABLE' => 'Enable Jabber', 'JAB_ENABLE' => 'Enable Jabber',
'JAB_ENABLE_EXPLAIN' => 'Enables use of jabber messaging and notifications', 'JAB_ENABLE_EXPLAIN' => 'Enables use of jabber messaging and notifications.',
'JAB_PACKAGE_SIZE' => 'Jabber package size', 'JAB_PACKAGE_SIZE' => 'Jabber package size',
'JAB_PACKAGE_SIZE_EXPLAIN' => 'This is the number of messages sent in one package. If set to 0 the message is sent immediately and is not queued for later sending.', 'JAB_PACKAGE_SIZE_EXPLAIN' => 'This is the number of messages sent in one package. If set to 0 the message is sent immediately and is not queued for later sending.',
'JAB_PASSWORD' => 'Jabber password', 'JAB_PASSWORD' => 'Jabber password',
'JAB_PASS_CHANGED' => 'Jabber password changed successfully.', 'JAB_PASS_CHANGED' => 'Jabber password changed successfully.',
'JAB_PORT' => 'Jabber port', 'JAB_PORT' => 'Jabber port',
'JAB_PORT_EXPLAIN' => 'Leave blank unless you know it is not port 5222', 'JAB_PORT_EXPLAIN' => 'Leave blank unless you know it is not port 5222.',
'JAB_REGISTERED' => 'New account registered successfully.', 'JAB_REGISTERED' => 'New account registered successfully.',
'JAB_RESOURCE' => 'Jabber resource', 'JAB_RESOURCE' => 'Jabber resource',
'JAB_RESOURCE_EXPLAIN' => 'The resource locates this particular connection, e.g. board, home, etc.', 'JAB_RESOURCE_EXPLAIN' => 'The resource locates this particular connection, e.g. board, home, etc.',
'JAB_SERVER' => 'Jabber server', 'JAB_SERVER' => 'Jabber server',
'JAB_SERVER_EXPLAIN' => 'See %sjabber.org%s for a list of servers', 'JAB_SERVER_EXPLAIN' => 'See %sjabber.org%s for a list of servers.',
'JAB_SETTINGS_CHANGED' => 'Jabber settings changed successfully.', 'JAB_SETTINGS_CHANGED' => 'Jabber settings changed successfully.',
'JAB_USERNAME' => 'Jabber username', 'JAB_USERNAME' => 'Jabber username',
'JAB_USERNAME_EXPLAIN' => 'If this user is not registered it will be created if possible.', 'JAB_USERNAME_EXPLAIN' => 'If this user is not registered it will be created if possible.',

View file

@ -230,9 +230,9 @@ $lang = array_merge($lang, array(
'LOGGED_IN_AS' => 'You are logged in as:', 'LOGGED_IN_AS' => 'You are logged in as:',
'LOGIN_ADMIN' => 'To administer the board you must be an authenticated user.', 'LOGIN_ADMIN' => 'To administer the board you must be an authenticated user.',
'LOGIN_ADMIN_CONFIRM' => 'To administer the board you must re-authenticate yourself.', 'LOGIN_ADMIN_CONFIRM' => 'To administer the board you must re-authenticate yourself.',
'LOGIN_ADMIN_SUCCESS' => 'You have successfully authenticated and will now be redirected to the Administration Control Panel', 'LOGIN_ADMIN_SUCCESS' => 'You have successfully authenticated and will now be redirected to the Administration Control Panel.',
'LOOK_UP_FORUM' => 'Select a forum', 'LOOK_UP_FORUM' => 'Select a forum',
'LOOK_UP_FORUMS_EXPLAIN'=> 'You are able to select more than one forum', 'LOOK_UP_FORUMS_EXPLAIN'=> 'You are able to select more than one forum.',
'MANAGE' => 'Manage', 'MANAGE' => 'Manage',
'MENU_TOGGLE' => 'Hide or display the side menu', 'MENU_TOGGLE' => 'Hide or display the side menu',
@ -241,7 +241,7 @@ $lang = array_merge($lang, array(
'NOTIFY' => 'Notification', 'NOTIFY' => 'Notification',
'NO_ADMIN' => 'You are not authorised to administrate this board.', 'NO_ADMIN' => 'You are not authorised to administrate this board.',
'NO_EMAILS_DEFINED' => 'No valid e-mail addresses found', 'NO_EMAILS_DEFINED' => 'No valid e-mail addresses found.',
'NO_PASSWORD_SUPPLIED' => 'You need to enter your password to access the Administration Control Panel.', 'NO_PASSWORD_SUPPLIED' => 'You need to enter your password to access the Administration Control Panel.',
'OFF' => 'Off', 'OFF' => 'Off',
@ -264,7 +264,7 @@ $lang = array_merge($lang, array(
'SELECT_OPTION' => 'Select option', 'SELECT_OPTION' => 'Select option',
'UCP' => 'User Control Panel', 'UCP' => 'User Control Panel',
'USERNAMES_EXPLAIN' => 'Place each username on a separate line', 'USERNAMES_EXPLAIN' => 'Place each username on a separate line.',
'USER_CONTROL_PANEL' => 'User Control Panel', 'USER_CONTROL_PANEL' => 'User Control Panel',
'WARNING' => 'Warning', 'WARNING' => 'Warning',
@ -287,7 +287,7 @@ $lang = array_merge($lang, array(
'DISPLAY_LOG' => 'Display entries from previous', 'DISPLAY_LOG' => 'Display entries from previous',
'NO_ENTRIES' => 'No log entries for this period', 'NO_ENTRIES' => 'No log entries for this period.',
'SORT_IP' => 'IP address', 'SORT_IP' => 'IP address',
'SORT_DATE' => 'Date', 'SORT_DATE' => 'Date',

View file

@ -76,7 +76,7 @@ $lang = array_merge($lang, array(
'FORUM_EDIT_EXPLAIN' => 'The form below will allow you to customise this forum. Please note that moderation and post count controls are set via forum permissions for each user or usergroup.', 'FORUM_EDIT_EXPLAIN' => 'The form below will allow you to customise this forum. Please note that moderation and post count controls are set via forum permissions for each user or usergroup.',
'FORUM_IMAGE' => 'Forum image', 'FORUM_IMAGE' => 'Forum image',
'FORUM_IMAGE_EXPLAIN' => 'Location, relative to the phpBB root directory, of an additional image to associate with this forum.', 'FORUM_IMAGE_EXPLAIN' => 'Location, relative to the phpBB root directory, of an additional image to associate with this forum.',
'FORUM_LINK_EXPLAIN' => 'Full URL (including the protocol, i.e.: <samp>http://</samp>) to the destination location that clicking this forum will take the user, e.g.: <samp>http://www.phpbb.com/</samp>', 'FORUM_LINK_EXPLAIN' => 'Full URL (including the protocol, i.e.: <samp>http://</samp>) to the destination location that clicking this forum will take the user, e.g.: <samp>http://www.phpbb.com/</samp>.',
'FORUM_LINK_TRACK' => 'Track link redirects', 'FORUM_LINK_TRACK' => 'Track link redirects',
'FORUM_LINK_TRACK_EXPLAIN' => 'Records the number of times a forum link was clicked.', 'FORUM_LINK_TRACK_EXPLAIN' => 'Records the number of times a forum link was clicked.',
'FORUM_NAME' => 'Forum name', 'FORUM_NAME' => 'Forum name',
@ -113,8 +113,8 @@ $lang = array_merge($lang, array(
'MOVE_POSTS_TO' => 'Move posts to', 'MOVE_POSTS_TO' => 'Move posts to',
'MOVE_SUBFORUMS_TO' => 'Move subforums to', 'MOVE_SUBFORUMS_TO' => 'Move subforums to',
'NO_DESTINATION_FORUM' => 'You have not specified a forum to move content to', 'NO_DESTINATION_FORUM' => 'You have not specified a forum to move content to.',
'NO_FORUM_ACTION' => 'No action defined for what happens with the forum content', 'NO_FORUM_ACTION' => 'No action defined for what happens with the forum content.',
'NO_PARENT' => 'No parent', 'NO_PARENT' => 'No parent',
'NO_PERMISSIONS' => 'Do not copy permissions', 'NO_PERMISSIONS' => 'Do not copy permissions',
'NO_PERMISSION_FORUM_ADD' => 'You do not have the necessary permissions to add forums.', 'NO_PERMISSION_FORUM_ADD' => 'You do not have the necessary permissions to add forums.',

View file

@ -57,7 +57,7 @@ $lang = array_merge($lang, array(
'GROUP_DESC' => 'Group description', 'GROUP_DESC' => 'Group description',
'GROUP_DETAILS' => 'Group details', 'GROUP_DETAILS' => 'Group details',
'GROUP_EDIT_EXPLAIN' => 'Here you can edit an existing group. You can change its name, description and type (open, closed, etc.). You can also set certain group wide options such as colouration, rank, etc. Changes made here override users current settings. Please note that group members can alter their avatar unless you set appropriate user permissions.', 'GROUP_EDIT_EXPLAIN' => 'Here you can edit an existing group. You can change its name, description and type (open, closed, etc.). You can also set certain group wide options such as colouration, rank, etc. Changes made here override users current settings. Please note that group members can alter their avatar unless you set appropriate user permissions.',
'GROUP_ERR_USERS_EXIST' => 'The specified users are already members of this group', 'GROUP_ERR_USERS_EXIST' => 'The specified users are already members of this group.',
'GROUP_FOUNDER_MANAGE' => 'Founder manage only', 'GROUP_FOUNDER_MANAGE' => 'Founder manage only',
'GROUP_FOUNDER_MANAGE_EXPLAIN' => 'Restrict group management for this group for founders only. Users having group permissions are still able to see this group as well as this groups members.', 'GROUP_FOUNDER_MANAGE_EXPLAIN' => 'Restrict group management for this group for founders only. Users having group permissions are still able to see this group as well as this groups members.',
'GROUP_HIDDEN' => 'Hidden', 'GROUP_HIDDEN' => 'Hidden',
@ -112,7 +112,7 @@ $lang = array_merge($lang, array(
'USER_DEF_GROUPS' => 'User defined groups', 'USER_DEF_GROUPS' => 'User defined groups',
'USER_DEF_GROUPS_EXPLAIN' => 'These are groups created by you or another admin on this board. You can manage memberships as well as edit group properties or even delete the group.', 'USER_DEF_GROUPS_EXPLAIN' => 'These are groups created by you or another admin on this board. You can manage memberships as well as edit group properties or even delete the group.',
'USER_GROUP_DEFAULT' => 'Set as default group', 'USER_GROUP_DEFAULT' => 'Set as default group',
'USER_GROUP_DEFAULT_EXPLAIN' => 'Saying yes here will set this group as the default group for the added users', 'USER_GROUP_DEFAULT_EXPLAIN' => 'Saying yes here will set this group as the default group for the added users.',
'USER_GROUP_LEADER' => 'Set as group leader', 'USER_GROUP_LEADER' => 'Set as group leader',
)); ));

View file

@ -32,7 +32,7 @@ if (empty($lang) || !is_array($lang))
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_FILES' => 'Admin language files', 'ACP_FILES' => 'Admin language files',
'ACP_LANGUAGE_PACKS_EXPLAIN' => 'Here you are able to install/remove language packs', 'ACP_LANGUAGE_PACKS_EXPLAIN' => 'Here you are able to install/remove language packs.',
'EMAIL_FILES' => 'E-mail templates', 'EMAIL_FILES' => 'E-mail templates',

View file

@ -49,7 +49,7 @@ $lang = array_merge($lang, array(
'DELETE_MODULE_CONFIRM' => 'Are you sure you want to remove this module?', 'DELETE_MODULE_CONFIRM' => 'Are you sure you want to remove this module?',
'EDIT_MODULE' => 'Edit module', 'EDIT_MODULE' => 'Edit module',
'EDIT_MODULE_EXPLAIN' => 'Here you are able to enter module specific settings', 'EDIT_MODULE_EXPLAIN' => 'Here you are able to enter module specific settings.',
'HIDDEN_MODULE' => 'Hidden module', 'HIDDEN_MODULE' => 'Hidden module',

View file

@ -84,11 +84,11 @@ $lang = array_merge($lang, array(
'ACP_USER_ROLES_EXPLAIN' => 'Here you are able to manage the roles for user permissions. Roles are effective permissions, if you change a role the items having this role assigned will change its permissions too.', 'ACP_USER_ROLES_EXPLAIN' => 'Here you are able to manage the roles for user permissions. Roles are effective permissions, if you change a role the items having this role assigned will change its permissions too.',
'ACP_USERS_FORUM_PERMISSIONS_EXPLAIN' => 'Here you can assign forum permissions to users.', 'ACP_USERS_FORUM_PERMISSIONS_EXPLAIN' => 'Here you can assign forum permissions to users.',
'ACP_USERS_PERMISSIONS_EXPLAIN' => 'Here you can assign global permissions to users - user permissions, global moderator permissions and administrator permissions. User permissions include capabilities such as the use of avatars, sending private messages, et cetera; global moderator permissions such as approving posts, manage topics, manage bans, etcetera and lastly administrator permissions such as altering permissions, define custom BBCodes, manage forums, et cetera. To alter these settings for large numbers of users the Group permissions system is the preferred method. Users permissions should only be changed in rare occasions, the preferred method is putting users in groups and assigning the groups permissions.', 'ACP_USERS_PERMISSIONS_EXPLAIN' => 'Here you can assign global permissions to users - user permissions, global moderator permissions and administrator permissions. User permissions include capabilities such as the use of avatars, sending private messages, et cetera; global moderator permissions such as approving posts, manage topics, manage bans, etcetera and lastly administrator permissions such as altering permissions, define custom BBCodes, manage forums, et cetera. To alter these settings for large numbers of users the Group permissions system is the preferred method. Users permissions should only be changed in rare occasions, the preferred method is putting users in groups and assigning the groups permissions.',
'ACP_VIEW_ADMIN_PERMISSIONS_EXPLAIN' => 'Here you can view the effective administrative permissions assigned to the selected users/groups', 'ACP_VIEW_ADMIN_PERMISSIONS_EXPLAIN' => 'Here you can view the effective administrative permissions assigned to the selected users/groups.',
'ACP_VIEW_GLOBAL_MOD_PERMISSIONS_EXPLAIN' => 'Here you can view the global moderative permissions assigned to the selected users/groups', 'ACP_VIEW_GLOBAL_MOD_PERMISSIONS_EXPLAIN' => 'Here you can view the global moderative permissions assigned to the selected users/groups.',
'ACP_VIEW_FORUM_PERMISSIONS_EXPLAIN' => 'Here you can view the forum permissions assigned to the selected users/groups and forums', 'ACP_VIEW_FORUM_PERMISSIONS_EXPLAIN' => 'Here you can view the forum permissions assigned to the selected users/groups and forums.',
'ACP_VIEW_FORUM_MOD_PERMISSIONS_EXPLAIN' => 'Here you can view the forum moderator permissions assigned to the selected users/groups and forums', 'ACP_VIEW_FORUM_MOD_PERMISSIONS_EXPLAIN' => 'Here you can view the forum moderator permissions assigned to the selected users/groups and forums.',
'ACP_VIEW_USER_PERMISSIONS_EXPLAIN' => 'Here you can view the effective user permissions assigned to the selected users/groups', 'ACP_VIEW_USER_PERMISSIONS_EXPLAIN' => 'Here you can view the effective user permissions assigned to the selected users/groups.',
'ADD_GROUPS' => 'Add groups', 'ADD_GROUPS' => 'Add groups',
'ADD_PERMISSIONS' => 'Add permissions', 'ADD_PERMISSIONS' => 'Add permissions',
@ -202,7 +202,7 @@ $lang = array_merge($lang, array(
'SELECTED_FORUM_NOT_EXIST' => 'The selected forum(s) do not exist.', 'SELECTED_FORUM_NOT_EXIST' => 'The selected forum(s) do not exist.',
'SELECTED_GROUP_NOT_EXIST' => 'The selected group(s) do not exist.', 'SELECTED_GROUP_NOT_EXIST' => 'The selected group(s) do not exist.',
'SELECTED_USER_NOT_EXIST' => 'The selected user(s) do not exist.', 'SELECTED_USER_NOT_EXIST' => 'The selected user(s) do not exist.',
'SELECT_FORUM_SUBFORUM_EXPLAIN' => 'The forum you select here will include all subforums into the selection', 'SELECT_FORUM_SUBFORUM_EXPLAIN' => 'The forum you select here will include all subforums into the selection.',
'SELECT_ROLE' => 'Select role…', 'SELECT_ROLE' => 'Select role…',
'SELECT_TYPE' => 'Select type', 'SELECT_TYPE' => 'Select type',
'SET_PERMISSIONS' => 'Set permissions', 'SET_PERMISSIONS' => 'Set permissions',

View file

@ -40,7 +40,7 @@ $lang = array_merge($lang, array(
'BBCODE_EDITED' => 'BBCode edited successfully.', 'BBCODE_EDITED' => 'BBCode edited successfully.',
'BBCODE_NOT_EXIST' => 'The BBCode you selected does not exist.', 'BBCODE_NOT_EXIST' => 'The BBCode you selected does not exist.',
'BBCODE_HELPLINE' => 'Help line', 'BBCODE_HELPLINE' => 'Help line',
'BBCODE_HELPLINE_EXPLAIN' => 'This field contains the mouse over text of the BBCode', 'BBCODE_HELPLINE_EXPLAIN' => 'This field contains the mouse over text of the BBCode.',
'BBCODE_HELPLINE_TEXT' => 'Help line text', 'BBCODE_HELPLINE_TEXT' => 'Help line text',
'BBCODE_INVALID_TAG_NAME' => 'The BBCode tag name that you selected already exists.', 'BBCODE_INVALID_TAG_NAME' => 'The BBCode tag name that you selected already exists.',
'BBCODE_OPEN_ENDED_TAG' => 'Your custom BBCode must contain both an opening and a closing tag.', 'BBCODE_OPEN_ENDED_TAG' => 'Your custom BBCode must contain both an opening and a closing tag.',
@ -49,7 +49,7 @@ $lang = array_merge($lang, array(
'BBCODE_TAG_DEF_TOO_LONG' => 'The tag definition that you have entered is too long, please shorten your tag definition.', 'BBCODE_TAG_DEF_TOO_LONG' => 'The tag definition that you have entered is too long, please shorten your tag definition.',
'BBCODE_USAGE' => 'BBCode usage', 'BBCODE_USAGE' => 'BBCode usage',
'BBCODE_USAGE_EXAMPLE' => '[hilight={COLOR}]{TEXT}[/hilight]<br /><br />[font={TEXT1}]{TEXT2}[/font]', 'BBCODE_USAGE_EXAMPLE' => '[hilight={COLOR}]{TEXT}[/hilight]<br /><br />[font={TEXT1}]{TEXT2}[/font]',
'BBCODE_USAGE_EXPLAIN' => 'Here you define how to use the bbcode. Replace any variable input by the corresponding token (%ssee below%s)', 'BBCODE_USAGE_EXPLAIN' => 'Here you define how to use the bbcode. Replace any variable input by the corresponding token (%ssee below%s).',
'EXAMPLE' => 'Example:', 'EXAMPLE' => 'Example:',
'EXAMPLES' => 'Examples:', 'EXAMPLES' => 'Examples:',
@ -60,7 +60,7 @@ $lang = array_merge($lang, array(
'TOKEN' => 'Token', 'TOKEN' => 'Token',
'TOKENS' => 'Tokens', 'TOKENS' => 'Tokens',
'TOKENS_EXPLAIN' => 'Tokens are placeholders for user input. The input will be validated only if it matches the corresponding definition. If needed, you can number them by adding a number as the last character between the braces, e.g. {USERNAME1}, {USERNAME2}.<br /><br />In addition to these tokens you can use any language string present in your language/ directory like this: {L_<em>&lt;STRINGNAME&gt;</em>} where <em>&lt;STRINGNAME&gt;</em> is the name of the translated string you want to add. For example, {L_WROTE} will be displayed as &quot;wrote&quot; or its translation according to users locale', 'TOKENS_EXPLAIN' => 'Tokens are placeholders for user input. The input will be validated only if it matches the corresponding definition. If needed, you can number them by adding a number as the last character between the braces, e.g. {USERNAME1}, {USERNAME2}.<br /><br />In addition to these tokens you can use any language string present in your language/ directory like this: {L_<em>&lt;STRINGNAME&gt;</em>} where <em>&lt;STRINGNAME&gt;</em> is the name of the translated string you want to add. For example, {L_WROTE} will be displayed as &quot;wrote&quot; or its translation according to users locale.',
'TOKEN_DEFINITION' => 'What can it be?', 'TOKEN_DEFINITION' => 'What can it be?',
'TOO_MANY_BBCODES' => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.', 'TOO_MANY_BBCODES' => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.',
@ -68,8 +68,8 @@ $lang = array_merge($lang, array(
'TEXT' => 'Any text, including foreign characters, numbers, etc…', 'TEXT' => 'Any text, including foreign characters, numbers, etc…',
'NUMBER' => 'Any series of digits', 'NUMBER' => 'Any series of digits',
'EMAIL' => 'A valid e-mail address', 'EMAIL' => 'A valid e-mail address',
'URL' => 'A valid URL using any protocol (http, ftp, etc… cannot be used for javascript exploits). If none is given, "http://" is prefixed to the string', 'URL' => 'A valid URL using any protocol (http, ftp, etc… cannot be used for javascript exploits). If none is given, "http://" is prefixed to the string.',
'LOCAL_URL' => 'A local URL. The URL must be relative to the topic page and cannot contain a server name or protocol', 'LOCAL_URL' => 'A local URL. The URL must be relative to the topic page and cannot contain a server name or protocol.',
'COLOR' => 'A HTML colour, can be either in the numeric form <samp>#FF1234</samp> or a <a href="http://www.w3.org/TR/CSS21/syndata.html#value-def-color">CSS colour keyword</a> such as <samp>fuchsia</samp> or <samp>InactiveBorder</samp>' 'COLOR' => 'A HTML colour, can be either in the numeric form <samp>#FF1234</samp> or a <a href="http://www.w3.org/TR/CSS21/syndata.html#value-def-color">CSS colour keyword</a> such as <samp>fuchsia</samp> or <samp>InactiveBorder</samp>'
) )
)); ));
@ -85,9 +85,9 @@ $lang = array_merge($lang, array(
'CODE' => 'Code', 'CODE' => 'Code',
'CURRENT_ICONS' => 'Current icons', 'CURRENT_ICONS' => 'Current icons',
'CURRENT_ICONS_EXPLAIN' => 'Choose what to do with the currently installed icons', 'CURRENT_ICONS_EXPLAIN' => 'Choose what to do with the currently installed icons.',
'CURRENT_SMILIES' => 'Current smilies', 'CURRENT_SMILIES' => 'Current smilies',
'CURRENT_SMILIES_EXPLAIN' => 'Choose what to do with the currently installed smilies', 'CURRENT_SMILIES_EXPLAIN' => 'Choose what to do with the currently installed smilies.',
'DISPLAY_ON_POSTING' => 'Display on posting', 'DISPLAY_ON_POSTING' => 'Display on posting',
@ -197,11 +197,11 @@ $lang = array_merge($lang, array(
// Disallow Usernames // Disallow Usernames
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ACP_DISALLOW_EXPLAIN' => 'Here you can control usernames which will not be allowed to be used. Disallowed usernames are allowed to contain a wildcard character of *. Please note that you will not be allowed to specify any username that has already been registered, you must first delete that name then disallow it', 'ACP_DISALLOW_EXPLAIN' => 'Here you can control usernames which will not be allowed to be used. Disallowed usernames are allowed to contain a wildcard character of *. Please note that you will not be allowed to specify any username that has already been registered, you must first delete that name then disallow it.',
'ADD_DISALLOW_EXPLAIN' => 'You can disallow a username using the wildcard character * to match any character', 'ADD_DISALLOW_EXPLAIN' => 'You can disallow a username using the wildcard character * to match any character.',
'ADD_DISALLOW_TITLE' => 'Add a disallowed username', 'ADD_DISALLOW_TITLE' => 'Add a disallowed username',
'DELETE_DISALLOW_EXPLAIN' => 'You can remove a disallowed username by selecting the username from this list and clicking submit', 'DELETE_DISALLOW_EXPLAIN' => 'You can remove a disallowed username by selecting the username from this list and clicking submit.',
'DELETE_DISALLOW_TITLE' => 'Remove a disallowed username', 'DELETE_DISALLOW_TITLE' => 'Remove a disallowed username',
'DISALLOWED_ALREADY' => 'The name you entered could not be disallowed. It either already exists in the list, exists in the word censor list, or a matching username is present.', 'DISALLOWED_ALREADY' => 'The name you entered could not be disallowed. It either already exists in the list, exists in the word censor list, or a matching username is present.',
'DISALLOWED_DELETED' => 'The disallowed username has been successfully removed.', 'DISALLOWED_DELETED' => 'The disallowed username has been successfully removed.',

View file

@ -38,7 +38,7 @@ $lang = array_merge($lang, array(
'ALWAYS_TODAY' => 'Always the current date', 'ALWAYS_TODAY' => 'Always the current date',
'BOOL_ENTRIES_EXPLAIN' => 'Enter your options now', 'BOOL_ENTRIES_EXPLAIN' => 'Enter your options now',
'BOOL_TYPE_EXPLAIN' => 'Define the type, either a checkbox or radio buttons', 'BOOL_TYPE_EXPLAIN' => 'Define the type, either a checkbox or radio buttons.',
'CHANGED_PROFILE_FIELD' => 'Successfully changed profile field.', 'CHANGED_PROFILE_FIELD' => 'Successfully changed profile field.',
'CHARS_ANY' => 'Any character', 'CHARS_ANY' => 'Any character',
@ -46,7 +46,7 @@ $lang = array_merge($lang, array(
'COLUMNS' => 'Columns', 'COLUMNS' => 'Columns',
'CP_LANG_DEFAULT_VALUE' => 'Default value', 'CP_LANG_DEFAULT_VALUE' => 'Default value',
'CP_LANG_EXPLAIN' => 'Field description', 'CP_LANG_EXPLAIN' => 'Field description',
'CP_LANG_EXPLAIN_EXPLAIN' => 'The explanation for this field presented to the user', 'CP_LANG_EXPLAIN_EXPLAIN' => 'The explanation for this field presented to the user.',
'CP_LANG_NAME' => 'Field name/title presented to the user', 'CP_LANG_NAME' => 'Field name/title presented to the user',
'CP_LANG_OPTIONS' => 'Options', 'CP_LANG_OPTIONS' => 'Options',
'CREATE_NEW_FIELD' => 'Create new field', 'CREATE_NEW_FIELD' => 'Create new field',
@ -63,7 +63,7 @@ $lang = array_merge($lang, array(
'DISPLAY_AT_REGISTER_EXPLAIN' => 'If this option is enabled, the field will be displayed on registration and able to be changed within the user control panel.', 'DISPLAY_AT_REGISTER_EXPLAIN' => 'If this option is enabled, the field will be displayed on registration and able to be changed within the user control panel.',
'DISPLAY_PROFILE_FIELD' => 'Display profile field', 'DISPLAY_PROFILE_FIELD' => 'Display profile field',
'DISPLAY_PROFILE_FIELD_EXPLAIN' => 'The profile field will be shown on viewtopic/viewprofile/memberlist, if this is enabled within the load settings. Only showing within the users profile is enabled by default.', 'DISPLAY_PROFILE_FIELD_EXPLAIN' => 'The profile field will be shown on viewtopic/viewprofile/memberlist, if this is enabled within the load settings. Only showing within the users profile is enabled by default.',
'DROPDOWN_ENTRIES_EXPLAIN' => 'Enter your options now, every option in one line', 'DROPDOWN_ENTRIES_EXPLAIN' => 'Enter your options now, every option in one line.',
'EDIT_DROPDOWN_LANG_EXPLAIN' => 'Please note that you are able to change your options text and also able to add new options to the end. It is not advised to add new options between existing options - this could result in wrong options assigned to your users. This can also happen if you remove options in-between. Removing options from the end result in users having assigned this item now reverting back to the default one.', 'EDIT_DROPDOWN_LANG_EXPLAIN' => 'Please note that you are able to change your options text and also able to add new options to the end. It is not advised to add new options between existing options - this could result in wrong options assigned to your users. This can also happen if you remove options in-between. Removing options from the end result in users having assigned this item now reverting back to the default one.',
'EMPTY_FIELD_IDENT' => 'Empty field identification', 'EMPTY_FIELD_IDENT' => 'Empty field identification',
@ -74,7 +74,7 @@ $lang = array_merge($lang, array(
'FIELD_BOOL' => 'Boolean (Yes/No)', 'FIELD_BOOL' => 'Boolean (Yes/No)',
'FIELD_DATE' => 'Date', 'FIELD_DATE' => 'Date',
'FIELD_DESCRIPTION' => 'Field description', 'FIELD_DESCRIPTION' => 'Field description',
'FIELD_DESCRIPTION_EXPLAIN' => 'The explanation for this field presented to the user', 'FIELD_DESCRIPTION_EXPLAIN' => 'The explanation for this field presented to the user.',
'FIELD_DROPDOWN' => 'Dropdown box', 'FIELD_DROPDOWN' => 'Dropdown box',
'FIELD_IDENT' => 'Field identification', 'FIELD_IDENT' => 'Field identification',
'FIELD_IDENT_ALREADY_EXIST' => 'The chosen field identification already exist. Please choose another name.', 'FIELD_IDENT_ALREADY_EXIST' => 'The chosen field identification already exist. Please choose another name.',
@ -107,7 +107,7 @@ $lang = array_merge($lang, array(
'NO_FIELD_ID' => 'No field id specified.', 'NO_FIELD_ID' => 'No field id specified.',
'NO_FIELD_TYPE' => 'No Field type specified.', 'NO_FIELD_TYPE' => 'No Field type specified.',
'NO_VALUE_OPTION' => 'Option equal to non entered value', 'NO_VALUE_OPTION' => 'Option equal to non entered value',
'NO_VALUE_OPTION_EXPLAIN' => 'Value for a non-entry. If the field is required, the user gets an error if he choose the option selected here', 'NO_VALUE_OPTION_EXPLAIN' => 'Value for a non-entry. If the field is required, the user gets an error if he choose the option selected here.',
'NUMBERS_ONLY' => 'Only numbers (0-9)', 'NUMBERS_ONLY' => 'Only numbers (0-9)',
'PREVIEW_PROFILE_FIELD' => 'Preview profile field', 'PREVIEW_PROFILE_FIELD' => 'Preview profile field',

View file

@ -63,7 +63,7 @@ $lang = array_merge($lang, array(
'FORUM_PRUNE' => 'Forum prune', 'FORUM_PRUNE' => 'Forum prune',
'NO_PRUNE' => 'No forums pruned', 'NO_PRUNE' => 'No forums pruned.',
'SELECTED_FORUM' => 'Selected forum', 'SELECTED_FORUM' => 'Selected forum',
'SELECTED_FORUMS' => 'Selected forums', 'SELECTED_FORUMS' => 'Selected forums',
@ -77,7 +77,7 @@ $lang = array_merge($lang, array(
'PRUNE_OLD_POLLS' => 'Prune old polls', 'PRUNE_OLD_POLLS' => 'Prune old polls',
'PRUNE_OLD_POLLS_EXPLAIN' => 'Removes topics with polls not voted in for post age days.', 'PRUNE_OLD_POLLS_EXPLAIN' => 'Removes topics with polls not voted in for post age days.',
'PRUNE_STICKY' => 'Prune stickies', 'PRUNE_STICKY' => 'Prune stickies',
'PRUNE_SUCCESS' => 'Pruning of forums was successful', 'PRUNE_SUCCESS' => 'Pruning of forums was successful.',
'TOPICS_PRUNED' => 'Topics pruned', 'TOPICS_PRUNED' => 'Topics pruned',
)); ));

View file

@ -291,10 +291,10 @@ $lang = array_merge($lang, array(
'NO_STYLE' => 'Cannot find style on filesystem.', 'NO_STYLE' => 'Cannot find style on filesystem.',
'NO_TEMPLATE' => 'Cannot find template on filesystem.', 'NO_TEMPLATE' => 'Cannot find template on filesystem.',
'NO_THEME' => 'Cannot find theme on filesystem.', 'NO_THEME' => 'Cannot find theme on filesystem.',
'NO_UNINSTALLED_IMAGESET' => 'No uninstalled imagesets detected', 'NO_UNINSTALLED_IMAGESET' => 'No uninstalled imagesets detected.',
'NO_UNINSTALLED_STYLE' => 'No uninstalled styles detected', 'NO_UNINSTALLED_STYLE' => 'No uninstalled styles detected.',
'NO_UNINSTALLED_TEMPLATE' => 'No uninstalled templates detected', 'NO_UNINSTALLED_TEMPLATE' => 'No uninstalled templates detected.',
'NO_UNINSTALLED_THEME' => 'No uninstalled themes detected', 'NO_UNINSTALLED_THEME' => 'No uninstalled themes detected.',
'NO_UNIT' => 'None', 'NO_UNIT' => 'None',
'ONLY_IMAGESET' => 'This is the only remaining imageset, you cannot delete it.', 'ONLY_IMAGESET' => 'This is the only remaining imageset, you cannot delete it.',

View file

@ -53,11 +53,11 @@ $lang = array_merge($lang, array(
'DELETE_POSTS' => 'Delete posts', 'DELETE_POSTS' => 'Delete posts',
'DELETE_USER' => 'Delete user', 'DELETE_USER' => 'Delete user',
'DELETE_USER_EXPLAIN' => 'Please note that deleting a user is final, they cannot be recovered', 'DELETE_USER_EXPLAIN' => 'Please note that deleting a user is final, they cannot be recovered.',
'FORCE_REACTIVATION_SUCCESS' => 'Successfully forced reactivation.', 'FORCE_REACTIVATION_SUCCESS' => 'Successfully forced reactivation.',
'FOUNDER' => 'Founder', 'FOUNDER' => 'Founder',
'FOUNDER_EXPLAIN' => 'Founders have all admin permissions and can never be banned, deleted or altered by non-founder members', 'FOUNDER_EXPLAIN' => 'Founders have all admin permissions and can never be banned, deleted or altered by non-founder members.',
'GROUP_APPROVE' => 'Approve member', 'GROUP_APPROVE' => 'Approve member',
'GROUP_DEFAULT' => 'Make group default for member', 'GROUP_DEFAULT' => 'Make group default for member',

View file

@ -98,9 +98,9 @@ $lang = array_merge($lang, array(
'BOARD_BAN_PERM' => 'You have been <strong>permanently</strong> banned from this board.<br /><br />Please contact the %2$sBoard Administrator%3$s for more information.', 'BOARD_BAN_PERM' => 'You have been <strong>permanently</strong> banned from this board.<br /><br />Please contact the %2$sBoard Administrator%3$s for more information.',
'BOARD_BAN_REASON' => 'Reason given for ban: <strong>%s</strong>', 'BOARD_BAN_REASON' => 'Reason given for ban: <strong>%s</strong>',
'BOARD_BAN_TIME' => 'You have been banned from this board until <strong>%1$s</strong>.<br /><br />Please contact the %2$sBoard Administrator%3$s for more information.', 'BOARD_BAN_TIME' => 'You have been banned from this board until <strong>%1$s</strong>.<br /><br />Please contact the %2$sBoard Administrator%3$s for more information.',
'BOARD_DISABLE' => 'Sorry but this board is currently unavailable', 'BOARD_DISABLE' => 'Sorry but this board is currently unavailable.',
'BOARD_DISABLED' => 'This board is currently disabled', 'BOARD_DISABLED' => 'This board is currently disabled.',
'BOARD_UNAVAILABLE' => 'Sorry but the board is temporarily unavailable, please try again in a few minutes', 'BOARD_UNAVAILABLE' => 'Sorry but the board is temporarily unavailable, please try again in a few minutes.',
'BROWSING_FORUM_GUEST' => 'Users browsing this forum: %1$s and %2$d guest', 'BROWSING_FORUM_GUEST' => 'Users browsing this forum: %1$s and %2$d guest',
'BROWSING_FORUM_GUESTS' => 'Users browsing this forum: %1$s and %2$d guests', 'BROWSING_FORUM_GUESTS' => 'Users browsing this forum: %1$s and %2$d guests',
'BYTES' => 'Bytes', 'BYTES' => 'Bytes',
@ -121,7 +121,7 @@ $lang = array_merge($lang, array(
'CONFIRM_CODE_WRONG' => 'The confirmation code you entered was incorrect.', 'CONFIRM_CODE_WRONG' => 'The confirmation code you entered was incorrect.',
'CONFIRM_OPERATION' => 'Are you sure you wish to carry out this operation?', 'CONFIRM_OPERATION' => 'Are you sure you wish to carry out this operation?',
'CONGRATULATIONS' => 'Congratulations to', 'CONGRATULATIONS' => 'Congratulations to',
'CONNECTION_FAILED' => 'Connection failed', 'CONNECTION_FAILED' => 'Connection failed.',
'CONNECTION_SUCCESS' => 'Connection was successful!', 'CONNECTION_SUCCESS' => 'Connection was successful!',
'COOKIES_DELETED' => 'All board cookies successfully deleted.', 'COOKIES_DELETED' => 'All board cookies successfully deleted.',
'CURRENT_TIME' => 'It is currently %s', 'CURRENT_TIME' => 'It is currently %s',
@ -153,17 +153,17 @@ $lang = array_merge($lang, array(
'EDIT_POST' => 'Edit post', 'EDIT_POST' => 'Edit post',
'EMAIL' => 'E-mail', 'EMAIL' => 'E-mail',
'EMAIL_ADDRESS' => 'E-mail address', 'EMAIL_ADDRESS' => 'E-mail address',
'EMAIL_SMTP_ERROR_RESPONSE' => 'Ran into problems sending e-mail at <strong>Line %1$s</strong>. Response: %2$s', 'EMAIL_SMTP_ERROR_RESPONSE' => 'Ran into problems sending e-mail at <strong>Line %1$s</strong>. Response: %2$s.',
'EMPTY_SUBJECT' => 'You must specify a subject when posting a new topic.', 'EMPTY_SUBJECT' => 'You must specify a subject when posting a new topic.',
'ENABLED' => 'Enabled', 'ENABLED' => 'Enabled',
'ENCLOSURE' => 'Enclosure', 'ENCLOSURE' => 'Enclosure',
'ERR_CHANGING_DIRECTORY' => 'Unable to change directory', 'ERR_CHANGING_DIRECTORY' => 'Unable to change directory.',
'ERR_CONNECTING_SERVER' => 'Error connecting to the server', 'ERR_CONNECTING_SERVER' => 'Error connecting to the server.',
'ERR_UNABLE_TO_LOGIN' => 'The specified username or password is incorrect.', 'ERR_UNABLE_TO_LOGIN' => 'The specified username or password is incorrect.',
'ERR_WRONG_PATH_TO_PHPBB' => 'The phpBB path specified appears to be invalid.', 'ERR_WRONG_PATH_TO_PHPBB' => 'The phpBB path specified appears to be invalid.',
'EXPAND_VIEW' => 'Expand view', 'EXPAND_VIEW' => 'Expand view',
'EXTENSION' => 'Extension', 'EXTENSION' => 'Extension',
'EXTENSION_DISABLED_AFTER_POSTING' => 'The extension <strong>%s</strong> has been deactivated and can no longer be displayed', 'EXTENSION_DISABLED_AFTER_POSTING' => 'The extension <strong>%s</strong> has been deactivated and can no longer be displayed.',
'FAQ' => 'FAQ', 'FAQ' => 'FAQ',
'FAQ_EXPLAIN' => 'Frequently Asked Questions', 'FAQ_EXPLAIN' => 'Frequently Asked Questions',
@ -171,13 +171,13 @@ $lang = array_merge($lang, array(
'FILESIZE' => 'File size', 'FILESIZE' => 'File size',
'FILEDATE' => 'File date', 'FILEDATE' => 'File date',
'FILE_COMMENT' => 'File comment', 'FILE_COMMENT' => 'File comment',
'FILE_NOT_FOUND' => 'The requested file could not be found', 'FILE_NOT_FOUND' => 'The requested file could not be found.',
'FIND_USERNAME' => 'Find a member', 'FIND_USERNAME' => 'Find a member',
'FOLDER' => 'Folder', 'FOLDER' => 'Folder',
'FORGOT_PASS' => 'I forgot my password', 'FORGOT_PASS' => 'I forgot my password',
'FORUM' => 'Forum', 'FORUM' => 'Forum',
'FORUMS' => 'Forums', 'FORUMS' => 'Forums',
'FORUMS_MARKED' => 'All forums have been marked read', 'FORUMS_MARKED' => 'All forums have been marked read.',
'FORUM_CAT' => 'Forum category', 'FORUM_CAT' => 'Forum category',
'FORUM_INDEX' => 'Board index', 'FORUM_INDEX' => 'Board index',
'FORUM_LINK' => 'Forum link', 'FORUM_LINK' => 'Forum link',
@ -189,30 +189,30 @@ $lang = array_merge($lang, array(
'FSOCK_DISABLED' => 'The operation could not be completed because the <var>fsockopen</var> function has been disabled or the server being queried could not be found.', 'FSOCK_DISABLED' => 'The operation could not be completed because the <var>fsockopen</var> function has been disabled or the server being queried could not be found.',
'FTP_FSOCK_HOST' => 'FTP host', 'FTP_FSOCK_HOST' => 'FTP host',
'FTP_FSOCK_HOST_EXPLAIN' => 'FTP server used to connect your site', 'FTP_FSOCK_HOST_EXPLAIN' => 'FTP server used to connect your site.',
'FTP_FSOCK_PASSWORD' => 'FTP password', 'FTP_FSOCK_PASSWORD' => 'FTP password',
'FTP_FSOCK_PASSWORD_EXPLAIN' => 'Password for your FTP username', 'FTP_FSOCK_PASSWORD_EXPLAIN' => 'Password for your FTP username.',
'FTP_FSOCK_PORT' => 'FTP port', 'FTP_FSOCK_PORT' => 'FTP port',
'FTP_FSOCK_PORT_EXPLAIN' => 'Port used to connect to your server', 'FTP_FSOCK_PORT_EXPLAIN' => 'Port used to connect to your server.',
'FTP_FSOCK_ROOT_PATH' => 'Path to phpBB', 'FTP_FSOCK_ROOT_PATH' => 'Path to phpBB',
'FTP_FSOCK_ROOT_PATH_EXPLAIN' => 'Path from the root to your phpBB board', 'FTP_FSOCK_ROOT_PATH_EXPLAIN' => 'Path from the root to your phpBB board.',
'FTP_FSOCK_TIMEOUT' => 'FTP timeout', 'FTP_FSOCK_TIMEOUT' => 'FTP timeout',
'FTP_FSOCK_TIMEOUT_EXPLAIN' => 'The amount of time, in seconds, that the system will wait for a reply from your server', 'FTP_FSOCK_TIMEOUT_EXPLAIN' => 'The amount of time, in seconds, that the system will wait for a reply from your server.',
'FTP_FSOCK_USERNAME' => 'FTP username', 'FTP_FSOCK_USERNAME' => 'FTP username',
'FTP_FSOCK_USERNAME_EXPLAIN' => 'Username used to connect to your server', 'FTP_FSOCK_USERNAME_EXPLAIN' => 'Username used to connect to your server.',
'FTP_HOST' => 'FTP host', 'FTP_HOST' => 'FTP host',
'FTP_HOST_EXPLAIN' => 'FTP server used to connect your site', 'FTP_HOST_EXPLAIN' => 'FTP server used to connect your site.',
'FTP_PASSWORD' => 'FTP password', 'FTP_PASSWORD' => 'FTP password',
'FTP_PASSWORD_EXPLAIN' => 'Password for your FTP username', 'FTP_PASSWORD_EXPLAIN' => 'Password for your FTP username.',
'FTP_PORT' => 'FTP port', 'FTP_PORT' => 'FTP port',
'FTP_PORT_EXPLAIN' => 'Port used to connect to your server', 'FTP_PORT_EXPLAIN' => 'Port used to connect to your server.',
'FTP_ROOT_PATH' => 'Path to phpBB', 'FTP_ROOT_PATH' => 'Path to phpBB',
'FTP_ROOT_PATH_EXPLAIN' => 'Path from the root to your phpBB board', 'FTP_ROOT_PATH_EXPLAIN' => 'Path from the root to your phpBB board.',
'FTP_TIMEOUT' => 'FTP timeout', 'FTP_TIMEOUT' => 'FTP timeout',
'FTP_TIMEOUT_EXPLAIN' => 'The amount of time, in seconds, that the system will wait for a reply from your server', 'FTP_TIMEOUT_EXPLAIN' => 'The amount of time, in seconds, that the system will wait for a reply from your server.',
'FTP_USERNAME' => 'FTP username', 'FTP_USERNAME' => 'FTP username',
'FTP_USERNAME_EXPLAIN' => 'Username used to connect to your server', 'FTP_USERNAME_EXPLAIN' => 'Username used to connect to your server.',
'GENERAL_ERROR' => 'General Error', 'GENERAL_ERROR' => 'General Error',
'GO' => 'Go', 'GO' => 'Go',
@ -257,14 +257,14 @@ $lang = array_merge($lang, array(
'INDEX' => 'Index page', 'INDEX' => 'Index page',
'INFORMATION' => 'Information', 'INFORMATION' => 'Information',
'INTERESTS' => 'Interests', 'INTERESTS' => 'Interests',
'INVALID_DIGEST_CHALLENGE' => 'Invalid digest challenge', 'INVALID_DIGEST_CHALLENGE' => 'Invalid digest challenge.',
'INVALID_EMAIL_LOG' => '<strong>%s</strong> possibly an invalid e-mail address?', 'INVALID_EMAIL_LOG' => '<strong>%s</strong> possibly an invalid e-mail address?',
'IP' => 'IP', 'IP' => 'IP',
'IP_BLACKLISTED' => 'Your IP %1$s has been blocked because it is blacklisted. For details please see <a href="%2$s">%2$s</a>.', 'IP_BLACKLISTED' => 'Your IP %1$s has been blocked because it is blacklisted. For details please see <a href="%2$s">%2$s</a>.',
'JABBER' => 'Jabber', 'JABBER' => 'Jabber',
'JOINED' => 'Joined', 'JOINED' => 'Joined',
'JUMP_PAGE' => 'Enter the page number you wish to go to', 'JUMP_PAGE' => 'Enter the page number you wish to go to.',
'JUMP_TO' => 'Jump to', 'JUMP_TO' => 'Jump to',
'JUMP_TO_PAGE' => 'Click to jump to page…', 'JUMP_TO_PAGE' => 'Click to jump to page…',
@ -273,17 +273,17 @@ $lang = array_merge($lang, array(
'LAST_POST' => 'Last post', 'LAST_POST' => 'Last post',
'LAST_UPDATED' => 'Last updated', 'LAST_UPDATED' => 'Last updated',
'LAST_VISIT' => 'Last visit', 'LAST_VISIT' => 'Last visit',
'LDAP_NO_LDAP_EXTENSION' => 'LDAP extension not available', 'LDAP_NO_LDAP_EXTENSION' => 'LDAP extension not available.',
'LDAP_NO_SERVER_CONNECTION' => 'Could not connect to LDAP server', 'LDAP_NO_SERVER_CONNECTION' => 'Could not connect to LDAP server.',
'LEGEND' => 'Legend', 'LEGEND' => 'Legend',
'LOCATION' => 'Location', 'LOCATION' => 'Location',
'LOCK_POST' => 'Lock post', 'LOCK_POST' => 'Lock post',
'LOCK_POST_EXPLAIN' => 'Prevent editing', 'LOCK_POST_EXPLAIN' => 'Prevent editing',
'LOCK_TOPIC' => 'Lock topic', 'LOCK_TOPIC' => 'Lock topic',
'LOGIN' => 'Login', 'LOGIN' => 'Login',
'LOGIN_CHECK_PM' => 'Log in to check your private messages', 'LOGIN_CHECK_PM' => 'Log in to check your private messages.',
'LOGIN_CONFIRMATION' => 'Confirmation of login', 'LOGIN_CONFIRMATION' => 'Confirmation of login',
'LOGIN_CONFIRM_EXPLAIN' => 'To prevent brute forcing accounts the board administrator requires you to enter a confirmation code after a maximum amount of failed logins. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.', 'LOGIN_CONFIRM_EXPLAIN' => 'To prevent brute forcing accounts the board requires you to enter a confirmation code after a maximum amount of failed logins. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.',
'LOGIN_ERROR_ATTEMPTS' => 'You exceeded the maximum allowed number of login attempts. In addition to your username and password you now also have to enter the confirm code from the image you see below.', 'LOGIN_ERROR_ATTEMPTS' => 'You exceeded the maximum allowed number of login attempts. In addition to your username and password you now also have to enter the confirm code from the image you see below.',
'LOGIN_ERROR_EXTERNAL_AUTH_APACHE' => 'You have not been authenticated by Apache.', 'LOGIN_ERROR_EXTERNAL_AUTH_APACHE' => 'You have not been authenticated by Apache.',
'LOGIN_ERROR_PASSWORD' => 'You have specified an incorrect password. Please check your password and try again. If you continue to have problems please contact the %sBoard Administrator%s.', 'LOGIN_ERROR_PASSWORD' => 'You have specified an incorrect password. Please check your password and try again. If you continue to have problems please contact the %sBoard Administrator%s.',
@ -291,7 +291,7 @@ $lang = array_merge($lang, array(
'LOGIN_ERROR_USERNAME' => 'You have specified an incorrect username. Please check your username and try again. If you continue to have problems please contact the %sBoard Administrator%s.', 'LOGIN_ERROR_USERNAME' => 'You have specified an incorrect username. Please check your username and try again. If you continue to have problems please contact the %sBoard Administrator%s.',
'LOGIN_FORUM' => 'To view or post in this forum you must enter its password.', 'LOGIN_FORUM' => 'To view or post in this forum you must enter its password.',
'LOGIN_INFO' => 'In order to login you must be registered. Registering takes only a few seconds but gives you increased capabilities. The board administrator may also grant additional permissions to registered users. Before you login please ensure you are familiar with our terms of use and related policies. Please ensure you read any forum rules as you navigate around the board.', 'LOGIN_INFO' => 'In order to login you must be registered. Registering takes only a few seconds but gives you increased capabilities. The board administrator may also grant additional permissions to registered users. Before you login please ensure you are familiar with our terms of use and related policies. Please ensure you read any forum rules as you navigate around the board.',
'LOGIN_VIEWFORUM' => 'The board administrator requires you to be registered and logged in to view this forum.', 'LOGIN_VIEWFORUM' => 'The board requires you to be registered and logged in to view this forum.',
'LOGIN_EXPLAIN_EDIT' => 'In order to edit posts in this forum you have to be registered and logged in.', 'LOGIN_EXPLAIN_EDIT' => 'In order to edit posts in this forum you have to be registered and logged in.',
'LOGOUT' => 'Logout', 'LOGOUT' => 'Logout',
'LOGOUT_USER' => 'Logout [ %s ]', 'LOGOUT_USER' => 'Logout [ %s ]',
@ -333,7 +333,7 @@ $lang = array_merge($lang, array(
'NOT_AUTHORISED' => 'You are not authorised to access this area.', 'NOT_AUTHORISED' => 'You are not authorised to access this area.',
'NOT_WATCHING_FORUM' => 'You are no longer subscribed to updates on this forum.', 'NOT_WATCHING_FORUM' => 'You are no longer subscribed to updates on this forum.',
'NOT_WATCHING_TOPIC' => 'You are no longer subscribed to this topic.', 'NOT_WATCHING_TOPIC' => 'You are no longer subscribed to this topic.',
'NOTIFY_ADMIN' => 'Please notify the board administrator or webmaster', 'NOTIFY_ADMIN' => 'Please notify the board administrator or webmaster.',
'NOTIFY_ADMIN_EMAIL' => 'Please notify the board administrator or webmaster: <a href="mailto:%1$s">%1$s</a>', 'NOTIFY_ADMIN_EMAIL' => 'Please notify the board administrator or webmaster: <a href="mailto:%1$s">%1$s</a>',
'NO_ACCESS_ATTACHMENT' => 'You are not allowed to access this file.', 'NO_ACCESS_ATTACHMENT' => 'You are not allowed to access this file.',
'NO_ACTION' => 'No action specified.', 'NO_ACTION' => 'No action specified.',
@ -343,15 +343,15 @@ $lang = array_merge($lang, array(
'NO_AUTH_OPERATION' => 'You do not have the necessary permissions to complete this operation.', 'NO_AUTH_OPERATION' => 'You do not have the necessary permissions to complete this operation.',
'NO_CONNECT_TO_SMTP_HOST' => 'Could not connect to smtp host : %1$s : %2$s', 'NO_CONNECT_TO_SMTP_HOST' => 'Could not connect to smtp host : %1$s : %2$s',
'NO_BIRTHDAYS' => 'No birthdays today', 'NO_BIRTHDAYS' => 'No birthdays today',
'NO_EMAIL_MESSAGE' => 'E-mail message was blank', 'NO_EMAIL_MESSAGE' => 'E-mail message was blank.',
'NO_EMAIL_RESPONSE_CODE' => 'Could not get mail server response codes', 'NO_EMAIL_RESPONSE_CODE' => 'Could not get mail server response codes.',
'NO_EMAIL_SUBJECT' => 'No e-mail subject specified', 'NO_EMAIL_SUBJECT' => 'No e-mail subject specified.',
'NO_FORUM' => 'The forum you selected does not exist.', 'NO_FORUM' => 'The forum you selected does not exist.',
'NO_FORUMS' => 'This board has no forums', 'NO_FORUMS' => 'This board has no forums.',
'NO_GROUP' => 'The requested usergroup does not exist.', 'NO_GROUP' => 'The requested usergroup does not exist.',
'NO_GROUP_MEMBERS' => 'This group currently has no members', 'NO_GROUP_MEMBERS' => 'This group currently has no members.',
'NO_IPS_DEFINED' => 'No IP addresses or hostnames defined', 'NO_IPS_DEFINED' => 'No IP addresses or hostnames defined',
'NO_MEMBERS' => 'No members found for this search criterion', 'NO_MEMBERS' => 'No members found for this search criterion.',
'NO_MESSAGES' => 'No messages', 'NO_MESSAGES' => 'No messages',
'NO_MODE' => 'No mode specified.', 'NO_MODE' => 'No mode specified.',
'NO_MODERATORS' => 'No moderators assigned at this board.', 'NO_MODERATORS' => 'No moderators assigned at this board.',
@ -361,9 +361,9 @@ $lang = array_merge($lang, array(
'NO_ONLINE_USERS' => 'No registered users', 'NO_ONLINE_USERS' => 'No registered users',
'NO_POSTS' => 'No posts', 'NO_POSTS' => 'No posts',
'NO_POSTS_TIME_FRAME' => 'No posts exist inside this topic for the selected time frame.', 'NO_POSTS_TIME_FRAME' => 'No posts exist inside this topic for the selected time frame.',
'NO_SUBJECT' => 'No subject specified', 'NO_SUBJECT' => 'No subject specified.',
'NO_SUCH_SEARCH_MODULE' => 'The specified search backend doesnt exist', 'NO_SUCH_SEARCH_MODULE' => 'The specified search backend doesnt exist.',
'NO_SUPPORTED_AUTH_METHODS' => 'No supported authentication methods', 'NO_SUPPORTED_AUTH_METHODS' => 'No supported authentication methods.',
'NO_TOPIC' => 'The requested topic does not exist.', 'NO_TOPIC' => 'The requested topic does not exist.',
'NO_TOPICS' => 'There are no topics or posts in this forum.', 'NO_TOPICS' => 'There are no topics or posts in this forum.',
'NO_TOPICS_TIME_FRAME' => 'No topics exist inside this forum for the selected time frame.', 'NO_TOPICS_TIME_FRAME' => 'No topics exist inside this forum for the selected time frame.',
@ -371,7 +371,7 @@ $lang = array_merge($lang, array(
'NO_UPLOAD_FORM_FOUND' => 'Upload initiated but no valid file upload form found.', 'NO_UPLOAD_FORM_FOUND' => 'Upload initiated but no valid file upload form found.',
'NO_USER' => 'The requested user does not exist.', 'NO_USER' => 'The requested user does not exist.',
'NO_USERS' => 'The requested users do not exist.', 'NO_USERS' => 'The requested users do not exist.',
'NO_USER_SPECIFIED' => 'No username was specified', 'NO_USER_SPECIFIED' => 'No username was specified.',
'OCCUPATION' => 'Occupation', 'OCCUPATION' => 'Occupation',
'OFFLINE' => 'Offline', 'OFFLINE' => 'Offline',
@ -395,7 +395,7 @@ $lang = array_merge($lang, array(
'POSTED_IN_FORUM' => 'in', 'POSTED_IN_FORUM' => 'in',
'POSTED_ON_DATE' => 'on', 'POSTED_ON_DATE' => 'on',
'POSTS' => 'Posts', 'POSTS' => 'Posts',
'POSTS_UNAPPROVED' => 'At least one post in this topic has not been approved', 'POSTS_UNAPPROVED' => 'At least one post in this topic has not been approved.',
'POST_BY_AUTHOR' => 'by', 'POST_BY_AUTHOR' => 'by',
'POST_BY_FOE' => 'This post was made by <strong>%1$s</strong> who is currently on your ignore list. %2$sDisplay this post%3$s.', 'POST_BY_FOE' => 'This post was made by <strong>%1$s</strong> who is currently on your ignore list. %2$sDisplay this post%3$s.',
'POST_DAY' => '%.2f posts per day', 'POST_DAY' => '%.2f posts per day',
@ -452,22 +452,22 @@ $lang = array_merge($lang, array(
'RETURN_PAGE' => '%sReturn to the previous page%s', 'RETURN_PAGE' => '%sReturn to the previous page%s',
'RETURN_TOPIC' => '%sReturn to the topic last visited%s', 'RETURN_TOPIC' => '%sReturn to the topic last visited%s',
'RETURN_TO' => 'Return to', 'RETURN_TO' => 'Return to',
'RULES_ATTACH_CAN' => 'You <strong>can</strong> post attachments in this forum', 'RULES_ATTACH_CAN' => 'You <strong>can</strong> post attachments in this forum.',
'RULES_ATTACH_CANNOT' => 'You <strong>cannot</strong> post attachments in this forum', 'RULES_ATTACH_CANNOT' => 'You <strong>cannot</strong> post attachments in this forum.',
'RULES_DELETE_CAN' => 'You <strong>can</strong> delete your posts in this forum', 'RULES_DELETE_CAN' => 'You <strong>can</strong> delete your posts in this forum.',
'RULES_DELETE_CANNOT' => 'You <strong>cannot</strong> delete your posts in this forum', 'RULES_DELETE_CANNOT' => 'You <strong>cannot</strong> delete your posts in this forum.',
'RULES_DOWNLOAD_CAN' => 'You <strong>can</strong> download attachments in this forum', 'RULES_DOWNLOAD_CAN' => 'You <strong>can</strong> download attachments in this forum.',
'RULES_DOWNLOAD_CANNOT' => 'You <strong>cannot</strong> download attachments in this forum', 'RULES_DOWNLOAD_CANNOT' => 'You <strong>cannot</strong> download attachments in this forum.',
'RULES_EDIT_CAN' => 'You <strong>can</strong> edit your posts in this forum', 'RULES_EDIT_CAN' => 'You <strong>can</strong> edit your posts in this forum.',
'RULES_EDIT_CANNOT' => 'You <strong>cannot</strong> edit your posts in this forum', 'RULES_EDIT_CANNOT' => 'You <strong>cannot</strong> edit your posts in this forum.',
'RULES_LOCK_CAN' => 'You <strong>can</strong> lock your topics in this forum', 'RULES_LOCK_CAN' => 'You <strong>can</strong> lock your topics in this forum.',
'RULES_LOCK_CANNOT' => 'You <strong>cannot</strong> lock your topics in this forum', 'RULES_LOCK_CANNOT' => 'You <strong>cannot</strong> lock your topics in this forum.',
'RULES_POST_CAN' => 'You <strong>can</strong> post new topics in this forum', 'RULES_POST_CAN' => 'You <strong>can</strong> post new topics in this forum.',
'RULES_POST_CANNOT' => 'You <strong>cannot</strong> post new topics in this forum', 'RULES_POST_CANNOT' => 'You <strong>cannot</strong> post new topics in this forum.',
'RULES_REPLY_CAN' => 'You <strong>can</strong> reply to topics in this forum', 'RULES_REPLY_CAN' => 'You <strong>can</strong> reply to topics in this forum.',
'RULES_REPLY_CANNOT' => 'You <strong>cannot</strong> reply to topics in this forum', 'RULES_REPLY_CANNOT' => 'You <strong>cannot</strong> reply to topics in this forum.',
'RULES_VOTE_CAN' => 'You <strong>can</strong> vote in polls in this forum', 'RULES_VOTE_CAN' => 'You <strong>can</strong> vote in polls in this forum.',
'RULES_VOTE_CANNOT' => 'You <strong>cannot</strong> vote in polls in this forum', 'RULES_VOTE_CANNOT' => 'You <strong>cannot</strong> vote in polls in this forum.',
'SEARCH' => 'Search', 'SEARCH' => 'Search',
'SEARCH_MINI' => 'Search…', 'SEARCH_MINI' => 'Search…',
@ -492,9 +492,9 @@ $lang = array_merge($lang, array(
'SETTINGS' => 'Settings', 'SETTINGS' => 'Settings',
'SIGNATURE' => 'Signature', 'SIGNATURE' => 'Signature',
'SKIP' => 'Skip to content', 'SKIP' => 'Skip to content',
'SMTP_NO_AUTH_SUPPORT' => 'SMTP server does not support authentication', 'SMTP_NO_AUTH_SUPPORT' => 'SMTP server does not support authentication.',
'SORRY_AUTH_READ' => 'You are not authorised to read this forum', 'SORRY_AUTH_READ' => 'You are not authorised to read this forum.',
'SORRY_AUTH_VIEW_ATTACH' => 'You are not authorised to download this attachment', 'SORRY_AUTH_VIEW_ATTACH' => 'You are not authorised to download this attachment.',
'SORT_BY' => 'Sort by', 'SORT_BY' => 'Sort by',
'SORT_JOINED' => 'Joined date', 'SORT_JOINED' => 'Joined date',
'SORT_LOCATION' => 'Location', 'SORT_LOCATION' => 'Location',
@ -557,7 +557,7 @@ $lang = array_merge($lang, array(
'TOPIC' => 'Topic', 'TOPIC' => 'Topic',
'TOPICS' => 'Topics', 'TOPICS' => 'Topics',
'TOPIC_ICON' => 'Topic icon', 'TOPIC_ICON' => 'Topic icon',
'TOPIC_LOCKED' => 'This topic is locked, you cannot edit posts or make further replies', 'TOPIC_LOCKED' => 'This topic is locked, you cannot edit posts or make further replies.',
'TOPIC_MOVED' => 'Moved topic', 'TOPIC_MOVED' => 'Moved topic',
'TOPIC_REVIEW' => 'Topic review', 'TOPIC_REVIEW' => 'Topic review',
'TOPIC_TITLE' => 'Topic title', 'TOPIC_TITLE' => 'Topic title',
@ -588,13 +588,13 @@ $lang = array_merge($lang, array(
'UNWATCHED_FORUMS' => 'You are no longer watching the selected forums.', 'UNWATCHED_FORUMS' => 'You are no longer watching the selected forums.',
'UNWATCHED_TOPICS' => 'You are no longer watching the selected topics.', 'UNWATCHED_TOPICS' => 'You are no longer watching the selected topics.',
'UPDATE' => 'Update', 'UPDATE' => 'Update',
'UPLOAD_IN_PROGRESS' => 'The upload is currently in progress', 'UPLOAD_IN_PROGRESS' => 'The upload is currently in progress.',
'URL_REDIRECT' => 'If your browser does not support meta redirection %splease click HERE to be redirected%s.', 'URL_REDIRECT' => 'If your browser does not support meta redirection %splease click HERE to be redirected%s.',
'USERGROUPS' => 'Groups', 'USERGROUPS' => 'Groups',
'USERNAME' => 'Username', 'USERNAME' => 'Username',
'USERNAMES' => 'Usernames', 'USERNAMES' => 'Usernames',
'USER_AVATAR' => 'User avatar', 'USER_AVATAR' => 'User avatar',
'USER_CANNOT_READ' => 'You cannot read posts in this forum', 'USER_CANNOT_READ' => 'You cannot read posts in this forum.',
'USER_POST' => '%d Post', 'USER_POST' => '%d Post',
'USER_POSTS' => '%d Posts', 'USER_POSTS' => '%d Posts',
'USERS' => 'Users', 'USERS' => 'Users',
@ -646,9 +646,9 @@ $lang = array_merge($lang, array(
'YES' => 'Yes', 'YES' => 'Yes',
'YIM' => 'YIM', 'YIM' => 'YIM',
'YOU_LAST_VISIT' => 'Last visit was: %s', 'YOU_LAST_VISIT' => 'Last visit was: %s',
'YOU_NEW_PM' => 'A new private message is waiting for you in your Inbox', 'YOU_NEW_PM' => 'A new private message is waiting for you in your Inbox.',
'YOU_NEW_PMS' => 'New private messages are waiting for you in your Inbox', 'YOU_NEW_PMS' => 'New private messages are waiting for you in your Inbox.',
'YOU_NO_NEW_PM' => 'No new private messages are waiting for you', 'YOU_NO_NEW_PM' => 'No new private messages are waiting for you.',
'datetime' => array( 'datetime' => array(
'TODAY' => 'Today', 'TODAY' => 'Today',

View file

@ -4,7 +4,7 @@ Congratulations,
You have successfully installed phpBB on your server. You have successfully installed phpBB on your server.
This e-mail contains important information on your installation that you should keep safe. The password has been encrypted in the database and cannot be recovered, although you can request a new password should you lose this one This e-mail contains important information on your installation that you should keep safe. The password has been encrypted in the database and cannot be recovered, although you can request a new password should you lose this one.
---------------------------- ----------------------------
Username: {USERNAME} Username: {USERNAME}

View file

@ -52,7 +52,7 @@ $lang = array_merge($lang, array(
'GROUP_JOIN_CONFIRM' => 'Are you sure you want to join the selected group?', 'GROUP_JOIN_CONFIRM' => 'Are you sure you want to join the selected group?',
'GROUP_JOIN_PENDING' => 'Request to join group', 'GROUP_JOIN_PENDING' => 'Request to join group',
'GROUP_JOIN_PENDING_CONFIRM' => 'Are you sure you want to request joining the selected group?', 'GROUP_JOIN_PENDING_CONFIRM' => 'Are you sure you want to request joining the selected group?',
'GROUP_JOINED' => 'Successfully joined selected group', 'GROUP_JOINED' => 'Successfully joined selected group.',
'GROUP_JOINED_PENDING' => 'Successfully requested group membership. Please wait for a group leader to approve your membership.', 'GROUP_JOINED_PENDING' => 'Successfully requested group membership. Please wait for a group leader to approve your membership.',
'GROUP_LIST' => 'Manage users', 'GROUP_LIST' => 'Manage users',
'GROUP_MEMBERS' => 'Group members', 'GROUP_MEMBERS' => 'Group members',
@ -63,15 +63,15 @@ $lang = array_merge($lang, array(
'GROUP_RESIGN_MEMBERSHIP_CONFIRM' => 'Are you sure you want to resign your membership from the selected group?', 'GROUP_RESIGN_MEMBERSHIP_CONFIRM' => 'Are you sure you want to resign your membership from the selected group?',
'GROUP_RESIGN_PENDING' => 'Resign a pending group membership', 'GROUP_RESIGN_PENDING' => 'Resign a pending group membership',
'GROUP_RESIGN_PENDING_CONFIRM' => 'Are you sure you want to resign your pending membership from the selected group?', 'GROUP_RESIGN_PENDING_CONFIRM' => 'Are you sure you want to resign your pending membership from the selected group?',
'GROUP_RESIGNED_MEMBERSHIP' => 'You were successfully removed from the selected group', 'GROUP_RESIGNED_MEMBERSHIP' => 'You were successfully removed from the selected group.',
'GROUP_RESIGNED_PENDING' => 'Your pending membership was successfully removed from the selected group', 'GROUP_RESIGNED_PENDING' => 'Your pending membership was successfully removed from the selected group.',
'GROUP_TYPE' => 'Group type', 'GROUP_TYPE' => 'Group type',
'GROUP_UNDISCLOSED' => 'Hidden group', 'GROUP_UNDISCLOSED' => 'Hidden group',
'FORUM_UNDISCLOSED' => 'Moderating hidden forum(s)', 'FORUM_UNDISCLOSED' => 'Moderating hidden forum(s)',
'LOGIN_EXPLAIN_GROUP' => 'You need to login to view group details', 'LOGIN_EXPLAIN_GROUP' => 'You need to login to view group details.',
'NO_LEADERS' => 'You are not a leader of any group', 'NO_LEADERS' => 'You are not a leader of any group.',
'NOT_LEADER_OF_GROUP' => 'The requested operation cannot be taken because you are not a leader of the selected group.', 'NOT_LEADER_OF_GROUP' => 'The requested operation cannot be taken because you are not a leader of the selected group.',
'NOT_MEMBER_OF_GROUP' => 'The requested operation cannot be taken because you are not a member of the selected group or your membership has not been approved yet.', 'NOT_MEMBER_OF_GROUP' => 'The requested operation cannot be taken because you are not a member of the selected group or your membership has not been approved yet.',
'NOT_RESIGN_FROM_DEFAULT_GROUP' => 'You are not allowed to resign from your default group.', 'NOT_RESIGN_FROM_DEFAULT_GROUP' => 'You are not allowed to resign from your default group.',

View file

@ -34,10 +34,10 @@ $lang = array_merge($lang, array(
'ADMIN_CONFIG' => 'Administrator configuration', 'ADMIN_CONFIG' => 'Administrator configuration',
'ADMIN_PASSWORD' => 'Administrator password', 'ADMIN_PASSWORD' => 'Administrator password',
'ADMIN_PASSWORD_CONFIRM' => 'Confirm administrator password', 'ADMIN_PASSWORD_CONFIRM' => 'Confirm administrator password',
'ADMIN_PASSWORD_EXPLAIN' => '(Please enter a password between 6 and 30 characters in length)', 'ADMIN_PASSWORD_EXPLAIN' => '(Please enter a password between 6 and 30 characters in length.)',
'ADMIN_TEST' => 'Check administrator settings', 'ADMIN_TEST' => 'Check administrator settings',
'ADMIN_USERNAME' => 'Administrator username', 'ADMIN_USERNAME' => 'Administrator username',
'ADMIN_USERNAME_EXPLAIN' => '(Please enter a username between 3 and 20 characters in length)', 'ADMIN_USERNAME_EXPLAIN' => '(Please enter a username between 3 and 20 characters in length.)',
'APP_MAGICK' => 'Imagemagick support [ Attachments ]', 'APP_MAGICK' => 'Imagemagick support [ Attachments ]',
'AUTHOR_NOTES' => 'Author notes<br />» %s', 'AUTHOR_NOTES' => 'Author notes<br />» %s',
'AVAILABLE' => 'Available', 'AVAILABLE' => 'Available',
@ -62,8 +62,8 @@ $lang = array_merge($lang, array(
'COLLIDING_USERNAMES_FOUND' => 'Colliding usernames were found on your old board. In order to complete the conversion please delete or rename these users so that there is only one user on your old board for each clean username.', 'COLLIDING_USERNAMES_FOUND' => 'Colliding usernames were found on your old board. In order to complete the conversion please delete or rename these users so that there is only one user on your old board for each clean username.',
'COLLIDING_USER' => '» user id: <strong>%d</strong> username: <strong>%s</strong> (%d posts)', 'COLLIDING_USER' => '» user id: <strong>%d</strong> username: <strong>%s</strong> (%d posts)',
'CONFIG_CONVERT' => 'Converting the configuration', 'CONFIG_CONVERT' => 'Converting the configuration',
'CONFIG_FILE_UNABLE_WRITE' => 'It was not possible to write the configuration file. Alternative methods for this file to be created are presented below', 'CONFIG_FILE_UNABLE_WRITE' => 'It was not possible to write the configuration file. Alternative methods for this file to be created are presented below.',
'CONFIG_FILE_WRITTEN' => 'The configuration file has been written. You may now proceed to the next step of the installation', 'CONFIG_FILE_WRITTEN' => 'The configuration file has been written. You may now proceed to the next step of the installation.',
'CONFIG_PHPBB_EMPTY' => 'The phpBB3 config variable for "%s" is empty.', 'CONFIG_PHPBB_EMPTY' => 'The phpBB3 config variable for "%s" is empty.',
'CONFIG_RETRY' => 'Retry', 'CONFIG_RETRY' => 'Retry',
'CONTACT_EMAIL_CONFIRM' => 'Confirm contact e-mail', 'CONTACT_EMAIL_CONFIRM' => 'Confirm contact e-mail',
@ -73,11 +73,11 @@ $lang = array_merge($lang, array(
'CONTINUE_OLD_CONVERSION' => 'Continue previously started conversion', 'CONTINUE_OLD_CONVERSION' => 'Continue previously started conversion',
'CONVERT' => 'Convert', 'CONVERT' => 'Convert',
'CONVERT_COMPLETE' => 'Conversion completed', 'CONVERT_COMPLETE' => 'Conversion completed',
'CONVERT_COMPLETE_EXPLAIN' => 'You have now successfully converted your board to phpBB 3.0. You can now login and <a href="../">access your forum</a>. Remember that help on using phpBB is available online via the <a href="http://www.phpbb.com/support/documentation/3.0/">Documentation</a> and the <a href="http://www.phpbb.com/phpBB/viewforum.php?f=46">Beta support forum</a>', 'CONVERT_COMPLETE_EXPLAIN' => 'You have now successfully converted your board to phpBB 3.0. You can now login and <a href="../">access your forum</a>. Remember that help on using phpBB is available online via the <a href="http://www.phpbb.com/support/documentation/3.0/">Documentation</a> and the <a href="http://www.phpbb.com/phpBB/viewforum.php?f=46">Beta support forum</a>.',
'CONVERT_INTRO' => 'Welcome to the phpBB Unified Convertor Framework', 'CONVERT_INTRO' => 'Welcome to the phpBB Unified Convertor Framework',
'CONVERT_INTRO_BODY' => 'From here, you are able to import data from other (installed) forum systems. The list below shows all the conversion modules currently available. If there is no convertor shown in this list for the forum software you wish to convert from, please check our website where further conversion modules may be available for download.', 'CONVERT_INTRO_BODY' => 'From here, you are able to import data from other (installed) forum systems. The list below shows all the conversion modules currently available. If there is no convertor shown in this list for the forum software you wish to convert from, please check our website where further conversion modules may be available for download.',
'CONVERT_NEW_CONVERSION' => 'New conversion', 'CONVERT_NEW_CONVERSION' => 'New conversion',
'CONVERT_NOT_EXIST' => 'The specified convertor does not exist', 'CONVERT_NOT_EXIST' => 'The specified convertor does not exist.',
'CONVERT_SETTINGS_VERIFIED' => 'The information you entered has been verified. To start the conversion process, push the button below to begin.', 'CONVERT_SETTINGS_VERIFIED' => 'The information you entered has been verified. To start the conversion process, push the button below to begin.',
'CONV_ERR_FATAL' => 'Fatal conversion error', 'CONV_ERR_FATAL' => 'Fatal conversion error',
@ -108,17 +108,17 @@ $lang = array_merge($lang, array(
'CONV_ERROR_WRONG_GROUP' => 'Wrong group "%1$s" defined in %2$s.', 'CONV_ERROR_WRONG_GROUP' => 'Wrong group "%1$s" defined in %2$s.',
'CONV_SAVED_MESSAGES' => 'Saved messages', 'CONV_SAVED_MESSAGES' => 'Saved messages',
'COULD_NOT_COPY' => 'Could not copy file <strong>%1$s</strong> to <strong>%2$s</strong><br /><br />Please check that the target directory exists and is writable by the webserver', 'COULD_NOT_COPY' => 'Could not copy file <strong>%1$s</strong> to <strong>%2$s</strong><br /><br />Please check that the target directory exists and is writable by the webserver.',
'COULD_NOT_FIND_PATH' => 'Could not find path to your former forum. Please check your settings and try again.<br />» Specified source path was %s', 'COULD_NOT_FIND_PATH' => 'Could not find path to your former forum. Please check your settings and try again.<br />» Specified source path was %s.',
'DBMS' => 'Database type', 'DBMS' => 'Database type',
'DB_CONFIG' => 'Database configuration', 'DB_CONFIG' => 'Database configuration',
'DB_CONNECTION' => 'Database connection', 'DB_CONNECTION' => 'Database connection',
'DB_ERR_INSERT' => 'Error while processing <code>INSERT</code> query', 'DB_ERR_INSERT' => 'Error while processing <code>INSERT</code> query.',
'DB_ERR_LAST' => 'Error while processing <var>query_last</var>', 'DB_ERR_LAST' => 'Error while processing <var>query_last</var>.',
'DB_ERR_QUERY_FIRST' => 'Error while executing <var>query_first</var>', 'DB_ERR_QUERY_FIRST' => 'Error while executing <var>query_first</var>.',
'DB_ERR_QUERY_FIRST_TABLE' => 'Error while executing <var>query_first</var>, %s ("%s")', 'DB_ERR_QUERY_FIRST_TABLE' => 'Error while executing <var>query_first</var>, %s ("%s").',
'DB_ERR_SELECT' => 'Error while running <code>SELECT</code> query', 'DB_ERR_SELECT' => 'Error while running <code>SELECT</code> query.',
'DB_HOST' => 'Database server hostname or DSN', 'DB_HOST' => 'Database server hostname or DSN',
'DB_HOST_EXPLAIN' => 'DSN stands for Data Source Name and is relevant only for ODBC installs.', 'DB_HOST_EXPLAIN' => 'DSN stands for Data Source Name and is relevant only for ODBC installs.',
'DB_NAME' => 'Database name', 'DB_NAME' => 'Database name',
@ -128,7 +128,7 @@ $lang = array_merge($lang, array(
'DB_USERNAME' => 'Database username', 'DB_USERNAME' => 'Database username',
'DB_TEST' => 'Test connection', 'DB_TEST' => 'Test connection',
'DEFAULT_LANG' => 'Default board language', 'DEFAULT_LANG' => 'Default board language',
'DEFAULT_PREFIX_IS' => 'The convertor was not able to find tables with the specified prefix. Please make sure you have entered the correct details for the forum you are converting from. The default table prefix for %1$s is <strong>%2$s</strong>', 'DEFAULT_PREFIX_IS' => 'The convertor was not able to find tables with the specified prefix. Please make sure you have entered the correct details for the forum you are converting from. The default table prefix for %1$s is <strong>%2$s</strong>.',
'DEV_NO_TEST_FILE' => 'No value has been specified for the test_file variable in the convertor. If you are a user of this convertor, you should not be seeing this error, please report this message to the convertor author. If you are a convertor author, you must specify the name of a file which exists in the source forum to allow the path to it to be verified.', 'DEV_NO_TEST_FILE' => 'No value has been specified for the test_file variable in the convertor. If you are a user of this convertor, you should not be seeing this error, please report this message to the convertor author. If you are a convertor author, you must specify the name of a file which exists in the source forum to allow the path to it to be verified.',
'DIRECTORIES_AND_FILES' => 'Directory and file setup', 'DIRECTORIES_AND_FILES' => 'Directory and file setup',
'DISABLE_KEYS' => 'Disabling keys', 'DISABLE_KEYS' => 'Disabling keys',
@ -150,7 +150,7 @@ $lang = array_merge($lang, array(
'DL_DOWNLOAD' => 'Download', 'DL_DOWNLOAD' => 'Download',
'DONE' => 'Done', 'DONE' => 'Done',
'ENABLE_KEYS' => 'Re-enabling keys. This can take a while', 'ENABLE_KEYS' => 'Re-enabling keys. This can take a while.',
'FILES_OPTIONAL' => 'Optional files and directories', 'FILES_OPTIONAL' => 'Optional files and directories',
'FILES_OPTIONAL_EXPLAIN' => '<strong>Optional</strong> - These files, directories or permission settings are not required. The installation system will attempt to use various techniques to create them if they do not exist or cannot be written to. However, the presence of these will speed installation.', 'FILES_OPTIONAL_EXPLAIN' => '<strong>Optional</strong> - These files, directories or permission settings are not required. The installation system will attempt to use various techniques to create them if they do not exist or cannot be written to. However, the presence of these will speed installation.',
@ -162,12 +162,12 @@ $lang = array_merge($lang, array(
'FORUM_ADDRESS' => 'Forum address', 'FORUM_ADDRESS' => 'Forum address',
'FORUM_ADDRESS_EXPLAIN' => 'This is the URL of your former forum, for example <samp>http://www.example.com/phpBB2/</samp>. If an address is entered here and not left empty every instance of this address will be replaced by your new forum address within messages, private messages and signatures.', 'FORUM_ADDRESS_EXPLAIN' => 'This is the URL of your former forum, for example <samp>http://www.example.com/phpBB2/</samp>. If an address is entered here and not left empty every instance of this address will be replaced by your new forum address within messages, private messages and signatures.',
'FORUM_PATH' => 'Forum path', 'FORUM_PATH' => 'Forum path',
'FORUM_PATH_EXPLAIN' => 'This is the <strong>relative</strong> path on disk to your former forum from the <strong>root of your phpBB install</strong>', 'FORUM_PATH_EXPLAIN' => 'This is the <strong>relative</strong> path on disk to your former forum from the <strong>root of your phpBB install</strong>.',
'FOUND' => 'Found', 'FOUND' => 'Found',
'FTP_CONFIG' => 'Transfer config by FTP', 'FTP_CONFIG' => 'Transfer config by FTP',
'FTP_CONFIG_EXPLAIN' => 'phpBB has detected the presence of the FTP module on this server. You may attempt to install your config.php via this if you wish. You will need to supply the information listed below. Remember your username and password are those to your server! (ask your hosting provider for details if you are unsure what these are)', 'FTP_CONFIG_EXPLAIN' => 'phpBB has detected the presence of the FTP module on this server. You may attempt to install your config.php via this if you wish. You will need to supply the information listed below. Remember your username and password are those to your server! (ask your hosting provider for details if you are unsure what these are).',
'FTP_PATH' => 'FTP path', 'FTP_PATH' => 'FTP path',
'FTP_PATH_EXPLAIN' => 'This is the path from your root directory to that of phpBB, e.g. htdocs/phpBB3/', 'FTP_PATH_EXPLAIN' => 'This is the path from your root directory to that of phpBB, e.g. <samp>htdocs/phpBB3/</samp>.',
'FTP_UPLOAD' => 'Upload', 'FTP_UPLOAD' => 'Upload',
'GPL' => 'General Public License', 'GPL' => 'General Public License',
@ -199,29 +199,29 @@ $lang = array_merge($lang, array(
'INSTALL_START' => 'Start install', 'INSTALL_START' => 'Start install',
'INSTALL_TEST' => 'Test again', 'INSTALL_TEST' => 'Test again',
'INST_ERR' => 'Installation error', 'INST_ERR' => 'Installation error',
'INST_ERR_DB_CONNECT' => 'Could not connect to the database, see error message below', 'INST_ERR_DB_CONNECT' => 'Could not connect to the database, see error message below.',
'INST_ERR_DB_FORUM_PATH' => 'The database file specified is within your forum directory tree. You should put this file in a non web-accessible location', 'INST_ERR_DB_FORUM_PATH' => 'The database file specified is within your forum directory tree. You should put this file in a non web-accessible location.',
'INST_ERR_DB_NO_ERROR' => 'No error message given', 'INST_ERR_DB_NO_ERROR' => 'No error message given.',
'INST_ERR_DB_NO_MYSQLI' => 'The version of MySQL installed on this machine is incompatible with the “MySQL with MySQLi Extension” option you have selected. Please try the “MySQL” option instead.', 'INST_ERR_DB_NO_MYSQLI' => 'The version of MySQL installed on this machine is incompatible with the “MySQL with MySQLi Extension” option you have selected. Please try the “MySQL” option instead.',
'INST_ERR_DB_NO_SQLITE' => 'The version of the SQLite extension you have installed is too old, it must be upgraded to at least 2.8.2.', 'INST_ERR_DB_NO_SQLITE' => 'The version of the SQLite extension you have installed is too old, it must be upgraded to at least 2.8.2.',
'INST_ERR_DB_NO_ORACLE' => 'The version of Oracle installed on this machine requires you to set the <var>NLS_CHARACTERSET</var> parameter to <var>UTF8</var>. Either upgrade your installation to 9.2+ or change the parameter.', 'INST_ERR_DB_NO_ORACLE' => 'The version of Oracle installed on this machine requires you to set the <var>NLS_CHARACTERSET</var> parameter to <var>UTF8</var>. Either upgrade your installation to 9.2+ or change the parameter.',
'INST_ERR_DB_NO_FIREBIRD' => 'The version of Firebird installed on this machine is older than 2.0, please upgrade to a newer version.', 'INST_ERR_DB_NO_FIREBIRD' => 'The version of Firebird installed on this machine is older than 2.0, please upgrade to a newer version.',
'INST_ERR_DB_NO_FIREBIRD_PS'=> 'The database you selected for Firebird has a page size less than 8192, it must be at least 8192.', 'INST_ERR_DB_NO_FIREBIRD_PS'=> 'The database you selected for Firebird has a page size less than 8192, it must be at least 8192.',
'INST_ERR_DB_NO_POSTGRES' => 'The database you have selected was not created in <var>UNICODE</var> or <var>UTF8</var> encoding. Try installing with a database in <var>UNICODE</var> or <var>UTF8</var> encoding', 'INST_ERR_DB_NO_POSTGRES' => 'The database you have selected was not created in <var>UNICODE</var> or <var>UTF8</var> encoding. Try installing with a database in <var>UNICODE</var> or <var>UTF8</var> encoding.',
'INST_ERR_DB_NO_NAME' => 'No database name specified', 'INST_ERR_DB_NO_NAME' => 'No database name specified.',
'INST_ERR_EMAIL_INVALID' => 'The e-mail address you entered is invalid', 'INST_ERR_EMAIL_INVALID' => 'The e-mail address you entered is invalid.',
'INST_ERR_EMAIL_MISMATCH' => 'The e-mails you entered did not match.', 'INST_ERR_EMAIL_MISMATCH' => 'The e-mails you entered did not match.',
'INST_ERR_FATAL' => 'Fatal installation error', 'INST_ERR_FATAL' => 'Fatal installation error',
'INST_ERR_FATAL_DB' => 'A fatal and unrecoverable database error has occurred. This may be because the specified user does not have appropriate rights to <code>CREATE TABLES</code> or <code>INSERT</code> data, etc. Further information may be given below. Please contact your hosting provider in the first instance or the support forums of phpBB for further assistance.', 'INST_ERR_FATAL_DB' => 'A fatal and unrecoverable database error has occurred. This may be because the specified user does not have appropriate rights to <code>CREATE TABLES</code> or <code>INSERT</code> data, etc. Further information may be given below. Please contact your hosting provider in the first instance or the support forums of phpBB for further assistance.',
'INST_ERR_FTP_PATH' => 'Could not change to the given directory, please check the path.', 'INST_ERR_FTP_PATH' => 'Could not change to the given directory, please check the path.',
'INST_ERR_FTP_LOGIN' => 'Could not login to FTP server, check your username and password', 'INST_ERR_FTP_LOGIN' => 'Could not login to FTP server, check your username and password.',
'INST_ERR_MISSING_DATA' => 'You must fill out all fields in this block', 'INST_ERR_MISSING_DATA' => 'You must fill out all fields in this block.',
'INST_ERR_NO_DB' => 'Cannot load the PHP module for the selected database type', 'INST_ERR_NO_DB' => 'Cannot load the PHP module for the selected database type.',
'INST_ERR_PASSWORD_MISMATCH' => 'The passwords you entered did not match.', 'INST_ERR_PASSWORD_MISMATCH' => 'The passwords you entered did not match.',
'INST_ERR_PASSWORD_TOO_LONG' => 'The password you entered is too long. The maximum length is 30 characters.', 'INST_ERR_PASSWORD_TOO_LONG' => 'The password you entered is too long. The maximum length is 30 characters.',
'INST_ERR_PASSWORD_TOO_SHORT' => 'The password you entered is too short. The minimum length is 6 characters.', 'INST_ERR_PASSWORD_TOO_SHORT' => 'The password you entered is too short. The minimum length is 6 characters.',
'INST_ERR_PREFIX' => 'Tables with the specified prefix already exist, please choose an alternative.', 'INST_ERR_PREFIX' => 'Tables with the specified prefix already exist, please choose an alternative.',
'INST_ERR_PREFIX_INVALID' => 'The table prefix you have specified is invalid for your database. Please try another, removing characters such as the hyphen', 'INST_ERR_PREFIX_INVALID' => 'The table prefix you have specified is invalid for your database. Please try another, removing characters such as the hyphen.',
'INST_ERR_PREFIX_TOO_LONG' => 'The table prefix you have specified is too long. The maximum length is %d characters.', 'INST_ERR_PREFIX_TOO_LONG' => 'The table prefix you have specified is too long. The maximum length is %d characters.',
'INST_ERR_USER_TOO_LONG' => 'The username you entered is too long. The maximum length is 20 characters.', 'INST_ERR_USER_TOO_LONG' => 'The username you entered is too long. The maximum length is 20 characters.',
'INST_ERR_USER_TOO_SHORT' => 'The username you entered is too short. The minimum length is 3 characters.', 'INST_ERR_USER_TOO_SHORT' => 'The username you entered is too short. The minimum length is 3 characters.',
@ -231,29 +231,29 @@ $lang = array_merge($lang, array(
'MBSTRING_CHECK' => '<samp>mbstring</samp> extension check', 'MBSTRING_CHECK' => '<samp>mbstring</samp> extension check',
'MBSTRING_CHECK_EXPLAIN' => '<strong>Required</strong> - <samp>mbstring</samp> is a PHP extension that provides multibyte string functions. Certain features of mbstring are not compatible with phpBB and must be disabled.', 'MBSTRING_CHECK_EXPLAIN' => '<strong>Required</strong> - <samp>mbstring</samp> is a PHP extension that provides multibyte string functions. Certain features of mbstring are not compatible with phpBB and must be disabled.',
'MBSTRING_FUNC_OVERLOAD' => 'Function overloading', 'MBSTRING_FUNC_OVERLOAD' => 'Function overloading',
'MBSTRING_FUNC_OVERLOAD_EXPLAIN' => '<var>mbstring.func_overload</var> must be set to either 0 or 4', 'MBSTRING_FUNC_OVERLOAD_EXPLAIN' => '<var>mbstring.func_overload</var> must be set to either 0 or 4.',
'MBSTRING_ENCODING_TRANSLATION' => 'Transparent character encoding', 'MBSTRING_ENCODING_TRANSLATION' => 'Transparent character encoding',
'MBSTRING_ENCODING_TRANSLATION_EXPLAIN' => '<var>mbstring.encoding_translation</var> must be set to 0', 'MBSTRING_ENCODING_TRANSLATION_EXPLAIN' => '<var>mbstring.encoding_translation</var> must be set to 0.',
'MBSTRING_HTTP_INPUT' => 'HTTP input character conversion', 'MBSTRING_HTTP_INPUT' => 'HTTP input character conversion',
'MBSTRING_HTTP_INPUT_EXPLAIN' => '<var>mbstring.http_input</var> must be set to <samp>pass</samp>', 'MBSTRING_HTTP_INPUT_EXPLAIN' => '<var>mbstring.http_input</var> must be set to <samp>pass</samp>.',
'MBSTRING_HTTP_OUTPUT' => 'HTTP output character conversion', 'MBSTRING_HTTP_OUTPUT' => 'HTTP output character conversion',
'MBSTRING_HTTP_OUTPUT_EXPLAIN' => '<var>mbstring.http_output</var> must be set to <samp>pass</samp>', 'MBSTRING_HTTP_OUTPUT_EXPLAIN' => '<var>mbstring.http_output</var> must be set to <samp>pass</samp>.',
'MAKE_FOLDER_WRITABLE' => 'Please make sure that this folder exists and is writable by the webserver then try again:<br />»<strong>%s</strong>', 'MAKE_FOLDER_WRITABLE' => 'Please make sure that this folder exists and is writable by the webserver then try again:<br />»<strong>%s</strong>.',
'MAKE_FOLDERS_WRITABLE' => 'Please make sure that these folders exist and are writable by the webserver then try again:<br />»<strong>%s</strong>', 'MAKE_FOLDERS_WRITABLE' => 'Please make sure that these folders exist and are writable by the webserver then try again:<br />»<strong>%s</strong>.',
'NAMING_CONFLICT' => 'Naming conflict: %s and %s are both aliases<br /><br />%s', 'NAMING_CONFLICT' => 'Naming conflict: %s and %s are both aliases<br /><br />%s',
'NEXT_STEP' => 'Proceed to next step', 'NEXT_STEP' => 'Proceed to next step',
'NOT_FOUND' => 'Cannot find', 'NOT_FOUND' => 'Cannot find',
'NOT_UNDERSTAND' => 'Could not understand %s #%d, table %s ("%s")', 'NOT_UNDERSTAND' => 'Could not understand %s #%d, table %s ("%s")',
'NO_CONVERTORS' => 'No convertors are available for use', 'NO_CONVERTORS' => 'No convertors are available for use.',
'NO_CONVERT_SPECIFIED' => 'No convertor specified', 'NO_CONVERT_SPECIFIED' => 'No convertor specified.',
'NO_LOCATION' => 'Cannot determine location. If you know Imagemagick is installed, you may specify the location later within your Administration Panel', 'NO_LOCATION' => 'Cannot determine location. If you know Imagemagick is installed, you may specify the location later within your Administration Panel',
'NO_TABLES_FOUND' => 'No tables found.', 'NO_TABLES_FOUND' => 'No tables found.',
// TODO: Write some explanatory introduction text // TODO: Write some explanatory introduction text
'OVERVIEW_BODY' => 'Welcome to our public beta of the next-generation of phpBB after 2.0.x, phpBB 3.0! This beta release is intended for advanced users to try out on dedicated development environments to help us finish creating the best Opensource Bulletin Board solution available.</p><p><strong style="text-transform: uppercase;">Note:</strong> This release is <strong style="text-transform: uppercase;">not final</strong> and made available for testing purposes <strong style="text-transform: uppercase;">only</strong>.</p><p>This installation system will guide you through the process of installing phpBB, converting from a different software package or updating to the latest version of phpBB. For more information on each option, select it from the menu above.', 'OVERVIEW_BODY' => 'Welcome to our public beta of the next-generation of phpBB after 2.0.x, phpBB 3.0! This beta release is intended for advanced users to try out on dedicated development environments to help us finish creating the best Opensource Bulletin Board solution available.</p><p><strong style="text-transform: uppercase;">Note:</strong> This release is <strong style="text-transform: uppercase;">not final</strong> and made available for testing purposes <strong style="text-transform: uppercase;">only</strong>.</p><p>This installation system will guide you through the process of installing phpBB, converting from a different software package or updating to the latest version of phpBB. For more information on each option, select it from the menu above.',
'PCRE_UTF_SUPPORT' => 'PCRE UTF-8 support', 'PCRE_UTF_SUPPORT' => 'PCRE UTF-8 support',
'PCRE_UTF_SUPPORT_EXPLAIN' => 'phpBB will <strong>not</strong> run if your PHP installation is not compiled with UTF-8 support in the PCRE extension', 'PCRE_UTF_SUPPORT_EXPLAIN' => 'phpBB will <strong>not</strong> run if your PHP installation is not compiled with UTF-8 support in the PCRE extension.',
'PHP_OPTIONAL_MODULE' => 'Optional modules', 'PHP_OPTIONAL_MODULE' => 'Optional modules',
'PHP_OPTIONAL_MODULE_EXPLAIN' => '<strong>Optional</strong> - These modules or applications are optional. However, if they are available they will enable extra features.', 'PHP_OPTIONAL_MODULE_EXPLAIN' => '<strong>Optional</strong> - These modules or applications are optional. However, if they are available they will enable extra features.',
'PHP_SUPPORTED_DB' => 'Supported databases', 'PHP_SUPPORTED_DB' => 'Supported databases',
@ -279,7 +279,7 @@ $lang = array_merge($lang, array(
'RETRY_WRITE_EXPLAIN' => 'If you wish you can change the permissions on config.php to allow phpBB to write to it. Should you wish to do that you can click Retry below to try again. Remember to return the permissions on config.php after phpBB has finished installation.', 'RETRY_WRITE_EXPLAIN' => 'If you wish you can change the permissions on config.php to allow phpBB to write to it. Should you wish to do that you can click Retry below to try again. Remember to return the permissions on config.php after phpBB has finished installation.',
'SCRIPT_PATH' => 'Script path', 'SCRIPT_PATH' => 'Script path',
'SCRIPT_PATH_EXPLAIN' => 'The path where phpBB is located relative to the domain name, e.g. <samp>/phpBB3</samp>', 'SCRIPT_PATH_EXPLAIN' => 'The path where phpBB is located relative to the domain name, e.g. <samp>/phpBB3</samp>.',
'SELECT_LANG' => 'Select language', 'SELECT_LANG' => 'Select language',
'SERVER_CONFIG' => 'Server configuration', 'SERVER_CONFIG' => 'Server configuration',
'SEARCH_INDEX_UNCONVERTED' => 'Search index was not converted', 'SEARCH_INDEX_UNCONVERTED' => 'Search index was not converted',
@ -305,18 +305,18 @@ $lang = array_merge($lang, array(
'SUB_SUPPORT' => 'Support', 'SUB_SUPPORT' => 'Support',
'SUCCESSFUL_CONNECT' => 'Successful connection', 'SUCCESSFUL_CONNECT' => 'Successful connection',
// TODO: Write some text on obtaining support // TODO: Write some text on obtaining support
'SUPPORT_BODY' => 'During the beta phase a minimal level of support will be given at <a href="http://www.phpbb.com/phpBB/viewforum.php?f=46">the phpBB 3.0 Beta support forum</a>. We will provide answers to general setup questions, configuration problems and support for determining common problems mostly related to bugs. We will not support modifications, custom code/style additions or any users using the beta packages within a live environment.</p><p>For additional assistance, please refer to our <a href="http://www.phpbb.com/support/documentation/3.0/quickstart/">Quick Start Guide</a>.</p><p>To ensure you stay up to date with the latest news and releases, why not <a href="http://www.phpbb.com/support/">subscribe to our mailing list</a>', 'SUPPORT_BODY' => 'During the beta phase a minimal level of support will be given at <a href="http://www.phpbb.com/phpBB/viewforum.php?f=46">the phpBB 3.0 Beta support forum</a>. We will provide answers to general setup questions, configuration problems and support for determining common problems mostly related to bugs. We will not support modifications, custom code/style additions or any users using the beta packages within a live environment.</p><p>For additional assistance, please refer to our <a href="http://www.phpbb.com/support/documentation/3.0/quickstart/">Quick Start Guide</a>.</p><p>To ensure you stay up to date with the latest news and releases, why not <a href="http://www.phpbb.com/support/">subscribe to our mailing list</a>.',
'SYNC_FORUMS' => 'Starting to sync forums', 'SYNC_FORUMS' => 'Starting to sync forums',
'SYNC_TOPICS' => 'Starting to sync topics', 'SYNC_TOPICS' => 'Starting to sync topics',
'SYNC_TOPIC_ID' => 'Synchronising topics from <var>topic_id</var> %1$s to %2$s', 'SYNC_TOPIC_ID' => 'Synchronising topics from <var>topic_id</var> %1$s to %2$s.',
'TABLES_MISSING' => 'Could not find these tables<br />» <strong>%s</strong>.', 'TABLES_MISSING' => 'Could not find these tables<br />» <strong>%s</strong>.',
'TABLE_PREFIX' => 'Prefix for tables in database', 'TABLE_PREFIX' => 'Prefix for tables in database',
'TABLE_PREFIX_SAME' => 'The table prefix needs to be the one used by the software you are converting from.<br />» Specified table prefix was %s', 'TABLE_PREFIX_SAME' => 'The table prefix needs to be the one used by the software you are converting from.<br />» Specified table prefix was %s.',
'TESTS_PASSED' => 'Tests passed', 'TESTS_PASSED' => 'Tests passed',
'TESTS_FAILED' => 'Tests failed', 'TESTS_FAILED' => 'Tests failed',
'UNABLE_WRITE_LOCK' => 'Unable to write lock file', 'UNABLE_WRITE_LOCK' => 'Unable to write lock file.',
'UNAVAILABLE' => 'Unavailable', 'UNAVAILABLE' => 'Unavailable',
'UNWRITABLE' => 'Unwritable', 'UNWRITABLE' => 'Unwritable',
'UPDATE_TOPICS_POSTED' => 'Generating topics posted information', 'UPDATE_TOPICS_POSTED' => 'Generating topics posted information',
@ -364,8 +364,8 @@ $lang = array_merge($lang, array(
'ERROR' => 'Error', 'ERROR' => 'Error',
'FILE_ALREADY_UP_TO_DATE' => 'File is already up to date', 'FILE_ALREADY_UP_TO_DATE' => 'File is already up to date.',
'FILE_DIFF_NOT_ALLOWED' => 'File not allowed to be diffed', 'FILE_DIFF_NOT_ALLOWED' => 'File not allowed to be diffed.',
'FILE_USED' => 'Information used from', // Single file 'FILE_USED' => 'Information used from', // Single file
'FILES_CONFLICT' => 'Conflict files', 'FILES_CONFLICT' => 'Conflict files',
'FILES_CONFLICT_EXPLAIN' => 'The following files are modified and do not represent the original files from the old version. phpBB determined that these files create conflicts if they are tried to be merged. Please investigate the conflicts and try to manually resolve them or continue the update choosing the preferred merging method. If you resolve the conflicts manually check the files again after you modified the them. You are also able to choose between the preferred merge method for every file. The first one will result in a file where the conflicting lines from your old file will be lost, the other one will result in loosing the changes from the newer file.', 'FILES_CONFLICT_EXPLAIN' => 'The following files are modified and do not represent the original files from the old version. phpBB determined that these files create conflicts if they are tried to be merged. Please investigate the conflicts and try to manually resolve them or continue the update choosing the preferred merging method. If you resolve the conflicts manually check the files again after you modified the them. You are also able to choose between the preferred merge method for every file. The first one will result in a file where the conflicting lines from your old file will be lost, the other one will result in loosing the changes from the newer file.',
@ -383,7 +383,7 @@ $lang = array_merge($lang, array(
'FTP_UPDATE_METHOD' => 'FTP upload', 'FTP_UPDATE_METHOD' => 'FTP upload',
'INCOMPATIBLE_UPDATE_FILES' => 'The update files found are incompatible with your installed version. Your installed version is %1$s and the update file is for updating phpBB %2$s to %3$s.', 'INCOMPATIBLE_UPDATE_FILES' => 'The update files found are incompatible with your installed version. Your installed version is %1$s and the update file is for updating phpBB %2$s to %3$s.',
'INCOMPLETE_UPDATE_FILES' => 'The update files are incomplete', 'INCOMPLETE_UPDATE_FILES' => 'The update files are incomplete.',
'INLINE_UPDATE_SUCCESSFUL' => 'The database update was successful. Now you need to continue the update process.', 'INLINE_UPDATE_SUCCESSFUL' => 'The database update was successful. Now you need to continue the update process.',
'LATEST_VERSION' => 'Latest version', 'LATEST_VERSION' => 'Latest version',
@ -433,7 +433,7 @@ $lang = array_merge($lang, array(
'SHOW_DIFF_NEW' => 'Show file contents', 'SHOW_DIFF_NEW' => 'Show file contents',
'SHOW_DIFF_NEW_CONFLICT' => 'Show differences', 'SHOW_DIFF_NEW_CONFLICT' => 'Show differences',
'SHOW_DIFF_NOT_MODIFIED' => 'Show differences', 'SHOW_DIFF_NOT_MODIFIED' => 'Show differences',
'SOME_QUERIES_FAILED' => 'Some queries failed, the statements and errors are listing below', 'SOME_QUERIES_FAILED' => 'Some queries failed, the statements and errors are listing below.',
'SQL' => 'SQL', 'SQL' => 'SQL',
'SQL_FAILURE_EXPLAIN' => 'This is probably nothing to worry about, update will continue. Should this fail to complete you may need to seek help at our support forums. See <a href="../docs/README.html">README</a> for details on how to obtain advice.', 'SQL_FAILURE_EXPLAIN' => 'This is probably nothing to worry about, update will continue. Should this fail to complete you may need to seek help at our support forums. See <a href="../docs/README.html">README</a> for details on how to obtain advice.',
'STAGE_FILE_CHECK' => 'Check files', 'STAGE_FILE_CHECK' => 'Check files',
@ -489,7 +489,7 @@ $lang = array_merge($lang, array(
'UPDATED_VERSION' => 'Updated version', 'UPDATED_VERSION' => 'Updated version',
'UPLOAD_METHOD' => 'Upload method', 'UPLOAD_METHOD' => 'Upload method',
'UPDATE_DB_SUCCESS' => 'Database update was successful', 'UPDATE_DB_SUCCESS' => 'Database update was successful.',
'VERSION_CHECK' => 'Version check', 'VERSION_CHECK' => 'Version check',
'VERSION_CHECK_EXPLAIN' => 'Checks to see if the version of phpBB you are currently running is up to date.', 'VERSION_CHECK_EXPLAIN' => 'Checks to see if the version of phpBB you are currently running is up to date.',

View file

@ -38,19 +38,19 @@ $lang = array_merge($lang, array(
'ADD_WARNING' => 'Add warning', 'ADD_WARNING' => 'Add warning',
'ADD_WARNING_EXPLAIN' => 'To send a warning to this user please fill out the following form. Only use plain text; HTML, BBCode, etc. are not permitted.', 'ADD_WARNING_EXPLAIN' => 'To send a warning to this user please fill out the following form. Only use plain text; HTML, BBCode, etc. are not permitted.',
'ALL_ENTRIES' => 'All entries', 'ALL_ENTRIES' => 'All entries',
'ALL_NOTES_DELETED' => 'Successfully removed all user notes', 'ALL_NOTES_DELETED' => 'Successfully removed all user notes.',
'ALL_REPORTS' => 'All reports', 'ALL_REPORTS' => 'All reports',
'ALREADY_REPORTED' => 'This post has already been reported', 'ALREADY_REPORTED' => 'This post has already been reported.',
'ALREADY_WARNED' => 'A warning has already been issued for this post', 'ALREADY_WARNED' => 'A warning has already been issued for this post.',
'APPROVE' => 'Approve', 'APPROVE' => 'Approve',
'APPROVE_POST' => 'Approve post', 'APPROVE_POST' => 'Approve post',
'APPROVE_POST_CONFIRM' => 'Are you sure you want to approve this post?', 'APPROVE_POST_CONFIRM' => 'Are you sure you want to approve this post?',
'APPROVE_POSTS' => 'Approve posts', 'APPROVE_POSTS' => 'Approve posts',
'APPROVE_POSTS_CONFIRM' => 'Are you sure you want to approve the selected posts?', 'APPROVE_POSTS_CONFIRM' => 'Are you sure you want to approve the selected posts?',
'CANNOT_MOVE_SAME_FORUM'=> 'You cannot move a topic to the forum its already in', 'CANNOT_MOVE_SAME_FORUM'=> 'You cannot move a topic to the forum its already in.',
'CANNOT_WARN_ANONYMOUS' => 'You cannot warn unregistered guest users', 'CANNOT_WARN_ANONYMOUS' => 'You cannot warn unregistered guest users.',
'CANNOT_WARN_SELF' => 'You cannot warn yourself', 'CANNOT_WARN_SELF' => 'You cannot warn yourself.',
'CAN_LEAVE_BLANK' => 'This can be left blank.', 'CAN_LEAVE_BLANK' => 'This can be left blank.',
'CHANGE_POSTER' => 'Change poster', 'CHANGE_POSTER' => 'Change poster',
'CLOSE_REPORT' => 'Close report', 'CLOSE_REPORT' => 'Close report',
@ -78,8 +78,8 @@ $lang = array_merge($lang, array(
'DISPLAY_LOG' => 'Display entries from previous', 'DISPLAY_LOG' => 'Display entries from previous',
'DISPLAY_OPTIONS' => 'Display options', 'DISPLAY_OPTIONS' => 'Display options',
'EMPTY_REPORT' => 'You must enter a description when selecting this reason', 'EMPTY_REPORT' => 'You must enter a description when selecting this reason.',
'EMPTY_TOPICS_REMOVED_WARNING' => 'Please note that one or several topics have been removed from the database because they were or become empty', 'EMPTY_TOPICS_REMOVED_WARNING' => 'Please note that one or several topics have been removed from the database because they were or become empty.',
'FEEDBACK' => 'Feedback', 'FEEDBACK' => 'Feedback',
'FORK' => 'Copy', 'FORK' => 'Copy',
@ -89,8 +89,8 @@ $lang = array_merge($lang, array(
'FORK_TOPICS_CONFIRM' => 'Are you sure you want to copy the selected topics?', 'FORK_TOPICS_CONFIRM' => 'Are you sure you want to copy the selected topics?',
'FORUM_DESC' => 'Description', 'FORUM_DESC' => 'Description',
'FORUM_NAME' => 'Forum name', 'FORUM_NAME' => 'Forum name',
'FORUM_NOT_EXIST' => 'The forum you selected does not exist', 'FORUM_NOT_EXIST' => 'The forum you selected does not exist.',
'FORUM_NOT_POSTABLE' => 'The forum you selected cannot be posted to', 'FORUM_NOT_POSTABLE' => 'The forum you selected cannot be posted to.',
'FORUM_STATUS' => 'Forum status', 'FORUM_STATUS' => 'Forum status',
'FORUM_STYLE' => 'Forum style', 'FORUM_STYLE' => 'Forum style',
@ -123,7 +123,7 @@ $lang = array_merge($lang, array(
'LOOKUP_ALL' => 'Look up all IPs', 'LOOKUP_ALL' => 'Look up all IPs',
'LOOKUP_IP' => 'Look up IP', 'LOOKUP_IP' => 'Look up IP',
'MARKED_NOTES_DELETED' => 'Successfully removed all marked user notes', 'MARKED_NOTES_DELETED' => 'Successfully removed all marked user notes.',
'MCP_ADD' => 'Add a warning', 'MCP_ADD' => 'Add a warning',
@ -168,16 +168,16 @@ $lang = array_merge($lang, array(
'MCP_REPORTS' => 'Reported posts', 'MCP_REPORTS' => 'Reported posts',
'MCP_REPORT_DETAILS' => 'Report details', 'MCP_REPORT_DETAILS' => 'Report details',
'MCP_REPORTS_CLOSED' => 'Closed reports', 'MCP_REPORTS_CLOSED' => 'Closed reports',
'MCP_REPORTS_CLOSED_EXPLAIN' => 'This is a list of all reports about posts which have previously been resolved', 'MCP_REPORTS_CLOSED_EXPLAIN' => 'This is a list of all reports about posts which have previously been resolved.',
'MCP_REPORTS_OPEN' => 'Open reports', 'MCP_REPORTS_OPEN' => 'Open reports',
'MCP_REPORTS_OPEN_EXPLAIN' => 'This is a list of all reported posts which are still to be handled', 'MCP_REPORTS_OPEN_EXPLAIN' => 'This is a list of all reported posts which are still to be handled.',
'MCP_QUEUE' => 'Moderation queue', 'MCP_QUEUE' => 'Moderation queue',
'MCP_QUEUE_APPROVE_DETAILS' => 'Approve details', 'MCP_QUEUE_APPROVE_DETAILS' => 'Approve details',
'MCP_QUEUE_UNAPPROVED_POSTS' => 'Posts awaiting approval', 'MCP_QUEUE_UNAPPROVED_POSTS' => 'Posts awaiting approval',
'MCP_QUEUE_UNAPPROVED_POSTS_EXPLAIN' => 'This is a list of all posts which require approving before they will be visible to users', 'MCP_QUEUE_UNAPPROVED_POSTS_EXPLAIN' => 'This is a list of all posts which require approving before they will be visible to users.',
'MCP_QUEUE_UNAPPROVED_TOPICS' => 'Topics awaiting approval', 'MCP_QUEUE_UNAPPROVED_TOPICS' => 'Topics awaiting approval',
'MCP_QUEUE_UNAPPROVED_TOPICS_EXPLAIN' => 'This is a list of all topics which require approving before they will be visible to users', 'MCP_QUEUE_UNAPPROVED_TOPICS_EXPLAIN' => 'This is a list of all topics which require approving before they will be visible to users.',
'MCP_VIEW_USER' => 'View warnings for a specific user', 'MCP_VIEW_USER' => 'View warnings for a specific user',
@ -189,7 +189,7 @@ $lang = array_merge($lang, array(
'MERGE_POSTS' => 'Merge posts', 'MERGE_POSTS' => 'Merge posts',
'MERGE_POSTS_CONFIRM' => 'Are you sure you want to merge the selected posts?', 'MERGE_POSTS_CONFIRM' => 'Are you sure you want to merge the selected posts?',
'MERGE_TOPIC_EXPLAIN' => 'Using the form below you can merge selected posts into another topic. These posts will not be reordered and will appear as if the users posted them to the new topic.<br />Please enter the destination topic id or click on "Select topic" to search for one', 'MERGE_TOPIC_EXPLAIN' => 'Using the form below you can merge selected posts into another topic. These posts will not be reordered and will appear as if the users posted them to the new topic.<br />Please enter the destination topic id or click on “Select topic” to search for one.',
'MERGE_TOPIC_ID' => 'Destination topic identification number', 'MERGE_TOPIC_ID' => 'Destination topic identification number',
'MERGE_TOPICS' => 'Merge topics', 'MERGE_TOPICS' => 'Merge topics',
'MERGE_TOPICS_CONFIRM' => 'Are you sure you want to merge the selected topics?', 'MERGE_TOPICS_CONFIRM' => 'Are you sure you want to merge the selected topics?',
@ -206,43 +206,43 @@ $lang = array_merge($lang, array(
'NOTIFY_POSTER_APPROVAL' => 'Notify poster about approval?', 'NOTIFY_POSTER_APPROVAL' => 'Notify poster about approval?',
'NOTIFY_POSTER_DISAPPROVAL' => 'Notify poster about disapproval?', 'NOTIFY_POSTER_DISAPPROVAL' => 'Notify poster about disapproval?',
'NOTIFY_USER_WARN' => 'Notify user about warning?', 'NOTIFY_USER_WARN' => 'Notify user about warning?',
'NOT_MODERATOR' => 'You are not a moderator of this forum', 'NOT_MODERATOR' => 'You are not a moderator of this forum.',
'NO_DESTINATION_FORUM' => 'Please select a forum for destination', 'NO_DESTINATION_FORUM' => 'Please select a forum for destination.',
'NO_DESTINATION_FORUM_FOUND' => 'There is no destination forum available.', 'NO_DESTINATION_FORUM_FOUND' => 'There is no destination forum available.',
'NO_ENTRIES' => 'No log entries for this period', 'NO_ENTRIES' => 'No log entries for this period.',
'NO_FEEDBACK' => 'No feedback exists for this user', 'NO_FEEDBACK' => 'No feedback exists for this user.',
'NO_FINAL_TOPIC_SELECTED' => 'You have to select a destination topic for merging posts', 'NO_FINAL_TOPIC_SELECTED' => 'You have to select a destination topic for merging posts.',
'NO_MATCHES_FOUND' => 'No matches found', 'NO_MATCHES_FOUND' => 'No matches found.',
'NO_POST' => 'You have to select a post in order to warn the user for a post', 'NO_POST' => 'You have to select a post in order to warn the user for a post.',
'NO_POST_REPORT' => 'This post was not reported.', 'NO_POST_REPORT' => 'This post was not reported.',
'NO_POST_SELECTED' => 'You must select at least one post to perform this action', 'NO_POST_SELECTED' => 'You must select at least one post to perform this action.',
'NO_REASON_DISAPPROVAL' => 'Please give an appropriate reason for disapproval', 'NO_REASON_DISAPPROVAL' => 'Please give an appropriate reason for disapproval.',
'NO_REPORT' => 'No report found', 'NO_REPORT' => 'No report found',
'NO_REPORTS' => 'No reports', 'NO_REPORTS' => 'No reports',
'NO_REPORT_SELECTED' => 'You must select at least one report to perform this action', 'NO_REPORT_SELECTED' => 'You must select at least one report to perform this action.',
'NO_TOPIC_ICON' => 'None', 'NO_TOPIC_ICON' => 'None',
'NO_TOPIC_SELECTED' => 'You must select at least one topic to perform this action', 'NO_TOPIC_SELECTED' => 'You must select at least one topic to perform this action.',
'NO_TOPICS_QUEUE' => 'No topics', 'NO_TOPICS_QUEUE' => 'No topics',
'ONLY_TOPIC' => 'Only topic "%s"', 'ONLY_TOPIC' => 'Only topic "%s"',
'OTHER_USERS' => 'Other users posting from this IP', 'OTHER_USERS' => 'Other users posting from this IP',
'POSTER' => 'Poster', 'POSTER' => 'Poster',
'POSTS_APPROVED_SUCCESS' => 'The selected posts have been approved', 'POSTS_APPROVED_SUCCESS' => 'The selected posts have been approved.',
'POSTS_DELETED_SUCCESS' => 'The selected posts have been successfully removed from the database', 'POSTS_DELETED_SUCCESS' => 'The selected posts have been successfully removed from the database.',
'POSTS_DISAPPROVED_SUCCESS' => 'The selected posts have been disapproved', 'POSTS_DISAPPROVED_SUCCESS' => 'The selected posts have been disapproved.',
'POSTS_LOCKED_SUCCESS' => 'The selected posts have been locked successfully', 'POSTS_LOCKED_SUCCESS' => 'The selected posts have been locked successfully.',
'POSTS_MERGED_SUCCESS' => 'The selected posts have been merged', 'POSTS_MERGED_SUCCESS' => 'The selected posts have been merged.',
'POSTS_UNLOCKED_SUCCESS' => 'The selected posts have been unlocked successfully', 'POSTS_UNLOCKED_SUCCESS' => 'The selected posts have been unlocked successfully.',
'POSTS_PER_PAGE' => 'Posts per page', 'POSTS_PER_PAGE' => 'Posts per page',
'POSTS_PER_PAGE_EXPLAIN' => '(Set to 0 to view all posts)', 'POSTS_PER_PAGE_EXPLAIN' => '(Set to 0 to view all posts.)',
'POST_APPROVED_SUCCESS' => 'The selected post has been approved', 'POST_APPROVED_SUCCESS' => 'The selected post has been approved.',
'POST_DELETED_SUCCESS' => 'The selected post has been successfully removed from the database', 'POST_DELETED_SUCCESS' => 'The selected post has been successfully removed from the database.',
'POST_DISAPPROVED_SUCCESS' => 'The selected post has been disapproved', 'POST_DISAPPROVED_SUCCESS' => 'The selected post has been disapproved.',
'POST_LOCKED_SUCCESS' => 'Post locked successfully', 'POST_LOCKED_SUCCESS' => 'Post locked successfully.',
'POST_NOT_EXIST' => 'The post you requested does not exist', 'POST_NOT_EXIST' => 'The post you requested does not exist.',
'POST_REPORTED_SUCCESS' => 'This post has been successfully reported', 'POST_REPORTED_SUCCESS' => 'This post has been successfully reported.',
'POST_UNLOCKED_SUCCESS' => 'Post unlocked successfully', 'POST_UNLOCKED_SUCCESS' => 'Post unlocked successfully.',
'READ_USERNOTES' => 'User notes', 'READ_USERNOTES' => 'User notes',
'READ_WARNINGS' => 'User warnings', 'READ_WARNINGS' => 'User warnings',
@ -252,20 +252,20 @@ $lang = array_merge($lang, array(
'REPORTED_ON_DATE' => 'on', 'REPORTED_ON_DATE' => 'on',
'REPORTS_CLOSED_SUCCESS' => 'The selected reports have been closed successfully.', 'REPORTS_CLOSED_SUCCESS' => 'The selected reports have been closed successfully.',
'REPORTS_DELETED_SUCCESS' => 'The selected reports have been deleted successfully.', 'REPORTS_DELETED_SUCCESS' => 'The selected reports have been deleted successfully.',
'REPORTS_TOTAL' => 'In total there are <strong>%d</strong> reports to review', 'REPORTS_TOTAL' => 'In total there are <strong>%d</strong> reports to review.',
'REPORTS_ZERO_TOTAL' => 'There are no reports to review', 'REPORTS_ZERO_TOTAL' => 'There are no reports to review.',
'REPORT_CLOSED' => 'This report has already been closed.', 'REPORT_CLOSED' => 'This report has already been closed.',
'REPORT_CLOSED_SUCCESS' => 'The selected report has been closed successfully.', 'REPORT_CLOSED_SUCCESS' => 'The selected report has been closed successfully.',
'REPORT_DELETED_SUCCESS' => 'The selected report has been deleted successfully.', 'REPORT_DELETED_SUCCESS' => 'The selected report has been deleted successfully.',
'REPORT_DETAILS' => 'Report details', 'REPORT_DETAILS' => 'Report details',
'REPORT_MESSAGE' => 'Report this message', 'REPORT_MESSAGE' => 'Report this message',
'REPORT_MESSAGE_EXPLAIN' => 'Use this form to report the selected message to the board administrators. Reporting should generally be used only if the message breaks forum rules.', 'REPORT_MESSAGE_EXPLAIN' => 'Use this form to report the selected message. Reporting should generally be used only if the message breaks forum rules.',
'REPORT_NOTIFY' => 'Notify me', 'REPORT_NOTIFY' => 'Notify me',
'REPORT_NOTIFY_EXPLAIN' => 'Informs you when your report is dealt with', 'REPORT_NOTIFY_EXPLAIN' => 'Informs you when your report is dealt with.',
'REPORT_POST_EXPLAIN' => 'Use this form to report the selected post to the forum moderators and board administrators. Reporting should generally be used only if the post breaks forum rules.', 'REPORT_POST_EXPLAIN' => 'Use this form to report the selected post to the forum moderators and board administrators. Reporting should generally be used only if the post breaks forum rules.',
'REPORT_REASON' => 'Report reason', 'REPORT_REASON' => 'Report reason',
'REPORT_TIME' => 'Report time', 'REPORT_TIME' => 'Report time',
'REPORT_TOTAL' => 'In total there is <strong>1</strong> report to review', 'REPORT_TOTAL' => 'In total there is <strong>1</strong> report to review.',
'RESYNC' => 'Resync', 'RESYNC' => 'Resync',
'RETURN_MESSAGE' => '%sReturn to the message%s', 'RETURN_MESSAGE' => '%sReturn to the message%s',
'RETURN_NEW_FORUM' => '%sReturn to the new forum%s', 'RETURN_NEW_FORUM' => '%sReturn to the new forum%s',
@ -295,38 +295,38 @@ $lang = array_merge($lang, array(
'SPLIT_TOPIC_ALL_CONFIRM' => 'Are you sure you want to split this topic?', 'SPLIT_TOPIC_ALL_CONFIRM' => 'Are you sure you want to split this topic?',
'SPLIT_TOPIC_BEYOND' => 'Split topic at selected post', 'SPLIT_TOPIC_BEYOND' => 'Split topic at selected post',
'SPLIT_TOPIC_BEYOND_CONFIRM' => 'Are you sure you want to split this topic at the selected post?', 'SPLIT_TOPIC_BEYOND_CONFIRM' => 'Are you sure you want to split this topic at the selected post?',
'SPLIT_TOPIC_EXPLAIN' => 'Using the form below you can split a topic in two, either by selecting the posts individually or by splitting at a selected post', 'SPLIT_TOPIC_EXPLAIN' => 'Using the form below you can split a topic in two, either by selecting the posts individually or by splitting at a selected post.',
'THIS_POST_IP' => 'IP for this post', 'THIS_POST_IP' => 'IP for this post',
'TOPICS_APPROVED_SUCCESS' => 'The selected topics have been approved', 'TOPICS_APPROVED_SUCCESS' => 'The selected topics have been approved.',
'TOPICS_DELETED_SUCCESS' => 'The selected topics have been successfully removed from the database', 'TOPICS_DELETED_SUCCESS' => 'The selected topics have been successfully removed from the database.',
'TOPICS_DISAPPROVED_SUCCESS'=> 'The selected topics have been disapproved', 'TOPICS_DISAPPROVED_SUCCESS'=> 'The selected topics have been disapproved.',
'TOPICS_FORKED_SUCCESS' => 'The selected topics have been copied successfully', 'TOPICS_FORKED_SUCCESS' => 'The selected topics have been copied successfully.',
'TOPICS_LOCKED_SUCCESS' => 'The selected topics have been locked', 'TOPICS_LOCKED_SUCCESS' => 'The selected topics have been locked.',
'TOPICS_MOVED_SUCCESS' => 'The selected topics have been moved successfully', 'TOPICS_MOVED_SUCCESS' => 'The selected topics have been moved successfully.',
'TOPICS_RESYNC_SUCCESS' => 'The selected topics have been resynchronised', 'TOPICS_RESYNC_SUCCESS' => 'The selected topics have been resynchronised.',
'TOPICS_TYPE_CHANGED' => 'Topic types changed successfully.', 'TOPICS_TYPE_CHANGED' => 'Topic types changed successfully.',
'TOPICS_UNLOCKED_SUCCESS' => 'The selected topics have been unlocked', 'TOPICS_UNLOCKED_SUCCESS' => 'The selected topics have been unlocked.',
'TOPIC_APPROVED_SUCCESS' => 'The selected topic has been approved', 'TOPIC_APPROVED_SUCCESS' => 'The selected topic has been approved.',
'TOPIC_DELETED_SUCCESS' => 'The selected topic has been successfully removed from the database', 'TOPIC_DELETED_SUCCESS' => 'The selected topic has been successfully removed from the database.',
'TOPIC_DISAPPROVED_SUCCESS' => 'The selected topic has been disapproved', 'TOPIC_DISAPPROVED_SUCCESS' => 'The selected topic has been disapproved.',
'TOPIC_FORKED_SUCCESS' => 'The selected topic has been copied successfully', 'TOPIC_FORKED_SUCCESS' => 'The selected topic has been copied successfully.',
'TOPIC_LOCKED_SUCCESS' => 'The selected topic has been locked', 'TOPIC_LOCKED_SUCCESS' => 'The selected topic has been locked.',
'TOPIC_MOVED_SUCCESS' => 'The selected topic has been moved successfully', 'TOPIC_MOVED_SUCCESS' => 'The selected topic has been moved successfully.',
'TOPIC_NOT_EXIST' => 'The topic you selected does not exist', 'TOPIC_NOT_EXIST' => 'The topic you selected does not exist.',
'TOPIC_RESYNC_SUCCESS' => 'The selected topic has been resynchronised', 'TOPIC_RESYNC_SUCCESS' => 'The selected topic has been resynchronised.',
'TOPIC_SPLIT_SUCCESS' => 'The selected topic has been split successfully', 'TOPIC_SPLIT_SUCCESS' => 'The selected topic has been split successfully.',
'TOPIC_TIME' => 'Topic time', 'TOPIC_TIME' => 'Topic time',
'TOPIC_TYPE_CHANGED' => 'Topic type changed successfully.', 'TOPIC_TYPE_CHANGED' => 'Topic type changed successfully.',
'TOPIC_UNLOCKED_SUCCESS' => 'The selected topic has been unlocked', 'TOPIC_UNLOCKED_SUCCESS' => 'The selected topic has been unlocked.',
'TOTAL_WARNINGS' => 'Total Warnings', 'TOTAL_WARNINGS' => 'Total Warnings',
'UNAPPROVED_POSTS_TOTAL' => 'In total there are <strong>%d</strong> posts waiting for approval', 'UNAPPROVED_POSTS_TOTAL' => 'In total there are <strong>%d</strong> posts waiting for approval.',
'UNAPPROVED_POSTS_ZERO_TOTAL' => 'There are no posts waiting for approval', 'UNAPPROVED_POSTS_ZERO_TOTAL' => 'There are no posts waiting for approval.',
'UNAPPROVED_POST_TOTAL' => 'In total there is <strong>1</strong> post waiting for approval', 'UNAPPROVED_POST_TOTAL' => 'In total there is <strong>1</strong> post waiting for approval.',
'UNLOCK' => 'Unlock', 'UNLOCK' => 'Unlock',
'UNLOCK_POST' => 'Unlock post', 'UNLOCK_POST' => 'Unlock post',
'UNLOCK_POST_EXPLAIN' => 'Allow editing', 'UNLOCK_POST_EXPLAIN' => 'Allow editing.',
'UNLOCK_POST_POST' => 'Unlock post', 'UNLOCK_POST_POST' => 'Unlock post',
'UNLOCK_POST_POST_CONFIRM' => 'Are you sure you want to allow editing this post?', 'UNLOCK_POST_POST_CONFIRM' => 'Are you sure you want to allow editing this post?',
'UNLOCK_POST_POSTS' => 'Unlock selected posts', 'UNLOCK_POST_POSTS' => 'Unlock selected posts',
@ -335,34 +335,34 @@ $lang = array_merge($lang, array(
'UNLOCK_TOPIC_CONFIRM' => 'Are you sure you want to unlock this topic?', 'UNLOCK_TOPIC_CONFIRM' => 'Are you sure you want to unlock this topic?',
'UNLOCK_TOPICS' => 'Unlock selected topics', 'UNLOCK_TOPICS' => 'Unlock selected topics',
'UNLOCK_TOPICS_CONFIRM' => 'Are you sure you want to unlock all selected topics?', 'UNLOCK_TOPICS_CONFIRM' => 'Are you sure you want to unlock all selected topics?',
'USER_CANNOT_POST' => 'You cannot post in this forum', 'USER_CANNOT_POST' => 'You cannot post in this forum.',
'USER_CANNOT_REPORT' => 'You cannot report posts in this forum', 'USER_CANNOT_REPORT' => 'You cannot report posts in this forum.',
'USER_FEEDBACK_ADDED' => 'User feedback added successfully.', 'USER_FEEDBACK_ADDED' => 'User feedback added successfully.',
'USER_WARNING_ADDED' => 'User warned successfully.', 'USER_WARNING_ADDED' => 'User warned successfully.',
'VIEW_DETAILS' => 'View details', 'VIEW_DETAILS' => 'View details',
'WARNED_USERS' => 'Warned users', 'WARNED_USERS' => 'Warned users',
'WARNED_USERS_EXPLAIN' => 'This is a list of users with unexpired warnings issued to them', 'WARNED_USERS_EXPLAIN' => 'This is a list of users with unexpired warnings issued to them.',
'WARNING_PM_BODY' => 'The following is a warning which has been issued to you by an administrator or moderator of this site.[quote]%s[/quote]', 'WARNING_PM_BODY' => 'The following is a warning which has been issued to you by an administrator or moderator of this site.[quote]%s[/quote]',
'WARNING_PM_SUBJECT' => 'Board warning issued', 'WARNING_PM_SUBJECT' => 'Board warning issued',
'WARNING_POST_DEFAULT' => 'This is a warning regarding the following post made by you: %s', 'WARNING_POST_DEFAULT' => 'This is a warning regarding the following post made by you: %s.',
'WARNINGS_ZERO_TOTAL' => 'No warnings exist', 'WARNINGS_ZERO_TOTAL' => 'No warnings exist.',
'YOU_SELECTED_TOPIC' => 'You selected topic number %d: %s', 'YOU_SELECTED_TOPIC' => 'You selected topic number %d: %s.',
'report_reasons' => array( 'report_reasons' => array(
'TITLE' => array( 'TITLE' => array(
'WAREZ' => 'Warez', 'WAREZ' => 'Warez',
'SPAM' => 'Spam', 'SPAM' => 'Spam',
'OFF_TOPIC' => 'Off-topic', 'OFF_TOPIC' => 'Off-topic',
'OTHER' => 'Other' 'OTHER' => 'Other',
), ),
'DESCRIPTION' => array( 'DESCRIPTION' => array(
'WAREZ' => 'The post contains links to illegal or pirated software', 'WAREZ' => 'The post contains links to illegal or pirated software.',
'SPAM' => 'The reported post has the only purpose to advertise for a website or another product', 'SPAM' => 'The reported post has the only purpose to advertise for a website or another product.',
'OFF_TOPIC' => 'The reported post is off topic', 'OFF_TOPIC' => 'The reported post is off topic.',
'OTHER' => 'The reported post does not fit into any other category, please use the description field' 'OTHER' => 'The reported post does not fit into any other category, please use the description field.',
) )
), ),
)); ));

View file

@ -42,7 +42,7 @@ $lang = array_merge($lang, array(
'BEFORE' => 'Before', 'BEFORE' => 'Before',
'CC_EMAIL' => 'Send a copy of this e-mail to yourself', 'CC_EMAIL' => 'Send a copy of this e-mail to yourself.',
'CONTACT_USER' => 'Contact', 'CONTACT_USER' => 'Contact',
'DEST_LANG' => 'Language', 'DEST_LANG' => 'Language',
@ -71,7 +71,7 @@ $lang = array_merge($lang, array(
'IM_DOWNLOAD_APP' => 'Download application', 'IM_DOWNLOAD_APP' => 'Download application',
'IM_ICQ' => 'Please note that users may have selected to not receive unsolicited instant messages.', 'IM_ICQ' => 'Please note that users may have selected to not receive unsolicited instant messages.',
'IM_JABBER' => 'Please note that users may have selected to not receive unsolicited instant messages.', 'IM_JABBER' => 'Please note that users may have selected to not receive unsolicited instant messages.',
'IM_JABBER_SUBJECT' => 'This is an automated message please do not reply! Message from user %1$s at %2$s', 'IM_JABBER_SUBJECT' => 'This is an automated message please do not reply! Message from user %1$s at %2$s.',
'IM_MESSAGE' => 'Your message', 'IM_MESSAGE' => 'Your message',
'IM_MSNM' => 'Please note that you need Windows Messenger installed to use this.', 'IM_MSNM' => 'Please note that you need Windows Messenger installed to use this.',
'IM_MSNM_BROWSER' => 'Your browser does not support this.', 'IM_MSNM_BROWSER' => 'Your browser does not support this.',
@ -88,10 +88,10 @@ $lang = array_merge($lang, array(
'LESS_THAN' => 'Less than', 'LESS_THAN' => 'Less than',
'LIST_USER' => '1 user', 'LIST_USER' => '1 user',
'LIST_USERS' => '%d users', 'LIST_USERS' => '%d users',
'LOGIN_EXPLAIN_LEADERS' => 'The board administrator requires you to be registered and logged in to view the team listing.', 'LOGIN_EXPLAIN_LEADERS' => 'The board requires you to be registered and logged in to view the team listing.',
'LOGIN_EXPLAIN_MEMBERLIST' => 'The board administrator requires you to be registered and logged in to access the memberlist.', 'LOGIN_EXPLAIN_MEMBERLIST' => 'The board requires you to be registered and logged in to access the memberlist.',
'LOGIN_EXPLAIN_SEARCHUSER' => 'The board administrator requires you to be registered and logged in to search users.', 'LOGIN_EXPLAIN_SEARCHUSER' => 'The board requires you to be registered and logged in to search users.',
'LOGIN_EXPLAIN_VIEWPROFILE' => 'The board administrator requires you to be registered and logged in to view profiles.', 'LOGIN_EXPLAIN_VIEWPROFILE' => 'The board requires you to be registered and logged in to view profiles.',
'MORE_THAN' => 'More than', 'MORE_THAN' => 'More than',

View file

@ -32,10 +32,10 @@ if (empty($lang) || !is_array($lang))
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ADD_ATTACHMENT' => 'Upload attachment', 'ADD_ATTACHMENT' => 'Upload attachment',
'ADD_ATTACHMENT_EXPLAIN' => 'If you wish to attach one or more files enter the details below', 'ADD_ATTACHMENT_EXPLAIN' => 'If you wish to attach one or more files enter the details below.',
'ADD_FILE' => 'Add the file', 'ADD_FILE' => 'Add the file',
'ADD_POLL' => 'Poll creation', 'ADD_POLL' => 'Poll creation',
'ADD_POLL_EXPLAIN' => 'If you do not want to add a poll to your topic leave the fields blank', 'ADD_POLL_EXPLAIN' => 'If you do not want to add a poll to your topic leave the fields blank.',
'ALREADY_DELETED' => 'Sorry but this message is already deleted.', 'ALREADY_DELETED' => 'Sorry but this message is already deleted.',
'ATTACH_QUOTA_REACHED' => 'Sorry, the board attachment quota has been reached.', 'ATTACH_QUOTA_REACHED' => 'Sorry, the board attachment quota has been reached.',
'ATTACH_SIG' => 'Attach a signature (signatures can be altered via the UCP)', 'ATTACH_SIG' => 'Attach a signature (signatures can be altered via the UCP)',
@ -61,7 +61,7 @@ $lang = array_merge($lang, array(
'CANNOT_DELETE_REPLIED' => 'Sorry but you may only delete posts which have not been replied to.', 'CANNOT_DELETE_REPLIED' => 'Sorry but you may only delete posts which have not been replied to.',
'CANNOT_EDIT_POST_LOCKED' => 'This post has been locked. You can no longer edit that post.', 'CANNOT_EDIT_POST_LOCKED' => 'This post has been locked. You can no longer edit that post.',
'CANNOT_EDIT_TIME' => 'You can no longer edit or delete that post', 'CANNOT_EDIT_TIME' => 'You can no longer edit or delete that post.',
'CANNOT_POST_ANNOUNCE' => 'Sorry but you cannot post announcements.', 'CANNOT_POST_ANNOUNCE' => 'Sorry but you cannot post announcements.',
'CANNOT_POST_STICKY' => 'Sorry but you cannot post sticky topics.', 'CANNOT_POST_STICKY' => 'Sorry but you cannot post sticky topics.',
'CHANGE_TOPIC_TO' => 'Change topic type to', 'CHANGE_TOPIC_TO' => 'Change topic type to',
@ -77,13 +77,13 @@ $lang = array_merge($lang, array(
'DISABLE_BBCODE' => 'Disable BBCode', 'DISABLE_BBCODE' => 'Disable BBCode',
'DISABLE_MAGIC_URL' => 'Do not automatically parse URLs', 'DISABLE_MAGIC_URL' => 'Do not automatically parse URLs',
'DISABLE_SMILIES' => 'Disable smilies', 'DISABLE_SMILIES' => 'Disable smilies',
'DISALLOWED_EXTENSION' => 'The extension %s is not allowed', 'DISALLOWED_EXTENSION' => 'The extension %s is not allowed.',
'DRAFT_LOADED' => 'Draft loaded into posting area, you may want to finish your post now.<br />Your draft will be deleted after submitting this post.', 'DRAFT_LOADED' => 'Draft loaded into posting area, you may want to finish your post now.<br />Your draft will be deleted after submitting this post.',
'DRAFT_SAVED' => 'Draft successfully saved.', 'DRAFT_SAVED' => 'Draft successfully saved.',
'DRAFT_TITLE' => 'Draft title', 'DRAFT_TITLE' => 'Draft title',
'EDIT_REASON' => 'Reason for editing this post', 'EDIT_REASON' => 'Reason for editing this post',
'EMPTY_FILEUPLOAD' => 'The uploaded file is empty', 'EMPTY_FILEUPLOAD' => 'The uploaded file is empty.',
'EMPTY_MESSAGE' => 'You must enter a message when posting.', 'EMPTY_MESSAGE' => 'You must enter a message when posting.',
'EMPTY_REMOTE_DATA' => 'File could not be uploaded, please try uploading the file manually.', 'EMPTY_REMOTE_DATA' => 'File could not be uploaded, please try uploading the file manually.',
@ -99,11 +99,11 @@ $lang = array_merge($lang, array(
'FONT_SMALL' => 'Small', 'FONT_SMALL' => 'Small',
'FONT_TINY' => 'Tiny', 'FONT_TINY' => 'Tiny',
'GENERAL_UPLOAD_ERROR' => 'Could not upload attachment to %s', 'GENERAL_UPLOAD_ERROR' => 'Could not upload attachment to %s.',
'IMAGES_ARE_OFF' => '[img] is <em>OFF</em>', 'IMAGES_ARE_OFF' => '[img] is <em>OFF</em>',
'IMAGES_ARE_ON' => '[img] is <em>ON</em>', 'IMAGES_ARE_ON' => '[img] is <em>ON</em>',
'INVALID_FILENAME' => '%s is an invalid filename', 'INVALID_FILENAME' => '%s is an invalid filename.',
'LOAD' => 'Load', 'LOAD' => 'Load',
'LOAD_DRAFT' => 'Load draft', 'LOAD_DRAFT' => 'Load draft',
@ -121,45 +121,45 @@ $lang = array_merge($lang, array(
'MAX_IMG_WIDTH_EXCEEDED' => 'Your images may only be up to %1$d pixels wide.', 'MAX_IMG_WIDTH_EXCEEDED' => 'Your images may only be up to %1$d pixels wide.',
'MESSAGE_BODY_EXPLAIN' => 'Enter your message here, it may contain no more than <strong>%d</strong> characters.', 'MESSAGE_BODY_EXPLAIN' => 'Enter your message here, it may contain no more than <strong>%d</strong> characters.',
'MESSAGE_DELETED' => 'This message has been deleted successfully', 'MESSAGE_DELETED' => 'This message has been deleted successfully.',
'MORE_SMILIES' => 'View more smilies', 'MORE_SMILIES' => 'View more smilies',
'NOTIFY_REPLY' => 'Notify me when a reply is posted', 'NOTIFY_REPLY' => 'Notify me when a reply is posted',
'NOT_UPLOADED' => 'File could not be uploaded.', 'NOT_UPLOADED' => 'File could not be uploaded.',
'NO_DELETE_POLL_OPTIONS' => 'You cannot delete existing poll options', 'NO_DELETE_POLL_OPTIONS' => 'You cannot delete existing poll options.',
'NO_PM_ICON' => 'No PM icon', 'NO_PM_ICON' => 'No PM icon',
'NO_POLL_TITLE' => 'You have to enter a poll title', 'NO_POLL_TITLE' => 'You have to enter a poll title.',
'NO_POST' => 'The requested post does not exist.', 'NO_POST' => 'The requested post does not exist.',
'NO_POST_MODE' => 'No post mode specified', 'NO_POST_MODE' => 'No post mode specified.',
'PARTIAL_UPLOAD' => 'The uploaded file was only partially uploaded', 'PARTIAL_UPLOAD' => 'The uploaded file was only partially uploaded.',
'PHP_SIZE_NA' => 'The attachments file size is too large.<br />Could not determine the maximum size defined by PHP in php.ini.', 'PHP_SIZE_NA' => 'The attachments file size is too large.<br />Could not determine the maximum size defined by PHP in php.ini.',
'PHP_SIZE_OVERRUN' => 'The attachments file size is too large, the maximum upload size is %d MB.<br />Please note this is set in php.ini and cannot be overridden.', 'PHP_SIZE_OVERRUN' => 'The attachments file size is too large, the maximum upload size is %d MB.<br />Please note this is set in php.ini and cannot be overridden.',
'PLACE_INLINE' => 'Place inline', 'PLACE_INLINE' => 'Place inline',
'POLL_DELETE' => 'Delete poll', 'POLL_DELETE' => 'Delete poll',
'POLL_FOR' => 'Run poll for', 'POLL_FOR' => 'Run poll for',
'POLL_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending poll', 'POLL_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending poll.',
'POLL_MAX_OPTIONS' => 'Options per user', 'POLL_MAX_OPTIONS' => 'Options per user',
'POLL_MAX_OPTIONS_EXPLAIN' => 'This is the number of options each user may select when voting.', 'POLL_MAX_OPTIONS_EXPLAIN' => 'This is the number of options each user may select when voting.',
'POLL_OPTIONS' => 'Poll options', 'POLL_OPTIONS' => 'Poll options',
'POLL_OPTIONS_EXPLAIN' => 'Place each option on a new line. You may enter up to <strong>%d</strong> options', 'POLL_OPTIONS_EXPLAIN' => 'Place each option on a new line. You may enter up to <strong>%d</strong> options.',
'POLL_QUESTION' => 'Poll question', 'POLL_QUESTION' => 'Poll question',
'POLL_TITLE_TOO_LONG' => 'The poll title must contain fewer than 100 characters', 'POLL_TITLE_TOO_LONG' => 'The poll title must contain fewer than 100 characters.',
'POLL_TITLE_COMP_TOO_LONG' => 'The parsed size of your poll title is too large, consider removing BBCodes or smilies', 'POLL_TITLE_COMP_TOO_LONG' => 'The parsed size of your poll title is too large, consider removing BBCodes or smilies.',
'POLL_VOTE_CHANGE' => 'Allow re-voting', 'POLL_VOTE_CHANGE' => 'Allow re-voting',
'POLL_VOTE_CHANGE_EXPLAIN' => 'If enabled users are able to change their vote.', 'POLL_VOTE_CHANGE_EXPLAIN' => 'If enabled users are able to change their vote.',
'POSTED_ATTACHMENTS' => 'Posted attachments', 'POSTED_ATTACHMENTS' => 'Posted attachments',
'POST_CONFIRMATION' => 'Confirmation of post', 'POST_CONFIRMATION' => 'Confirmation of post',
'POST_CONFIRM_EXPLAIN' => 'To prevent automated posts the board administrator requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.', 'POST_CONFIRM_EXPLAIN' => 'To prevent automated posts the board requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.',
'POST_DELETED' => 'This message has been deleted successfully', 'POST_DELETED' => 'This message has been deleted successfully.',
'POST_EDITED' => 'This message has been edited successfully', 'POST_EDITED' => 'This message has been edited successfully.',
'POST_EDITED_MOD' => 'This message has been edited successfully, but it will need to be approved by a moderator before it is publicly viewable. You will be notified when your post has been approved.', 'POST_EDITED_MOD' => 'This message has been edited successfully, but it will need to be approved by a moderator before it is publicly viewable. You will be notified when your post has been approved.',
'POST_GLOBAL' => 'Global', 'POST_GLOBAL' => 'Global',
'POST_ICON' => 'Post icon', 'POST_ICON' => 'Post icon',
'POST_NORMAL' => 'Normal', 'POST_NORMAL' => 'Normal',
'POST_REVIEW' => 'Post review', 'POST_REVIEW' => 'Post review',
'POST_REVIEW_EXPLAIN' => 'At least one new post has been made to this topic. You may wish to review your post in light of this.', 'POST_REVIEW_EXPLAIN' => 'At least one new post has been made to this topic. You may wish to review your post in light of this.',
'POST_STORED' => 'This message has been posted successfully', 'POST_STORED' => 'This message has been posted successfully.',
'POST_STORED_MOD' => 'This message has been submitted successfully, but it will need to be approved by a moderator before it is publicly viewable. You will be notified when your post has been approved.', 'POST_STORED_MOD' => 'This message has been submitted successfully, but it will need to be approved by a moderator before it is publicly viewable. You will be notified when your post has been approved.',
'POST_TOPIC_AS' => 'Post topic as', 'POST_TOPIC_AS' => 'Post topic as',
'PROGRESS_BAR' => 'Progress bar', 'PROGRESS_BAR' => 'Progress bar',
@ -175,35 +175,35 @@ $lang = array_merge($lang, array(
'SMILIES_ARE_ON' => 'Smilies are <em>ON</em>', 'SMILIES_ARE_ON' => 'Smilies are <em>ON</em>',
'STICKY_ANNOUNCE_TIME_LIMIT'=> 'Sticky/Announcement time limit', 'STICKY_ANNOUNCE_TIME_LIMIT'=> 'Sticky/Announcement time limit',
'STICK_TOPIC_FOR' => 'Stick topic for', 'STICK_TOPIC_FOR' => 'Stick topic for',
'STICK_TOPIC_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending Sticky/Announcement', 'STICK_TOPIC_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending Sticky/Announcement.',
'STYLES_TIP' => 'Tip: Styles can be applied quickly to selected text', 'STYLES_TIP' => 'Tip: Styles can be applied quickly to selected text.',
'TOO_FEW_CHARS' => 'Your message contains too few characters.', 'TOO_FEW_CHARS' => 'Your message contains too few characters.',
'TOO_FEW_POLL_OPTIONS' => 'You must enter at least two poll options', 'TOO_FEW_POLL_OPTIONS' => 'You must enter at least two poll options.',
'TOO_MANY_ATTACHMENTS' => 'Cannot add another attachment, %d is the maximum.', 'TOO_MANY_ATTACHMENTS' => 'Cannot add another attachment, %d is the maximum.',
'TOO_MANY_CHARS' => 'Your message contains too many characters.', 'TOO_MANY_CHARS' => 'Your message contains too many characters.',
'TOO_MANY_POLL_OPTIONS' => 'You have tried to enter too many poll options', 'TOO_MANY_POLL_OPTIONS' => 'You have tried to enter too many poll options.',
'TOO_MANY_SMILIES' => 'Your message contains too many smilies. The maximum number of smilies allowed is %d.', 'TOO_MANY_SMILIES' => 'Your message contains too many smilies. The maximum number of smilies allowed is %d.',
'TOO_MANY_URLS' => 'Your message contains too many URLs. The maximum number of URLs allowed is %d.', 'TOO_MANY_URLS' => 'Your message contains too many URLs. The maximum number of URLs allowed is %d.',
'TOO_MANY_USER_OPTIONS' => 'You cannot specify more options per user than existing poll options', 'TOO_MANY_USER_OPTIONS' => 'You cannot specify more options per user than existing poll options.',
'TOPIC_BUMPED' => 'Topic has been bumped successfully', 'TOPIC_BUMPED' => 'Topic has been bumped successfully.',
'UNAUTHORISED_BBCODE' => 'You cannot use certain BBCodes: %s', 'UNAUTHORISED_BBCODE' => 'You cannot use certain BBCodes: %s.',
'UNGLOBALISE_EXPLAIN' => 'To switch this topic back from being global to a normal topic, you need to select the forum you wish this topic to be displayed.', 'UNGLOBALISE_EXPLAIN' => 'To switch this topic back from being global to a normal topic, you need to select the forum you wish this topic to be displayed.',
'UPDATE_COMMENT' => 'Update comment', 'UPDATE_COMMENT' => 'Update comment',
'URL_INVALID' => 'The URL you specified is invalid.', 'URL_INVALID' => 'The URL you specified is invalid.',
'URL_NOT_FOUND' => 'The file specified could not be found.', 'URL_NOT_FOUND' => 'The file specified could not be found.',
'URL_IS_OFF' => '[url] is <em>OFF</em>', 'URL_IS_OFF' => '[url] is <em>OFF</em>',
'URL_IS_ON' => '[url] is <em>ON</em>', 'URL_IS_ON' => '[url] is <em>ON</em>',
'USER_CANNOT_BUMP' => 'You cannot bump topics in this forum', 'USER_CANNOT_BUMP' => 'You cannot bump topics in this forum.',
'USER_CANNOT_DELETE' => 'You cannot delete posts in this forum', 'USER_CANNOT_DELETE' => 'You cannot delete posts in this forum.',
'USER_CANNOT_EDIT' => 'You cannot edit posts in this forum', 'USER_CANNOT_EDIT' => 'You cannot edit posts in this forum.',
'USER_CANNOT_REPLY' => 'You cannot reply in this forum', 'USER_CANNOT_REPLY' => 'You cannot reply in this forum.',
'USER_CANNOT_FORUM_POST' => 'You are not able to do posting operations on this forum due to the forum type not supporting it.', 'USER_CANNOT_FORUM_POST' => 'You are not able to do posting operations on this forum due to the forum type not supporting it.',
'VIEW_MESSAGE' => '%sView your submitted message%s', 'VIEW_MESSAGE' => '%sView your submitted message%s',
'WRONG_FILESIZE' => 'The file is too big, maximum allowed size is %1d %2s', 'WRONG_FILESIZE' => 'The file is too big, maximum allowed size is %1d %2s.',
'WRONG_SIZE' => 'The image must be at least %1$d pixels wide, %2$d pixels high and at most %3$d pixels wide and %4$d pixels high. The submitted image is %5$d pixels wide and %6$d pixels high.', 'WRONG_SIZE' => 'The image must be at least %1$d pixels wide, %2$d pixels high and at most %3$d pixels wide and %4$d pixels high. The submitted image is %5$d pixels wide and %6$d pixels high.',
)); ));

View file

@ -43,12 +43,12 @@ $lang = array_merge($lang, array(
'GLOBAL' => 'Global announcement', 'GLOBAL' => 'Global announcement',
'IGNORED_TERMS' => 'ignored', 'IGNORED_TERMS' => 'ignored',
'IGNORED_TERMS_EXPLAIN' => 'The following words in your search query were ignored: <strong>%s</strong>', 'IGNORED_TERMS_EXPLAIN' => 'The following words in your search query were ignored: <strong>%s</strong>.',
'JUMP_TO_POST' => 'Jump to post', 'JUMP_TO_POST' => 'Jump to post',
'NO_KEYWORDS' => 'You must specify at least one word to search for. Each word must consist of at least %d characters and must not contain more than %d characters excluding wildcards.', 'NO_KEYWORDS' => 'You must specify at least one word to search for. Each word must consist of at least %d characters and must not contain more than %d characters excluding wildcards.',
'NO_RECENT_SEARCHES' => 'No searches have been carried out recently', 'NO_RECENT_SEARCHES' => 'No searches have been carried out recently.',
'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.', 'NO_SEARCH' => 'Sorry but you are not permitted to use the search system.',
'NO_SEARCH_RESULTS' => 'No suitable matches were found.', 'NO_SEARCH_RESULTS' => 'No suitable matches were found.',
'NO_SEARCH_TIME' => 'Sorry but you cannot use search at this time. Please try again in a few minutes.', 'NO_SEARCH_TIME' => 'Sorry but you cannot use search at this time. Please try again in a few minutes.',
@ -68,7 +68,7 @@ $lang = array_merge($lang, array(
'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered', 'SEARCH_ALL_TERMS' => 'Search for all terms or use query as entered',
'SEARCH_ANY_TERMS' => 'Search for any terms', 'SEARCH_ANY_TERMS' => 'Search for any terms',
'SEARCH_AUTHOR' => 'Search for author', 'SEARCH_AUTHOR' => 'Search for author',
'SEARCH_AUTHOR_EXPLAIN' => 'Use * as a wildcard for partial matches', 'SEARCH_AUTHOR_EXPLAIN' => 'Use * as a wildcard for partial matches.',
'SEARCH_FIRST_POST' => 'First post of topics only', 'SEARCH_FIRST_POST' => 'First post of topics only',
'SEARCH_FORUMS' => 'Search in forums', 'SEARCH_FORUMS' => 'Search in forums',
'SEARCH_FORUMS_EXPLAIN' => 'Select the forum or forums you wish to search in. For speed all subforums can be searched by selecting the parent and setting enable search subforums below.', 'SEARCH_FORUMS_EXPLAIN' => 'Select the forum or forums you wish to search in. For speed all subforums can be searched by selecting the parent and setting enable search subforums below.',

View file

@ -66,10 +66,10 @@ $lang = array_merge($lang, array(
'ADD' => 'Add', 'ADD' => 'Add',
'ADD_BCC' => 'Add [BCC]', 'ADD_BCC' => 'Add [BCC]',
'ADD_FOES' => 'Add new foes', 'ADD_FOES' => 'Add new foes',
'ADD_FOES_EXPLAIN' => 'You may enter several usernames each on a different line', 'ADD_FOES_EXPLAIN' => 'You may enter several usernames each on a different line.',
'ADD_FOLDER' => 'Add folder', 'ADD_FOLDER' => 'Add folder',
'ADD_FRIENDS' => 'Add new friends', 'ADD_FRIENDS' => 'Add new friends',
'ADD_FRIENDS_EXPLAIN' => 'You may enter several usernames each on a different line', 'ADD_FRIENDS_EXPLAIN' => 'You may enter several usernames each on a different line.',
'ADD_NEW_RULE' => 'Add new rule', 'ADD_NEW_RULE' => 'Add new rule',
'ADD_RULE' => 'Add rule', 'ADD_RULE' => 'Add rule',
'ADD_TO' => 'Add [To]', 'ADD_TO' => 'Add [To]',
@ -77,7 +77,7 @@ $lang = array_merge($lang, array(
'AGREE' => 'I agree to these terms', 'AGREE' => 'I agree to these terms',
'ALLOW_PM' => 'Allow users to send you private messages', 'ALLOW_PM' => 'Allow users to send you private messages',
'ALLOW_PM_EXPLAIN' => 'Note that administrators and moderators will always be able to send you messages.', 'ALLOW_PM_EXPLAIN' => 'Note that administrators and moderators will always be able to send you messages.',
'ALREADY_ACTIVATED' => 'You have already activated your account', 'ALREADY_ACTIVATED' => 'You have already activated your account.',
'ATTACHMENTS_EXPLAIN' => 'This is a list of attachments you have made in posts to this board.', 'ATTACHMENTS_EXPLAIN' => 'This is a list of attachments you have made in posts to this board.',
'ATTACHMENTS_DELETED' => 'Attachments successfully deleted.', 'ATTACHMENTS_DELETED' => 'Attachments successfully deleted.',
'ATTACHMENT_DELETED' => 'Attachment successfully deleted.', 'ATTACHMENT_DELETED' => 'Attachment successfully deleted.',
@ -85,7 +85,7 @@ $lang = array_merge($lang, array(
'AVATAR_EXPLAIN' => 'Maximum dimensions; width %1$d pixels, height %2$d pixels, file size %3$dkB.', 'AVATAR_EXPLAIN' => 'Maximum dimensions; width %1$d pixels, height %2$d pixels, file size %3$dkB.',
'AVATAR_FEATURES_DISABLED' => 'The avatar functionality is currently disabled.', 'AVATAR_FEATURES_DISABLED' => 'The avatar functionality is currently disabled.',
'AVATAR_GALLERY' => 'Local gallery', 'AVATAR_GALLERY' => 'Local gallery',
'AVATAR_GENERAL_UPLOAD_ERROR' => 'Could not upload avatar to %s', 'AVATAR_GENERAL_UPLOAD_ERROR' => 'Could not upload avatar to %s.',
'AVATAR_PAGE' => 'Page', 'AVATAR_PAGE' => 'Page',
'BACK_TO_DRAFTS' => 'Back to saved drafts', 'BACK_TO_DRAFTS' => 'Back to saved drafts',
@ -93,17 +93,17 @@ $lang = array_merge($lang, array(
'BIRTHDAY' => 'Birthday', 'BIRTHDAY' => 'Birthday',
'BIRTHDAY_EXPLAIN' => 'Setting a year will list your age when it is your birthday.', 'BIRTHDAY_EXPLAIN' => 'Setting a year will list your age when it is your birthday.',
'BOARD_DATE_FORMAT' => 'My date format', 'BOARD_DATE_FORMAT' => 'My date format',
'BOARD_DATE_FORMAT_EXPLAIN' => 'The syntax used is identical to the PHP <a href="http://www.php.net/date">date()</a> function', 'BOARD_DATE_FORMAT_EXPLAIN' => 'The syntax used is identical to the PHP <a href="http://www.php.net/date">date()</a> function.',
'BOARD_DST' => 'Summer Time/<abbr title="Daylight Saving Time">DST</abbr> is in effect', 'BOARD_DST' => 'Summer Time/<abbr title="Daylight Saving Time">DST</abbr> is in effect',
'BOARD_LANGUAGE' => 'My language', 'BOARD_LANGUAGE' => 'My language',
'BOARD_STYLE' => 'My board style', 'BOARD_STYLE' => 'My board style',
'BOARD_TIMEZONE' => 'My timezone', 'BOARD_TIMEZONE' => 'My timezone',
'BOOKMARKS' => 'Bookmarks', 'BOOKMARKS' => 'Bookmarks',
'BOOKMARKS_EXPLAIN' => 'You can bookmark topics for future reference. Select the checkbox for any bookmark you wish to delete, then press the <em>Remove marked bookmarks</em> button.', 'BOOKMARKS_EXPLAIN' => 'You can bookmark topics for future reference. Select the checkbox for any bookmark you wish to delete, then press the <em>Remove marked bookmarks</em> button.',
'BOOKMARKS_DISABLED' => 'Bookmarks are disabled on this board', 'BOOKMARKS_DISABLED' => 'Bookmarks are disabled on this board.',
'BOOKMARKS_REMOVED' => 'Bookmarks removed successfully', 'BOOKMARKS_REMOVED' => 'Bookmarks removed successfully.',
'CANNOT_EDIT_MESSAGE_TIME' => 'You can no longer edit or delete that message', 'CANNOT_EDIT_MESSAGE_TIME' => 'You can no longer edit or delete that message.',
'CANNOT_MOVE_TO_SAME_FOLDER'=> 'Messages can not be moved to the folder you want to remove.', 'CANNOT_MOVE_TO_SAME_FOLDER'=> 'Messages can not be moved to the folder you want to remove.',
'CANNOT_RENAME_FOLDER' => 'This folder can not be renamed.', 'CANNOT_RENAME_FOLDER' => 'This folder can not be renamed.',
'CANNOT_REMOVE_FOLDER' => 'This folder can not be removed.', 'CANNOT_REMOVE_FOLDER' => 'This folder can not be removed.',
@ -114,9 +114,9 @@ $lang = array_merge($lang, array(
'CONFIRM_CHANGES' => 'Confirm changes', 'CONFIRM_CHANGES' => 'Confirm changes',
'CONFIRM_EMAIL' => 'Confirm e-mail address', 'CONFIRM_EMAIL' => 'Confirm e-mail address',
'CONFIRM_EMAIL_EXPLAIN' => 'You only need to specify this if you are changing your e-mail address.', 'CONFIRM_EMAIL_EXPLAIN' => 'You only need to specify this if you are changing your e-mail address.',
'CONFIRM_EXPLAIN' => 'To prevent automated registrations the board administrator requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.', 'CONFIRM_EXPLAIN' => 'To prevent automated registrations the board requires you to enter a confirmation code. The code is displayed in the image you should see below. If you are visually impaired or cannot otherwise read this code please contact the %sBoard Administrator%s.',
'CONFIRM_PASSWORD' => 'Confirm password', 'CONFIRM_PASSWORD' => 'Confirm password',
'CONFIRM_PASSWORD_EXPLAIN' => 'You only need to confirm your password if you changed it above', 'CONFIRM_PASSWORD_EXPLAIN' => 'You only need to confirm your password if you changed it above.',
'COPPA_BIRTHDAY' => 'To continue with the registration procedure please tell us when you were born.', 'COPPA_BIRTHDAY' => 'To continue with the registration procedure please tell us when you were born.',
'COPPA_COMPLIANCE' => 'COPPA compliance', 'COPPA_COMPLIANCE' => 'COPPA compliance',
'COPPA_EXPLAIN' => 'Please note that clicking submit will create your account. However it cannot be activated until a parent or guardian approves your registration. You will be emailed a copy of the necessary form with details of where to send it.', 'COPPA_EXPLAIN' => 'Please note that clicking submit will create your account. However it cannot be activated until a parent or guardian approves your registration. You will be emailed a copy of the necessary form with details of where to send it.',
@ -128,13 +128,13 @@ $lang = array_merge($lang, array(
'CUSTOM_DATEFORMAT' => 'Custom…', 'CUSTOM_DATEFORMAT' => 'Custom…',
'DEFAULT_ACTION' => 'Default action', 'DEFAULT_ACTION' => 'Default action',
'DEFAULT_ACTION_EXPLAIN' => 'This action will be triggered if none of the above is applicable', 'DEFAULT_ACTION_EXPLAIN' => 'This action will be triggered if none of the above is applicable.',
'DEFAULT_ADD_SIG' => 'Attach my signature by default', 'DEFAULT_ADD_SIG' => 'Attach my signature by default',
'DEFAULT_BBCODE' => 'Enable BBCode by default', 'DEFAULT_BBCODE' => 'Enable BBCode by default',
'DEFAULT_NOTIFY' => 'Notify me upon replies by default', 'DEFAULT_NOTIFY' => 'Notify me upon replies by default',
'DEFAULT_SMILIES' => 'Enable smilies by default', 'DEFAULT_SMILIES' => 'Enable smilies by default',
'DEFINED_RULES' => 'Defined rules', 'DEFINED_RULES' => 'Defined rules',
'DELETED_TOPIC' => 'Topic has been removed', 'DELETED_TOPIC' => 'Topic has been removed.',
'DELETE_ATTACHMENT' => 'Delete attachment', 'DELETE_ATTACHMENT' => 'Delete attachment',
'DELETE_ATTACHMENTS' => 'Delete attachments', 'DELETE_ATTACHMENTS' => 'Delete attachments',
'DELETE_ATTACHMENT_CONFIRM' => 'Are you sure you want to delete this attachment?', 'DELETE_ATTACHMENT_CONFIRM' => 'Are you sure you want to delete this attachment?',
@ -162,9 +162,9 @@ $lang = array_merge($lang, array(
'EMAIL_BANNED_EMAIL' => 'The e-mail address you entered is not allowed to be used.', 'EMAIL_BANNED_EMAIL' => 'The e-mail address you entered is not allowed to be used.',
'EMAIL_INVALID_EMAIL' => 'The e-mail address you entered is invalid.', 'EMAIL_INVALID_EMAIL' => 'The e-mail address you entered is invalid.',
'EMAIL_REMIND' => 'This must be the e-mail address you supplied when registering.', 'EMAIL_REMIND' => 'This must be the e-mail address you supplied when registering.',
'EMAIL_TAKEN_EMAIL' => 'The entered e-mail address is already in use', 'EMAIL_TAKEN_EMAIL' => 'The entered e-mail address is already in use.',
'EMPTY_DRAFT' => 'You must enter a message to submit your changes', 'EMPTY_DRAFT' => 'You must enter a message to submit your changes.',
'EMPTY_DRAFT_TITLE' => 'You must enter a draft title', 'EMPTY_DRAFT_TITLE' => 'You must enter a draft title.',
'EXPORT_AS_XML' => 'Export as XML', 'EXPORT_AS_XML' => 'Export as XML',
'EXPORT_AS_CSV' => 'Export as CSV', 'EXPORT_AS_CSV' => 'Export as CSV',
'EXPORT_AS_CSV_EXCEL' => 'Export as CSV (Excel)', 'EXPORT_AS_CSV_EXCEL' => 'Export as CSV (Excel)',
@ -184,23 +184,23 @@ $lang = array_merge($lang, array(
'FOE_MESSAGE' => 'Message from foe', 'FOE_MESSAGE' => 'Message from foe',
'FOES_EXPLAIN' => 'Foes are users which will be ignored by default. Posts by these users will not be fully visible. Personal messages from foes are still permitted. Please note that you cannot ignore moderators or administrators.', 'FOES_EXPLAIN' => 'Foes are users which will be ignored by default. Posts by these users will not be fully visible. Personal messages from foes are still permitted. Please note that you cannot ignore moderators or administrators.',
'FOES_UPDATED' => 'Your foes list has been updated successfully', 'FOES_UPDATED' => 'Your foes list has been updated successfully.',
'FOLDER_ADDED' => 'Folder successfully added', 'FOLDER_ADDED' => 'Folder successfully added.',
'FOLDER_MESSAGE_STATUS' => '%1$d from %2$d messages stored', 'FOLDER_MESSAGE_STATUS' => '%1$d from %2$d messages stored',
'FOLDER_NAME_EXIST' => 'Folder <strong>%s</strong> already exists', 'FOLDER_NAME_EXIST' => 'Folder <strong>%s</strong> already exists.',
'FOLDER_OPTIONS' => 'Folder options', 'FOLDER_OPTIONS' => 'Folder options',
'FOLDER_RENAMED' => 'Folder successfully renamed', 'FOLDER_RENAMED' => 'Folder successfully renamed.',
'FOLDER_REMOVED' => 'Folder successfully removed', 'FOLDER_REMOVED' => 'Folder successfully removed.',
'FOLDER_STATUS_MSG' => 'Folder is %1$d%% full (%2$d from %3$d messages stored)', 'FOLDER_STATUS_MSG' => 'Folder is %1$d%% full (%2$d from %3$d messages stored)',
'FORWARD_PM' => 'Forward PM', 'FORWARD_PM' => 'Forward PM',
'FORCE_PASSWORD_EXPLAIN' => 'Before you may continue browsing the board you are required to change your password', 'FORCE_PASSWORD_EXPLAIN' => 'Before you may continue browsing the board you are required to change your password.',
'FRIEND_MESSAGE' => 'Message from friend', 'FRIEND_MESSAGE' => 'Message from friend',
'FRIENDS' => 'Friends', 'FRIENDS' => 'Friends',
'FRIENDS_EXPLAIN' => 'Friends enable you quick access to members you communicate with frequently. If the template has relevant support any posts made by a friend may be highlighted.', 'FRIENDS_EXPLAIN' => 'Friends enable you quick access to members you communicate with frequently. If the template has relevant support any posts made by a friend may be highlighted.',
'FRIENDS_OFFLINE' => 'Offline', 'FRIENDS_OFFLINE' => 'Offline',
'FRIENDS_ONLINE' => 'Online', 'FRIENDS_ONLINE' => 'Online',
'FRIENDS_UPDATED' => 'Your friends list has been updated successfully', 'FRIENDS_UPDATED' => 'Your friends list has been updated successfully.',
'FULL_FOLDER_OPTION_CHANGED'=> 'The action to take when a folder is full have been changed successfully', 'FULL_FOLDER_OPTION_CHANGED'=> 'The action to take when a folder is full have been changed successfully.',
'FWD_ORIGINAL_MESSAGE' => '-------- Original Message --------', 'FWD_ORIGINAL_MESSAGE' => '-------- Original Message --------',
'FWD_SUBJECT' => 'Subject: %s', 'FWD_SUBJECT' => 'Subject: %s',
'FWD_DATE' => 'Date: %s', 'FWD_DATE' => 'Date: %s',
@ -217,7 +217,7 @@ $lang = array_merge($lang, array(
'IMPORTANT_NEWS' => 'Important announcements', 'IMPORTANT_NEWS' => 'Important announcements',
'INVALID_CHARS_USERNAME' => 'The username contains forbidden characters.', 'INVALID_CHARS_USERNAME' => 'The username contains forbidden characters.',
'INVALID_CHARS_NEW_PASSWORD'=> 'The password does not contain the required characters.', 'INVALID_CHARS_NEW_PASSWORD'=> 'The password does not contain the required characters.',
'ITEMS_REQUIRED' => 'The items marked with * are required profile fields and need to be filled out', 'ITEMS_REQUIRED' => 'The items marked with * are required profile fields and need to be filled out.',
'JOIN_SELECTED' => 'Join selected', 'JOIN_SELECTED' => 'Join selected',
@ -226,20 +226,20 @@ $lang = array_merge($lang, array(
'LINK_REMOTE_AVATAR_EXPLAIN'=> 'Enter the URL of the location containing the avatar image you wish to link to.', 'LINK_REMOTE_AVATAR_EXPLAIN'=> 'Enter the URL of the location containing the avatar image you wish to link to.',
'LINK_REMOTE_SIZE' => 'Avatar dimensions', 'LINK_REMOTE_SIZE' => 'Avatar dimensions',
'LINK_REMOTE_SIZE_EXPLAIN' => 'Specify the width and height of the avatar, leave blank to attempt automatic verification.', 'LINK_REMOTE_SIZE_EXPLAIN' => 'Specify the width and height of the avatar, leave blank to attempt automatic verification.',
'LOGIN_EXPLAIN_UCP' => 'Please login in order to access the User Control Panel', 'LOGIN_EXPLAIN_UCP' => 'Please login in order to access the User Control Panel.',
'LOGIN_REDIRECT' => 'You have been successfully logged in.', 'LOGIN_REDIRECT' => 'You have been successfully logged in.',
'LOGOUT_REDIRECT' => 'You have been successfully logged out.', 'LOGOUT_REDIRECT' => 'You have been successfully logged out.',
'MARK_IMPORTANT' => 'Mark/Unmark as important', 'MARK_IMPORTANT' => 'Mark/Unmark as important',
'MARKED_MESSAGE' => 'Marked message', 'MARKED_MESSAGE' => 'Marked message',
'MAX_FOLDER_REACHED' => 'Maximum number of allowed user defined folders reached', 'MAX_FOLDER_REACHED' => 'Maximum number of allowed user defined folders reached.',
'MESSAGE_BY_AUTHOR' => 'by', 'MESSAGE_BY_AUTHOR' => 'by',
'MESSAGE_COLOURS' => 'Message colours', 'MESSAGE_COLOURS' => 'Message colours',
'MESSAGE_DELETED' => 'Message successfully deleted', 'MESSAGE_DELETED' => 'Message successfully deleted.',
'MESSAGE_HISTORY' => 'Message history', 'MESSAGE_HISTORY' => 'Message history',
'MESSAGE_REMOVED_FROM_OUTBOX' => 'This message has been removed by its author before it was delivered', 'MESSAGE_REMOVED_FROM_OUTBOX' => 'This message has been removed by its author before it was delivered.',
'MESSAGE_SENT_ON' => 'on', 'MESSAGE_SENT_ON' => 'on',
'MESSAGE_STORED' => 'This message has been sent successfully', 'MESSAGE_STORED' => 'This message has been sent successfully.',
'MESSAGE_TO' => 'To', 'MESSAGE_TO' => 'To',
'MESSAGES_DELETED' => 'Messages successfully deleted', 'MESSAGES_DELETED' => 'Messages successfully deleted',
'MOVE_DELETED_MESSAGES_TO' => 'Move messages from removed folder to', 'MOVE_DELETED_MESSAGES_TO' => 'Move messages from removed folder to',
@ -260,8 +260,8 @@ $lang = array_merge($lang, array(
'NOTIFY_METHOD_IM' => 'Jabber only', 'NOTIFY_METHOD_IM' => 'Jabber only',
'NOTIFY_ON_PM' => 'Notify me on new private messages', 'NOTIFY_ON_PM' => 'Notify me on new private messages',
'NOT_ADDED_FRIENDS_ANONYMOUS' => 'You cannot add the anonymous user to your friends list.', 'NOT_ADDED_FRIENDS_ANONYMOUS' => 'You cannot add the anonymous user to your friends list.',
'NOT_ADDED_FRIENDS_FOES' => 'You cannot add users to your friends list who are on your foes list', 'NOT_ADDED_FRIENDS_FOES' => 'You cannot add users to your friends list who are on your foes list.',
'NOT_ADDED_FRIENDS_SELF' => 'You cannot add yourself to the friends list', 'NOT_ADDED_FRIENDS_SELF' => 'You cannot add yourself to the friends list.',
'NOT_ADDED_FOES_MOD_ADMIN' => 'You cannot add administrators and moderators to your foes list.', 'NOT_ADDED_FOES_MOD_ADMIN' => 'You cannot add administrators and moderators to your foes list.',
'NOT_ADDED_FOES_ANONYMOUS' => 'You cannot add the anonymous user to your foes list.', 'NOT_ADDED_FOES_ANONYMOUS' => 'You cannot add the anonymous user to your foes list.',
'NOT_ADDED_FOES_FRIENDS' => 'You cannot add users to your foes list who are on your friends list.', 'NOT_ADDED_FOES_FRIENDS' => 'You cannot add users to your foes list who are on your friends list.',
@ -281,40 +281,40 @@ $lang = array_merge($lang, array(
'NO_AUTH_READ_MESSAGE' => 'You are not authorised to read private messages.', 'NO_AUTH_READ_MESSAGE' => 'You are not authorised to read private messages.',
'NO_AUTH_READ_REMOVED_MESSAGE' => 'You are not able to read this message because it was removed by the author.', 'NO_AUTH_READ_REMOVED_MESSAGE' => 'You are not able to read this message because it was removed by the author.',
'NO_AUTH_SEND_MESSAGE' => 'You are not authorised sending private messages.', 'NO_AUTH_SEND_MESSAGE' => 'You are not authorised sending private messages.',
'NO_AUTH_SIGNATURE' => 'You are not authorised to define a signature', 'NO_AUTH_SIGNATURE' => 'You are not authorised to define a signature.',
'NO_BCC_RECIPIENT' => 'None', 'NO_BCC_RECIPIENT' => 'None',
'NO_BOOKMARKS' => 'You have no bookmarks', 'NO_BOOKMARKS' => 'You have no bookmarks',
'NO_BOOKMARKS_SELECTED' => 'You have selected no bookmarks', 'NO_BOOKMARKS_SELECTED' => 'You have selected no bookmarks.',
'NO_EMAIL_USER' => 'The e-mail/username information submitted could not be found', 'NO_EMAIL_USER' => 'The e-mail/username information submitted could not be found.',
'NO_FOES' => 'No foes currently defined', 'NO_FOES' => 'No foes currently defined',
'NO_FRIENDS' => 'No friends currently defined', 'NO_FRIENDS' => 'No friends currently defined',
'NO_FRIENDS_OFFLINE' => 'No friends offline', 'NO_FRIENDS_OFFLINE' => 'No friends offline',
'NO_FRIENDS_ONLINE' => 'No friends online', 'NO_FRIENDS_ONLINE' => 'No friends online',
'NO_GROUP_SELECTED' => 'No group specified', 'NO_GROUP_SELECTED' => 'No group specified.',
'NO_IMPORTANT_NEWS' => 'No important announcements present', 'NO_IMPORTANT_NEWS' => 'No important announcements present.',
'NO_MESSAGE' => 'Private message could not be found', 'NO_MESSAGE' => 'Private message could not be found.',
'NO_NEW_FOLDER_NAME' => 'You have to specify a new folder name', 'NO_NEW_FOLDER_NAME' => 'You have to specify a new folder name.',
'NO_NEWER_PM' => 'No newer messages', 'NO_NEWER_PM' => 'No newer messages.',
'NO_OLDER_PM' => 'No older messages', 'NO_OLDER_PM' => 'No older messages.',
'NO_PASSWORD_SUPPLIED' => 'You cannot login without a password.', 'NO_PASSWORD_SUPPLIED' => 'You cannot login without a password.',
'NO_RECIPIENT' => 'No recipient defined', 'NO_RECIPIENT' => 'No recipient defined.',
'NO_RULES_DEFINED' => 'No rules defined', 'NO_RULES_DEFINED' => 'No rules defined.',
'NO_SAVED_DRAFTS' => 'No drafts saved', 'NO_SAVED_DRAFTS' => 'No drafts saved.',
'NO_TO_RECIPIENT' => 'None', 'NO_TO_RECIPIENT' => 'None',
'NO_WATCHED_FORUMS' => 'You are not watching any forums.', 'NO_WATCHED_FORUMS' => 'You are not watching any forums.',
'NO_WATCHED_TOPICS' => 'You are not watching any topics.', 'NO_WATCHED_TOPICS' => 'You are not watching any topics.',
'PASS_TYPE_ALPHA_EXPLAIN' => 'Password must be between %1$d and %2$d characters long, must contain letters in mixed case and must contain numbers', 'PASS_TYPE_ALPHA_EXPLAIN' => 'Password must be between %1$d and %2$d characters long, must contain letters in mixed case and must contain numbers.',
'PASS_TYPE_ANY_EXPLAIN' => 'Must be between %1$d and %2$d characters.', 'PASS_TYPE_ANY_EXPLAIN' => 'Must be between %1$d and %2$d characters.',
'PASS_TYPE_CASE_EXPLAIN' => 'Password must be between %1$d and %2$d characters long and must contain letters in mixed case', 'PASS_TYPE_CASE_EXPLAIN' => 'Password must be between %1$d and %2$d characters long and must contain letters in mixed case.',
'PASS_TYPE_SYMBOL_EXPLAIN' => 'Password must be between %1$d and %2$d characters long, must contain letters in mixed case, must contain numbers and must contain symbols', 'PASS_TYPE_SYMBOL_EXPLAIN' => 'Password must be between %1$d and %2$d characters long, must contain letters in mixed case, must contain numbers and must contain symbols.',
'PASSWORD' => 'Password', 'PASSWORD' => 'Password',
'PASSWORD_ACTIVATED' => 'Your new password has been activated', 'PASSWORD_ACTIVATED' => 'Your new password has been activated.',
'PASSWORD_UPDATED' => 'Your password has been sent successfully to your original e-mail address.', 'PASSWORD_UPDATED' => 'Your password has been sent successfully to your original e-mail address.',
'PERMISSIONS_RESTORED' => 'Successfully restored original permissions.', 'PERMISSIONS_RESTORED' => 'Successfully restored original permissions.',
'PERMISSIONS_TRANSFERRED' => 'Successfully transferred permissions from <strong>%s</strong>, you are now able to browse the forum with the users permissions.<br />Please note that admin permissions were not transferred. You are able to revert to your permission set at any time.', 'PERMISSIONS_TRANSFERRED' => 'Successfully transferred permissions from <strong>%s</strong>, you are now able to browse the forum with the users permissions.<br />Please note that admin permissions were not transferred. You are able to revert to your permission set at any time.',
'PM_DISABLED' => 'Private messaging has been disabled on this board', 'PM_DISABLED' => 'Private messaging has been disabled on this board.',
'PM_FROM' => 'From', 'PM_FROM' => 'From',
'PM_FROM_REMOVED_AUTHOR' => 'This message was sent by a user no longer registered.', 'PM_FROM_REMOVED_AUTHOR' => 'This message was sent by a user no longer registered.',
'PM_ICON' => 'PM icon', 'PM_ICON' => 'PM icon',
@ -354,19 +354,19 @@ $lang = array_merge($lang, array(
'RESIGN_SELECTED' => 'Resign selected', 'RESIGN_SELECTED' => 'Resign selected',
'RETURN_FOLDER' => '%1$sReturn to previous folder%2$s', 'RETURN_FOLDER' => '%1$sReturn to previous folder%2$s',
'RETURN_UCP' => '%sReturn to the User Control Panel%s', 'RETURN_UCP' => '%sReturn to the User Control Panel%s',
'RULE_ADDED' => 'Rule successfully added', 'RULE_ADDED' => 'Rule successfully added.',
'RULE_ALREADY_DEFINED' => 'This rule was defined previously', 'RULE_ALREADY_DEFINED' => 'This rule was defined previously.',
'RULE_DELETED' => 'Rule successfully removed', 'RULE_DELETED' => 'Rule successfully removed.',
'RULE_NOT_DEFINED' => 'Rule not correctly specified', 'RULE_NOT_DEFINED' => 'Rule not correctly specified.',
'RULE_REMOVED_MESSAGE' => 'One private message had been removed due to private message filters.', 'RULE_REMOVED_MESSAGE' => 'One private message had been removed due to private message filters.',
'RULE_REMOVED_MESSAGES' => '%d private messages were removed due to private message filters.', 'RULE_REMOVED_MESSAGES' => '%d private messages were removed due to private message filters.',
'SAME_PASSWORD_ERROR' => 'The new password you entered is the same as your current password', 'SAME_PASSWORD_ERROR' => 'The new password you entered is the same as your current password.',
'SEARCH_YOUR_POSTS' => 'Show your posts', 'SEARCH_YOUR_POSTS' => 'Show your posts',
'SEND_PASSWORD' => 'Send password', 'SEND_PASSWORD' => 'Send password',
'SENT_AT' => 'Sent at', 'SENT_AT' => 'Sent at',
'SHOW_EMAIL' => 'Users can contact me by e-mail', 'SHOW_EMAIL' => 'Users can contact me by e-mail',
'SIGNATURE_EXPLAIN' => 'This is a block of text that can be added to posts you make. There is a %d character limit', 'SIGNATURE_EXPLAIN' => 'This is a block of text that can be added to posts you make. There is a %d character limit.',
'SIGNATURE_PREVIEW' => 'Your signature will appear like this in posts', 'SIGNATURE_PREVIEW' => 'Your signature will appear like this in posts',
'SIGNATURE_TOO_LONG' => 'Your signature is too long.', 'SIGNATURE_TOO_LONG' => 'Your signature is too long.',
'SORT' => 'Sort', 'SORT' => 'Sort',
@ -379,7 +379,7 @@ $lang = array_merge($lang, array(
'TIMEZONE' => 'Timezone', 'TIMEZONE' => 'Timezone',
'TO' => 'To', 'TO' => 'To',
'TOO_MANY_RECIPIENTS' => 'Too many recipients', 'TOO_MANY_RECIPIENTS' => 'Too many recipients.',
'TOO_MANY_REGISTERS' => 'You have exceeded the maximum number of registration attempts for this session. Please try again later.', 'TOO_MANY_REGISTERS' => 'You have exceeded the maximum number of registration attempts for this session. Please try again later.',
'UCP' => 'User Control Panel', 'UCP' => 'User Control Panel',
@ -401,7 +401,7 @@ $lang = array_merge($lang, array(
'UCP_MAIN_SUBSCRIBED' => 'Manage subscriptions', 'UCP_MAIN_SUBSCRIBED' => 'Manage subscriptions',
'UCP_MSNM' => 'MSN Messenger', 'UCP_MSNM' => 'MSN Messenger',
'UCP_NO_ATTACHMENTS' => 'You have posted no files', 'UCP_NO_ATTACHMENTS' => 'You have posted no files.',
'UCP_PREFS' => 'Forum preferences', 'UCP_PREFS' => 'Forum preferences',
'UCP_PREFS_PERSONAL' => 'Edit global settings', 'UCP_PREFS_PERSONAL' => 'Edit global settings',
@ -440,10 +440,10 @@ $lang = array_merge($lang, array(
'UPLOAD_AVATAR_FILE' => 'Upload from your machine', 'UPLOAD_AVATAR_FILE' => 'Upload from your machine',
'UPLOAD_AVATAR_URL' => 'Upload from a URL', 'UPLOAD_AVATAR_URL' => 'Upload from a URL',
'UPLOAD_AVATAR_URL_EXPLAIN' => 'Enter the URL of the location containing the image, it will be copied to this site.', 'UPLOAD_AVATAR_URL_EXPLAIN' => 'Enter the URL of the location containing the image, it will be copied to this site.',
'USERNAME_ALPHA_ONLY_EXPLAIN' => 'Username must be between %1$d and %2$d chars long and use only alphanumeric characters', 'USERNAME_ALPHA_ONLY_EXPLAIN' => 'Username must be between %1$d and %2$d chars long and use only alphanumeric characters.',
'USERNAME_ALPHA_SPACERS_EXPLAIN'=> 'Username must be between %1$d and %2$d chars long and use alphanumeric, space or -+_[] characters.', 'USERNAME_ALPHA_SPACERS_EXPLAIN'=> 'Username must be between %1$d and %2$d chars long and use alphanumeric, space or -+_[] characters.',
'USERNAME_ASCII_EXPLAIN' => 'Username must be between %1$d and %2$d chars long and use only ASCII characters, so no special symbols', 'USERNAME_ASCII_EXPLAIN' => 'Username must be between %1$d and %2$d chars long and use only ASCII characters, so no special symbols.',
'USERNAME_LETTER_NUM_EXPLAIN' => 'Username must be between %1$d and %2$d chars long and use only letter or number characters', 'USERNAME_LETTER_NUM_EXPLAIN' => 'Username must be between %1$d and %2$d chars long and use only letter or number characters.',
'USERNAME_LETTER_NUM_SPACERS_EXPLAIN'=> 'Username must be between %1$d and %2$d chars long and use letter, number, space or -+_[] characters.', 'USERNAME_LETTER_NUM_SPACERS_EXPLAIN'=> 'Username must be between %1$d and %2$d chars long and use letter, number, space or -+_[] characters.',
'USERNAME_CHARS_ANY_EXPLAIN' => 'Length must be between %1$d and %2$d characters.', 'USERNAME_CHARS_ANY_EXPLAIN' => 'Length must be between %1$d and %2$d characters.',
'USERNAME_TAKEN_USERNAME' => 'The username you entered is already in use, please select an alternative.', 'USERNAME_TAKEN_USERNAME' => 'The username you entered is already in use, please select an alternative.',
@ -474,13 +474,13 @@ $lang = array_merge($lang, array(
'WATCHED_EXPLAIN' => 'Below is a list of forums and topics you are subscribed to. You will be notified of new posts in either. To unsubscribe mark the forum or topic and then press the <em>Unwatch marked</em> button.', 'WATCHED_EXPLAIN' => 'Below is a list of forums and topics you are subscribed to. You will be notified of new posts in either. To unsubscribe mark the forum or topic and then press the <em>Unwatch marked</em> button.',
'WATCHED_FORUMS' => 'Watched forums', 'WATCHED_FORUMS' => 'Watched forums',
'WATCHED_TOPICS' => 'Watched topics', 'WATCHED_TOPICS' => 'Watched topics',
'WRONG_ACTIVATION' => 'The activation key you supplied does not match any in the database', 'WRONG_ACTIVATION' => 'The activation key you supplied does not match any in the database.',
'YOUR_DETAILS' => 'Your activity', 'YOUR_DETAILS' => 'Your activity',
'YOUR_FOES' => 'Your foes', 'YOUR_FOES' => 'Your foes',
'YOUR_FOES_EXPLAIN' => 'To remove usernames select them and click submit', 'YOUR_FOES_EXPLAIN' => 'To remove usernames select them and click submit.',
'YOUR_FRIENDS' => 'Your friends', 'YOUR_FRIENDS' => 'Your friends',
'YOUR_FRIENDS_EXPLAIN' => 'To remove usernames select them and click submit', 'YOUR_FRIENDS_EXPLAIN' => 'To remove usernames select them and click submit.',
'YOUR_WARNINGS' => 'Your warning level', 'YOUR_WARNINGS' => 'Your warning level',
'PM_ACTION' => array( 'PM_ACTION' => array(

View file

@ -51,7 +51,7 @@ $lang = array_merge($lang, array(
'POST_FORUM_LOCKED' => 'Forum is locked', 'POST_FORUM_LOCKED' => 'Forum is locked',
'TOPICS_MARKED' => 'The topics for this forum have now been marked read', 'TOPICS_MARKED' => 'The topics for this forum have now been marked read.',
'VIEW_FORUM' => 'View forum', 'VIEW_FORUM' => 'View forum',
'VIEW_FORUM_TOPIC' => '1 topic', 'VIEW_FORUM_TOPIC' => '1 topic',

View file

@ -32,13 +32,13 @@ if (empty($lang) || !is_array($lang))
$lang = array_merge($lang, array( $lang = array_merge($lang, array(
'ATTACHMENT' => 'Attachment', 'ATTACHMENT' => 'Attachment',
'ATTACHMENT_FUNCTIONALITY_DISABLED' => 'The attachments feature has been disabled', 'ATTACHMENT_FUNCTIONALITY_DISABLED' => 'The attachments feature has been disabled.',
'BOOKMARK_ADDED' => 'Bookmarked topic successfully.', 'BOOKMARK_ADDED' => 'Bookmarked topic successfully.',
'BOOKMARK_REMOVED' => 'Removed bookmarked topic successfully.', 'BOOKMARK_REMOVED' => 'Removed bookmarked topic successfully.',
'BOOKMARK_TOPIC' => 'Bookmark topic', 'BOOKMARK_TOPIC' => 'Bookmark topic',
'BOOKMARK_TOPIC_REMOVE' => 'Remove from bookmarks', 'BOOKMARK_TOPIC_REMOVE' => 'Remove from bookmarks',
'BUMPED_BY' => 'Last bumped by %1$s on %2$s', 'BUMPED_BY' => 'Last bumped by %1$s on %2$s.',
'BUMP_TOPIC' => 'Bump topic', 'BUMP_TOPIC' => 'Bump topic',
'CODE' => 'Code', 'CODE' => 'Code',
@ -46,17 +46,17 @@ $lang = array_merge($lang, array(
'DELETE_TOPIC' => 'Delete topic', 'DELETE_TOPIC' => 'Delete topic',
'DOWNLOAD_NOTICE' => 'You do not have the required permissions to view the files attached to this post.', 'DOWNLOAD_NOTICE' => 'You do not have the required permissions to view the files attached to this post.',
'EDITED_TIMES_TOTAL' => 'Last edited by %1$s on %2$s, edited %3$d times in total', 'EDITED_TIMES_TOTAL' => 'Last edited by %1$s on %2$s, edited %3$d times in total.',
'EDITED_TIME_TOTAL' => 'Last edited by %1$s on %2$s, edited %3$d time in total', 'EDITED_TIME_TOTAL' => 'Last edited by %1$s on %2$s, edited %3$d time in total.',
'EMAIL_TOPIC' => 'E-mail friend', 'EMAIL_TOPIC' => 'E-mail friend',
'ERROR_NO_ATTACHMENT' => 'The selected attachment does not exist anymore', 'ERROR_NO_ATTACHMENT' => 'The selected attachment does not exist anymore.',
'FILE_NOT_FOUND_404' => 'The file <strong>%s</strong> does not exist.', 'FILE_NOT_FOUND_404' => 'The file <strong>%s</strong> does not exist.',
'FORK_TOPIC' => 'Copy topic', 'FORK_TOPIC' => 'Copy topic',
'LINKAGE_FORBIDDEN' => 'You are not authorised to view, download or link from/to this site.', 'LINKAGE_FORBIDDEN' => 'You are not authorised to view, download or link from/to this site.',
'LOGIN_NOTIFY_TOPIC' => 'You have been notified about this topic, please login to view it.', 'LOGIN_NOTIFY_TOPIC' => 'You have been notified about this topic, please login to view it.',
'LOGIN_VIEWTOPIC' => 'The board administrator requires you to be registered and logged in to view this topic.', 'LOGIN_VIEWTOPIC' => 'The board requires you to be registered and logged in to view this topic.',
'MAKE_ANNOUNCE' => 'Change to “Announcement”', 'MAKE_ANNOUNCE' => 'Change to “Announcement”',
'MAKE_GLOBAL' => 'Change to “Global”', 'MAKE_GLOBAL' => 'Change to “Global”',
@ -68,8 +68,8 @@ $lang = array_merge($lang, array(
'MOVE_TOPIC' => 'Move topic', 'MOVE_TOPIC' => 'Move topic',
'NO_ATTACHMENT_SELECTED'=> 'You havent selected an attachment to download or view.', 'NO_ATTACHMENT_SELECTED'=> 'You havent selected an attachment to download or view.',
'NO_NEWER_TOPICS' => 'There are no newer topics in this forum', 'NO_NEWER_TOPICS' => 'There are no newer topics in this forum.',
'NO_OLDER_TOPICS' => 'There are no older topics in this forum', 'NO_OLDER_TOPICS' => 'There are no older topics in this forum.',
'NO_UNREAD_POSTS' => 'There are no new unread posts for this topic.', 'NO_UNREAD_POSTS' => 'There are no new unread posts for this topic.',
'NO_VOTE_OPTION' => 'You must specify an option when voting.', 'NO_VOTE_OPTION' => 'You must specify an option when voting.',
'NO_VOTES' => 'No votes', 'NO_VOTES' => 'No votes',
@ -99,7 +99,7 @@ $lang = array_merge($lang, array(
'VIEW_TOPIC_POSTS' => '%d posts', 'VIEW_TOPIC_POSTS' => '%d posts',
'VIEW_UNREAD_POST' => 'First unread post', 'VIEW_UNREAD_POST' => 'First unread post',
'VISIT_WEBSITE' => 'WWW', 'VISIT_WEBSITE' => 'WWW',
'VOTE_SUBMITTED' => 'Your vote has been cast', 'VOTE_SUBMITTED' => 'Your vote has been cast.',
'WROTE' => 'wrote', 'WROTE' => 'wrote',
)); ));

View file

@ -135,7 +135,7 @@
</div> </div>
<div id="message-box"> <div id="message-box">
<textarea <!-- IF S_UCP_ACTION and not S_PRIVMSGS and not S_EDIT_DRAFT -->name="signature" id="signature" style="height: 9em;"<!-- ELSE -->name="message" id="message"<!-- ENDIF --> rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" title="{L_MESSAGE_BODY_EXPLAIN}" class="inputbox">{MESSAGE}{DRAFT_MESSAGE}{SIGNATURE}</textarea> <textarea <!-- IF S_UCP_ACTION and not S_PRIVMSGS and not S_EDIT_DRAFT -->name="signature" id="signature" style="height: 9em;"<!-- ELSE -->name="message" id="message"<!-- ENDIF --> rows="15" cols="76" tabindex="3" onselect="storeCaret(this);" onclick="storeCaret(this);" onkeyup="storeCaret(this);" class="inputbox">{MESSAGE}{DRAFT_MESSAGE}{SIGNATURE}</textarea>
</div> </div>
</fieldset> </fieldset>