Augmentation vers version 3.3.0
This commit is contained in:
169
install/update/old/language/en/acp/attachments.php
Normal file
169
install/update/old/language/en/acp/attachments.php
Normal file
@@ -0,0 +1,169 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'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_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 orphaned files. 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 will assign the already uploaded attachment to the post you entered.',
|
||||
'ADD_EXTENSION' => 'Add extension',
|
||||
'ADD_EXTENSION_GROUP' => 'Add extension group',
|
||||
'ADMIN_UPLOAD_ERROR' => 'Errors while trying to attach file: “%s”.',
|
||||
'ALLOWED_FORUMS' => 'Allowed forums',
|
||||
'ALLOWED_FORUMS_EXPLAIN' => 'Able to post the assigned extensions at the selected (or all if selected) forums.',
|
||||
'ALLOWED_IN_PM_POST' => 'Allowed',
|
||||
'ALLOW_ATTACHMENTS' => 'Allow attachments',
|
||||
'ALLOW_ALL_FORUMS' => 'Allow all forums',
|
||||
'ALLOW_IN_PM' => 'Allowed in private messaging',
|
||||
'ALLOW_PM_ATTACHMENTS' => 'Allow attachments in private messages',
|
||||
'ALLOW_SELECTED_FORUMS' => 'Only forums selected below',
|
||||
'ASSIGNED_EXTENSIONS' => 'Assigned extensions',
|
||||
'ASSIGNED_GROUP' => 'Assigned extension group',
|
||||
'ATTACH_EXTENSIONS_URL' => 'Extensions',
|
||||
'ATTACH_EXT_GROUPS_URL' => 'Extension groups',
|
||||
'ATTACH_ID' => 'ID',
|
||||
'ATTACH_MAX_FILESIZE' => 'Maximum file size',
|
||||
'ATTACH_MAX_FILESIZE_EXPLAIN' => 'Maximum size of each file. If this value is 0, the uploadable filesize is only limited by your PHP configuration.',
|
||||
'ATTACH_MAX_PM_FILESIZE' => 'Maximum file size messaging',
|
||||
'ATTACH_MAX_PM_FILESIZE_EXPLAIN' => 'Maximum size of each file, with 0 being unlimited, attached to a private message.',
|
||||
'ATTACH_ORPHAN_URL' => 'Orphan attachments',
|
||||
'ATTACH_POST_ID' => 'Post ID',
|
||||
'ATTACH_POST_TYPE' => 'Post type',
|
||||
'ATTACH_QUOTA' => 'Total attachment quota',
|
||||
'ATTACH_QUOTA_EXPLAIN' => 'Maximum drive space available for attachments for the whole board, with 0 being unlimited.',
|
||||
'ATTACH_TO_POST' => 'Attach file to post',
|
||||
|
||||
'CAT_FLASH_FILES' => 'Flash files',
|
||||
'CAT_IMAGES' => 'Images',
|
||||
'CHECK_CONTENT' => 'Check attachment files',
|
||||
'CHECK_CONTENT_EXPLAIN' => 'Some browsers can be tricked to assume an incorrect mimetype for uploaded files. This option ensures that such files likely to cause this are rejected.',
|
||||
'CREATE_GROUP' => 'Create new group',
|
||||
'CREATE_THUMBNAIL' => 'Create thumbnail',
|
||||
'CREATE_THUMBNAIL_EXPLAIN' => 'Create a thumbnail in all possible situations.',
|
||||
|
||||
'DEFINE_ALLOWED_IPS' => 'Define allowed 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_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_EXPLAIN' => 'If set to No image attachments will show as a link.',
|
||||
'DISPLAY_ORDER' => 'Attachment display order',
|
||||
'DISPLAY_ORDER_EXPLAIN' => 'Display attachments ordered by time.',
|
||||
|
||||
'EDIT_EXTENSION_GROUP' => 'Edit extension group',
|
||||
'EXCLUDE_ENTERED_IP' => 'Enable this to exclude the entered IP/hostname.',
|
||||
'EXCLUDE_FROM_ALLOWED_IP' => 'Exclude IP from allowed IPs/hostnames',
|
||||
'EXCLUDE_FROM_DISALLOWED_IP' => 'Exclude IP from disallowed IPs/hostnames',
|
||||
'EXTENSIONS_UPDATED' => 'Extensions successfully updated.',
|
||||
'EXTENSION_EXIST' => 'The extension %s already exists.',
|
||||
'EXTENSION_GROUP' => 'Extension group',
|
||||
'EXTENSION_GROUPS' => 'Extension groups',
|
||||
'EXTENSION_GROUP_DELETED' => 'Extension group successfully deleted.',
|
||||
'EXTENSION_GROUP_EXIST' => 'The extension group %s already exists.',
|
||||
|
||||
'EXT_GROUP_ARCHIVES' => 'Archives',
|
||||
'EXT_GROUP_DOCUMENTS' => 'Documents',
|
||||
'EXT_GROUP_DOWNLOADABLE_FILES' => 'Downloadable Files',
|
||||
'EXT_GROUP_FLASH_FILES' => 'Flash Files',
|
||||
'EXT_GROUP_IMAGES' => 'Images',
|
||||
'EXT_GROUP_PLAIN_TEXT' => 'Plain Text',
|
||||
|
||||
'FILES_GONE' => 'Some of the attachments you selected for deletion do not exist. They may have been already deleted. Attachments that did exist were deleted.',
|
||||
'FILES_STATS_WRONG' => 'Your file statistics are likely inaccurate and need to be resynchronised. Actual values: number of attachments = %1$d, total size of attachments = %2$s.<br />Click %3$shere%4$s to resynchronise them.',
|
||||
|
||||
'GO_TO_EXTENSIONS' => 'Go to extension management screen',
|
||||
'GROUP_NAME' => 'Group name',
|
||||
|
||||
'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.',
|
||||
|
||||
'MAX_ATTACHMENTS' => 'Maximum number of attachments per post',
|
||||
'MAX_ATTACHMENTS_PM' => 'Maximum number of attachments per private message',
|
||||
'MAX_EXTGROUP_FILESIZE' => 'Maximum file size',
|
||||
'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_THUMB_WIDTH' => 'Maximum thumbnail width/height in pixel',
|
||||
'MAX_THUMB_WIDTH_EXPLAIN' => 'A generated thumbnail will not exceed the width set here.',
|
||||
'MIN_THUMB_FILESIZE' => 'Minimum thumbnail file size',
|
||||
'MIN_THUMB_FILESIZE_EXPLAIN' => 'Do not create a thumbnail for images smaller than this.',
|
||||
'MODE_INLINE' => 'Inline',
|
||||
'MODE_PHYSICAL' => 'Physical',
|
||||
|
||||
'NOT_ALLOWED_IN_PM' => 'Only allowed in posts',
|
||||
'NOT_ALLOWED_IN_PM_POST' => 'Not allowed',
|
||||
'NOT_ASSIGNED' => 'Not assigned',
|
||||
'NO_ATTACHMENTS' => 'No attachments found for this period.',
|
||||
'NO_EXT_GROUP' => 'None',
|
||||
'NO_EXT_GROUP_NAME' => 'No group name entered',
|
||||
'NO_EXT_GROUP_SPECIFIED' => 'No extension group specified.',
|
||||
'NO_FILE_CAT' => 'None',
|
||||
'NO_IMAGE' => 'No image',
|
||||
'NO_UPLOAD_DIR' => 'The upload directory you specified does not exist.',
|
||||
'NO_WRITE_UPLOAD' => 'The upload directory you specified cannot be written to. Please alter the permissions to allow the webserver to write to it.',
|
||||
|
||||
'ONLY_ALLOWED_IN_PM' => 'Only allowed in private messages',
|
||||
'ORDER_ALLOW_DENY' => 'Allow',
|
||||
'ORDER_DENY_ALLOW' => 'Deny',
|
||||
|
||||
'REMOVE_ALLOWED_IPS' => 'Remove or un-exclude <em>allowed</em> IPs/hostnames',
|
||||
'REMOVE_DISALLOWED_IPS' => 'Remove or un-exclude <em>disallowed</em> IPs/hostnames',
|
||||
'RESYNC_FILES_STATS_CONFIRM' => 'Are you sure you wish to resynchronise file statistics?',
|
||||
|
||||
'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_DOWNLOADS' => 'Enable secure downloads',
|
||||
'SECURE_DOWNLOADS_EXPLAIN' => 'With this option enabled, downloads are limited to IP’s/hostnames you define.',
|
||||
'SECURE_DOWNLOAD_NOTICE' => 'Secure Downloads are not enabled. The settings below will be applied after enabling secure downloads.',
|
||||
'SECURE_DOWNLOAD_UPDATE_SUCCESS'=> 'The IP list has been updated successfully.',
|
||||
'SECURE_EMPTY_REFERRER' => 'Allow empty referrer',
|
||||
'SECURE_EMPTY_REFERRER_EXPLAIN' => 'Secure downloads are based on referrers. Do you want to allow downloads for those omitting the referrer?',
|
||||
'SETTINGS_CAT_IMAGES' => 'Image category settings',
|
||||
'SPECIAL_CATEGORY' => 'Special category',
|
||||
'SPECIAL_CATEGORY_EXPLAIN' => 'Special categories differ between the way presented within posts.',
|
||||
'SUCCESSFULLY_UPLOADED' => 'Successfully uploaded.',
|
||||
'SUCCESS_EXTENSION_GROUP_ADD' => 'Extension group successfully added.',
|
||||
'SUCCESS_EXTENSION_GROUP_EDIT' => 'Extension group successfully updated.',
|
||||
|
||||
'UPLOADING_FILES' => 'Uploading files',
|
||||
'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_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_ICON' => 'Upload icon',
|
||||
'UPLOAD_NOT_DIR' => 'The upload location you specified does not appear to be a directory.',
|
||||
));
|
||||
631
install/update/old/language/en/acp/board.php
Normal file
631
install/update/old/language/en/acp/board.php
Normal file
@@ -0,0 +1,631 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
// Board Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_BOARD_SETTINGS_EXPLAIN' => 'Here you can determine the basic operation of your board, give it a fitting name and description, and among other settings adjust the default values for timezone and language.',
|
||||
'BOARD_INDEX_TEXT' => 'Board index text',
|
||||
'BOARD_INDEX_TEXT_EXPLAIN' => 'This text is displayed as the board index in the board’s breadcrumbs. If not specified, it will default to “Board index”.',
|
||||
'BOARD_STYLE' => 'Board style',
|
||||
'CUSTOM_DATEFORMAT' => 'Custom…',
|
||||
'DEFAULT_DATE_FORMAT' => 'Date format',
|
||||
'DEFAULT_DATE_FORMAT_EXPLAIN' => 'The date format is the same as the PHP <code>date</code> function.',
|
||||
'DEFAULT_LANGUAGE' => 'Default language',
|
||||
'DEFAULT_STYLE' => 'Default style',
|
||||
'DEFAULT_STYLE_EXPLAIN' => 'The default style for new users.',
|
||||
'DISABLE_BOARD' => 'Disable board',
|
||||
'DISABLE_BOARD_EXPLAIN' => 'This will make the board unavailable to users who are neither administrators nor moderators. You can also enter a short (255 character) message to display if you wish.',
|
||||
'DISPLAY_LAST_SUBJECT' => 'Display subject of last added post on forum list',
|
||||
'DISPLAY_LAST_SUBJECT_EXPLAIN' => 'The subject of the last added post will be displayed in the forum list with a hyperlink to the post. Subjects from password protected forums and forums in which user doesn’t have read access are not shown.',
|
||||
'GUEST_STYLE' => 'Guest style',
|
||||
'GUEST_STYLE_EXPLAIN' => 'The board style for guests.',
|
||||
'OVERRIDE_STYLE' => 'Override user style',
|
||||
'OVERRIDE_STYLE_EXPLAIN' => 'Replaces user’s (and guest’s) style with the style as defined under "Default style".',
|
||||
'SITE_DESC' => 'Site description',
|
||||
'SITE_HOME_TEXT' => 'Main website text',
|
||||
'SITE_HOME_TEXT_EXPLAIN' => 'This text will be displayed as a link to your website homepage in the board’s breadcrumbs. If not specified, it will default to “Home”.',
|
||||
'SITE_HOME_URL' => 'Main website URL',
|
||||
'SITE_HOME_URL_EXPLAIN' => 'If specified, a link to this URL will be prepended to your board’s breadcrumbs and the board logo will link to this URL instead of the forum index. An absolute URL is required, e.g. <samp>http://www.phpbb.com</samp>.',
|
||||
'SITE_NAME' => 'Site name',
|
||||
'SYSTEM_TIMEZONE' => 'Guest timezone',
|
||||
'SYSTEM_TIMEZONE_EXPLAIN' => 'Timezone to use for displaying times to users who are not logged in (guests, bots). Logged in users set their timezone during registration and can change it in their user control panel.',
|
||||
'WARNINGS_EXPIRE' => 'Warning duration',
|
||||
'WARNINGS_EXPIRE_EXPLAIN' => 'Number of days that will elapse before a warning will automatically expire from a user’s record. Set this value to 0 to make warnings permanent.',
|
||||
));
|
||||
|
||||
// Board Features
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_BOARD_FEATURES_EXPLAIN' => 'Here you can enable/disable several board features.',
|
||||
|
||||
'ALLOW_ATTACHMENTS' => 'Allow attachments',
|
||||
'ALLOW_BIRTHDAYS' => 'Allow birthdays',
|
||||
'ALLOW_BIRTHDAYS_EXPLAIN' => 'Allow birthdays to be entered and age being displayed in profiles. Please note the birthday list within the board index is controlled by a separate load setting.',
|
||||
'ALLOW_BOOKMARKS' => 'Allow bookmarking topics',
|
||||
'ALLOW_BOOKMARKS_EXPLAIN' => 'User is able to store personal bookmarks.',
|
||||
'ALLOW_BBCODE' => 'Allow BBCode',
|
||||
'ALLOW_FORUM_NOTIFY' => 'Allow subscribing to forums',
|
||||
'ALLOW_NAME_CHANGE' => 'Allow username changes',
|
||||
'ALLOW_NO_CENSORS' => 'Allow disabling of word censoring',
|
||||
'ALLOW_NO_CENSORS_EXPLAIN' => 'Users can choose to disable the automatic word censoring of posts and private messages.',
|
||||
'ALLOW_PM_ATTACHMENTS' => 'Allow attachments in private messages',
|
||||
'ALLOW_PM_REPORT' => 'Allow users to report private messages',
|
||||
'ALLOW_PM_REPORT_EXPLAIN' => 'If this setting is enabled, users have the option of reporting a private message they have received or sent to the board’s moderators. These private messages will then be visible in the Moderator Control Panel.',
|
||||
'ALLOW_QUICK_REPLY' => 'Allow quick reply',
|
||||
'ALLOW_QUICK_REPLY_EXPLAIN' => 'This switch allows for the quick reply to be disabled board-wide. When enabled, forum specific settings will be used to determine whether the quick reply is displayed in individual forums.',
|
||||
'ALLOW_QUICK_REPLY_BUTTON' => 'Submit and enable quick reply in all forums',
|
||||
'ALLOW_SIG' => 'Allow signatures',
|
||||
'ALLOW_SIG_BBCODE' => 'Allow BBCode in user signatures',
|
||||
'ALLOW_SIG_FLASH' => 'Allow use of <code>[FLASH]</code> BBCode tag in user signatures',
|
||||
'ALLOW_SIG_IMG' => 'Allow use of <code>[IMG]</code> BBCode tag in user signatures',
|
||||
'ALLOW_SIG_LINKS' => 'Allow use of links in user signatures',
|
||||
'ALLOW_SIG_LINKS_EXPLAIN' => 'If disallowed the <code>[URL]</code> BBCode tag and automatic/magic URLs are disabled.',
|
||||
'ALLOW_SIG_SMILIES' => 'Allow use of smilies in user signatures',
|
||||
'ALLOW_SMILIES' => 'Allow smilies',
|
||||
'ALLOW_TOPIC_NOTIFY' => 'Allow subscribing to topics',
|
||||
'BOARD_PM' => 'Private messaging',
|
||||
'BOARD_PM_EXPLAIN' => 'Enable private messaging for all users.',
|
||||
'ALLOW_BOARD_NOTIFICATIONS' => 'Allow board notifications',
|
||||
));
|
||||
|
||||
// Avatar Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_AVATAR_SETTINGS_EXPLAIN' => 'Avatars are generally small, unique images a user can associate with themselves. Depending on the style they are usually displayed below the username when viewing topics. Here you can determine how users can define their avatars. Please note that in order to upload avatars you need to have created the directory you name below and ensure it can be written to by the web server. Please also note that file size limits are only imposed on uploaded avatars, they do not apply to remotely linked images.',
|
||||
|
||||
'ALLOW_AVATARS' => 'Enable avatars',
|
||||
'ALLOW_AVATARS_EXPLAIN' => 'Allow general usage of avatars;<br>If you disable avatars in general or avatars of a certain mode, the disabled avatars will no longer be shown on the board, but users will still be able to download their own avatars in the User Control Panel.',
|
||||
'ALLOW_GRAVATAR' => 'Enable gravatar avatars',
|
||||
'ALLOW_LOCAL' => 'Enable gallery avatars',
|
||||
'ALLOW_REMOTE' => 'Enable remote avatars',
|
||||
'ALLOW_REMOTE_EXPLAIN' => 'Avatars linked to from another website.<br><em><strong class="error">Warning:</strong> Enabling this feature might allow users to check for the existence of files and services that are only accessible on the local network.</em>',
|
||||
'ALLOW_REMOTE_UPLOAD' => 'Enable remote avatar uploading',
|
||||
'ALLOW_REMOTE_UPLOAD_EXPLAIN' => 'Allow uploading of avatars from another website.<br><em><strong class="error">Warning:</strong> Enabling this feature might allow users to check for the existence of files and services that are only accessible on the local network.</em>',
|
||||
'ALLOW_UPLOAD' => 'Enable avatar uploading',
|
||||
'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>.<br>Double dots like <samp>../</samp> will be stripped from the path for security reasons.',
|
||||
'AVATAR_STORAGE_PATH' => 'Avatar storage path',
|
||||
'AVATAR_STORAGE_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/avatars/upload</samp>.<br>Avatar uploading <strong>will not be available</strong> if this path is not writable.<br>Double dots like <samp>../</samp> will be stripped from the path for security reasons.',
|
||||
'MAX_AVATAR_SIZE' => 'Maximum avatar dimensions',
|
||||
'MAX_AVATAR_SIZE_EXPLAIN' => 'Width x Height in pixels.',
|
||||
'MAX_FILESIZE' => 'Maximum avatar file size',
|
||||
'MAX_FILESIZE_EXPLAIN' => 'For uploaded avatar files. If this value is 0, the uploaded filesize is only limited by your PHP configuration.',
|
||||
'MIN_AVATAR_SIZE' => 'Minimum avatar dimensions',
|
||||
'MIN_AVATAR_SIZE_EXPLAIN' => 'Width x Height in pixels.',
|
||||
));
|
||||
|
||||
// Message Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_MESSAGE_SETTINGS_EXPLAIN' => 'Here you can set all default settings for private messaging.',
|
||||
|
||||
'ALLOW_BBCODE_PM' => 'Allow BBCode in private messages',
|
||||
'ALLOW_FLASH_PM' => 'Allow use of <code>[FLASH]</code> BBCode tag',
|
||||
'ALLOW_FLASH_PM_EXPLAIN' => 'Note that the ability to use flash in private messages, if enabled here, also depends on the permissions.',
|
||||
'ALLOW_FORWARD_PM' => 'Allow forwarding of private messages',
|
||||
'ALLOW_IMG_PM' => 'Allow use of <code>[IMG]</code> BBCode tag',
|
||||
'ALLOW_MASS_PM' => 'Allow sending of private messages to multiple users and groups',
|
||||
'ALLOW_MASS_PM_EXPLAIN' => 'Sending to groups can be adjusted per group within the group settings page.',
|
||||
'ALLOW_PRINT_PM' => 'Allow print view in private messaging',
|
||||
'ALLOW_QUOTE_PM' => 'Allow quotes in private messages',
|
||||
'ALLOW_SIG_PM' => 'Allow signature in private messages',
|
||||
'ALLOW_SMILIES_PM' => 'Allow smilies in private messages',
|
||||
'BOXES_LIMIT' => 'Maximum private messages per box',
|
||||
'BOXES_LIMIT_EXPLAIN' => 'Users may receive no more than this many messages in each of their private message boxes. Set this value to 0 to allow unlimited messages.',
|
||||
'BOXES_MAX' => 'Maximum private message folders',
|
||||
'BOXES_MAX_EXPLAIN' => 'By default users may create this many personal folders for private messages.',
|
||||
'ENABLE_PM_ICONS' => 'Enable use of topic icons in private messages',
|
||||
'FULL_FOLDER_ACTION' => 'Full folder default action',
|
||||
'FULL_FOLDER_ACTION_EXPLAIN'=> 'Default action to take if a user’s folder is full assuming the user’s folder action, if set at all, is not applicable. The only exception is for the “Sent messages” folder where the default action is always to delete old messages.',
|
||||
'HOLD_NEW_MESSAGES' => 'Hold new messages',
|
||||
'PM_EDIT_TIME' => 'Limit editing time',
|
||||
'PM_EDIT_TIME_EXPLAIN' => 'Limits the time available to edit a private message not already delivered. Setting the value to 0 disables this behaviour.',
|
||||
'PM_MAX_RECIPIENTS' => 'Maximum number of allowed recipients',
|
||||
'PM_MAX_RECIPIENTS_EXPLAIN' => 'The maximum number of allowed recipients in a private message. If 0 is entered, an unlimited number is allowed. This setting can be adjusted for every group within the group settings page.',
|
||||
));
|
||||
|
||||
// Post Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'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_EXPLAIN' => 'If disallowed the <code>[URL]</code> BBCode tag and automatic/magic URLs are disabled.',
|
||||
'ALLOWED_SCHEMES_LINKS' => 'Allowed schemes in links',
|
||||
'ALLOWED_SCHEMES_LINKS_EXPLAIN' => 'Users can only post schemeless URLs or one of the comma-separated list of allowed schemes.',
|
||||
'ALLOW_POST_FLASH' => 'Allow use of <code>[FLASH]</code> BBCode tag in posts',
|
||||
'ALLOW_POST_FLASH_EXPLAIN' => 'If disallowed the <code>[FLASH]</code> BBCode tag is disabled in posts. Otherwise the permission system controls which users can use the <code>[FLASH]</code> BBCode tag.',
|
||||
|
||||
'BUMP_INTERVAL' => 'Bump interval',
|
||||
'BUMP_INTERVAL_EXPLAIN' => 'Number of minutes, hours or days between the last post to a topic and the ability to bump that topic. Setting the value to 0 disables bumping entirely.',
|
||||
'CHAR_LIMIT' => 'Maximum characters per post/message',
|
||||
'CHAR_LIMIT_EXPLAIN' => 'The number of characters allowed within a post/private message. Set to 0 for unlimited characters.',
|
||||
'DELETE_TIME' => 'Limit deleting time',
|
||||
'DELETE_TIME_EXPLAIN' => 'Limits the time available to delete a new post. Setting the value to 0 disables this behaviour.',
|
||||
'DISPLAY_LAST_EDITED' => 'Display last edited time information',
|
||||
'DISPLAY_LAST_EDITED_EXPLAIN' => 'Choose if the last edited by information to be displayed on posts.',
|
||||
'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.',
|
||||
'FLOOD_INTERVAL' => 'Flood interval',
|
||||
'FLOOD_INTERVAL_EXPLAIN' => 'Number of seconds a user must wait between posting new messages. To enable users to ignore this alter their permissions.',
|
||||
'HOT_THRESHOLD' => 'Popular topic threshold',
|
||||
'HOT_THRESHOLD_EXPLAIN' => 'Posts per topic threshold required for the popular topic annotation. Set to 0 to disable popular topics.',
|
||||
'MAX_POLL_OPTIONS' => 'Maximum number of poll options',
|
||||
'MAX_POST_FONT_SIZE' => 'Maximum font size per post',
|
||||
'MAX_POST_FONT_SIZE_EXPLAIN' => 'Maximum font size allowed in a post. Set to 0 for unlimited font size.',
|
||||
'MAX_POST_IMG_HEIGHT' => 'Maximum image height per post',
|
||||
'MAX_POST_IMG_HEIGHT_EXPLAIN' => 'Maximum height of an image/flash file in postings. Set to 0 for unlimited size.',
|
||||
'MAX_POST_IMG_WIDTH' => 'Maximum image width per post',
|
||||
'MAX_POST_IMG_WIDTH_EXPLAIN' => 'Maximum width of an image/flash file in postings. Set to 0 for unlimited size.',
|
||||
'MAX_POST_URLS' => 'Maximum links per post',
|
||||
'MAX_POST_URLS_EXPLAIN' => 'Maximum number of URLs in a post. Set to 0 for unlimited links.',
|
||||
'MIN_CHAR_LIMIT' => 'Minimum characters per post/message',
|
||||
'MIN_CHAR_LIMIT_EXPLAIN' => 'The minimum number of characters the user need to enter within a post/private message. The minimum for this setting is 1.',
|
||||
'POSTING' => 'Posting',
|
||||
'POSTS_PER_PAGE' => 'Posts per page',
|
||||
'QUOTE_DEPTH_LIMIT' => 'Maximum nesting depth for quotes',
|
||||
'QUOTE_DEPTH_LIMIT_EXPLAIN' => 'Maximum quote nesting depth in a post. Set to 0 for unlimited depth.',
|
||||
'SMILIES_LIMIT' => 'Maximum smilies per post',
|
||||
'SMILIES_LIMIT_EXPLAIN' => 'Maximum number of smilies in a post. Set to 0 for unlimited smilies.',
|
||||
'SMILIES_PER_PAGE' => 'Smilies per page',
|
||||
'TOPICS_PER_PAGE' => 'Topics per page',
|
||||
));
|
||||
|
||||
// Signature Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'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_EXPLAIN' => 'Maximum font size allowed in user signatures. Set to 0 for unlimited size.',
|
||||
'MAX_SIG_IMG_HEIGHT' => 'Maximum signature image height',
|
||||
'MAX_SIG_IMG_HEIGHT_EXPLAIN' => 'Maximum height of an image/flash file in user signatures. Set to 0 for unlimited height.',
|
||||
'MAX_SIG_IMG_WIDTH' => 'Maximum signature image width',
|
||||
'MAX_SIG_IMG_WIDTH_EXPLAIN' => 'Maximum width of an image/flash file in user signatures. Set to 0 for unlimited width.',
|
||||
'MAX_SIG_LENGTH' => 'Maximum signature length',
|
||||
'MAX_SIG_LENGTH_EXPLAIN' => 'Maximum number of characters in user signatures.',
|
||||
'MAX_SIG_SMILIES' => 'Maximum smilies per signature',
|
||||
'MAX_SIG_SMILIES_EXPLAIN' => 'Maximum smilies allowed in user signatures. Set to 0 for unlimited smilies.',
|
||||
'MAX_SIG_URLS' => 'Maximum signature links',
|
||||
'MAX_SIG_URLS_EXPLAIN' => 'Maximum number of links in user signatures. Set to 0 for unlimited links.',
|
||||
));
|
||||
|
||||
// Registration Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_REGISTER_SETTINGS_EXPLAIN' => 'Here you are able to define registration and profile related settings.',
|
||||
|
||||
'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. <em>“Board-wide email” must be enabled in order to use user or admin activation.</em>',
|
||||
'ACC_ACTIVATION_WARNING' => 'Please note that the currently selected activation method requires emails to be enabled, otherwise registration will be disabled. We recommend to either select a different activation method or reenable emails.',
|
||||
'NEW_MEMBER_POST_LIMIT' => 'New member post limit',
|
||||
'NEW_MEMBER_POST_LIMIT_EXPLAIN' => 'New members are within the <em>Newly Registered Users</em> group until they reach this number of posts. You can use this group to keep them from using the PM system or to review their posts. <strong>A value of 0 disables this feature.</strong>',
|
||||
'NEW_MEMBER_GROUP_DEFAULT' => 'Set Newly Registered Users group to default',
|
||||
'NEW_MEMBER_GROUP_DEFAULT_EXPLAIN' => 'If set to yes, and a new member post limit is specified, newly registered users will not only be put into the <em>Newly Registered Users</em> group, but this group will also be their default one. This may come in handy if you want to assign a group default rank and/or avatar the user then inherits.',
|
||||
|
||||
'ACC_ADMIN' => 'By admin',
|
||||
'ACC_DISABLE' => 'Disable registration',
|
||||
'ACC_NONE' => 'No activation (immediate access)',
|
||||
'ACC_USER' => 'By user (email verification)',
|
||||
// 'ACC_USER_ADMIN' => 'User + Admin',
|
||||
'ALLOW_EMAIL_REUSE' => 'Allow email address re-use',
|
||||
'ALLOW_EMAIL_REUSE_EXPLAIN' => 'Different users can register with the same email address.',
|
||||
'COPPA' => 'COPPA',
|
||||
'COPPA_FAX' => 'COPPA fax number',
|
||||
'COPPA_MAIL' => 'COPPA mailing address',
|
||||
'COPPA_MAIL_EXPLAIN' => 'This is the mailing address where parents will send COPPA registration forms.',
|
||||
'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. If this is disabled the COPPA specific groups will no longer be displayed.',
|
||||
'MAX_CHARS' => 'Max',
|
||||
'MIN_CHARS' => 'Min',
|
||||
'NO_AUTH_PLUGIN' => 'No suitable auth plugin found.',
|
||||
'PASSWORD_LENGTH' => 'Password length',
|
||||
'PASSWORD_LENGTH_EXPLAIN' => 'Minimum and maximum number of characters in passwords.',
|
||||
'REG_LIMIT' => 'Registration attempts',
|
||||
'REG_LIMIT_EXPLAIN' => 'Number of attempts users can make at solving the anti-spambot task before being locked out of that session.',
|
||||
'USERNAME_ALPHA_ONLY' => 'Alphanumeric only',
|
||||
'USERNAME_ALPHA_SPACERS' => 'Alphanumeric and spacers',
|
||||
'USERNAME_ASCII' => 'ASCII (no international unicode)',
|
||||
'USERNAME_LETTER_NUM' => 'Any letter and number',
|
||||
'USERNAME_LETTER_NUM_SPACERS' => 'Any letter, number, and spacer',
|
||||
'USERNAME_CHARS' => 'Limit username chars',
|
||||
'USERNAME_CHARS_ANY' => 'Any character',
|
||||
'USERNAME_CHARS_EXPLAIN' => 'Restrict type of characters that may be used in usernames, spacers are: space, -, +, _, [ and ].',
|
||||
'USERNAME_LENGTH' => 'Username length',
|
||||
'USERNAME_LENGTH_EXPLAIN' => 'Minimum and maximum number of characters in usernames.',
|
||||
));
|
||||
|
||||
// Feeds
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_FEED_MANAGEMENT' => 'General syndication feeds settings',
|
||||
'ACP_FEED_MANAGEMENT_EXPLAIN' => 'This module makes available various ATOM feeds, parsing any BBCode in posts to make them readable in external feeds.',
|
||||
|
||||
'ACP_FEED_GENERAL' => 'General feed settings',
|
||||
'ACP_FEED_POST_BASED' => 'Post-based feed settings',
|
||||
'ACP_FEED_TOPIC_BASED' => 'Topic-based feed settings',
|
||||
'ACP_FEED_SETTINGS_OTHER' => 'Other feeds and settings',
|
||||
|
||||
'ACP_FEED_ENABLE' => 'Enable feeds',
|
||||
'ACP_FEED_ENABLE_EXPLAIN' => 'Turns on or off ATOM feeds for the entire board.<br>Disabling this switches off all feeds, no matter how the options below are set.',
|
||||
'ACP_FEED_LIMIT' => 'Number of items',
|
||||
'ACP_FEED_LIMIT_EXPLAIN' => 'The maximum number of feed items to display.',
|
||||
|
||||
'ACP_FEED_OVERALL' => 'Enable board-wide feed',
|
||||
'ACP_FEED_OVERALL_EXPLAIN' => 'Board-wide new posts.',
|
||||
'ACP_FEED_FORUM' => 'Enable per-forum feeds',
|
||||
'ACP_FEED_FORUM_EXPLAIN' => 'Single forum and subforums new posts.',
|
||||
'ACP_FEED_TOPIC' => 'Enable per-topic feeds',
|
||||
'ACP_FEED_TOPIC_EXPLAIN' => 'Single topics new posts.',
|
||||
|
||||
'ACP_FEED_TOPICS_NEW' => 'Enable new topics feed',
|
||||
'ACP_FEED_TOPICS_NEW_EXPLAIN' => 'Enables the “New Topics” feed, which displays the last created topics including the first post.',
|
||||
'ACP_FEED_TOPICS_ACTIVE' => 'Enable active topics feed',
|
||||
'ACP_FEED_TOPICS_ACTIVE_EXPLAIN' => 'Enables the “Active Topics” feed, which displays the last active topics including the last post.',
|
||||
'ACP_FEED_NEWS' => 'News feed',
|
||||
'ACP_FEED_NEWS_EXPLAIN' => 'Pull the first post from these forums. Select no forums to disable news feed.<br>Select multiple forums by holding <samp>CTRL</samp> and clicking.',
|
||||
|
||||
'ACP_FEED_OVERALL_FORUMS' => 'Enable forums feed',
|
||||
'ACP_FEED_OVERALL_FORUMS_EXPLAIN' => 'Enables the “All forums” feed, which displays a list of forums.',
|
||||
|
||||
'ACP_FEED_HTTP_AUTH' => 'Allow HTTP Authentication',
|
||||
'ACP_FEED_HTTP_AUTH_EXPLAIN' => 'Enables HTTP authentication, which allows users to receive content that is hidden to guest users by adding the <samp>auth=http</samp> parameter to the feed URL. Please note that some PHP setups require additional changes to the .htaccess file. Instructions can be found in that file.',
|
||||
'ACP_FEED_ITEM_STATISTICS' => 'Item statistics',
|
||||
'ACP_FEED_ITEM_STATISTICS_EXPLAIN' => 'Display individual statistics underneath feed items<br>(e.g. posted by, date and time, replies, views)',
|
||||
'ACP_FEED_EXCLUDE_ID' => 'Exclude these forums',
|
||||
'ACP_FEED_EXCLUDE_ID_EXPLAIN' => 'Content from these will be <strong>not included in feeds</strong>. Select no forum to pull data from all forums.<br>Select/Deselect multiple forums by holding <samp>CTRL</samp> and clicking.',
|
||||
));
|
||||
|
||||
// Visual Confirmation Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_VC_SETTINGS_EXPLAIN' => 'Here you can select and configure plugins, which are designed to block automated form submissions by spambots. These plugins typically work by challenging the user with a <em>CAPTCHA</em>, a test which is designed to be difficult for computers to solve.',
|
||||
'ACP_VC_EXT_GET_MORE' => 'For additional (and possibly better) anti-spam plugins, visit the <a href="https://www.phpbb.com/go/anti-spam-ext"><strong>phpBB.com Extensions Database</strong></a>. For more information on preventing spam on your board, visit the <a href="https://www.phpbb.com/go/anti-spam"><strong>phpBB.com Knowledge Base</strong></a>.',
|
||||
'AVAILABLE_CAPTCHAS' => 'Available plugins',
|
||||
'CAPTCHA_UNAVAILABLE' => 'The plugin cannot be selected as its requirements are not met.',
|
||||
'CAPTCHA_GD' => 'GD image',
|
||||
'CAPTCHA_GD_3D' => 'GD 3D image',
|
||||
'CAPTCHA_GD_FOREGROUND_NOISE' => 'Foreground noise',
|
||||
'CAPTCHA_GD_EXPLAIN' => 'Uses GD to make a more advanced anti-spambot image.',
|
||||
'CAPTCHA_GD_FOREGROUND_NOISE_EXPLAIN' => 'Use foreground noise to make the image harder to read.',
|
||||
'CAPTCHA_GD_X_GRID' => 'Background noise x-axis',
|
||||
'CAPTCHA_GD_X_GRID_EXPLAIN' => 'Use lower settings of this to make the image harder to read. 0 will disable x-axis background noise.',
|
||||
'CAPTCHA_GD_Y_GRID' => 'Background noise y-axis',
|
||||
'CAPTCHA_GD_Y_GRID_EXPLAIN' => 'Use lower settings of this to make the image harder to read. 0 will disable y-axis background noise.',
|
||||
'CAPTCHA_GD_WAVE' => 'Wave distortion',
|
||||
'CAPTCHA_GD_WAVE_EXPLAIN' => 'This applies a wave distortion to the image.',
|
||||
'CAPTCHA_GD_3D_NOISE' => 'Add 3D-noise objects',
|
||||
'CAPTCHA_GD_3D_NOISE_EXPLAIN' => 'This adds additional objects to the image, over the letters.',
|
||||
'CAPTCHA_GD_FONTS' => 'Use different fonts',
|
||||
'CAPTCHA_GD_FONTS_EXPLAIN' => 'This setting controls how many different letter shapes are used. You can just use the default shapes or introduce altered letters. Adding lowercase letters is also possible.',
|
||||
'CAPTCHA_FONT_DEFAULT' => 'Default',
|
||||
'CAPTCHA_FONT_NEW' => 'New Shapes',
|
||||
'CAPTCHA_FONT_LOWER' => 'Also use lowercase',
|
||||
'CAPTCHA_NO_GD' => 'Simple image',
|
||||
'CAPTCHA_PREVIEW_MSG' => 'Your changes have not been saved, this is just a preview.',
|
||||
'CAPTCHA_PREVIEW_EXPLAIN' => 'The plugin as it would look like using the current selection.',
|
||||
|
||||
'CAPTCHA_SELECT' => 'Installed plugins',
|
||||
'CAPTCHA_SELECT_EXPLAIN' => 'The dropdown holds the plugins recognised by the board. Grey entries are not available right now and might need configuration prior to use.',
|
||||
'CAPTCHA_CONFIGURE' => 'Configure plugins',
|
||||
'CAPTCHA_CONFIGURE_EXPLAIN' => 'Change the settings for the selected plugin.',
|
||||
'CONFIGURE' => 'Configure',
|
||||
'CAPTCHA_NO_OPTIONS' => 'This plugin has no configuration options.',
|
||||
|
||||
'VISUAL_CONFIRM_POST' => 'Enable spambot countermeasures for guest postings',
|
||||
'VISUAL_CONFIRM_POST_EXPLAIN' => 'Requires guest users to pass the anti-spambot task to help prevent automated postings.',
|
||||
'VISUAL_CONFIRM_REG' => 'Enable spambot countermeasures for registrations',
|
||||
'VISUAL_CONFIRM_REG_EXPLAIN' => 'Requires new users to pass the anti-spambot task to help prevent automated registrations.',
|
||||
'VISUAL_CONFIRM_REFRESH' => 'Allow users to refresh the anti-spambot task',
|
||||
'VISUAL_CONFIRM_REFRESH_EXPLAIN' => 'Allows users to request a new anti-spambot task if they are unable to solve the current task during registration. Some plugins might not support this option.',
|
||||
));
|
||||
|
||||
// Cookie Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_COOKIE_SETTINGS_EXPLAIN' => 'These details define the data used to send cookies to your users browsers. In most cases the default values for the cookie settings should be sufficient. If you do need to change any do so with care, incorrect settings can prevent users logging in. If you have problems with users staying logging in to your board, visit the <strong><a href="https://www.phpbb.com/support/go/cookie-settings">phpBB.com Knowledge Base - Fixing incorrect cookie settings</a></strong>.',
|
||||
|
||||
'COOKIE_DOMAIN' => 'Cookie domain',
|
||||
'COOKIE_DOMAIN_EXPLAIN' => 'In most cases the cookie domain is optional. Leave it blank if you are unsure.<br><br> In the case where you have a board integrated with other software or have multiple domains, then to determine the cookie domain you need to do the following. If you have something like <i>example.com</i> and <i>forums.example.com</i>, or perhaps <i>forums.example.com</i> and <i>blog.example.com</i>. Remove the subdomains until you find the common domain, <i>example.com</i>. Now add a dot in front of the common domain and you would enter .example.com (note the dot at the beginning).',
|
||||
'COOKIE_NAME' => 'Cookie name',
|
||||
'COOKIE_NAME_EXPLAIN' => 'This can be anything what you want, make it original. Whenever the cookie settings are changed the name of the cookie should be changed.',
|
||||
'COOKIE_NOTICE' => 'Cookie notice',
|
||||
'COOKIE_NOTICE_EXPLAIN' => 'If enabled a cookie notice will be displayed to users when visiting your board. This might be required by law depending on the content of your board and enabled extensions.',
|
||||
'COOKIE_PATH' => 'Cookie path',
|
||||
'COOKIE_PATH_EXPLAIN' => 'This will usually be the same as your script path or simply a slash to make the cookie accessible across the site domain.',
|
||||
'COOKIE_SECURE' => 'Cookie secure',
|
||||
'COOKIE_SECURE_EXPLAIN' => 'If your server is running via SSL set this to enabled else leave as disabled. Having this enabled and not running via SSL will result in server errors during redirects.',
|
||||
'ONLINE_LENGTH' => 'View online time span',
|
||||
'ONLINE_LENGTH_EXPLAIN' => 'Number of minutes after which inactive users will not appear in “Who is online” listings. The higher this value the greater is the processing required to generate the listing.',
|
||||
'SESSION_LENGTH' => 'Session length',
|
||||
'SESSION_LENGTH_EXPLAIN' => 'Sessions will expire after this time, in seconds.',
|
||||
));
|
||||
|
||||
// Contact Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_CONTACT_SETTINGS_EXPLAIN' => 'Here you can enable and disable the contact page and also add a text that is displayed on the page.',
|
||||
|
||||
'CONTACT_US_ENABLE' => 'Enable contact page',
|
||||
'CONTACT_US_ENABLE_EXPLAIN' => 'This page allows users to send emails to board administrators. Please note that board-wide emails option must be enabled as well. You can find this option in General > Client Communication > Email settings.',
|
||||
|
||||
'CONTACT_US_INFO' => 'Contact information',
|
||||
'CONTACT_US_INFO_EXPLAIN' => 'The message is displayed on the contact page',
|
||||
'CONTACT_US_INFO_PREVIEW' => 'Contact page information - Preview',
|
||||
'CONTACT_US_INFO_UPDATED' => 'Contact page information has been updated.',
|
||||
));
|
||||
|
||||
// Load Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_LOAD_SETTINGS_EXPLAIN' => 'Here you can enable and disable certain board functions to reduce the amount of processing required. On most servers there is no need to disable any functions. However on certain systems or in shared hosting environments it may be beneficial to disable capabilities you do not really need. You can also specify limits for system load and active sessions beyond which the board will go offline.',
|
||||
|
||||
'ALLOW_CDN' => 'Allow usage of third party content delivery networks',
|
||||
'ALLOW_CDN_EXPLAIN' => 'If this setting is enabled, some files will be served from external third party servers instead of your server. This reduces the network bandwidth required by your server, but may present a privacy issue for some board administrators. In a default phpBB installation, this includes loading “jQuery” and the font “Open Sans” from Google’s content delivery network.',
|
||||
'ALLOW_LIVE_SEARCHES' => 'Allow live searches',
|
||||
'ALLOW_LIVE_SEARCHES_EXPLAIN' => 'If this setting is enabled, users are provided with keyword suggestions as they type in certain fields throughout the board.',
|
||||
'CUSTOM_PROFILE_FIELDS' => 'Custom profile fields',
|
||||
'LIMIT_LOAD' => 'Limit system load',
|
||||
'LIMIT_LOAD_EXPLAIN' => 'If the system’s 1-minute load average exceeds this value the board will automatically go offline. A value of 1.0 equals ~100% utilisation of one processor. This only functions on UNIX based servers and where this information is accessible. The value here resets itself to 0 if phpBB was unable to get the load limit.',
|
||||
'LIMIT_SESSIONS' => 'Limit sessions',
|
||||
'LIMIT_SESSIONS_EXPLAIN' => 'If the number of sessions exceeds this value within a one minute period the board will go offline. Set to 0 for unlimited sessions.',
|
||||
'LOAD_CPF_MEMBERLIST' => 'Allow styles to display custom profile fields in memberlist',
|
||||
'LOAD_CPF_PM' => 'Display custom profile fields in private messages',
|
||||
'LOAD_CPF_VIEWPROFILE' => 'Display custom profile fields in user profiles',
|
||||
'LOAD_CPF_VIEWTOPIC' => 'Display custom profile fields on topic pages',
|
||||
'LOAD_USER_ACTIVITY' => 'Show user’s activity',
|
||||
'LOAD_USER_ACTIVITY_EXPLAIN' => 'Displays active topic/forum in user profiles and user control panel. It is recommended to disable this on boards with more than one million posts.',
|
||||
'LOAD_USER_ACTIVITY_LIMIT' => 'User’s activity post limit',
|
||||
'LOAD_USER_ACTIVITY_LIMIT_EXPLAIN' => 'The active topic/forum won’t be shown for users having more than this number of posts. Set to 0 to disable the limit.',
|
||||
'READ_NOTIFICATION_EXPIRE_DAYS' => 'Read Notification Expiration',
|
||||
'READ_NOTIFICATION_EXPIRE_DAYS_EXPLAIN' => 'Number of days that will elapse before a read notification will automatically be deleted. Set this value to 0 to make notifications permanent.',
|
||||
'RECOMPILE_STYLES' => 'Recompile stale style components',
|
||||
'RECOMPILE_STYLES_EXPLAIN' => 'Check for updated style components on filesystem and recompile.',
|
||||
'YES_ACCURATE_PM_BUTTON' => 'Enable permission specific PM button in topic pages',
|
||||
'YES_ACCURATE_PM_BUTTON_EXPLAIN' => 'If this setting is enabled, only post profiles of users who are permitted to read private messages will have a private message button.',
|
||||
'YES_ANON_READ_MARKING' => 'Enable topic marking for guests',
|
||||
'YES_ANON_READ_MARKING_EXPLAIN' => 'Stores read/unread status information for guests. If disabled, posts are always marked read for guests.',
|
||||
'YES_BIRTHDAYS' => 'Enable birthday listing',
|
||||
'YES_BIRTHDAYS_EXPLAIN' => 'If disabled the birthday listing is no longer displayed. To let this setting take effect the birthday feature needs to be enabled too.',
|
||||
'YES_JUMPBOX' => 'Enable display of jumpbox',
|
||||
'YES_MODERATORS' => 'Enable display of moderators',
|
||||
'YES_ONLINE' => 'Enable online user listings',
|
||||
'YES_ONLINE_EXPLAIN' => 'Display online user information on index, forum and topic pages.',
|
||||
'YES_ONLINE_GUESTS' => 'Enable online guest listings in viewonline',
|
||||
'YES_ONLINE_GUESTS_EXPLAIN' => 'Allow display of guest user information in viewonline.',
|
||||
'YES_ONLINE_TRACK' => 'Enable display of user online/offline information',
|
||||
'YES_ONLINE_TRACK_EXPLAIN' => 'Display online information for user in profiles and topic pages.',
|
||||
'YES_POST_MARKING' => 'Enable dotted topics',
|
||||
'YES_POST_MARKING_EXPLAIN' => 'Indicates whether user has posted to a topic.',
|
||||
'YES_READ_MARKING' => 'Enable server-side topic marking',
|
||||
'YES_READ_MARKING_EXPLAIN' => 'Stores read/unread status information in the database rather than a cookie.',
|
||||
'YES_UNREAD_SEARCH' => 'Enable search for unread posts',
|
||||
));
|
||||
|
||||
// Auth settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_AUTH_SETTINGS_EXPLAIN' => 'phpBB supports authentication plug-ins, or modules. These allow you determine how users are authenticated when they log into the board. By default four plug-ins are provided: DB, LDAP, Apache, and OAuth. Not all methods require additional information so only fill out fields if they are relevant to the selected method.',
|
||||
|
||||
'AUTH_METHOD' => 'Select an authentication method',
|
||||
|
||||
'AUTH_PROVIDER_OAUTH_ERROR_ELEMENT_MISSING' => 'Both the key and secret of each enabled OAuth service provider must be provided. Only one was provided for an OAuth service provider.',
|
||||
'AUTH_PROVIDER_OAUTH_EXPLAIN' => 'Each OAuth provider requires a unique secret and key in order to authenticate with the external server. These should be supplied by the OAuth service when you register your website with them and should be entered exactly as provided to you.<br>Any service that does not have both a key and a secret entered here will not be available for use by the forum users. Also note, that user can still register and login using the DB authentication plug-in.',
|
||||
'AUTH_PROVIDER_OAUTH_KEY' => 'Key',
|
||||
'AUTH_PROVIDER_OAUTH_TITLE' => 'OAuth',
|
||||
'AUTH_PROVIDER_OAUTH_SECRET' => 'Secret',
|
||||
|
||||
'APACHE_SETUP_BEFORE_USE' => 'You have to setup apache authentication before you switch phpBB to this authentication method. Keep in mind that the username you use for apache authentication has to be the same as your phpBB username. Apache authentication can only be used with mod_php (not with a CGI version) and safe_mode disabled.',
|
||||
|
||||
'LDAP' => 'LDAP',
|
||||
'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_EMAIL' => 'LDAP email attribute',
|
||||
'LDAP_EMAIL_EXPLAIN' => 'Set this to the name of your user entry email attribute (if one exists) in order to automatically set the email address for new users. Leaving this empty results in empty email address for users who log in for the first time.',
|
||||
'LDAP_INCORRECT_USER_PASSWORD' => 'Binding to LDAP server failed with specified user/password.',
|
||||
'LDAP_NO_EMAIL' => 'The specified email attribute does not exist.',
|
||||
'LDAP_NO_IDENTITY' => 'Could not find a login identity for %s.',
|
||||
'LDAP_PASSWORD' => 'LDAP password',
|
||||
'LDAP_PASSWORD_EXPLAIN' => 'Leave blank to use anonymous binding, otherwise fill in the password for the above user. Required for Active Directory Servers.<br><em><strong>Warning:</strong> This password will be stored as plain text in the database, visible to everybody who can access your database or who can view this configuration page.</em>',
|
||||
'LDAP_PORT' => 'LDAP server port',
|
||||
'LDAP_PORT_EXPLAIN' => 'Optionally you can specify a port which should be used to connect to the LDAP server instead of the default port 389.',
|
||||
'LDAP_SERVER' => 'LDAP server name',
|
||||
'LDAP_SERVER_EXPLAIN' => 'If using LDAP this is the hostname or IP address of the LDAP server. Alternatively you can specify an URL like ldap://hostname:port/',
|
||||
'LDAP_UID' => 'LDAP <var>uid</var>',
|
||||
'LDAP_UID_EXPLAIN' => 'This is the key under which to search for a given login identity, e.g. <var>uid</var>, <var>sn</var>, etc.',
|
||||
'LDAP_USER' => 'LDAP user <var>dn</var>',
|
||||
'LDAP_USER_EXPLAIN' => 'Leave blank to use anonymous binding. If filled in phpBB uses the specified distinguished name on login attempts to find the correct user, e.g. <samp>uid=Username,ou=MyUnit,o=MyCompany,c=US</samp>. Required for Active Directory Servers.',
|
||||
'LDAP_USER_FILTER' => 'LDAP user filter',
|
||||
'LDAP_USER_FILTER_EXPLAIN' => 'Optionally you can further limit the searched objects with additional filters. For example <samp>objectClass=posixGroup</samp> would result in the use of <samp>(&(uid=$username)(objectClass=posixGroup))</samp>',
|
||||
));
|
||||
|
||||
// Server Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_SERVER_SETTINGS_EXPLAIN' => 'Here you define server and domain dependent settings. Please ensure the data you enter is accurate, errors will result in emails containing incorrect information. When entering the domain name remember it does include http:// or other protocol term. Only alter the port number if you know your server uses a different value, port 80 is correct in most cases.',
|
||||
|
||||
'ENABLE_GZIP' => 'Enable GZip compression',
|
||||
'ENABLE_GZIP_EXPLAIN' => 'Generated content will be compressed prior to sending it to the user. This can reduce network traffic but will also increase CPU usage on both server and client side. Requires zlib PHP extension to be loaded.',
|
||||
'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.',
|
||||
'ICONS_PATH' => 'Post icons storage path',
|
||||
'ICONS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/icons</samp>.',
|
||||
'MOD_REWRITE_ENABLE' => 'Enable URL Rewriting',
|
||||
'MOD_REWRITE_ENABLE_EXPLAIN' => 'When enabled, URLs containing ’app.php’ will be rewritten to remove the filename (i.e. app.php/foo will become /foo). <strong>Apache server’s mod_rewrite module is required for this functionality to work; if this option is enabled without mod_rewrite support, URLs on your board may be broken.</strong>',
|
||||
'MOD_REWRITE_DISABLED' => 'The <strong>mod_rewrite</strong> module on your Apache web server is disabled. Enable the module or contact your web hosting provider if you wish to enable this feature.',
|
||||
'MOD_REWRITE_INFORMATION_UNAVAILABLE' => 'We are unable to determine whether or not this server supports URL rewriting. This setting may be enabled but if URL rewriting is not available, paths generated by this board (such as for use in links) may be broken. Contact your web hosting provider if you are unsure whether or not you can safely enable this feature.',
|
||||
'PATH_SETTINGS' => 'Path settings',
|
||||
'RANKS_PATH' => 'Rank image storage path',
|
||||
'RANKS_PATH_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/ranks</samp>.',
|
||||
'SCRIPT_PATH' => 'Script path',
|
||||
'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_EXPLAIN' => 'The domain name this board runs from (for example: <samp>www.example.com</samp>).',
|
||||
'SERVER_PORT' => 'Server port',
|
||||
'SERVER_PORT_EXPLAIN' => 'The port your server is running on, usually 80, only change if different.',
|
||||
'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_URL_SETTINGS' => 'Server URL settings',
|
||||
'SMILIES_PATH' => 'Smilies storage path',
|
||||
'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_EXPLAIN' => 'Path under your phpBB root directory, e.g. <samp>images/upload_icons</samp>.',
|
||||
'USE_SYSTEM_CRON' => 'Run periodic tasks from system cron',
|
||||
'USE_SYSTEM_CRON_EXPLAIN' => 'When off, phpBB will arrange for periodic tasks to be run automatically. When on, phpBB will not schedule any periodic tasks by itself; a system administrator must arrange for <code>bin/phpbbcli.php cron:run</code> to be run by the system cron facility at regular intervals (e.g. every 5 minutes).',
|
||||
));
|
||||
|
||||
// Security Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_SECURITY_SETTINGS_EXPLAIN' => 'Here you are able to define session and login related settings.',
|
||||
|
||||
'ALL' => 'All',
|
||||
'ALLOW_AUTOLOGIN' => 'Allow "Remember Me" logins',
|
||||
'ALLOW_AUTOLOGIN_EXPLAIN' => 'Determines whether users are given "Remember Me" option when they visit the board.',
|
||||
'ALLOW_PASSWORD_RESET' => 'Allow password reset ("Forgot Password")',
|
||||
'ALLOW_PASSWORD_RESET_EXPLAIN' => 'Determines whether or not users are able to use the "I forgot my password" link on the login page to recover their account. If you use an external authentication mechanism you may wish to disable this feature.',
|
||||
'AUTOLOGIN_LENGTH' => '"Remember Me" login key expiration length (in days)',
|
||||
'AUTOLOGIN_LENGTH_EXPLAIN' => 'Number of days after which "Remember Me" login keys are removed or zero to disable.',
|
||||
'BROWSER_VALID' => 'Validate browser',
|
||||
'BROWSER_VALID_EXPLAIN' => 'Enables browser validation for each session improving security.',
|
||||
'CHECK_DNSBL' => 'Check IP against DNS Blackhole List',
|
||||
'CHECK_DNSBL_EXPLAIN' => 'If enabled the user’s IP address is checked against the following DNSBL services on registration and posting: <a href="http://spamcop.net">spamcop.net</a> and <a href="http://www.spamhaus.org">www.spamhaus.org</a>. This lookup may take a while, depending on the server’s configuration. If slowdowns are experienced or too many false positives reported it is recommended to disable this check.',
|
||||
'CLASS_B' => 'A.B',
|
||||
'CLASS_C' => 'A.B.C',
|
||||
'EMAIL_CHECK_MX' => 'Check email domain for valid MX record',
|
||||
'EMAIL_CHECK_MX_EXPLAIN' => 'If enabled, the email domain provided on registration and profile changes is checked for a valid MX record.',
|
||||
'FORCE_PASS_CHANGE' => 'Force password change',
|
||||
'FORCE_PASS_CHANGE_EXPLAIN' => 'Require user to change their password after a set number of days. Setting this value to 0 disables this behaviour.',
|
||||
'FORM_TIME_MAX' => 'Maximum time to submit forms',
|
||||
'FORM_TIME_MAX_EXPLAIN' => 'The time a user has to submit a form. Use -1 to disable. Note that a form might become invalid if the session expires, regardless of this setting.',
|
||||
'FORM_SID_GUESTS' => 'Tie forms to guest sessions',
|
||||
'FORM_SID_GUESTS_EXPLAIN' => 'If enabled, the form token issued to guests will be session-exclusive. This can cause problems with some ISPs.',
|
||||
'FORWARDED_FOR_VALID' => 'Validate <var>X_FORWARDED_FOR</var> header',
|
||||
'FORWARDED_FOR_VALID_EXPLAIN' => 'Sessions will only be continued if the sent <var>X_FORWARDED_FOR</var> header equals the one sent with the previous request. Bans will be checked against IPs in <var>X_FORWARDED_FOR</var> too.',
|
||||
'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. On IPv6 addresses <samp>A.B.C</samp> compares the first 4 blocks and <samp>A.B</samp> the first 3 blocks.',
|
||||
'IP_LOGIN_LIMIT_MAX' => 'Maximum number of login attempts per IP address',
|
||||
'IP_LOGIN_LIMIT_MAX_EXPLAIN' => 'The threshold of login attempts allowed from a single IP address before an anti-spambot task is triggered. Enter 0 to prevent the anti-spambot task from being triggered by IP addresses.',
|
||||
'IP_LOGIN_LIMIT_TIME' => 'IP address login attempt expiration time',
|
||||
'IP_LOGIN_LIMIT_TIME_EXPLAIN' => 'Login attempts expire after this period.',
|
||||
'IP_LOGIN_LIMIT_USE_FORWARDED' => 'Limit login attempts by <var>X_FORWARDED_FOR</var> header',
|
||||
'IP_LOGIN_LIMIT_USE_FORWARDED_EXPLAIN' => 'Instead of limiting login attempts by IP address they are limited by <var>X_FORWARDED_FOR</var> values. <br><em><strong>Warning:</strong> Only enable this if you are operating a proxy server that sets <var>X_FORWARDED_FOR</var> to trustworthy values.</em>',
|
||||
'MAX_LOGIN_ATTEMPTS' => 'Maximum number of login attempts per username',
|
||||
'MAX_LOGIN_ATTEMPTS_EXPLAIN' => 'The number of login attempts allowed for a single account before the anti-spambot task is triggered. Enter 0 to prevent the anti-spambot task from being triggered for distinct user accounts.',
|
||||
'NO_IP_VALIDATION' => 'None',
|
||||
'NO_REF_VALIDATION' => 'None',
|
||||
'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.',
|
||||
'PASS_TYPE_ALPHA' => 'Must contain letters and numbers',
|
||||
'PASS_TYPE_ANY' => 'No requirements',
|
||||
'PASS_TYPE_CASE' => 'Must be mixed case',
|
||||
'PASS_TYPE_SYMBOL' => 'Must contain symbols',
|
||||
'REF_HOST' => 'Only validate host',
|
||||
'REF_PATH' => 'Also validate path',
|
||||
'REFERRER_VALID' => 'Validate Referrer',
|
||||
'REFERRER_VALID_EXPLAIN' => 'If enabled, the referrer of POST requests will be checked against the host/script path settings. This may cause issues with boards using several domains and or external logins.',
|
||||
'TPL_ALLOW_PHP' => 'Allow php in templates',
|
||||
'TPL_ALLOW_PHP_EXPLAIN' => 'If this option is enabled, <code>PHP</code> and <code>INCLUDEPHP</code> statements will be recognised and parsed in templates.',
|
||||
'UPLOAD_CERT_VALID' => 'Validate upload certificate',
|
||||
'UPLOAD_CERT_VALID_EXPLAIN' => 'If enabled, certificates of remote uploads will be validated. This requires the CA bundle to be defined by the <samp>openssl.cafile</samp> or <samp>curl.cainfo</samp> setting in your php.ini.',
|
||||
));
|
||||
|
||||
// Email Settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_EMAIL_SETTINGS_EXPLAIN' => 'This information is used when the board sends emails to your users. Please ensure the email address you specify is valid, any bounced or undeliverable messages will likely be sent to that address. If your host does not provide a native (PHP based) email service you can instead send messages directly using SMTP. This requires the address of an appropriate server (ask your provider if necessary). If the server requires authentication (and only if it does) enter the necessary username, password and authentication method.',
|
||||
|
||||
'ADMIN_EMAIL' => 'From email address',
|
||||
'ADMIN_EMAIL_EXPLAIN' => 'This will be used as the from address on all emails, the technical contact email address. It will always be used as the <samp>Sender</samp> address in emails.',
|
||||
'BOARD_EMAIL_FORM' => 'Users send email via board',
|
||||
'BOARD_EMAIL_FORM_EXPLAIN' => 'Instead of showing the users email address users are able to send emails via the board.',
|
||||
'BOARD_HIDE_EMAILS' => 'Hide email addresses',
|
||||
'BOARD_HIDE_EMAILS_EXPLAIN' => 'This function keeps email addresses completely private.',
|
||||
'CONTACT_EMAIL' => 'Contact email address',
|
||||
'CONTACT_EMAIL_EXPLAIN' => 'This address will be used whenever a specific contact point is needed, e.g. spam, error output, etc. It will always be used as the <samp>From</samp> and <samp>Reply-To</samp> address in emails.',
|
||||
'CONTACT_EMAIL_NAME' => 'Contact name',
|
||||
'CONTACT_EMAIL_NAME_EXPLAIN' => 'This is the contact name that e-mail recipients will see. If you don’t want to have a contact name, leave this field empty.',
|
||||
'EMAIL_FORCE_SENDER' => 'Force from email address',
|
||||
'EMAIL_FORCE_SENDER_EXPLAIN' => 'This will set the <samp>Return-Path</samp> to the from email address instead of using the local user and hostname of the server. This setting does not apply when using SMTP.<br><em><strong>Warning:</strong> Requires the user that the webserver runs as to be added as trusted user to the sendmail configuration.</em>',
|
||||
'EMAIL_PACKAGE_SIZE' => 'Email package size',
|
||||
'EMAIL_PACKAGE_SIZE_EXPLAIN' => 'This is the number of maximum emails sent out in one package. This setting is applied to the internal message queue; set this value to 0 if you have problems with non-delivered notification emails.',
|
||||
'EMAIL_SIG' => 'Email signature',
|
||||
'EMAIL_SIG_EXPLAIN' => 'This text will be attached to all emails the board sends.',
|
||||
'ENABLE_EMAIL' => 'Enable board-wide emails',
|
||||
'ENABLE_EMAIL_EXPLAIN' => 'If this is set to disabled no emails will be sent by the board at all. <em>Note the user and admin account activation settings require this setting to be enabled. If currently using “user” or “admin” activation in the activation settings, disabling this setting will disable registration.</em>',
|
||||
'SEND_TEST_EMAIL' => 'Send a test email',
|
||||
'SEND_TEST_EMAIL_EXPLAIN' => 'This will send a test email to the address defined in your account.',
|
||||
'SMTP_ALLOW_SELF_SIGNED' => 'Allow self-signed SSL certificates',
|
||||
'SMTP_ALLOW_SELF_SIGNED_EXPLAIN'=> 'Allow connections to SMTP server with self-signed SSL certificate. <br><em><strong>Warning:</strong> Allowing self-signed SSL certificates may cause security implications.</em>',
|
||||
'SMTP_AUTH_METHOD' => 'Authentication method for SMTP',
|
||||
'SMTP_AUTH_METHOD_EXPLAIN' => 'Only used if a username/password is set, ask your provider if you are unsure which method to use.',
|
||||
'SMTP_CRAM_MD5' => 'CRAM-MD5',
|
||||
'SMTP_DIGEST_MD5' => 'DIGEST-MD5',
|
||||
'SMTP_LOGIN' => 'LOGIN',
|
||||
'SMTP_PASSWORD' => 'SMTP password',
|
||||
'SMTP_PASSWORD_EXPLAIN' => 'Only enter a password if your SMTP server requires it.<br><em><strong>Warning:</strong> This password will be stored as plain text in the database, visible to everybody who can access your database or who can view this configuration page.</em>',
|
||||
'SMTP_PLAIN' => 'PLAIN',
|
||||
'SMTP_POP_BEFORE_SMTP' => 'POP-BEFORE-SMTP',
|
||||
'SMTP_PORT' => 'SMTP server port',
|
||||
'SMTP_PORT_EXPLAIN' => 'Only change this if you know your SMTP server is on a different port.',
|
||||
'SMTP_SERVER' => 'SMTP server address and protocol',
|
||||
'SMTP_SERVER_EXPLAIN' => 'Note that you have to provide the protocol that your server uses. If you are using SSL, this has to be "ssl://your.mailserver.com"',
|
||||
'SMTP_SETTINGS' => 'SMTP settings',
|
||||
'SMTP_USERNAME' => 'SMTP username',
|
||||
'SMTP_USERNAME_EXPLAIN' => 'Only enter a username if your SMTP server requires it.',
|
||||
'SMTP_VERIFY_PEER' => 'Verify SSL certificate',
|
||||
'SMTP_VERIFY_PEER_EXPLAIN' => 'Require verification of SSL certificate used by SMTP server. <br><em><strong>Warning:</strong> Connecting peers with unverified SSL certificates may cause security implications.</em>',
|
||||
'SMTP_VERIFY_PEER_NAME' => 'Verify SMTP peer name',
|
||||
'SMTP_VERIFY_PEER_NAME_EXPLAIN' => 'Require verification of peer name for SMTP servers using SSL / TLS connections. <br><em><strong>Warning:</strong> Connecting to unverified peers may cause security implications.</em>',
|
||||
'TEST_EMAIL_SENT' => 'The test email has been sent.<br>If you don’t receive it, please check your emails configuration.<br><br>If you require assistance, please visit the <a href="https://www.phpbb.com/community/">phpBB support forums</a>.',
|
||||
|
||||
'USE_SMTP' => 'Use SMTP server for email',
|
||||
'USE_SMTP_EXPLAIN' => 'Select “Yes” if you want or have to send email via a named server instead of the local mail function.',
|
||||
));
|
||||
|
||||
// Jabber settings
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_JABBER_SETTINGS_EXPLAIN' => 'Here you can enable and control the use of Jabber for instant messaging and board notifications. Jabber is an open source protocol and therefore available for use by anyone. Some Jabber servers include gateways or transports which allow you to contact users on other networks. Not all servers offer all transports and changes in protocols can prevent transports from operating. Please be sure to enter already registered account details - phpBB will use the details you enter here as is.',
|
||||
|
||||
'JAB_ALLOW_SELF_SIGNED' => 'Allow self-signed SSL certificates',
|
||||
'JAB_ALLOW_SELF_SIGNED_EXPLAIN' => 'Allow connections to Jabber server with self-signed SSL certificate. <br><em><strong>Warning:</strong> Allowing self-signed SSL certificates may cause security implications.</em>',
|
||||
'JAB_ENABLE' => 'Enable Jabber',
|
||||
'JAB_ENABLE_EXPLAIN' => 'Enables use of Jabber messaging and notifications.',
|
||||
'JAB_GTALK_NOTE' => 'Please note that GTalk will not work because the <samp>dns_get_record</samp> function could not be found. This function is not available in PHP4, and is not implemented on Windows platforms. It currently does not work on BSD-based systems, including Mac OS.',
|
||||
'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 will not be queued for later sending.',
|
||||
'JAB_PASSWORD' => 'Jabber password',
|
||||
'JAB_PASSWORD_EXPLAIN' => '<em><strong>Warning:</strong> This password will be stored as plain text in the database, visible to everybody who can access your database or who can view this configuration page.</em>',
|
||||
'JAB_PORT' => 'Jabber port',
|
||||
'JAB_PORT_EXPLAIN' => 'Leave blank unless you know it is not port 5222.',
|
||||
'JAB_SERVER' => 'Jabber server',
|
||||
'JAB_SERVER_EXPLAIN' => 'See %sjabber.org%s for a list of servers.',
|
||||
'JAB_SETTINGS_CHANGED' => 'Jabber settings changed successfully.',
|
||||
'JAB_USE_SSL' => 'Use SSL to connect',
|
||||
'JAB_USE_SSL_EXPLAIN' => 'If enabled a secure connection is tried to be established. The Jabber port will be modified to 5223 if port 5222 is specified.',
|
||||
'JAB_USERNAME' => 'Jabber username or JID',
|
||||
'JAB_USERNAME_EXPLAIN' => 'Specify a registered username or a valid JID. The username will not be checked for validity. If you only specify a username, then your JID will be the username and the server you specified above. Else, specify a valid JID, for example user@jabber.org.',
|
||||
'JAB_VERIFY_PEER' => 'Verify SSL certificate',
|
||||
'JAB_VERIFY_PEER_EXPLAIN' => 'Require verification of SSL certificate used by Jabber server. <br><em><strong>Warning:</strong> Connecting peers with unverified SSL certificates may cause security implications.</em>',
|
||||
'JAB_VERIFY_PEER_NAME' => 'Verify Jabber peer name',
|
||||
'JAB_VERIFY_PEER_NAME_EXPLAIN' => 'Require verification of peer name for Jabber servers using SSL / TLS connections. <br><em><strong>Warning:</strong> Connecting to unverified peers may cause security implications.</em>',
|
||||
));
|
||||
833
install/update/old/language/en/acp/common.php
Normal file
833
install/update/old/language/en/acp/common.php
Normal file
@@ -0,0 +1,833 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
// Common
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_ADMINISTRATORS' => 'Administrators',
|
||||
'ACP_ADMIN_LOGS' => 'Admin log',
|
||||
'ACP_ADMIN_ROLES' => 'Admin roles',
|
||||
'ACP_ATTACHMENTS' => 'Attachments',
|
||||
'ACP_ATTACHMENT_SETTINGS' => 'Attachment settings',
|
||||
'ACP_AUTH_SETTINGS' => 'Authentication',
|
||||
'ACP_AUTOMATION' => 'Automation',
|
||||
'ACP_AVATAR_SETTINGS' => 'Avatar settings',
|
||||
|
||||
'ACP_BACKUP' => 'Backup',
|
||||
'ACP_BAN' => 'Banning',
|
||||
'ACP_BAN_EMAILS' => 'Ban emails',
|
||||
'ACP_BAN_IPS' => 'Ban IPs',
|
||||
'ACP_BAN_USERNAMES' => 'Ban users',
|
||||
'ACP_BBCODES' => 'BBCodes',
|
||||
'ACP_BOARD_CONFIGURATION' => 'Board configuration',
|
||||
'ACP_BOARD_FEATURES' => 'Board features',
|
||||
'ACP_BOARD_MANAGEMENT' => 'Board management',
|
||||
'ACP_BOARD_SETTINGS' => 'Board settings',
|
||||
'ACP_BOTS' => 'Spiders/Robots',
|
||||
|
||||
'ACP_CAPTCHA' => 'CAPTCHA',
|
||||
|
||||
'ACP_CAT_CUSTOMISE' => 'Customise',
|
||||
'ACP_CAT_DATABASE' => 'Database',
|
||||
'ACP_CAT_DOT_MODS' => 'Extensions',
|
||||
'ACP_CAT_FORUMS' => 'Forums',
|
||||
'ACP_CAT_GENERAL' => 'General',
|
||||
'ACP_CAT_MAINTENANCE' => 'Maintenance',
|
||||
'ACP_CAT_PERMISSIONS' => 'Permissions',
|
||||
'ACP_CAT_POSTING' => 'Posting',
|
||||
'ACP_CAT_STYLES' => 'Styles',
|
||||
'ACP_CAT_SYSTEM' => 'System',
|
||||
'ACP_CAT_USERGROUP' => 'Users and Groups',
|
||||
'ACP_CAT_USERS' => 'Users',
|
||||
'ACP_CLIENT_COMMUNICATION' => 'Client communication',
|
||||
'ACP_COOKIE_SETTINGS' => 'Cookie settings',
|
||||
'ACP_CONTACT' => 'Contact page',
|
||||
'ACP_CONTACT_SETTINGS' => 'Contact page settings',
|
||||
'ACP_CRITICAL_LOGS' => 'Error log',
|
||||
'ACP_CUSTOM_PROFILE_FIELDS' => 'Custom profile fields',
|
||||
|
||||
'ACP_DATABASE' => 'Database management',
|
||||
'ACP_DISALLOW' => 'Disallow',
|
||||
'ACP_DISALLOW_USERNAMES' => 'Disallow usernames',
|
||||
|
||||
'ACP_EMAIL_SETTINGS' => 'Email settings',
|
||||
'ACP_EXTENSION_GROUPS' => 'Manage attachment extension groups',
|
||||
'ACP_EXTENSION_MANAGEMENT' => 'Extension management',
|
||||
'ACP_EXTENSIONS' => 'Manage extensions',
|
||||
|
||||
'ACP_FORUM_BASED_PERMISSIONS' => 'Forum based permissions',
|
||||
'ACP_FORUM_LOGS' => 'Forum logs',
|
||||
'ACP_FORUM_MANAGEMENT' => 'Forum management',
|
||||
'ACP_FORUM_MODERATORS' => 'Forum moderators',
|
||||
'ACP_FORUM_PERMISSIONS' => 'Forum permissions',
|
||||
'ACP_FORUM_PERMISSIONS_COPY' => 'Copy forum permissions',
|
||||
'ACP_FORUM_ROLES' => 'Forum roles',
|
||||
|
||||
'ACP_GENERAL_CONFIGURATION' => 'General configuration',
|
||||
'ACP_GENERAL_TASKS' => 'General tasks',
|
||||
'ACP_GLOBAL_MODERATORS' => 'Global moderators',
|
||||
'ACP_GLOBAL_PERMISSIONS' => 'Global permissions',
|
||||
'ACP_GROUPS' => 'Groups',
|
||||
'ACP_GROUPS_FORUM_PERMISSIONS' => 'Group forum permissions',
|
||||
'ACP_GROUPS_MANAGE' => 'Manage groups',
|
||||
'ACP_GROUPS_MANAGEMENT' => 'Group management',
|
||||
'ACP_GROUPS_PERMISSIONS' => 'Group permissions',
|
||||
'ACP_GROUPS_POSITION' => 'Manage group positions',
|
||||
|
||||
'ACP_HELP_PHPBB' => 'Help support phpBB',
|
||||
|
||||
'ACP_ICONS' => 'Topic icons',
|
||||
'ACP_ICONS_SMILIES' => 'Topic icons/smilies',
|
||||
'ACP_INACTIVE_USERS' => 'Inactive users',
|
||||
'ACP_INDEX' => 'ACP index',
|
||||
|
||||
'ACP_JABBER_SETTINGS' => 'Jabber settings',
|
||||
|
||||
'ACP_LANGUAGE' => 'Language management',
|
||||
'ACP_LANGUAGE_PACKS' => 'Language packs',
|
||||
'ACP_LOAD_SETTINGS' => 'Load settings',
|
||||
'ACP_LOGGING' => 'Logging',
|
||||
|
||||
'ACP_MAIN' => 'ACP index',
|
||||
|
||||
'ACP_MANAGE_ATTACHMENTS' => 'Manage attachments',
|
||||
'ACP_MANAGE_ATTACHMENTS_EXPLAIN' => 'Here you can list and delete files attached to posts and private messages.',
|
||||
|
||||
'ACP_MANAGE_EXTENSIONS' => 'Manage attachment extensions',
|
||||
'ACP_MANAGE_FORUMS' => 'Manage forums',
|
||||
'ACP_MANAGE_RANKS' => 'Manage ranks',
|
||||
'ACP_MANAGE_REASONS' => 'Manage report/denial reasons',
|
||||
'ACP_MANAGE_USERS' => 'Manage users',
|
||||
'ACP_MASS_EMAIL' => 'Mass email',
|
||||
'ACP_MESSAGES' => 'Messages',
|
||||
'ACP_MESSAGE_SETTINGS' => 'Private message settings',
|
||||
'ACP_MODULE_MANAGEMENT' => 'Module management',
|
||||
'ACP_MOD_LOGS' => 'Moderator log',
|
||||
'ACP_MOD_ROLES' => 'Moderator roles',
|
||||
|
||||
'ACP_NO_ITEMS' => 'There are no items yet.',
|
||||
|
||||
'ACP_ORPHAN_ATTACHMENTS' => 'Orphaned attachments',
|
||||
|
||||
'ACP_PERMISSIONS' => 'Permissions',
|
||||
'ACP_PERMISSION_MASKS' => 'Permission masks',
|
||||
'ACP_PERMISSION_ROLES' => 'Permission roles',
|
||||
'ACP_PERMISSION_TRACE' => 'Permission trace',
|
||||
'ACP_PHP_INFO' => 'PHP information',
|
||||
'ACP_POST_SETTINGS' => 'Post settings',
|
||||
'ACP_PRUNE_FORUMS' => 'Prune forums',
|
||||
'ACP_PRUNE_USERS' => 'Prune users',
|
||||
'ACP_PRUNING' => 'Pruning',
|
||||
|
||||
'ACP_QUICK_ACCESS' => 'Quick access',
|
||||
|
||||
'ACP_RANKS' => 'Ranks',
|
||||
'ACP_REASONS' => 'Report/denial reasons',
|
||||
'ACP_REGISTER_SETTINGS' => 'User registration settings',
|
||||
|
||||
'ACP_RESTORE' => 'Restore',
|
||||
|
||||
'ACP_FEED' => 'Feed management',
|
||||
'ACP_FEED_SETTINGS' => 'Feed settings',
|
||||
|
||||
'ACP_SEARCH' => 'Search configuration',
|
||||
'ACP_SEARCH_INDEX' => 'Search index',
|
||||
'ACP_SEARCH_SETTINGS' => 'Search settings',
|
||||
|
||||
'ACP_SECURITY_SETTINGS' => 'Security settings',
|
||||
'ACP_SERVER_CONFIGURATION' => 'Server configuration',
|
||||
'ACP_SERVER_SETTINGS' => 'Server settings',
|
||||
'ACP_SIGNATURE_SETTINGS' => 'Signature settings',
|
||||
'ACP_SMILIES' => 'Smilies',
|
||||
'ACP_STYLE_MANAGEMENT' => 'Style management',
|
||||
'ACP_STYLES' => 'Styles',
|
||||
'ACP_STYLES_CACHE' => 'Purge Cache',
|
||||
'ACP_STYLES_INSTALL' => 'Install Styles',
|
||||
|
||||
'ACP_SUBMIT_CHANGES' => 'Submit changes',
|
||||
|
||||
'ACP_TEMPLATES' => 'Templates',
|
||||
'ACP_THEMES' => 'Themes',
|
||||
|
||||
'ACP_UPDATE' => 'Updating',
|
||||
'ACP_USERS_FORUM_PERMISSIONS' => 'User forum permissions',
|
||||
'ACP_USERS_LOGS' => 'User logs',
|
||||
'ACP_USERS_PERMISSIONS' => 'User permissions',
|
||||
'ACP_USER_ATTACH' => 'Attachments',
|
||||
'ACP_USER_AVATAR' => 'Avatar',
|
||||
'ACP_USER_FEEDBACK' => 'Feedback',
|
||||
'ACP_USER_GROUPS' => 'Groups',
|
||||
'ACP_USER_MANAGEMENT' => 'User management',
|
||||
'ACP_USER_OVERVIEW' => 'Overview',
|
||||
'ACP_USER_PERM' => 'Permissions',
|
||||
'ACP_USER_PREFS' => 'Preferences',
|
||||
'ACP_USER_PROFILE' => 'Profile',
|
||||
'ACP_USER_RANK' => 'Rank',
|
||||
'ACP_USER_ROLES' => 'User roles',
|
||||
'ACP_USER_SECURITY' => 'User security',
|
||||
'ACP_USER_SIG' => 'Signature',
|
||||
'ACP_USER_WARNINGS' => 'Warnings',
|
||||
|
||||
'ACP_VC_SETTINGS' => 'Spambot countermeasures',
|
||||
'ACP_VC_CAPTCHA_DISPLAY' => 'CAPTCHA image preview',
|
||||
'ACP_VERSION_CHECK' => 'Check for updates',
|
||||
'ACP_VIEW_ADMIN_PERMISSIONS' => 'View administrative permissions',
|
||||
'ACP_VIEW_FORUM_MOD_PERMISSIONS' => 'View forum moderation permissions',
|
||||
'ACP_VIEW_FORUM_PERMISSIONS' => 'View forum-based permissions',
|
||||
'ACP_VIEW_GLOBAL_MOD_PERMISSIONS' => 'View global moderation permissions',
|
||||
'ACP_VIEW_USER_PERMISSIONS' => 'View user-based permissions',
|
||||
|
||||
'ACP_WORDS' => 'Word censoring',
|
||||
|
||||
'ACTION' => 'Action',
|
||||
'ACTIONS' => 'Actions',
|
||||
'ACTIVATE' => 'Activate',
|
||||
'ADD' => 'Add',
|
||||
'ADMIN' => 'Administration',
|
||||
'ADMIN_INDEX' => 'Admin index',
|
||||
'ADMIN_PANEL' => 'Administration Control Panel',
|
||||
|
||||
'ADM_LOGOUT' => 'ACP Logout',
|
||||
'ADM_LOGGED_OUT' => 'Successfully logged out from Administration Control Panel',
|
||||
|
||||
'BACK' => 'Back',
|
||||
|
||||
'CANNOT_CHANGE_FILE_GROUP' => 'Unable to change file group',
|
||||
'CANNOT_CHANGE_FILE_PERMISSIONS' => 'Unable to change file permissions',
|
||||
'CANNOT_COPY_FILES' => 'Unable to copy files',
|
||||
'CANNOT_CREATE_SYMLINK' => 'Unable to create a symlink',
|
||||
'CANNOT_DELETE_FILES' => 'Unable to delete files from the system',
|
||||
'CANNOT_DUMP_FILE' => 'Unable to dump file',
|
||||
'CANNOT_MIRROR_DIRECTORY' => 'Unable to mirror directory',
|
||||
'CANNOT_RENAME_FILE' => 'Unable to rename a file from the system',
|
||||
'CANNOT_TOUCH_FILES' => 'Unable to determine if the file exists',
|
||||
|
||||
'CONTAINER_EXCEPTION' => 'phpBB encountered an error building the container due to an installed extension. For this reason, all extensions have been temporarily disabled. Please try purging your forum cache. All extensions will automatically be re-enabled once the container error is resolved. If this error continues, please visit <a href="https://www.phpbb.com/support">phpBB.com</a> for support.',
|
||||
'EXCEPTION' => 'Exception',
|
||||
|
||||
'COLOUR_SWATCH' => 'Web-safe colour swatch',
|
||||
'CONFIG_UPDATED' => 'Configuration updated successfully.',
|
||||
'CRON_LOCK_ERROR' => 'Could not obtain cron lock.',
|
||||
'CRON_NO_SUCH_TASK' => 'Could not find cron task “%s”.',
|
||||
'CRON_NO_TASK' => 'No cron tasks need to be run right now.',
|
||||
'CRON_NO_TASKS' => 'No cron tasks could be found.',
|
||||
'CURRENT_VERSION' => 'Current version',
|
||||
|
||||
'DEACTIVATE' => 'Deactivate',
|
||||
'DIRECTORY_DOES_NOT_EXIST' => 'The entered path “%s” does not exist.',
|
||||
'DIRECTORY_NOT_DIR' => 'The entered path “%s” is not a directory.',
|
||||
'DIRECTORY_NOT_WRITABLE' => 'The entered path “%s” is not writable.',
|
||||
'DISABLE' => 'Disable',
|
||||
'DOWNLOAD' => 'Download',
|
||||
'DOWNLOAD_AS' => 'Download as',
|
||||
'DOWNLOAD_STORE' => 'Download or store file',
|
||||
'DOWNLOAD_STORE_EXPLAIN' => 'You may directly download the file or save it in your <samp>store/</samp> folder.',
|
||||
'DOWNLOADS' => 'Downloads',
|
||||
|
||||
'EDIT' => 'Edit',
|
||||
'ENABLE' => 'Enable',
|
||||
'EXPORT_DOWNLOAD' => 'Download',
|
||||
'EXPORT_STORE' => 'Store',
|
||||
|
||||
'GENERAL_OPTIONS' => 'General options',
|
||||
'GENERAL_SETTINGS' => 'General settings',
|
||||
'GLOBAL_MASK' => 'Global permission mask',
|
||||
|
||||
'INSTALL' => 'Install',
|
||||
'IP' => 'User IP',
|
||||
'IP_HOSTNAME' => 'IP addresses or hostnames',
|
||||
|
||||
'LATEST_VERSION' => 'Latest version',
|
||||
'LOAD_NOTIFICATIONS' => 'Display Notifications',
|
||||
'LOAD_NOTIFICATIONS_EXPLAIN' => 'Display the notifications list on every page (typically in the header).',
|
||||
'LOGGED_IN_AS' => 'You are logged in as:',
|
||||
'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_SUCCESS' => 'You have successfully authenticated and will now be redirected to the Administration Control Panel.',
|
||||
'LOOK_UP_FORUM' => 'Select a forum',
|
||||
'LOOK_UP_FORUMS_EXPLAIN'=> 'You are able to select more than one forum.',
|
||||
|
||||
'MANAGE' => 'Manage',
|
||||
'MENU_TOGGLE' => 'Hide or display the side menu',
|
||||
'MORE' => 'More', // Not used at the moment
|
||||
'MORE_INFORMATION' => 'More information »',
|
||||
'MOVE_DOWN' => 'Move down',
|
||||
'MOVE_UP' => 'Move up',
|
||||
|
||||
'NOTIFY' => 'Notification',
|
||||
'NO_ADMIN' => 'You are not authorised to administer this board.',
|
||||
'NO_EMAILS_DEFINED' => 'No valid email addresses found.',
|
||||
'NO_FILES_TO_DELETE' => 'Attachments you selected for deletion do not exist.',
|
||||
'NO_PASSWORD_SUPPLIED' => 'You need to enter your password to access the Administration Control Panel.',
|
||||
|
||||
'OFF' => 'Off',
|
||||
'ON' => 'On',
|
||||
|
||||
'PARSE_BBCODE' => 'Parse BBCode',
|
||||
'PARSE_SMILIES' => 'Parse smilies',
|
||||
'PARSE_URLS' => 'Parse links',
|
||||
'PERMISSIONS_TRANSFERRED' => 'Permissions transferred',
|
||||
'PERMISSIONS_TRANSFERRED_EXPLAIN' => 'You currently have the permissions from %1$s. You are able to browse the board with this user’s permissions, but not access the administration control panel since admin permissions were not transferred. You can <a href="%2$s"><strong>revert to your permission set</strong></a> at any time.',
|
||||
'PROCEED_TO_ACP' => '%sProceed to the ACP%s',
|
||||
|
||||
'RELEASE_ANNOUNCEMENT' => 'Announcement',
|
||||
'REMIND' => 'Remind',
|
||||
'REPARSE_LOCK_ERROR' => 'Reparsing is already in progress by another process.',
|
||||
'RESYNC' => 'Resynchronise',
|
||||
|
||||
'RUNNING_TASK' => 'Running task: %s.',
|
||||
'SELECT_ANONYMOUS' => 'Select anonymous user',
|
||||
'SELECT_OPTION' => 'Select option',
|
||||
|
||||
'SETTING_TOO_LOW' => 'The provided value for the setting “%1$s” is too low. The minimum acceptable value is %2$d.',
|
||||
'SETTING_TOO_BIG' => 'The provided value for the setting “%1$s” is too high. The maximum acceptable value is %2$d.',
|
||||
'SETTING_TOO_LONG' => 'The provided value for the setting “%1$s” is too long. The maximum acceptable length is %2$d.',
|
||||
'SETTING_TOO_SHORT' => 'The provided value for the setting “%1$s” is too short. The minimum acceptable length is %2$d.',
|
||||
|
||||
'SHOW_ALL_OPERATIONS' => 'Show all operations',
|
||||
|
||||
'TASKS_NOT_READY' => 'Not ready tasks:',
|
||||
'TASKS_READY' => 'Ready tasks:',
|
||||
'TOTAL_SIZE' => 'Total size',
|
||||
|
||||
'UCP' => 'User Control Panel',
|
||||
'URL_INVALID' => 'The provided URL for the setting “%1$s” is invalid.',
|
||||
'USERNAMES_EXPLAIN' => 'Place each username on a separate line.',
|
||||
'USER_CONTROL_PANEL' => 'User Control Panel',
|
||||
|
||||
'UPDATE_NEEDED' => 'The board is not up to date.',
|
||||
'UPDATE_NOT_NEEDED' => 'The board is up to date.',
|
||||
'UPDATES_AVAILABLE' => 'Updates available:',
|
||||
|
||||
'WARNING' => 'Warning',
|
||||
));
|
||||
|
||||
// PHP info
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_PHP_INFO_EXPLAIN' => 'This page lists information on the version of PHP installed on this server. It includes details of loaded modules, available variables and default settings. This information may be useful when diagnosing problems. Please be aware that some hosting companies will limit what information is displayed here for security reasons. You are advised to not give out any details on this page except when asked by <a href="https://www.phpbb.com/about/team/">official team members</a> on the support forums.',
|
||||
|
||||
'NO_PHPINFO_AVAILABLE' => 'Information about your PHP configuration is unable to be determined. Phpinfo() has been disabled for security reasons.',
|
||||
));
|
||||
|
||||
// Logs
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_ADMIN_LOGS_EXPLAIN' => 'This lists all the actions carried out by board administrators. You can sort by username, date, IP or action. If you have appropriate permissions you can also clear individual operations or the log as a whole.',
|
||||
'ACP_CRITICAL_LOGS_EXPLAIN' => 'This lists the actions carried out by the board itself. This log provides you with information you are able to use for solving specific problems, for example non-delivery of emails. You can sort by username, date, IP or action. If you have appropriate permissions you can also clear individual operations or the log as a whole.',
|
||||
'ACP_MOD_LOGS_EXPLAIN' => 'This lists all actions done on forums, topics and posts as well as actions carried out on users by moderators, including banning. You can sort by username, date, IP or action. If you have appropriate permissions you can also clear individual operations or the log as a whole.',
|
||||
'ACP_USERS_LOGS_EXPLAIN' => 'This lists all actions carried out by users or on users (reports, warnings and user notes).',
|
||||
'ALL_ENTRIES' => 'All entries',
|
||||
|
||||
'DISPLAY_LOG' => 'Display entries from previous',
|
||||
|
||||
'NO_ENTRIES' => 'No log entries for this period.',
|
||||
|
||||
'SORT_IP' => 'IP address',
|
||||
'SORT_DATE' => 'Date',
|
||||
'SORT_ACTION' => 'Log action',
|
||||
));
|
||||
|
||||
// Index page
|
||||
$lang = array_merge($lang, array(
|
||||
'ADMIN_INTRO' => 'Thank you for choosing phpBB as your board solution. This screen will give you a quick overview of all the various statistics of your board. The links on the left hand side of this screen allow you to control every aspect of your board experience. Each page will have instructions on how to use the tools.',
|
||||
'ADMIN_LOG' => 'Logged administrator actions',
|
||||
'ADMIN_LOG_INDEX_EXPLAIN' => 'This gives an overview of the last five actions carried out by board administrators. A full copy of the log can be viewed from the appropriate menu item or following the link below.',
|
||||
'AVATAR_DIR_SIZE' => 'Avatar directory size',
|
||||
|
||||
'BOARD_STARTED' => 'Board started',
|
||||
'BOARD_VERSION' => 'Board version',
|
||||
|
||||
'DATABASE_SERVER_INFO' => 'Database server',
|
||||
'DATABASE_SIZE' => 'Database size',
|
||||
|
||||
// Enviroment configuration checks, mbstring related
|
||||
'ERROR_MBSTRING_FUNC_OVERLOAD' => 'Function overloading is improperly configured',
|
||||
'ERROR_MBSTRING_FUNC_OVERLOAD_EXPLAIN' => '<var>mbstring.func_overload</var> must be set to either 0 or 4. You can check the current value on the <samp>PHP information</samp> page.',
|
||||
'ERROR_MBSTRING_ENCODING_TRANSLATION' => 'Transparent character encoding is improperly configured',
|
||||
'ERROR_MBSTRING_ENCODING_TRANSLATION_EXPLAIN' => '<var>mbstring.encoding_translation</var> must be set to 0. You can check the current value on the <samp>PHP information</samp> page.',
|
||||
'ERROR_MBSTRING_HTTP_INPUT' => 'HTTP input character conversion is improperly configured',
|
||||
'ERROR_MBSTRING_HTTP_INPUT_EXPLAIN' => '<var>mbstring.http_input</var> must be set to <samp>pass</samp>. You can check the current value on the <samp>PHP information</samp> page.',
|
||||
'ERROR_MBSTRING_HTTP_OUTPUT' => 'HTTP output character conversion is improperly configured',
|
||||
'ERROR_MBSTRING_HTTP_OUTPUT_EXPLAIN' => '<var>mbstring.http_output</var> must be set to <samp>pass</samp>. You can check the current value on the <samp>PHP information</samp> page.',
|
||||
|
||||
'FILES_PER_DAY' => 'Attachments per day',
|
||||
'FORUM_STATS' => 'Board statistics',
|
||||
|
||||
'GZIP_COMPRESSION' => 'GZip compression',
|
||||
|
||||
'NO_SEARCH_INDEX' => 'The selected search backend does not have a search index.<br />Please create the index for “%1$s” in the %2$ssearch index%3$s section.',
|
||||
'NOT_AVAILABLE' => 'Not available',
|
||||
'NUMBER_FILES' => 'Number of attachments',
|
||||
'NUMBER_POSTS' => 'Number of posts',
|
||||
'NUMBER_TOPICS' => 'Number of topics',
|
||||
'NUMBER_USERS' => 'Number of users',
|
||||
'NUMBER_ORPHAN' => 'Orphan attachments',
|
||||
|
||||
'PHP_VERSION' => 'PHP version',
|
||||
'PHP_VERSION_OLD' => 'The version of PHP on this server (%1$s) will no longer be supported by future versions of phpBB. The minimum required version will be PHP %2$s. %3$sDetails%4$s',
|
||||
|
||||
'POSTS_PER_DAY' => 'Posts per day',
|
||||
|
||||
'PURGE_CACHE' => 'Purge the cache',
|
||||
'PURGE_CACHE_CONFIRM' => 'Are you sure you wish to purge the cache?',
|
||||
'PURGE_CACHE_EXPLAIN' => 'Purge all cache related items, this includes any cached template files or queries.',
|
||||
'PURGE_CACHE_SUCCESS' => 'Cache successfully purged.',
|
||||
|
||||
'PURGE_SESSIONS' => 'Purge all sessions',
|
||||
'PURGE_SESSIONS_CONFIRM' => 'Are you sure you wish to purge all sessions? This will log out all users.',
|
||||
'PURGE_SESSIONS_EXPLAIN' => 'Purge all sessions. This will log out all users by truncating the session table.',
|
||||
'PURGE_SESSIONS_SUCCESS' => 'Sessions successfully purged.',
|
||||
|
||||
'RESET_DATE' => 'Reset board’s start date',
|
||||
'RESET_DATE_CONFIRM' => 'Are you sure you wish to reset the board’s start date?',
|
||||
'RESET_DATE_SUCCESS' => 'Board’s start date reset',
|
||||
'RESET_ONLINE' => 'Reset most users ever online',
|
||||
'RESET_ONLINE_CONFIRM' => 'Are you sure you wish to reset the most users ever online counter?',
|
||||
'RESET_ONLINE_SUCCESS' => 'Most users ever online reset',
|
||||
'RESYNC_POSTCOUNTS' => 'Resynchronise post counts',
|
||||
'RESYNC_POSTCOUNTS_EXPLAIN' => 'Only existing posts will be taken into consideration. Pruned posts will not be counted.',
|
||||
'RESYNC_POSTCOUNTS_CONFIRM' => 'Are you sure you wish to resynchronise post counts?',
|
||||
'RESYNC_POSTCOUNTS_SUCCESS' => 'Resynchronised post counts',
|
||||
'RESYNC_POST_MARKING' => 'Resynchronise dotted topics',
|
||||
'RESYNC_POST_MARKING_CONFIRM' => 'Are you sure you wish to resynchronise dotted topics?',
|
||||
'RESYNC_POST_MARKING_EXPLAIN' => 'First unmarks all topics and then correctly marks topics that have seen any activity during the past six months.',
|
||||
'RESYNC_POST_MARKING_SUCCESS' => 'Resynchronised dotted topics',
|
||||
'RESYNC_STATS' => 'Resynchronise statistics',
|
||||
'RESYNC_STATS_CONFIRM' => 'Are you sure you wish to resynchronise statistics?',
|
||||
'RESYNC_STATS_EXPLAIN' => 'Recalculates the total number of posts, topics, users and files.',
|
||||
'RESYNC_STATS_SUCCESS' => 'Resynchronised statistics',
|
||||
'RUN' => 'Run now',
|
||||
|
||||
'STATISTIC' => 'Statistic',
|
||||
'STATISTIC_RESYNC_OPTIONS' => 'Resynchronise or reset statistics',
|
||||
|
||||
'TIMEZONE_INVALID' => 'The timezone you selected is invalid.',
|
||||
'TIMEZONE_SELECTED' => '(currently selected)',
|
||||
'TOPICS_PER_DAY' => 'Topics per day',
|
||||
|
||||
'UPLOAD_DIR_SIZE' => 'Size of posted attachments',
|
||||
'USERS_PER_DAY' => 'Users per day',
|
||||
|
||||
'VALUE' => 'Value',
|
||||
'VERSIONCHECK_FAIL' => 'Failed to obtain latest version information.',
|
||||
'VERSIONCHECK_FORCE_UPDATE' => 'Re-Check version',
|
||||
'VERSION_CHECK' => 'Version check',
|
||||
'VERSION_CHECK_EXPLAIN' => 'Checks to see if your phpBB installation is up to date.',
|
||||
'VERSIONCHECK_INVALID_ENTRY' => 'Latest version information contains an unsupported entry.',
|
||||
'VERSIONCHECK_INVALID_URL' => 'Latest version information contains invalid URL.',
|
||||
'VERSIONCHECK_INVALID_VERSION' => 'Latest version information contains an invalid version.',
|
||||
'VERSION_NOT_UP_TO_DATE_ACP' => 'Your phpBB installation is not up to date.<br />Below is a link to the release announcement, which contains more information as well as instructions on updating.',
|
||||
'VERSION_NOT_UP_TO_DATE_TITLE' => 'Your phpBB installation is not up to date.',
|
||||
'VERSION_UP_TO_DATE_ACP' => 'Your phpBB installation is up to date. There are no updates available at this time.',
|
||||
'VIEW_ADMIN_LOG' => 'View administrator log',
|
||||
'VIEW_INACTIVE_USERS' => 'View inactive users',
|
||||
|
||||
'WELCOME_PHPBB' => 'Welcome to phpBB',
|
||||
'WRITABLE_CONFIG' => 'Your config file (config.php) is currently world-writable. We strongly encourage you to change the permissions to 640 or at least to 644 (for example: <a href="http://en.wikipedia.org/wiki/Chmod" rel="external">chmod</a> 640 config.php).',
|
||||
));
|
||||
|
||||
// Inactive Users
|
||||
$lang = array_merge($lang, array(
|
||||
'INACTIVE_DATE' => 'Inactive date',
|
||||
'INACTIVE_REASON' => 'Reason',
|
||||
'INACTIVE_REASON_MANUAL' => 'Account deactivated by administrator',
|
||||
'INACTIVE_REASON_PROFILE' => 'Profile details changed',
|
||||
'INACTIVE_REASON_REGISTER' => 'Newly registered account',
|
||||
'INACTIVE_REASON_REMIND' => 'Forced user account reactivation',
|
||||
'INACTIVE_REASON_UNKNOWN' => 'Unknown',
|
||||
'INACTIVE_USERS' => 'Inactive users',
|
||||
'INACTIVE_USERS_EXPLAIN' => 'This is a list of users who have registered but whose accounts are inactive. You can activate, delete or remind (by sending an email) these users if you wish.',
|
||||
'INACTIVE_USERS_EXPLAIN_INDEX' => 'This is a list of the last 10 registered users who have inactive accounts. Accounts are inactive either because account activation was enabled in user registration settings and these users’ accounts have not yet been activated, or because these accounts have been deactivated. A full list is available by following the link below from where you can activate, delete or remind (by sending an email) these users if you wish.',
|
||||
|
||||
'NO_INACTIVE_USERS' => 'No inactive users',
|
||||
|
||||
'SORT_INACTIVE' => 'Inactive date',
|
||||
'SORT_LAST_VISIT' => 'Last visit',
|
||||
'SORT_REASON' => 'Reason',
|
||||
'SORT_REG_DATE' => 'Registration date',
|
||||
'SORT_LAST_REMINDER'=> 'Last reminded',
|
||||
'SORT_REMINDER' => 'Reminder sent',
|
||||
|
||||
'USER_IS_INACTIVE' => 'User is inactive',
|
||||
));
|
||||
|
||||
// Help support phpBB page
|
||||
$lang = array_merge($lang, array(
|
||||
'EXPLAIN_SEND_STATISTICS' => 'Please send information about your server and board configurations to phpBB for statistical analysis. All information that could identify you or your website has been removed - the data is entirely <strong>anonymous</strong>. We base decisions about future phpBB versions on this information. The statistics are made available publically. We also share this data with the PHP project, the programming language phpBB is made with.',
|
||||
'EXPLAIN_SHOW_STATISTICS' => 'Using the button below you can preview all variables that will be transmitted.',
|
||||
'DONT_SEND_STATISTICS' => 'Return to the ACP if you do not wish to send statistical information to phpBB.',
|
||||
'GO_ACP_MAIN' => 'Go to the ACP start page',
|
||||
'HIDE_STATISTICS' => 'Hide details',
|
||||
'SEND_STATISTICS' => 'Send statistics',
|
||||
'SEND_STATISTICS_LONG' => 'Send statistical information',
|
||||
'SHOW_STATISTICS' => 'Show details',
|
||||
'THANKS_SEND_STATISTICS' => 'Thank you for submitting your information.',
|
||||
'FAIL_SEND_STATISTICS' => 'phpBB was unable to send statistics',
|
||||
));
|
||||
|
||||
// Log Entries
|
||||
$lang = array_merge($lang, array(
|
||||
'LOG_ACL_ADD_USER_GLOBAL_U_' => '<strong>Added or edited users’ user permissions</strong><br />» %s',
|
||||
'LOG_ACL_ADD_GROUP_GLOBAL_U_' => '<strong>Added or edited groups’ user permissions</strong><br />» %s',
|
||||
'LOG_ACL_ADD_USER_GLOBAL_M_' => '<strong>Added or edited users’ global moderator permissions</strong><br />» %s',
|
||||
'LOG_ACL_ADD_GROUP_GLOBAL_M_' => '<strong>Added or edited groups’ global moderator permissions</strong><br />» %s',
|
||||
'LOG_ACL_ADD_USER_GLOBAL_A_' => '<strong>Added or edited users’ administrator permissions</strong><br />» %s',
|
||||
'LOG_ACL_ADD_GROUP_GLOBAL_A_' => '<strong>Added or edited groups’ administrator permissions</strong><br />» %s',
|
||||
|
||||
'LOG_ACL_ADD_ADMIN_GLOBAL_A_' => '<strong>Added or edited Administrators</strong><br />» %s',
|
||||
'LOG_ACL_ADD_MOD_GLOBAL_M_' => '<strong>Added or edited Global Moderators</strong><br />» %s',
|
||||
|
||||
'LOG_ACL_ADD_USER_LOCAL_F_' => '<strong>Added or edited users’ forum access</strong> from %1$s<br />» %2$s',
|
||||
'LOG_ACL_ADD_USER_LOCAL_M_' => '<strong>Added or edited users’ forum moderator access</strong> from %1$s<br />» %2$s',
|
||||
'LOG_ACL_ADD_GROUP_LOCAL_F_' => '<strong>Added or edited groups’ forum access</strong> from %1$s<br />» %2$s',
|
||||
'LOG_ACL_ADD_GROUP_LOCAL_M_' => '<strong>Added or edited groups’ forum moderator access</strong> from %1$s<br />» %2$s',
|
||||
|
||||
'LOG_ACL_ADD_MOD_LOCAL_M_' => '<strong>Added or edited Moderators</strong> from %1$s<br />» %2$s',
|
||||
'LOG_ACL_ADD_FORUM_LOCAL_F_' => '<strong>Added or edited forum permissions</strong> from %1$s<br />» %2$s',
|
||||
|
||||
'LOG_ACL_DEL_ADMIN_GLOBAL_A_' => '<strong>Removed Administrators</strong><br />» %s',
|
||||
'LOG_ACL_DEL_MOD_GLOBAL_M_' => '<strong>Removed Global Moderators</strong><br />» %s',
|
||||
'LOG_ACL_DEL_MOD_LOCAL_M_' => '<strong>Removed Moderators</strong> from %1$s<br />» %2$s',
|
||||
'LOG_ACL_DEL_FORUM_LOCAL_F_' => '<strong>Removed User/Group forum permissions</strong> from %1$s<br />» %2$s',
|
||||
|
||||
'LOG_ACL_TRANSFER_PERMISSIONS' => '<strong>Permissions transferred from</strong><br />» %s',
|
||||
'LOG_ACL_RESTORE_PERMISSIONS' => '<strong>Own permissions restored after using permissions from</strong><br />» %s',
|
||||
|
||||
'LOG_ADMIN_AUTH_FAIL' => '<strong>Failed administration login attempt</strong>',
|
||||
'LOG_ADMIN_AUTH_SUCCESS' => '<strong>Successful administration login</strong>',
|
||||
|
||||
'LOG_ATTACHMENTS_DELETED' => '<strong>Removed user attachments</strong><br />» %s',
|
||||
|
||||
'LOG_ATTACH_EXT_ADD' => '<strong>Added or edited attachment extension</strong><br />» %s',
|
||||
'LOG_ATTACH_EXT_DEL' => '<strong>Removed attachment extension</strong><br />» %s',
|
||||
'LOG_ATTACH_EXT_UPDATE' => '<strong>Updated attachment extension</strong><br />» %s',
|
||||
'LOG_ATTACH_EXTGROUP_ADD' => '<strong>Added extension group</strong><br />» %s',
|
||||
'LOG_ATTACH_EXTGROUP_EDIT' => '<strong>Edited extension group</strong><br />» %s',
|
||||
'LOG_ATTACH_EXTGROUP_DEL' => '<strong>Removed extension group</strong><br />» %s',
|
||||
'LOG_ATTACH_FILEUPLOAD' => '<strong>Orphan File uploaded to Post</strong><br />» ID %1$d - %2$s',
|
||||
'LOG_ATTACH_ORPHAN_DEL' => '<strong>Orphan Files deleted</strong><br />» %s',
|
||||
|
||||
'LOG_BAN_EXCLUDE_USER' => '<strong>Excluded user from ban</strong> for reason “<em>%1$s</em>”<br />» %2$s',
|
||||
'LOG_BAN_EXCLUDE_IP' => '<strong>Excluded IP from ban</strong> for reason “<em>%1$s</em>”<br />» %2$s',
|
||||
'LOG_BAN_EXCLUDE_EMAIL' => '<strong>Excluded email from ban</strong> for reason “<em>%1$s</em>”<br />» %2$s',
|
||||
'LOG_BAN_USER' => '<strong>Banned user</strong> for reason “<em>%1$s</em>”<br />» %2$s',
|
||||
'LOG_BAN_IP' => '<strong>Banned IP</strong> for reason “<em>%1$s</em>”<br />» %2$s',
|
||||
'LOG_BAN_EMAIL' => '<strong>Banned email</strong> for reason “<em>%1$s</em>”<br />» %2$s',
|
||||
'LOG_UNBAN_USER' => '<strong>Unbanned user</strong><br />» %s',
|
||||
'LOG_UNBAN_IP' => '<strong>Unbanned IP</strong><br />» %s',
|
||||
'LOG_UNBAN_EMAIL' => '<strong>Unbanned email</strong><br />» %s',
|
||||
|
||||
'LOG_BBCODE_ADD' => '<strong>Added new BBCode</strong><br />» %s',
|
||||
'LOG_BBCODE_EDIT' => '<strong>Edited BBCode</strong><br />» %s',
|
||||
'LOG_BBCODE_DELETE' => '<strong>Deleted BBCode</strong><br />» %s',
|
||||
'LOG_BBCODE_CONFIGURATION_ERROR' => '<strong>Error while configuring BBCode</strong>: %1$s<br />» %2$s',
|
||||
|
||||
'LOG_BOT_ADDED' => '<strong>New bot added</strong><br />» %s',
|
||||
'LOG_BOT_DELETE' => '<strong>Deleted bot</strong><br />» %s',
|
||||
'LOG_BOT_UPDATED' => '<strong>Existing bot updated</strong><br />» %s',
|
||||
|
||||
'LOG_CLEAR_ADMIN' => '<strong>Cleared admin log</strong>',
|
||||
'LOG_CLEAR_CRITICAL' => '<strong>Cleared error log</strong>',
|
||||
'LOG_CLEAR_MOD' => '<strong>Cleared moderator log</strong>',
|
||||
'LOG_CLEAR_USER' => '<strong>Cleared user log</strong><br />» %s',
|
||||
'LOG_CLEAR_USERS' => '<strong>Cleared user logs</strong>',
|
||||
|
||||
'LOG_CONFIG_ATTACH' => '<strong>Altered attachment settings</strong>',
|
||||
'LOG_CONFIG_AUTH' => '<strong>Altered authentication settings</strong>',
|
||||
'LOG_CONFIG_AVATAR' => '<strong>Altered avatar settings</strong>',
|
||||
'LOG_CONFIG_COOKIE' => '<strong>Altered cookie settings</strong>',
|
||||
'LOG_CONFIG_EMAIL' => '<strong>Altered email settings</strong>',
|
||||
'LOG_CONFIG_FEATURES' => '<strong>Altered board features</strong>',
|
||||
'LOG_CONFIG_LOAD' => '<strong>Altered load settings</strong>',
|
||||
'LOG_CONFIG_MESSAGE' => '<strong>Altered private message settings</strong>',
|
||||
'LOG_CONFIG_POST' => '<strong>Altered post settings</strong>',
|
||||
'LOG_CONFIG_REGISTRATION' => '<strong>Altered user registration settings</strong>',
|
||||
'LOG_CONFIG_FEED' => '<strong>Altered syndication feeds settings</strong>',
|
||||
'LOG_CONFIG_SEARCH' => '<strong>Altered search settings</strong>',
|
||||
'LOG_CONFIG_SECURITY' => '<strong>Altered security settings</strong>',
|
||||
'LOG_CONFIG_SERVER' => '<strong>Altered server settings</strong>',
|
||||
'LOG_CONFIG_SETTINGS' => '<strong>Altered board settings</strong>',
|
||||
'LOG_CONFIG_SIGNATURE' => '<strong>Altered signature settings</strong>',
|
||||
'LOG_CONFIG_VISUAL' => '<strong>Altered anti-spambot settings</strong>',
|
||||
|
||||
'LOG_APPROVE_TOPIC' => '<strong>Approved topic</strong><br />» %s',
|
||||
'LOG_BUMP_TOPIC' => '<strong>User bumped topic</strong><br />» %s',
|
||||
'LOG_DELETE_POST' => '<strong>Deleted post “%1$s” written by “%2$s” for the following reason</strong><br />» %3$s',
|
||||
'LOG_DELETE_SHADOW_TOPIC' => '<strong>Deleted shadow topic</strong><br />» %s',
|
||||
'LOG_DELETE_TOPIC' => '<strong>Deleted topic “%1$s” written by “%2$s” for the following reason</strong><br />» %3$s',
|
||||
'LOG_FORK' => '<strong>Copied topic</strong><br />» from %s',
|
||||
'LOG_LOCK' => '<strong>Locked topic</strong><br />» %s',
|
||||
'LOG_LOCK_POST' => '<strong>Locked post</strong><br />» %s',
|
||||
'LOG_MERGE' => '<strong>Merged posts</strong> into topic<br />» %s',
|
||||
'LOG_MOVE' => '<strong>Moved topic</strong><br />» from %1$s to %2$s',
|
||||
'LOG_MOVED_TOPIC' => '<strong>Moved topic</strong><br />» %s',
|
||||
'LOG_PM_REPORT_CLOSED' => '<strong>Closed PM report</strong><br />» %s',
|
||||
'LOG_PM_REPORT_DELETED' => '<strong>Deleted PM report</strong><br />» %s',
|
||||
'LOG_POST_APPROVED' => '<strong>Approved post</strong><br />» %s',
|
||||
'LOG_POST_DISAPPROVED' => '<strong>Disapproved post “%1$s” written by “%3$s” for the following reason</strong><br />» %2$s',
|
||||
'LOG_POST_EDITED' => '<strong>Edited post “%1$s” written by “%2$s” for the following reason</strong><br />» %3$s',
|
||||
'LOG_POST_RESTORED' => '<strong>Restored post</strong><br />» %s',
|
||||
'LOG_REPORT_CLOSED' => '<strong>Closed report</strong><br />» %s',
|
||||
'LOG_REPORT_DELETED' => '<strong>Deleted report</strong><br />» %s',
|
||||
'LOG_RESTORE_TOPIC' => '<strong>Restored topic “%1$s” written by</strong><br />» %2$s',
|
||||
'LOG_SOFTDELETE_POST' => '<strong>Soft deleted post “%1$s” written by “%2$s” for the following reason</strong><br />» %3$s',
|
||||
'LOG_SOFTDELETE_TOPIC' => '<strong>Soft deleted topic “%1$s” written by “%2$s” for the following reason</strong><br />» %3$s',
|
||||
'LOG_SPLIT_DESTINATION' => '<strong>Moved split posts</strong><br />» to %s',
|
||||
'LOG_SPLIT_SOURCE' => '<strong>Split posts</strong><br />» from %s',
|
||||
|
||||
'LOG_TOPIC_APPROVED' => '<strong>Approved topic</strong><br />» %s',
|
||||
'LOG_TOPIC_RESTORED' => '<strong>Restored topic</strong><br />» %s',
|
||||
'LOG_TOPIC_DISAPPROVED' => '<strong>Disapproved topic “%1$s” written by “%3$s” for the following reason</strong><br />» %2$s',
|
||||
'LOG_TOPIC_RESYNC' => '<strong>Resynchronised topic counters</strong><br />» %s',
|
||||
'LOG_TOPIC_TYPE_CHANGED' => '<strong>Changed topic type</strong><br />» %s',
|
||||
'LOG_UNLOCK' => '<strong>Unlocked topic</strong><br />» %s',
|
||||
'LOG_UNLOCK_POST' => '<strong>Unlocked post</strong><br />» %s',
|
||||
|
||||
'LOG_DISALLOW_ADD' => '<strong>Added disallowed username</strong><br />» %s',
|
||||
'LOG_DISALLOW_DELETE' => '<strong>Deleted disallowed username</strong>',
|
||||
|
||||
'LOG_DB_BACKUP' => '<strong>Database backup</strong>',
|
||||
'LOG_DB_DELETE' => '<strong>Deleted database backup</strong>',
|
||||
'LOG_DB_RESTORE' => '<strong>Restored database backup</strong>',
|
||||
|
||||
'LOG_DOWNLOAD_EXCLUDE_IP' => '<strong>Excluded IP/hostname from download list</strong><br />» %s',
|
||||
'LOG_DOWNLOAD_IP' => '<strong>Added IP/hostname to download list</strong><br />» %s',
|
||||
'LOG_DOWNLOAD_REMOVE_IP' => '<strong>Removed IP/hostname from download list</strong><br />» %s',
|
||||
|
||||
'LOG_ERROR_JABBER' => '<strong>Jabber error</strong><br />» %s',
|
||||
'LOG_ERROR_EMAIL' => '<strong>Email error</strong><br />» %s',
|
||||
'LOG_ERROR_CAPTCHA' => '<strong>CAPTCHA error</strong><br />» %s',
|
||||
|
||||
'LOG_FORUM_ADD' => '<strong>Created new forum</strong><br />» %s',
|
||||
'LOG_FORUM_COPIED_PERMISSIONS' => '<strong>Copied forum permissions</strong> from %1$s<br />» %2$s',
|
||||
'LOG_FORUM_DEL_FORUM' => '<strong>Deleted forum</strong><br />» %s',
|
||||
'LOG_FORUM_DEL_FORUMS' => '<strong>Deleted forum and its subforums</strong><br />» %s',
|
||||
'LOG_FORUM_DEL_MOVE_FORUMS' => '<strong>Deleted forum and moved subforums</strong> to %1$s<br />» %2$s',
|
||||
'LOG_FORUM_DEL_MOVE_POSTS' => '<strong>Deleted forum and moved posts </strong> to %1$s<br />» %2$s',
|
||||
'LOG_FORUM_DEL_MOVE_POSTS_FORUMS' => '<strong>Deleted forum and its subforums, moved posts</strong> to %1$s<br />» %2$s',
|
||||
'LOG_FORUM_DEL_MOVE_POSTS_MOVE_FORUMS' => '<strong>Deleted forum, moved posts</strong> to %1$s <strong>and subforums</strong> to %2$s<br />» %3$s',
|
||||
'LOG_FORUM_DEL_POSTS' => '<strong>Deleted forum and its posts</strong><br />» %s',
|
||||
'LOG_FORUM_DEL_POSTS_FORUMS' => '<strong>Deleted forum, its posts and subforums</strong><br />» %s',
|
||||
'LOG_FORUM_DEL_POSTS_MOVE_FORUMS' => '<strong>Deleted forum and its posts, moved subforums</strong> to %1$s<br />» %2$s',
|
||||
'LOG_FORUM_EDIT' => '<strong>Edited forum details</strong><br />» %s',
|
||||
'LOG_FORUM_MOVE_DOWN' => '<strong>Moved forum</strong> %1$s <strong>below</strong> %2$s',
|
||||
'LOG_FORUM_MOVE_UP' => '<strong>Moved forum</strong> %1$s <strong>above</strong> %2$s',
|
||||
'LOG_FORUM_SYNC' => '<strong>Re-synchronised forum</strong><br />» %s',
|
||||
|
||||
'LOG_GENERAL_ERROR' => '<strong>A general error occurred</strong>: %1$s <br />» %2$s',
|
||||
|
||||
'LOG_GROUP_CREATED' => '<strong>New usergroup created</strong><br />» %s',
|
||||
'LOG_GROUP_DEFAULTS' => '<strong>Group “%1$s” made default for members</strong><br />» %2$s',
|
||||
'LOG_GROUP_DELETE' => '<strong>Usergroup deleted</strong><br />» %s',
|
||||
'LOG_GROUP_DEMOTED' => '<strong>Leaders demoted in usergroup</strong> %1$s<br />» %2$s',
|
||||
'LOG_GROUP_PROMOTED' => '<strong>Members promoted to leader in usergroup</strong> %1$s<br />» %2$s',
|
||||
'LOG_GROUP_REMOVE' => '<strong>Members removed from usergroup</strong> %1$s<br />» %2$s',
|
||||
'LOG_GROUP_UPDATED' => '<strong>Usergroup details updated</strong><br />» %s',
|
||||
'LOG_MODS_ADDED' => '<strong>Added new leaders to usergroup</strong> %1$s<br />» %2$s',
|
||||
'LOG_USERS_ADDED' => '<strong>Added new members to usergroup</strong> %1$s<br />» %2$s',
|
||||
'LOG_USERS_APPROVED' => '<strong>Users approved in usergroup</strong> %1$s<br />» %2$s',
|
||||
'LOG_USERS_PENDING' => '<strong>Users requested to join group “%1$s” and need to be approved</strong><br />» %2$s',
|
||||
|
||||
'LOG_IMAGE_GENERATION_ERROR' => '<strong>Error while creating image</strong><br />» Error in %1$s on line %2$s: %3$s',
|
||||
|
||||
'LOG_INACTIVE_ACTIVATE' => '<strong>Activated inactive users</strong><br />» %s',
|
||||
'LOG_INACTIVE_DELETE' => '<strong>Deleted inactive users</strong><br />» %s',
|
||||
'LOG_INACTIVE_REMIND' => '<strong>Sent reminder emails to inactive users</strong><br />» %s',
|
||||
'LOG_INSTALL_CONVERTED' => '<strong>Converted from %1$s to phpBB %2$s</strong>',
|
||||
'LOG_INSTALL_INSTALLED' => '<strong>Installed phpBB %s</strong>',
|
||||
|
||||
'LOG_IP_BROWSER_FORWARDED_CHECK' => '<strong>Session IP/browser/X_FORWARDED_FOR check failed</strong><br />»User IP “<em>%1$s</em>” checked against session IP “<em>%2$s</em>”, user browser string “<em>%3$s</em>” checked against session browser string “<em>%4$s</em>” and user X_FORWARDED_FOR string “<em>%5$s</em>” checked against session X_FORWARDED_FOR string “<em>%6$s</em>”.',
|
||||
|
||||
'LOG_JAB_CHANGED' => '<strong>Jabber account changed</strong>',
|
||||
'LOG_JAB_PASSCHG' => '<strong>Jabber password changed</strong>',
|
||||
'LOG_JAB_REGISTER' => '<strong>Jabber account registered</strong>',
|
||||
'LOG_JAB_SETTINGS_CHANGED' => '<strong>Jabber settings changed</strong>',
|
||||
|
||||
'LOG_LANGUAGE_PACK_DELETED' => '<strong>Deleted language pack</strong><br />» %s',
|
||||
'LOG_LANGUAGE_PACK_INSTALLED' => '<strong>Installed language pack</strong><br />» %s',
|
||||
'LOG_LANGUAGE_PACK_UPDATED' => '<strong>Updated language pack details</strong><br />» %s',
|
||||
'LOG_LANGUAGE_FILE_REPLACED' => '<strong>Replaced language file</strong><br />» %s',
|
||||
'LOG_LANGUAGE_FILE_SUBMITTED' => '<strong>Submitted language file and placed in store folder</strong><br />» %s',
|
||||
|
||||
'LOG_MASS_EMAIL' => '<strong>Sent mass email</strong><br />» %s',
|
||||
|
||||
'LOG_MCP_CHANGE_POSTER' => '<strong>Changed poster in topic “%1$s”</strong><br />» from %2$s to %3$s',
|
||||
|
||||
'LOG_MODULE_DISABLE' => '<strong>Module disabled</strong><br />» %s',
|
||||
'LOG_MODULE_ENABLE' => '<strong>Module enabled</strong><br />» %s',
|
||||
'LOG_MODULE_MOVE_DOWN' => '<strong>Module moved down</strong><br />» %1$s below %2$s',
|
||||
'LOG_MODULE_MOVE_UP' => '<strong>Module moved up</strong><br />» %1$s above %2$s',
|
||||
'LOG_MODULE_REMOVED' => '<strong>Module removed</strong><br />» %s',
|
||||
'LOG_MODULE_ADD' => '<strong>Module added</strong><br />» %s',
|
||||
'LOG_MODULE_EDIT' => '<strong>Module edited</strong><br />» %s',
|
||||
|
||||
'LOG_A_ROLE_ADD' => '<strong>Admin role added</strong><br />» %s',
|
||||
'LOG_A_ROLE_EDIT' => '<strong>Admin role edited</strong><br />» %s',
|
||||
'LOG_A_ROLE_REMOVED' => '<strong>Admin role removed</strong><br />» %s',
|
||||
'LOG_F_ROLE_ADD' => '<strong>Forum role added</strong><br />» %s',
|
||||
'LOG_F_ROLE_EDIT' => '<strong>Forum role edited</strong><br />» %s',
|
||||
'LOG_F_ROLE_REMOVED' => '<strong>Forum role removed</strong><br />» %s',
|
||||
'LOG_M_ROLE_ADD' => '<strong>Moderator role added</strong><br />» %s',
|
||||
'LOG_M_ROLE_EDIT' => '<strong>Moderator role edited</strong><br />» %s',
|
||||
'LOG_M_ROLE_REMOVED' => '<strong>Moderator role removed</strong><br />» %s',
|
||||
'LOG_U_ROLE_ADD' => '<strong>User role added</strong><br />» %s',
|
||||
'LOG_U_ROLE_EDIT' => '<strong>User role edited</strong><br />» %s',
|
||||
'LOG_U_ROLE_REMOVED' => '<strong>User role removed</strong><br />» %s',
|
||||
|
||||
'LOG_PLUPLOAD_TIDY_FAILED' => '<strong>Unable to open %1$s for tidying, check permissions.</strong><br />Exception: %2$s<br />Trace: %3$s',
|
||||
|
||||
'LOG_PROFILE_FIELD_ACTIVATE' => '<strong>Profile field activated</strong><br />» %s',
|
||||
'LOG_PROFILE_FIELD_CREATE' => '<strong>Profile field added</strong><br />» %s',
|
||||
'LOG_PROFILE_FIELD_DEACTIVATE' => '<strong>Profile field deactivated</strong><br />» %s',
|
||||
'LOG_PROFILE_FIELD_EDIT' => '<strong>Profile field changed</strong><br />» %s',
|
||||
'LOG_PROFILE_FIELD_REMOVED' => '<strong>Profile field removed</strong><br />» %s',
|
||||
|
||||
'LOG_PRUNE' => '<strong>Pruned forums</strong><br />» %s',
|
||||
'LOG_AUTO_PRUNE' => '<strong>Auto-pruned forums</strong><br />» %s',
|
||||
'LOG_PRUNE_SHADOW' => '<strong>Auto-pruned shadow topics</strong><br />» %s',
|
||||
'LOG_PRUNE_USER_DEAC' => '<strong>Users deactivated</strong><br />» %s',
|
||||
'LOG_PRUNE_USER_DEL_DEL' => '<strong>Users pruned and posts deleted</strong><br />» %s',
|
||||
'LOG_PRUNE_USER_DEL_ANON' => '<strong>Users pruned and posts retained</strong><br />» %s',
|
||||
|
||||
'LOG_PURGE_CACHE' => '<strong>Purged cache</strong>',
|
||||
'LOG_PURGE_SESSIONS' => '<strong>Purged sessions</strong>',
|
||||
|
||||
'LOG_RANK_ADDED' => '<strong>Added new rank</strong><br />» %s',
|
||||
'LOG_RANK_REMOVED' => '<strong>Removed rank</strong><br />» %s',
|
||||
'LOG_RANK_UPDATED' => '<strong>Updated rank</strong><br />» %s',
|
||||
|
||||
'LOG_REASON_ADDED' => '<strong>Added report/denial reason</strong><br />» %s',
|
||||
'LOG_REASON_REMOVED' => '<strong>Removed report/denial reason</strong><br />» %s',
|
||||
'LOG_REASON_UPDATED' => '<strong>Updated report/denial reason</strong><br />» %s',
|
||||
|
||||
'LOG_REFERER_INVALID' => '<strong>Referrer validation failed</strong><br />»Referrer was “<em>%1$s</em>”. The request was rejected and the session killed.',
|
||||
'LOG_RESET_DATE' => '<strong>Board start date reset</strong>',
|
||||
'LOG_RESET_ONLINE' => '<strong>Most users online reset</strong>',
|
||||
'LOG_RESYNC_FILES_STATS' => '<strong>File statistics resynchronised</strong>',
|
||||
'LOG_RESYNC_POSTCOUNTS' => '<strong>User post counts resynchronised</strong>',
|
||||
'LOG_RESYNC_POST_MARKING' => '<strong>Dotted topics resynchronised</strong>',
|
||||
'LOG_RESYNC_STATS' => '<strong>Post, topic and user statistics resynchronised</strong>',
|
||||
|
||||
'LOG_SEARCH_INDEX_CREATED' => '<strong>Created search index for</strong><br />» %s',
|
||||
'LOG_SEARCH_INDEX_REMOVED' => '<strong>Removed search index for</strong><br />» %s',
|
||||
'LOG_SPHINX_ERROR' => '<strong>Sphinx Error</strong><br />» %s',
|
||||
'LOG_STYLE_ADD' => '<strong>Added new style</strong><br />» %s',
|
||||
'LOG_STYLE_DELETE' => '<strong>Deleted style</strong><br />» %s',
|
||||
'LOG_STYLE_EDIT_DETAILS' => '<strong>Edited style</strong><br />» %s',
|
||||
'LOG_STYLE_EXPORT' => '<strong>Exported style</strong><br />» %s',
|
||||
|
||||
// @deprecated 3.1
|
||||
'LOG_TEMPLATE_ADD_DB' => '<strong>Added new template set to database</strong><br />» %s',
|
||||
// @deprecated 3.1
|
||||
'LOG_TEMPLATE_ADD_FS' => '<strong>Add new template set on filesystem</strong><br />» %s',
|
||||
'LOG_TEMPLATE_CACHE_CLEARED' => '<strong>Deleted cached versions of template files in template set <em>%1$s</em></strong><br />» %2$s',
|
||||
'LOG_TEMPLATE_DELETE' => '<strong>Deleted template set</strong><br />» %s',
|
||||
'LOG_TEMPLATE_EDIT' => '<strong>Edited template set <em>%1$s</em></strong><br />» %2$s',
|
||||
'LOG_TEMPLATE_EDIT_DETAILS' => '<strong>Edited template details</strong><br />» %s',
|
||||
'LOG_TEMPLATE_EXPORT' => '<strong>Exported template set</strong><br />» %s',
|
||||
// @deprecated 3.1
|
||||
'LOG_TEMPLATE_REFRESHED' => '<strong>Refreshed template set</strong><br />» %s',
|
||||
|
||||
// @deprecated 3.1
|
||||
'LOG_THEME_ADD_DB' => '<strong>Added new theme to database</strong><br />» %s',
|
||||
// @deprecated 3.1
|
||||
'LOG_THEME_ADD_FS' => '<strong>Add new theme on filesystem</strong><br />» %s',
|
||||
'LOG_THEME_DELETE' => '<strong>Theme deleted</strong><br />» %s',
|
||||
'LOG_THEME_EDIT_DETAILS' => '<strong>Edited theme details</strong><br />» %s',
|
||||
'LOG_THEME_EDIT' => '<strong>Edited theme <em>%1$s</em></strong>',
|
||||
'LOG_THEME_EDIT_FILE' => '<strong>Edited theme <em>%1$s</em></strong><br />» Modified file <em>%2$s</em>',
|
||||
'LOG_THEME_EXPORT' => '<strong>Exported theme</strong><br />» %s',
|
||||
// @deprecated 3.1
|
||||
'LOG_THEME_REFRESHED' => '<strong>Refreshed theme</strong><br />» %s',
|
||||
|
||||
'LOG_UPDATE_DATABASE' => '<strong>Updated Database from version %1$s to version %2$s</strong>',
|
||||
'LOG_UPDATE_PHPBB' => '<strong>Updated phpBB from version %1$s to version %2$s</strong>',
|
||||
|
||||
'LOG_USER_ACTIVE' => '<strong>User activated</strong><br />» %s',
|
||||
'LOG_USER_BAN_USER' => '<strong>Banned User via user management</strong> for reason “<em>%1$s</em>”<br />» %2$s',
|
||||
'LOG_USER_BAN_IP' => '<strong>Banned IP via user management</strong> for reason “<em>%1$s</em>”<br />» %2$s',
|
||||
'LOG_USER_BAN_EMAIL' => '<strong>Banned email via user management</strong> for reason “<em>%1$s</em>”<br />» %2$s',
|
||||
'LOG_USER_DELETED' => '<strong>Deleted user</strong><br />» %s',
|
||||
'LOG_USER_DEL_ATTACH' => '<strong>Removed all attachments made by the user</strong><br />» %s',
|
||||
'LOG_USER_DEL_AVATAR' => '<strong>Removed user avatar</strong><br />» %s',
|
||||
'LOG_USER_DEL_OUTBOX' => '<strong>Emptied user outbox</strong><br />» %s',
|
||||
'LOG_USER_DEL_POSTS' => '<strong>Removed all posts made by the user</strong><br />» %s',
|
||||
'LOG_USER_DEL_SIG' => '<strong>Removed user signature</strong><br />» %s',
|
||||
'LOG_USER_INACTIVE' => '<strong>User deactivated</strong><br />» %s',
|
||||
'LOG_USER_MOVE_POSTS' => '<strong>Moved user posts</strong><br />» posts by “%1$s” to forum “%2$s”',
|
||||
'LOG_USER_NEW_PASSWORD' => '<strong>Changed user password</strong><br />» %s',
|
||||
'LOG_USER_REACTIVATE' => '<strong>Forced user account reactivation</strong><br />» %s',
|
||||
'LOG_USER_REMOVED_NR' => '<strong>Removed newly registered flag from user</strong><br />» %s',
|
||||
|
||||
'LOG_USER_UPDATE_EMAIL' => '<strong>User “%1$s” changed email</strong><br />» from “%2$s” to “%3$s”',
|
||||
'LOG_USER_UPDATE_NAME' => '<strong>Changed username</strong><br />» from “%1$s” to “%2$s”',
|
||||
'LOG_USER_USER_UPDATE' => '<strong>Updated user details</strong><br />» %s',
|
||||
|
||||
'LOG_USER_ACTIVE_USER' => '<strong>User account activated</strong>',
|
||||
'LOG_USER_DEL_AVATAR_USER' => '<strong>User avatar removed</strong>',
|
||||
'LOG_USER_DEL_SIG_USER' => '<strong>User signature removed</strong>',
|
||||
'LOG_USER_FEEDBACK' => '<strong>Added user feedback</strong><br />» %s',
|
||||
'LOG_USER_GENERAL' => '<strong>Entry added:</strong><br />» %s',
|
||||
'LOG_USER_INACTIVE_USER' => '<strong>User account de-activated</strong>',
|
||||
'LOG_USER_LOCK' => '<strong>User locked own topic</strong><br />» %s',
|
||||
'LOG_USER_MOVE_POSTS_USER' => '<strong>Moved all posts to forum</strong>» %s',
|
||||
'LOG_USER_REACTIVATE_USER' => '<strong>Forced user account reactivation</strong>',
|
||||
'LOG_USER_UNLOCK' => '<strong>User unlocked own topic</strong><br />» %s',
|
||||
'LOG_USER_WARNING' => '<strong>Added user warning</strong><br />» %s',
|
||||
'LOG_USER_WARNING_BODY' => '<strong>The following warning was issued to this user</strong><br />» %s',
|
||||
|
||||
'LOG_USER_GROUP_CHANGE' => '<strong>User changed default group</strong><br />» %s',
|
||||
'LOG_USER_GROUP_DEMOTE' => '<strong>User demoted as leaders from usergroup</strong><br />» %s',
|
||||
'LOG_USER_GROUP_JOIN' => '<strong>User joined group</strong><br />» %s',
|
||||
'LOG_USER_GROUP_JOIN_PENDING' => '<strong>User joined group and needs to be approved</strong><br />» %s',
|
||||
'LOG_USER_GROUP_RESIGN' => '<strong>User resigned membership from group</strong><br />» %s',
|
||||
|
||||
'LOG_WARNING_DELETED' => '<strong>Deleted user warning</strong><br />» %s',
|
||||
'LOG_WARNINGS_DELETED' => array(
|
||||
1 => '<strong>Deleted user warning</strong><br />» %1$s',
|
||||
2 => '<strong>Deleted %2$d user warnings</strong><br />» %1$s', // Example: '<strong>Deleted 2 user warnings</strong><br />» username'
|
||||
),
|
||||
'LOG_WARNINGS_DELETED_ALL' => '<strong>Deleted all user warnings</strong><br />» %s',
|
||||
|
||||
'LOG_WORD_ADD' => '<strong>Added word censor</strong><br />» %s',
|
||||
'LOG_WORD_DELETE' => '<strong>Deleted word censor</strong><br />» %s',
|
||||
'LOG_WORD_EDIT' => '<strong>Edited word censor</strong><br />» %s',
|
||||
|
||||
'LOG_EXT_ENABLE' => '<strong>Extension enabled</strong><br />» %s',
|
||||
'LOG_EXT_DISABLE' => '<strong>Extension disabled</strong><br />» %s',
|
||||
'LOG_EXT_PURGE' => '<strong>Extension’s data deleted</strong><br />» %s',
|
||||
'LOG_EXT_UPDATE' => '<strong>Extension updated</strong><br />» %s',
|
||||
));
|
||||
165
install/update/old/language/en/acp/forums.php
Normal file
165
install/update/old/language/en/acp/forums.php
Normal file
@@ -0,0 +1,165 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
// Forum Admin
|
||||
$lang = array_merge($lang, array(
|
||||
'AUTO_PRUNE_DAYS' => 'Auto-prune post age',
|
||||
'AUTO_PRUNE_DAYS_EXPLAIN' => 'Number of days since last post after which topic is removed.',
|
||||
'AUTO_PRUNE_FREQ' => 'Auto-prune frequency',
|
||||
'AUTO_PRUNE_FREQ_EXPLAIN' => 'Time in days between pruning events.',
|
||||
'AUTO_PRUNE_VIEWED' => 'Auto-prune post viewed age',
|
||||
'AUTO_PRUNE_VIEWED_EXPLAIN' => 'Number of days since topic was viewed after which topic is removed.',
|
||||
'AUTO_PRUNE_SHADOW_FREQ' => 'Auto-prune shadow topics frequency',
|
||||
'AUTO_PRUNE_SHADOW_DAYS' => 'Auto-prune shadow topics age',
|
||||
'AUTO_PRUNE_SHADOW_DAYS_EXPLAIN' => 'Number of days after which shadow topic is removed.',
|
||||
'AUTO_PRUNE_SHADOW_FREQ_EXPLAIN' => 'Time in days between pruning events.',
|
||||
|
||||
'CONTINUE' => 'Continue',
|
||||
'COPY_PERMISSIONS' => 'Copy permissions from',
|
||||
'COPY_PERMISSIONS_EXPLAIN' => 'To ease up the permission setup for your new forum, you can copy the permissions of an existing forum.',
|
||||
'COPY_PERMISSIONS_ADD_EXPLAIN' => 'Once created, the forum will have the same permissions as the one you select here. If no forum is selected the newly created forum will not be visible until permissions had been set.',
|
||||
'COPY_PERMISSIONS_EDIT_EXPLAIN' => 'If you select to copy permissions, the forum will have the same permissions as the one you select here. This will overwrite any permissions you have previously set for this forum with the permissions of the forum you select here. If no forum is selected the current permissions will be kept.',
|
||||
'COPY_TO_ACL' => 'Alternatively, you are also able to %sset up new permissions%s for this forum.',
|
||||
'CREATE_FORUM' => 'Create new forum',
|
||||
|
||||
'DECIDE_MOVE_DELETE_CONTENT' => 'Delete content or move to forum',
|
||||
'DECIDE_MOVE_DELETE_SUBFORUMS' => 'Delete subforums or move to forum',
|
||||
'DEFAULT_STYLE' => 'Default style',
|
||||
'DELETE_ALL_POSTS' => 'Delete posts',
|
||||
'DELETE_SUBFORUMS' => 'Delete subforums and posts',
|
||||
'DISPLAY_ACTIVE_TOPICS' => 'Enable active topics',
|
||||
'DISPLAY_ACTIVE_TOPICS_EXPLAIN' => 'If set to yes active topics in selected subforums will be displayed under this category.',
|
||||
|
||||
'EDIT_FORUM' => 'Edit forum',
|
||||
'ENABLE_INDEXING' => 'Enable search indexing',
|
||||
'ENABLE_INDEXING_EXPLAIN' => 'If set to yes posts made to this forum will be indexed for searching.',
|
||||
'ENABLE_POST_REVIEW' => 'Enable post review',
|
||||
'ENABLE_POST_REVIEW_EXPLAIN' => 'If set to yes users are able to review their post if new posts were made to the topic while users wrote theirs. This should be disabled for chat forums.',
|
||||
'ENABLE_QUICK_REPLY' => 'Enable quick reply',
|
||||
'ENABLE_QUICK_REPLY_EXPLAIN' => 'Enables the quick reply in this forum. This setting is not considered if the quick reply is disabled board wide. The quick reply will only be displayed for users who have permission to post in this forum.',
|
||||
'ENABLE_RECENT' => 'Display active topics',
|
||||
'ENABLE_RECENT_EXPLAIN' => 'If set to yes topics made to this forum will be shown in the active topics list.',
|
||||
'ENABLE_TOPIC_ICONS' => 'Enable topic icons',
|
||||
|
||||
'FORUM_ADMIN' => 'Forum administration',
|
||||
'FORUM_ADMIN_EXPLAIN' => 'In phpBB3 everything is forum based. A category is just a special type of forum. Each forum can have an unlimited number of sub-forums and you can determine whether each may be posted to or not (i.e. whether it acts like an old category). Here you can add, edit, delete, lock, unlock individual forums as well as set certain additional controls. If your posts and topics have got out of sync you can also resynchronise a forum. <strong>You need to copy or set appropriate permissions for newly created forums to have them displayed.</strong>',
|
||||
'FORUM_AUTO_PRUNE' => 'Enable auto-pruning',
|
||||
'FORUM_AUTO_PRUNE_EXPLAIN' => 'Prunes the forum of topics, set the frequency/age parameters below.',
|
||||
'FORUM_CREATED' => 'Forum created successfully.',
|
||||
'FORUM_DATA_NEGATIVE' => 'Pruning parameters cannot be negative.',
|
||||
'FORUM_DESC_TOO_LONG' => 'The forum description is too long, it must be less than 4000 characters.',
|
||||
'FORUM_DELETE' => 'Delete forum',
|
||||
'FORUM_DELETE_EXPLAIN' => 'The form below will allow you to delete a forum. If the forum is postable you are able to decide where you want to put all topics (or forums) it contained.',
|
||||
'FORUM_DELETED' => 'Forum successfully deleted.',
|
||||
'FORUM_DESC' => 'Description',
|
||||
'FORUM_DESC_EXPLAIN' => 'Any HTML markup entered here will be displayed as is. If the selected forum type is a category the description is not used.',
|
||||
'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_EXPLAIN' => 'Location, relative to the phpBB root directory, of an additional image to associate with this forum.',
|
||||
'FORUM_IMAGE_NO_EXIST' => 'The specified forum image does not exist',
|
||||
'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_EXPLAIN' => 'Records the number of times a forum link was clicked.',
|
||||
'FORUM_NAME' => 'Forum name',
|
||||
'FORUM_NAME_EMPTY' => 'You must enter a name for this forum.',
|
||||
'FORUM_PARENT' => 'Parent forum',
|
||||
'FORUM_PASSWORD' => 'Forum password',
|
||||
'FORUM_PASSWORD_CONFIRM' => 'Confirm forum password',
|
||||
'FORUM_PASSWORD_CONFIRM_EXPLAIN' => 'Only needs to be set if a forum password is entered.',
|
||||
'FORUM_PASSWORD_EXPLAIN' => 'Defines a password for this forum, use the permission system in preference.',
|
||||
'FORUM_PASSWORD_UNSET' => 'Remove forum password',
|
||||
'FORUM_PASSWORD_UNSET_EXPLAIN' => 'Check here if you want to remove the forum password.',
|
||||
'FORUM_PASSWORD_OLD' => 'The forum password is using an old hashing method and should be changed.',
|
||||
'FORUM_PASSWORD_MISMATCH' => 'The passwords you entered did not match.',
|
||||
'FORUM_PRUNE_SETTINGS' => 'Forum prune settings',
|
||||
'FORUM_PRUNE_SHADOW' => 'Enable auto-pruning of shadow topics',
|
||||
'FORUM_PRUNE_SHADOW_EXPLAIN' => 'Prunes the forum of shadow topics, set the frequency/age parameters below.',
|
||||
'FORUM_RESYNCED' => 'Forum “%s” successfully resynced',
|
||||
'FORUM_RULES_EXPLAIN' => 'Forum rules are displayed at any page within the given forum.',
|
||||
'FORUM_RULES_LINK' => 'Link to forum rules',
|
||||
'FORUM_RULES_LINK_EXPLAIN' => 'You are able to enter the URL of the page/post containing your forum rules here. This setting will override the forum rules text you specified.',
|
||||
'FORUM_RULES_PREVIEW' => 'Forum rules preview',
|
||||
'FORUM_RULES_TOO_LONG' => 'The forum rules must be less than 4000 characters.',
|
||||
'FORUM_SETTINGS' => 'Forum settings',
|
||||
'FORUM_STATUS' => 'Forum status',
|
||||
'FORUM_STYLE' => 'Forum style',
|
||||
'FORUM_TOPICS_PAGE' => 'Topics per page',
|
||||
'FORUM_TOPICS_PAGE_EXPLAIN' => 'If non-zero this value will override the default topics per page setting.',
|
||||
'FORUM_TYPE' => 'Forum type',
|
||||
'FORUM_UPDATED' => 'Forum information updated successfully.',
|
||||
|
||||
'FORUM_WITH_SUBFORUMS_NOT_TO_LINK' => 'You want to change a postable forum having subforums to a link. Please move all subforums out of this forum before you proceed, because after changing to a link you are no longer able to see the subforums currently connected to this forum.',
|
||||
|
||||
'GENERAL_FORUM_SETTINGS' => 'General forum settings',
|
||||
|
||||
'LINK' => 'Link',
|
||||
'LIST_INDEX' => 'List subforum in parent-forum’s legend',
|
||||
'LIST_INDEX_EXPLAIN' => 'Displays this forum on the index and elsewhere as a link within the legend of its parent-forum if the parent-forum’s “List subforums in legend” option is enabled.',
|
||||
'LIST_SUBFORUMS' => 'List subforums in legend',
|
||||
'LIST_SUBFORUMS_EXPLAIN' => 'Displays this forum’s subforums on the index and elsewhere as a link within the legend if their “List subforum in parent-forum’s legend” option is enabled.',
|
||||
'LOCKED' => 'Locked',
|
||||
|
||||
'MOVE_POSTS_NO_POSTABLE_FORUM' => 'The forum you selected for moving the posts to is not postable. Please select a postable forum.',
|
||||
'MOVE_POSTS_TO' => 'Move posts to',
|
||||
'MOVE_SUBFORUMS_TO' => 'Move subforums 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_PARENT' => 'No parent',
|
||||
'NO_PERMISSIONS' => 'Do not copy permissions',
|
||||
'NO_PERMISSION_FORUM_ADD' => 'You do not have the necessary permissions to add forums.',
|
||||
'NO_PERMISSION_FORUM_DELETE' => 'You do not have the necessary permissions to delete forums.',
|
||||
|
||||
'PARENT_IS_LINK_FORUM' => 'The parent you specified is a forum link. Link forums are not able to hold other forums, please specify a category or forum as the parent forum.',
|
||||
'PARENT_NOT_EXIST' => 'Parent does not exist.',
|
||||
'PRUNE_ANNOUNCEMENTS' => 'Prune announcements',
|
||||
'PRUNE_STICKY' => 'Prune stickies',
|
||||
'PRUNE_OLD_POLLS' => 'Prune old polls',
|
||||
'PRUNE_OLD_POLLS_EXPLAIN' => 'Removes topics with polls not voted in for post age days.',
|
||||
|
||||
'REDIRECT_ACL' => 'Now you are able to %sset permissions%s for this forum.',
|
||||
|
||||
'SYNC_IN_PROGRESS' => 'Synchronizing forum',
|
||||
'SYNC_IN_PROGRESS_EXPLAIN' => 'Currently resyncing topic range %1$d/%2$d.',
|
||||
|
||||
'TYPE_CAT' => 'Category',
|
||||
'TYPE_FORUM' => 'Forum',
|
||||
'TYPE_LINK' => 'Link',
|
||||
|
||||
'UNLOCKED' => 'Unlocked',
|
||||
));
|
||||
287
install/update/old/language/en/acp/permissions.php
Normal file
287
install/update/old/language/en/acp/permissions.php
Normal file
@@ -0,0 +1,287 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_PERMISSIONS_EXPLAIN' => '
|
||||
<p>Permissions are highly granular and grouped into four major sections, which are:</p>
|
||||
|
||||
<h2>Global Permissions</h2>
|
||||
<p>These are used to control access on a global level and apply to the entire bulletin board. They are further divided into User Permissions, Group Permissions, Administrators and Global Moderators.</p>
|
||||
|
||||
<h2>Forum Based Permissions</h2>
|
||||
<p>These are used to control access on a per forum basis. They are further divided into Forum Permissions, Forum Moderators, User Forum Permissions and Group Forum Permissions.</p>
|
||||
|
||||
<h2>Permission Roles</h2>
|
||||
<p>These are used to create different sets of permissions for the different permission types later being able to be assigned on a role-based basis. The default roles should cover the administration of bulletin boards large and small, though within each of the four divisions, you can add/edit/delete roles as you see fit.</p>
|
||||
|
||||
<h2>Permission Masks</h2>
|
||||
<p>These are used to view the effective permissions assigned to Users, Moderators (Local and Global), Administrators or Forums.</p>
|
||||
|
||||
<br />
|
||||
|
||||
<p>For further information on setting up and managing permissions on your phpBB3 board, please see the section on <a href="https://www.phpbb.com/support/docs/en/3.2/ug/quickstart/permissions/">Setting permissions of our Quick Start Guide</a>.</p>
|
||||
',
|
||||
|
||||
'ACL_NEVER' => 'Never',
|
||||
'ACL_SET' => 'Setting permissions',
|
||||
'ACL_SET_EXPLAIN' => 'Permissions are based on a simple <strong>YES</strong>/<strong>NO</strong> system. Setting an option to <strong>NEVER</strong> for a user or usergroup overrides any other value assigned to it. If you do not wish to assign a value for an option for this user or group select <strong>NO</strong>. If values are assigned for this option elsewhere they will be used in preference, else <strong>NEVER</strong> is assumed. All objects marked (with the checkbox in front of them) will copy the permission set you defined.',
|
||||
'ACL_SETTING' => 'Setting',
|
||||
|
||||
'ACL_TYPE_A_' => 'Administrative permissions',
|
||||
'ACL_TYPE_F_' => 'Forum permissions',
|
||||
'ACL_TYPE_M_' => 'Moderative permissions',
|
||||
'ACL_TYPE_U_' => 'User permissions',
|
||||
|
||||
'ACL_TYPE_GLOBAL_A_' => 'Administrative permissions',
|
||||
'ACL_TYPE_GLOBAL_U_' => 'User permissions',
|
||||
'ACL_TYPE_GLOBAL_M_' => 'Global Moderator permissions',
|
||||
'ACL_TYPE_LOCAL_M_' => 'Forum Moderator permissions',
|
||||
'ACL_TYPE_LOCAL_F_' => 'Forum permissions',
|
||||
|
||||
'ACL_NO' => 'No',
|
||||
'ACL_VIEW' => 'Viewing permissions',
|
||||
'ACL_VIEW_EXPLAIN' => 'Here you can see the effective permissions the user/group is having. A red square indicates that the user/group does not have the permission, a green square indicates that the user/group does have the permission.',
|
||||
'ACL_YES' => 'Yes',
|
||||
|
||||
'ACP_ADMINISTRATORS_EXPLAIN' => 'Here you can assign administrator permissions to users or groups. All users with administrator permissions can view the administration control panel.',
|
||||
'ACP_FORUM_MODERATORS_EXPLAIN' => 'Here you can assign users and groups as forum moderators. To assign users access to forums, to define global moderative permissions or administrators please use the appropriate page.',
|
||||
'ACP_FORUM_PERMISSIONS_EXPLAIN' => 'Here you can alter which users and groups can access which forums. To assign moderators or define administrators please use the appropriate page.',
|
||||
'ACP_FORUM_PERMISSIONS_COPY_EXPLAIN' => 'Here you can copy forum permissions from one forum to one or more other forums.',
|
||||
'ACP_GLOBAL_MODERATORS_EXPLAIN' => 'Here you can assign global moderator permissions to users or groups. These moderators are like ordinary moderators except they have access to every forum on your board.',
|
||||
'ACP_GROUPS_FORUM_PERMISSIONS_EXPLAIN' => 'Here you can assign forum permissions to groups.',
|
||||
'ACP_GROUPS_PERMISSIONS_EXPLAIN' => 'Here you can assign global permissions to groups - 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, et cetera and lastly administrator permissions such as altering permissions, define custom BBCodes, manage forums, et cetera. Individual user permissions should only be changed in rare occasions, the preferred method is putting users in groups and assigning the group permissions.',
|
||||
'ACP_ADMIN_ROLES_EXPLAIN' => 'Here you are able to manage the roles for administrative permissions. Roles are effective permissions, if you change a role the items having this role assigned will change its permissions too.',
|
||||
'ACP_FORUM_ROLES_EXPLAIN' => 'Here you are able to manage the roles for forum permissions. Roles are effective permissions, if you change a role the items having this role assigned will change its permissions too.',
|
||||
'ACP_MOD_ROLES_EXPLAIN' => 'Here you are able to manage the roles for moderative 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_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, et cetera 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. User permissions should only be changed in rare occasions, the preferred method is putting users in groups and assigning the group permissions.',
|
||||
'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_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_USER_PERMISSIONS_EXPLAIN' => 'Here you can view the effective user permissions assigned to the selected users/groups.',
|
||||
|
||||
'ADD_GROUPS' => 'Add groups',
|
||||
'ADD_PERMISSIONS' => 'Add permissions',
|
||||
'ADD_USERS' => 'Add users',
|
||||
'ADVANCED_PERMISSIONS' => 'Advanced Permissions',
|
||||
'ALL_GROUPS' => 'Select all groups',
|
||||
'ALL_NEVER' => 'All <strong>NEVER</strong>',
|
||||
'ALL_NO' => 'All <strong>NO</strong>',
|
||||
'ALL_USERS' => 'Select all users',
|
||||
'ALL_YES' => 'All <strong>YES</strong>',
|
||||
'APPLY_ALL_PERMISSIONS' => 'Apply all permissions',
|
||||
'APPLY_PERMISSIONS' => 'Apply permissions',
|
||||
'APPLY_PERMISSIONS_EXPLAIN' => 'The permissions and role defined for this item will only be applied to this item and all checked items.',
|
||||
'AUTH_UPDATED' => 'Permissions have been updated.',
|
||||
|
||||
'COPY_PERMISSIONS_CONFIRM' => 'Are you sure you wish to carry out this operation? Please be aware that this will overwrite any existing permissions on the selected targets.',
|
||||
'COPY_PERMISSIONS_FORUM_FROM_EXPLAIN' => 'The source forum you want to copy permissions from.',
|
||||
'COPY_PERMISSIONS_FORUM_TO_EXPLAIN' => 'The destination forums you want the copied permissions applied to.',
|
||||
'COPY_PERMISSIONS_FROM' => 'Copy permissions from',
|
||||
'COPY_PERMISSIONS_TO' => 'Apply permissions to',
|
||||
|
||||
'CREATE_ROLE' => 'Create role',
|
||||
'CREATE_ROLE_FROM' => 'Use settings from…',
|
||||
'CUSTOM' => 'Custom…',
|
||||
|
||||
'DEFAULT' => 'Default',
|
||||
'DELETE_ROLE' => 'Delete role',
|
||||
'DELETE_ROLE_CONFIRM' => 'Are you sure you want to remove this role? Items having this role assigned will <strong>not</strong> lose their permission settings.',
|
||||
'DISPLAY_ROLE_ITEMS' => 'View items using this role',
|
||||
|
||||
'EDIT_PERMISSIONS' => 'Edit permissions',
|
||||
'EDIT_ROLE' => 'Edit role',
|
||||
|
||||
'GROUPS_NOT_ASSIGNED' => 'No group assigned to this role',
|
||||
|
||||
'LOOK_UP_GROUP' => 'Look up usergroup',
|
||||
'LOOK_UP_USER' => 'Look up user',
|
||||
|
||||
'MANAGE_GROUPS' => 'Manage groups',
|
||||
'MANAGE_USERS' => 'Manage users',
|
||||
|
||||
'NO_AUTH_SETTING_FOUND' => 'Permission settings not defined.',
|
||||
'NO_ROLE_ASSIGNED' => 'No role assigned…',
|
||||
'NO_ROLE_ASSIGNED_EXPLAIN' => 'Setting to this role does not change permissions on the right. If you want to unset/remove all permissions you should use the “All <strong>NO</strong>” link.',
|
||||
'NO_ROLE_AVAILABLE' => 'No role available',
|
||||
'NO_ROLE_NAME_SPECIFIED' => 'Please give the role a name.',
|
||||
'NO_ROLE_SELECTED' => 'Role could not be found.',
|
||||
'NO_USER_GROUP_SELECTED' => 'You haven’t selected any user or group.',
|
||||
|
||||
'ONLY_FORUM_DEFINED' => 'You only defined forums in your selection. Please also select at least one user or one group.',
|
||||
|
||||
'PERMISSION_APPLIED_TO_ALL' => 'Permissions and role will also be applied to all checked objects',
|
||||
'PLUS_SUBFORUMS' => '+Subforums',
|
||||
|
||||
'REMOVE_PERMISSIONS' => 'Remove permissions',
|
||||
'REMOVE_ROLE' => 'Remove role',
|
||||
'RESULTING_PERMISSION' => 'Resulting permission',
|
||||
'ROLE' => 'Role',
|
||||
'ROLE_ADD_SUCCESS' => 'Role successfully added.',
|
||||
'ROLE_ASSIGNED_TO' => 'Users/Groups assigned to %s',
|
||||
'ROLE_DELETED' => 'Role successfully removed.',
|
||||
'ROLE_DESCRIPTION' => 'Role description',
|
||||
|
||||
'ROLE_ADMIN_FORUM' => 'Forum Admin',
|
||||
'ROLE_ADMIN_FULL' => 'Full Admin',
|
||||
'ROLE_ADMIN_STANDARD' => 'Standard Admin',
|
||||
'ROLE_ADMIN_USERGROUP' => 'User and Groups Admin',
|
||||
'ROLE_FORUM_BOT' => 'Bot Access',
|
||||
'ROLE_FORUM_FULL' => 'Full Access',
|
||||
'ROLE_FORUM_LIMITED' => 'Limited Access',
|
||||
'ROLE_FORUM_LIMITED_POLLS' => 'Limited Access + Polls',
|
||||
'ROLE_FORUM_NOACCESS' => 'No Access',
|
||||
'ROLE_FORUM_ONQUEUE' => 'On Moderation Queue',
|
||||
'ROLE_FORUM_POLLS' => 'Standard Access + Polls',
|
||||
'ROLE_FORUM_READONLY' => 'Read Only Access',
|
||||
'ROLE_FORUM_STANDARD' => 'Standard Access',
|
||||
'ROLE_FORUM_NEW_MEMBER' => 'Newly Registered User Access',
|
||||
'ROLE_MOD_FULL' => 'Full Moderator',
|
||||
'ROLE_MOD_QUEUE' => 'Queue Moderator',
|
||||
'ROLE_MOD_SIMPLE' => 'Simple Moderator',
|
||||
'ROLE_MOD_STANDARD' => 'Standard Moderator',
|
||||
'ROLE_USER_FULL' => 'All Features',
|
||||
'ROLE_USER_LIMITED' => 'Limited Features',
|
||||
'ROLE_USER_NOAVATAR' => 'No Avatar',
|
||||
'ROLE_USER_NOPM' => 'No Private Messages',
|
||||
'ROLE_USER_STANDARD' => 'Standard Features',
|
||||
'ROLE_USER_NEW_MEMBER' => 'Newly Registered User Features',
|
||||
|
||||
'ROLE_DESCRIPTION_ADMIN_FORUM' => 'Can access the forum management and forum permission settings.',
|
||||
'ROLE_DESCRIPTION_ADMIN_FULL' => 'Has access to all administrative functions of this board.<br />Not recommended.',
|
||||
'ROLE_DESCRIPTION_ADMIN_STANDARD' => 'Has access to most administrative features but is not allowed to use server or system related tools.',
|
||||
'ROLE_DESCRIPTION_ADMIN_USERGROUP' => 'Can manage groups and users: Able to change permissions, settings, manage bans, and manage ranks.',
|
||||
'ROLE_DESCRIPTION_FORUM_BOT' => 'This role is recommended for bots and search spiders.',
|
||||
'ROLE_DESCRIPTION_FORUM_FULL' => 'Can use all forum features, including posting of announcements and stickies. Can also ignore the flood limit.<br />Not recommended for normal users.',
|
||||
'ROLE_DESCRIPTION_FORUM_LIMITED' => 'Can use some forum features, but cannot attach files or use post icons.',
|
||||
'ROLE_DESCRIPTION_FORUM_LIMITED_POLLS' => 'As per Limited Access but can also create polls.',
|
||||
'ROLE_DESCRIPTION_FORUM_NOACCESS' => 'Can neither see nor access the forum.',
|
||||
'ROLE_DESCRIPTION_FORUM_ONQUEUE' => 'Can use most forum features including attachments, but posts and topics need to be approved by a moderator.',
|
||||
'ROLE_DESCRIPTION_FORUM_POLLS' => 'Like Standard Access but can also create polls.',
|
||||
'ROLE_DESCRIPTION_FORUM_READONLY' => 'Can read the forum, but cannot create new topics or reply to posts.',
|
||||
'ROLE_DESCRIPTION_FORUM_STANDARD' => 'Can use most forum features including attachments and deleting own topics, but cannot lock own topics, and cannot create polls.',
|
||||
'ROLE_DESCRIPTION_FORUM_NEW_MEMBER' => 'A role for members of the special newly registered users group; contains <strong>NEVER</strong> permissions to lock features for new users.',
|
||||
'ROLE_DESCRIPTION_MOD_FULL' => 'Can use all moderating features, including banning.',
|
||||
'ROLE_DESCRIPTION_MOD_QUEUE' => 'Can use the Moderation Queue to validate and edit posts, but nothing else.',
|
||||
'ROLE_DESCRIPTION_MOD_SIMPLE' => 'Can only use basic topic actions. Cannot send warnings or use moderation queue.',
|
||||
'ROLE_DESCRIPTION_MOD_STANDARD' => 'Can use most moderating tools, but cannot ban users or change the post author.',
|
||||
'ROLE_DESCRIPTION_USER_FULL' => 'Can use all available forum features for users, including changing the user name or ignoring the flood limit.<br />Not recommended.',
|
||||
'ROLE_DESCRIPTION_USER_LIMITED' => 'Can access some of the user features. Attachments, emails, or instant messages are not allowed.',
|
||||
'ROLE_DESCRIPTION_USER_NOAVATAR' => 'Has a limited feature set and is not allowed to use the Avatar feature.',
|
||||
'ROLE_DESCRIPTION_USER_NOPM' => 'Has a limited feature set, and is not allowed to use Private Messages.',
|
||||
'ROLE_DESCRIPTION_USER_STANDARD' => 'Can access most but not all user features. Cannot change user name or ignore the flood limit, for instance.',
|
||||
'ROLE_DESCRIPTION_USER_NEW_MEMBER' => 'A role for members of the special newly registered users group; contains <strong>NEVER</strong> permissions to lock features for new users.',
|
||||
|
||||
'ROLE_DESCRIPTION_EXPLAIN' => 'You are able to enter a short explanation of what the role is doing or for what it is meant for. The text you enter here will be displayed within the permissions screens too.',
|
||||
'ROLE_DESCRIPTION_LONG' => 'The role description is too long, please limit it to 4000 characters.',
|
||||
'ROLE_DETAILS' => 'Role details',
|
||||
'ROLE_EDIT_SUCCESS' => 'Role successfully edited.',
|
||||
'ROLE_NAME' => 'Role name',
|
||||
'ROLE_NAME_ALREADY_EXIST' => 'A role named <strong>%s</strong> already exist for the specified permission type.',
|
||||
'ROLE_NOT_ASSIGNED' => 'Role has not been assigned yet.',
|
||||
|
||||
'SELECTED_FORUM_NOT_EXIST' => 'The selected forum(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.',
|
||||
'SELECT_FORUM_SUBFORUM_EXPLAIN' => 'The forum you select here will include all subforums into the selection.',
|
||||
'SELECT_ROLE' => 'Select role…',
|
||||
'SELECT_TYPE' => 'Select type',
|
||||
'SET_PERMISSIONS' => 'Set permissions',
|
||||
'SET_ROLE_PERMISSIONS' => 'Set role permissions',
|
||||
'SET_USERS_PERMISSIONS' => 'Set user permissions',
|
||||
'SET_USERS_FORUM_PERMISSIONS' => 'Set user forum permissions',
|
||||
|
||||
'TRACE_DEFAULT' => 'By default every permission is <strong>NO</strong> (unset). So the permission can be overwritten by other settings.',
|
||||
'TRACE_FOR' => 'Trace for',
|
||||
'TRACE_GLOBAL_SETTING' => '%s (global)',
|
||||
'TRACE_GROUP_NEVER_TOTAL_NEVER' => 'This group’s permission is set to <strong>NEVER</strong> like the total result so the old result is kept.',
|
||||
'TRACE_GROUP_NEVER_TOTAL_NEVER_LOCAL' => 'This group’s permission for this forum is set to <strong>NEVER</strong> like the total result so the old result is kept.',
|
||||
'TRACE_GROUP_NEVER_TOTAL_NO' => 'This group’s permission is set to <strong>NEVER</strong> which becomes the new total value because it wasn’t set yet (set to <strong>NO</strong>).',
|
||||
'TRACE_GROUP_NEVER_TOTAL_NO_LOCAL' => 'This group’s permission for this forum is set to <strong>NEVER</strong> which becomes the new total value because it wasn’t set yet (set to <strong>NO</strong>).',
|
||||
'TRACE_GROUP_NEVER_TOTAL_YES' => 'This group’s permission is set to <strong>NEVER</strong> which overwrites the total <strong>YES</strong> to a <strong>NEVER</strong> for this user.',
|
||||
'TRACE_GROUP_NEVER_TOTAL_YES_LOCAL' => 'This group’s permission for this forum is set to <strong>NEVER</strong> which overwrites the total <strong>YES</strong> to a <strong>NEVER</strong> for this user.',
|
||||
'TRACE_GROUP_NO' => 'The permission is <strong>NO</strong> for this group so the old total value is kept.',
|
||||
'TRACE_GROUP_NO_LOCAL' => 'The permission is <strong>NO</strong> for this group within this forum so the old total value is kept.',
|
||||
'TRACE_GROUP_YES_TOTAL_NEVER' => 'This group’s permission is set to <strong>YES</strong> but the total <strong>NEVER</strong> cannot be overwritten.',
|
||||
'TRACE_GROUP_YES_TOTAL_NEVER_LOCAL' => 'This group’s permission for this forum is set to <strong>YES</strong> but the total <strong>NEVER</strong> cannot be overwritten.',
|
||||
'TRACE_GROUP_YES_TOTAL_NO' => 'This group’s permission is set to <strong>YES</strong> which becomes the new total value because it wasn’t set yet (set to <strong>NO</strong>).',
|
||||
'TRACE_GROUP_YES_TOTAL_NO_LOCAL' => 'This group’s permission for this forum is set to <strong>YES</strong> which becomes the new total value because it wasn’t set yet (set to <strong>NO</strong>).',
|
||||
'TRACE_GROUP_YES_TOTAL_YES' => 'This group’s permission is set to <strong>YES</strong> and the total permission is already set to <strong>YES</strong>, so the total result is kept.',
|
||||
'TRACE_GROUP_YES_TOTAL_YES_LOCAL' => 'This group’s permission for this forum is set to <strong>YES</strong> and the total permission is already set to <strong>YES</strong>, so the total result is kept.',
|
||||
'TRACE_PERMISSION' => 'Trace permission - %s',
|
||||
'TRACE_RESULT' => 'Trace result',
|
||||
'TRACE_SETTING' => 'Trace setting',
|
||||
|
||||
'TRACE_USER_GLOBAL_YES_TOTAL_YES' => 'The forum independent user permission evaluates to <strong>YES</strong> but the total permission is already set to <strong>YES</strong>, so the total result is kept. %sTrace global permission%s',
|
||||
'TRACE_USER_GLOBAL_YES_TOTAL_NEVER' => 'The forum independent user permission evaluates to <strong>YES</strong> which overwrites the current local result <strong>NEVER</strong>. %sTrace global permission%s',
|
||||
'TRACE_USER_GLOBAL_NEVER_TOTAL_KEPT' => 'The forum independent user permission evaluates to <strong>NEVER</strong> which doesn’t influence the local permission. %sTrace global permission%s',
|
||||
|
||||
'TRACE_USER_FOUNDER' => 'The user is a founder, therefore admin permissions are always set to <strong>YES</strong>.',
|
||||
'TRACE_USER_KEPT' => 'The user’s permission is <strong>NO</strong> so the old total value is kept.',
|
||||
'TRACE_USER_KEPT_LOCAL' => 'The user’s permission for this forum is <strong>NO</strong> so the old total value is kept.',
|
||||
'TRACE_USER_NEVER_TOTAL_NEVER' => 'The user’s permission is set to <strong>NEVER</strong> and the total value is set to <strong>NEVER</strong>, so nothing is changed.',
|
||||
'TRACE_USER_NEVER_TOTAL_NEVER_LOCAL' => 'The user’s permission for this forum is set to <strong>NEVER</strong> and the total value is set to <strong>NEVER</strong>, so nothing is changed.',
|
||||
'TRACE_USER_NEVER_TOTAL_NO' => 'The user’s permission is set to <strong>NEVER</strong> which becomes the total value because it was set to NO.',
|
||||
'TRACE_USER_NEVER_TOTAL_NO_LOCAL' => 'The user’s permission for this forum is set to <strong>NEVER</strong> which becomes the total value because it was set to NO.',
|
||||
'TRACE_USER_NEVER_TOTAL_YES' => 'The user’s permission is set to <strong>NEVER</strong> and overwrites the previous <strong>YES</strong>.',
|
||||
'TRACE_USER_NEVER_TOTAL_YES_LOCAL' => 'The user’s permission for this forum is set to <strong>NEVER</strong> and overwrites the previous <strong>YES</strong>.',
|
||||
'TRACE_USER_NO_TOTAL_NO' => 'The user’s permission is <strong>NO</strong> and the total value was set to NO so it defaults to <strong>NEVER</strong>.',
|
||||
'TRACE_USER_NO_TOTAL_NO_LOCAL' => 'The user’s permission for this forum is <strong>NO</strong> and the total value was set to NO so it defaults to <strong>NEVER</strong>.',
|
||||
'TRACE_USER_YES_TOTAL_NEVER' => 'The user’s permission is set to <strong>YES</strong> but the total <strong>NEVER</strong> cannot be overwritten.',
|
||||
'TRACE_USER_YES_TOTAL_NEVER_LOCAL' => 'The user’s permission for this forum is set to <strong>YES</strong> but the total <strong>NEVER</strong> cannot be overwritten.',
|
||||
'TRACE_USER_YES_TOTAL_NO' => 'The user’s permission is set to <strong>YES</strong> which becomes the total value because it was set to <strong>NO</strong>.',
|
||||
'TRACE_USER_YES_TOTAL_NO_LOCAL' => 'The user’s permission for this forum is set to <strong>YES</strong> which becomes the total value because it was set to <strong>NO</strong>.',
|
||||
'TRACE_USER_YES_TOTAL_YES' => 'The user’s permission is set to <strong>YES</strong> and the total value is set to <strong>YES</strong>, so nothing is changed.',
|
||||
'TRACE_USER_YES_TOTAL_YES_LOCAL' => 'The user’s permission for this forum is set to <strong>YES</strong> and the total value is set to <strong>YES</strong>, so nothing is changed.',
|
||||
'TRACE_WHO' => 'Who',
|
||||
'TRACE_TOTAL' => 'Total',
|
||||
|
||||
'USERS_NOT_ASSIGNED' => 'No users are assigned to this role',
|
||||
'USER_IS_MEMBER_OF_DEFAULT' => 'is a member of the following pre-defined groups',
|
||||
'USER_IS_MEMBER_OF_CUSTOM' => 'is a member of the following user defined groups',
|
||||
|
||||
'VIEW_ASSIGNED_ITEMS' => 'View assigned items',
|
||||
'VIEW_LOCAL_PERMS' => 'Local permissions',
|
||||
'VIEW_GLOBAL_PERMS' => 'Global permissions',
|
||||
'VIEW_PERMISSIONS' => 'View permissions',
|
||||
|
||||
'WRONG_PERMISSION_TYPE' => 'Wrong permission type selected.',
|
||||
'WRONG_PERMISSION_SETTING_FORMAT' => 'The permission settings are in a wrong format, phpBB is not able to process them correctly.',
|
||||
));
|
||||
214
install/update/old/language/en/acp/permissions_phpbb.php
Normal file
214
install/update/old/language/en/acp/permissions_phpbb.php
Normal file
@@ -0,0 +1,214 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
/**
|
||||
* EXTENSION-DEVELOPERS PLEASE NOTE
|
||||
*
|
||||
* You are able to put your permission sets into your extension.
|
||||
* The permissions logic should be added via the 'core.permissions' event.
|
||||
* You can easily add new permission categories, types and permissions, by
|
||||
* simply merging them into the respective arrays.
|
||||
* The respective language strings should be added into a language file, that
|
||||
* start with 'permissions_', so they are automatically loaded within the ACP.
|
||||
*/
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'ACL_CAT_ACTIONS' => 'Actions',
|
||||
'ACL_CAT_CONTENT' => 'Content',
|
||||
'ACL_CAT_FORUMS' => 'Forums',
|
||||
'ACL_CAT_MISC' => 'Misc',
|
||||
'ACL_CAT_PERMISSIONS' => 'Permissions',
|
||||
'ACL_CAT_PM' => 'Private messages',
|
||||
'ACL_CAT_POLLS' => 'Polls',
|
||||
'ACL_CAT_POST' => 'Post',
|
||||
'ACL_CAT_POST_ACTIONS' => 'Post actions',
|
||||
'ACL_CAT_POSTING' => 'Posting',
|
||||
'ACL_CAT_PROFILE' => 'Profile',
|
||||
'ACL_CAT_SETTINGS' => 'Settings',
|
||||
'ACL_CAT_TOPIC_ACTIONS' => 'Topic actions',
|
||||
'ACL_CAT_USER_GROUP' => 'Users & Groups',
|
||||
));
|
||||
|
||||
// User Permissions
|
||||
$lang = array_merge($lang, array(
|
||||
'ACL_U_VIEWPROFILE' => 'Can view profiles, memberlist and online list',
|
||||
'ACL_U_CHGNAME' => 'Can change username',
|
||||
'ACL_U_CHGPASSWD' => 'Can change password',
|
||||
'ACL_U_CHGEMAIL' => 'Can change email address',
|
||||
'ACL_U_CHGAVATAR' => 'Can change avatar',
|
||||
'ACL_U_CHGGRP' => 'Can change default usergroup',
|
||||
'ACL_U_CHGPROFILEINFO' => 'Can change profile field information',
|
||||
|
||||
'ACL_U_ATTACH' => 'Can attach files',
|
||||
'ACL_U_DOWNLOAD' => 'Can download files',
|
||||
'ACL_U_SAVEDRAFTS' => 'Can save drafts',
|
||||
'ACL_U_CHGCENSORS' => 'Can disable word censors',
|
||||
'ACL_U_SIG' => 'Can use signature',
|
||||
|
||||
'ACL_U_SENDPM' => 'Can send private messages',
|
||||
'ACL_U_MASSPM' => 'Can send messages to multiple users',
|
||||
'ACL_U_MASSPM_GROUP'=> 'Can send messages to groups',
|
||||
'ACL_U_READPM' => 'Can read private messages',
|
||||
'ACL_U_PM_EDIT' => 'Can edit own private messages',
|
||||
'ACL_U_PM_DELETE' => 'Can remove private messages from own folder',
|
||||
'ACL_U_PM_FORWARD' => 'Can forward private messages',
|
||||
'ACL_U_PM_EMAILPM' => 'Can email private messages',
|
||||
'ACL_U_PM_PRINTPM' => 'Can print private messages',
|
||||
'ACL_U_PM_ATTACH' => 'Can attach files in private messages',
|
||||
'ACL_U_PM_DOWNLOAD' => 'Can download files in private messages',
|
||||
'ACL_U_PM_BBCODE' => 'Can use BBCode in private messages',
|
||||
'ACL_U_PM_SMILIES' => 'Can use smilies in private messages',
|
||||
'ACL_U_PM_IMG' => 'Can use [img] BBCode tag in private messages',
|
||||
'ACL_U_PM_FLASH' => 'Can use [flash] BBCode tag in private messages',
|
||||
|
||||
'ACL_U_SENDEMAIL' => 'Can send emails',
|
||||
'ACL_U_SENDIM' => 'Can send instant messages',
|
||||
'ACL_U_IGNOREFLOOD' => 'Can ignore flood limit',
|
||||
'ACL_U_HIDEONLINE' => 'Can hide online status',
|
||||
'ACL_U_VIEWONLINE' => 'Can view hidden online users',
|
||||
'ACL_U_SEARCH' => 'Can search board',
|
||||
));
|
||||
|
||||
// Forum Permissions
|
||||
$lang = array_merge($lang, array(
|
||||
'ACL_F_LIST' => 'Can see forum',
|
||||
'ACL_F_LIST_TOPICS' => 'Can see topics',
|
||||
'ACL_F_READ' => 'Can read forum',
|
||||
'ACL_F_SEARCH' => 'Can search the forum',
|
||||
'ACL_F_SUBSCRIBE' => 'Can subscribe forum',
|
||||
'ACL_F_PRINT' => 'Can print topics',
|
||||
'ACL_F_EMAIL' => 'Can email topics',
|
||||
'ACL_F_BUMP' => 'Can bump topics',
|
||||
'ACL_F_USER_LOCK' => 'Can lock own topics',
|
||||
'ACL_F_DOWNLOAD' => 'Can download files',
|
||||
'ACL_F_REPORT' => 'Can report posts',
|
||||
|
||||
'ACL_F_POST' => 'Can start new topics',
|
||||
'ACL_F_STICKY' => 'Can post stickies',
|
||||
'ACL_F_ANNOUNCE' => 'Can post announcements',
|
||||
'ACL_F_ANNOUNCE_GLOBAL' => 'Can post global announcements',
|
||||
'ACL_F_REPLY' => 'Can reply to topics',
|
||||
'ACL_F_EDIT' => 'Can edit own posts',
|
||||
'ACL_F_DELETE' => 'Can permanently delete own posts',
|
||||
'ACL_F_SOFTDELETE' => 'Can soft delete own posts<br /><em>Moderators, who have the approve posts permission, can restore soft deleted posts.</em>',
|
||||
'ACL_F_IGNOREFLOOD' => 'Can ignore flood limit',
|
||||
'ACL_F_POSTCOUNT' => 'Increment post counter<br /><em>Please note that this setting only affects new posts.</em>',
|
||||
'ACL_F_NOAPPROVE' => 'Can post without approval',
|
||||
|
||||
'ACL_F_ATTACH' => 'Can attach files',
|
||||
'ACL_F_ICONS' => 'Can use topic/post icons',
|
||||
'ACL_F_BBCODE' => 'Can use BBCode',
|
||||
'ACL_F_FLASH' => 'Can use [flash] BBCode tag',
|
||||
'ACL_F_IMG' => 'Can use [img] BBCode tag',
|
||||
'ACL_F_SIGS' => 'Can use signatures',
|
||||
'ACL_F_SMILIES' => 'Can use smilies',
|
||||
|
||||
'ACL_F_POLL' => 'Can create polls',
|
||||
'ACL_F_VOTE' => 'Can vote in polls',
|
||||
'ACL_F_VOTECHG' => 'Can change existing vote',
|
||||
));
|
||||
|
||||
// Moderator Permissions
|
||||
$lang = array_merge($lang, array(
|
||||
'ACL_M_EDIT' => 'Can edit posts',
|
||||
'ACL_M_DELETE' => 'Can permanently delete posts',
|
||||
'ACL_M_SOFTDELETE' => 'Can soft delete posts<br /><em>Moderators, who have the approve posts permission, can restore soft deleted posts.</em>',
|
||||
'ACL_M_APPROVE' => 'Can approve and restore posts',
|
||||
'ACL_M_REPORT' => 'Can close and delete reports',
|
||||
'ACL_M_CHGPOSTER' => 'Can change post author',
|
||||
|
||||
'ACL_M_MOVE' => 'Can move topics',
|
||||
'ACL_M_LOCK' => 'Can lock topics',
|
||||
'ACL_M_SPLIT' => 'Can split topics',
|
||||
'ACL_M_MERGE' => 'Can merge topics',
|
||||
|
||||
'ACL_M_INFO' => 'Can view post details',
|
||||
'ACL_M_WARN' => 'Can issue warnings<br /><em>This setting is only assigned globally. It is not forum based.</em>', // This moderator setting is only global (and not local)
|
||||
'ACL_M_PM_REPORT' => 'Can close and delete reports of private messages<br /><em>This setting is only assigned globally. It is not forum based.</em>', // This moderator setting is only global (and not local)
|
||||
'ACL_M_BAN' => 'Can manage bans<br /><em>This setting is only assigned globally. It is not forum based.</em>', // This moderator setting is only global (and not local)
|
||||
));
|
||||
|
||||
// Admin Permissions
|
||||
$lang = array_merge($lang, array(
|
||||
'ACL_A_BOARD' => 'Can alter board settings/check for updates',
|
||||
'ACL_A_SERVER' => 'Can alter server/communication settings',
|
||||
'ACL_A_JABBER' => 'Can alter Jabber settings',
|
||||
'ACL_A_PHPINFO' => 'Can view php settings',
|
||||
|
||||
'ACL_A_FORUM' => 'Can manage forums',
|
||||
'ACL_A_FORUMADD' => 'Can add new forums',
|
||||
'ACL_A_FORUMDEL' => 'Can delete forums',
|
||||
'ACL_A_PRUNE' => 'Can prune forums',
|
||||
|
||||
'ACL_A_ICONS' => 'Can alter topic/post icons and smilies',
|
||||
'ACL_A_WORDS' => 'Can alter word censors',
|
||||
'ACL_A_BBCODE' => 'Can define BBCode tags',
|
||||
'ACL_A_ATTACH' => 'Can alter attachment related settings',
|
||||
|
||||
'ACL_A_USER' => 'Can manage users<br /><em>This also includes seeing the users browser agent within the viewonline list.</em>',
|
||||
'ACL_A_USERDEL' => 'Can delete/prune users',
|
||||
'ACL_A_GROUP' => 'Can manage groups',
|
||||
'ACL_A_GROUPADD' => 'Can add new groups',
|
||||
'ACL_A_GROUPDEL' => 'Can delete groups',
|
||||
'ACL_A_RANKS' => 'Can manage ranks',
|
||||
'ACL_A_PROFILE' => 'Can manage custom profile fields',
|
||||
'ACL_A_NAMES' => 'Can manage disallowed names',
|
||||
'ACL_A_BAN' => 'Can manage bans',
|
||||
|
||||
'ACL_A_VIEWAUTH' => 'Can view permission masks',
|
||||
'ACL_A_AUTHGROUPS' => 'Can alter permissions for individual groups',
|
||||
'ACL_A_AUTHUSERS' => 'Can alter permissions for individual users',
|
||||
'ACL_A_FAUTH' => 'Can alter forum permission class',
|
||||
'ACL_A_MAUTH' => 'Can alter moderator permission class',
|
||||
'ACL_A_AAUTH' => 'Can alter admin permission class',
|
||||
'ACL_A_UAUTH' => 'Can alter user permission class',
|
||||
'ACL_A_ROLES' => 'Can manage roles',
|
||||
'ACL_A_SWITCHPERM' => 'Can use others permissions',
|
||||
|
||||
'ACL_A_STYLES' => 'Can manage styles',
|
||||
'ACL_A_EXTENSIONS' => 'Can manage extensions',
|
||||
'ACL_A_VIEWLOGS' => 'Can view logs',
|
||||
'ACL_A_CLEARLOGS' => 'Can clear logs',
|
||||
'ACL_A_MODULES' => 'Can manage modules',
|
||||
'ACL_A_LANGUAGE' => 'Can manage language packs',
|
||||
'ACL_A_EMAIL' => 'Can send mass email',
|
||||
'ACL_A_BOTS' => 'Can manage bots',
|
||||
'ACL_A_REASONS' => 'Can manage report/denial reasons',
|
||||
'ACL_A_BACKUP' => 'Can backup/restore database',
|
||||
'ACL_A_SEARCH' => 'Can manage search backends and settings',
|
||||
));
|
||||
291
install/update/old/language/en/acp/posting.php
Normal file
291
install/update/old/language/en/acp/posting.php
Normal file
@@ -0,0 +1,291 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
// BBCodes
|
||||
// Note to translators: you can translate everything but what's between { and }
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_BBCODES_EXPLAIN' => 'BBCode is a special implementation of HTML offering greater control over what and how something is displayed. From this page you can add, remove and edit custom BBCodes.',
|
||||
'ADD_BBCODE' => 'Add a new BBCode',
|
||||
|
||||
'BBCODE_DANGER' => 'The BBCode you are trying to add seems to use a {TEXT} token inside a HTML attribute. This is a possible XSS security issue. Try using the more restrictive {SIMPLETEXT} or {INTTEXT} types instead. Only proceed if you understand the risks involved and you consider the use of {TEXT} absolutely unavoidable.',
|
||||
'BBCODE_DANGER_PROCEED' => 'Proceed', //'I understand the risk',
|
||||
|
||||
'BBCODE_ADDED' => 'BBCode added successfully.',
|
||||
'BBCODE_EDITED' => 'BBCode edited successfully.',
|
||||
'BBCODE_DELETED' => 'The BBCode has been removed successfully.',
|
||||
'BBCODE_NOT_EXIST' => 'The BBCode you selected does not exist.',
|
||||
'BBCODE_HELPLINE' => 'Help line',
|
||||
'BBCODE_HELPLINE_EXPLAIN' => 'This field contains the mouse over text of the BBCode.',
|
||||
'BBCODE_HELPLINE_TEXT' => 'Help line text',
|
||||
'BBCODE_HELPLINE_TOO_LONG' => 'The help line you entered is too long.',
|
||||
|
||||
'BBCODE_INVALID_TAG_NAME' => 'The BBCode tag name that you selected already exists.',
|
||||
'BBCODE_INVALID' => 'Your BBCode is constructed in an invalid form.',
|
||||
'BBCODE_OPEN_ENDED_TAG' => 'Your custom BBCode must contain both an opening and a closing tag.',
|
||||
'BBCODE_TAG' => 'Tag',
|
||||
'BBCODE_TAG_TOO_LONG' => 'The tag name you selected is too long.',
|
||||
'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_EXAMPLE' => '[highlight={COLOR}]{TEXT}[/highlight]<br /><br />[font={SIMPLETEXT1}]{SIMPLETEXT2}[/font]',
|
||||
'BBCODE_USAGE_EXPLAIN' => 'Here you define how to use the BBCode. Replace any variable input by the corresponding token (%ssee below%s).',
|
||||
|
||||
'EXAMPLE' => 'Example:',
|
||||
'EXAMPLES' => 'Examples:',
|
||||
|
||||
'HTML_REPLACEMENT' => 'HTML replacement',
|
||||
'HTML_REPLACEMENT_EXAMPLE' => '<span style="background-color: {COLOR};">{TEXT}</span><br /><br /><span style="font-family: {SIMPLETEXT1};">{SIMPLETEXT2}</span>',
|
||||
'HTML_REPLACEMENT_EXPLAIN' => 'Here you define the default HTML replacement. Do not forget to put back tokens you used above!',
|
||||
|
||||
'TOKEN' => 'Token',
|
||||
'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. {TEXT1}, {TEXT2}.<br /><br />Within the HTML replacement you can also use any language string present in your language/ directory like this: {L_<em><STRINGNAME></em>} where <em><STRINGNAME></em> is the name of the translated string you want to add. For example, {L_WROTE} will be displayed as “wrote” or its translation according to user’s locale.<br /><br /><strong>Please note that only tokens listed below are able to be used within custom BBCodes.</strong>',
|
||||
'TOKEN_DEFINITION' => 'What can it be?',
|
||||
'TOO_MANY_BBCODES' => 'You cannot create any more BBCodes. Please remove one or more BBCodes then try again.',
|
||||
|
||||
'tokens' => array(
|
||||
'TEXT' => 'Any text, including foreign characters, numbers, etc… You should not use this token in HTML tags. Instead try to use IDENTIFIER, INTTEXT or SIMPLETEXT.',
|
||||
'SIMPLETEXT' => 'Characters from the latin alphabet (A-Z), numbers, spaces, commas, dots, minus, plus, hyphen and underscore',
|
||||
'INTTEXT' => 'Unicode letter characters, numbers, spaces, commas, dots, minus, plus, hyphen, underscore and whitespaces.',
|
||||
'IDENTIFIER' => 'Characters from the latin alphabet (A-Z), numbers, hyphen and underscore',
|
||||
'NUMBER' => 'Any series of digits',
|
||||
'EMAIL' => 'A valid email 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.',
|
||||
'LOCAL_URL' => 'A local URL. The URL must be relative to the topic page and cannot contain a server name or protocol, as links are prefixed with “%s”',
|
||||
'RELATIVE_URL' => 'A relative URL. You can use this to match parts of a URL, but be careful: a full URL is a valid relative URL. When you want to use relative URLs of your board, use the LOCAL_URL token.',
|
||||
'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>',
|
||||
),
|
||||
));
|
||||
|
||||
// Smilies and topic icons
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_ICONS_EXPLAIN' => 'From this page you can add, remove and edit the icons users may add to their topics or posts. These icons are generally displayed next to topic titles on the forum listing, or the post subjects in topic listings. You can also install and create new packages of icons.',
|
||||
'ACP_SMILIES_EXPLAIN' => 'Smilies or emoticons are typically small, sometimes animated images used to convey an emotion or feeling. From this page you can add, remove and edit the emoticons users can use in their posts and private messages. You can also install and create new packages of smilies.',
|
||||
'ADD_SMILIES' => 'Add multiple smilies',
|
||||
'ADD_SMILEY_CODE' => 'Add additional smiley code',
|
||||
'ADD_ICONS' => 'Add multiple icons',
|
||||
'AFTER_ICONS' => 'After %s',
|
||||
'AFTER_SMILIES' => 'After %s',
|
||||
|
||||
'CODE' => 'Code',
|
||||
'CURRENT_ICONS' => 'Current icons',
|
||||
'CURRENT_ICONS_EXPLAIN' => 'Choose what to do with the currently installed icons.',
|
||||
'CURRENT_SMILIES' => 'Current smilies',
|
||||
'CURRENT_SMILIES_EXPLAIN' => 'Choose what to do with the currently installed smilies.',
|
||||
|
||||
'DISPLAY_ON_POSTING' => 'Display on posting page',
|
||||
'DISPLAY_POSTING' => 'On posting page',
|
||||
'DISPLAY_POSTING_NO' => 'Not on posting page',
|
||||
|
||||
'EDIT_ICONS' => 'Edit icons',
|
||||
'EDIT_SMILIES' => 'Edit smilies',
|
||||
'EMOTION' => 'Emotion',
|
||||
'EXPORT_ICONS' => 'Export and download icons.pak',
|
||||
'EXPORT_ICONS_EXPLAIN' => '%sOn clicking this link, the configuration for your installed icons will be packaged into <samp>icons.pak</samp> which once downloaded can be used to create a <samp>.zip</samp> or <samp>.tgz</samp> file containing all of your icons plus this <samp>icons.pak</samp> configuration file%s.',
|
||||
'EXPORT_SMILIES' => 'Export and download smilies.pak',
|
||||
'EXPORT_SMILIES_EXPLAIN' => '%sOn clicking this link, the configuration for your installed smilies will be packaged into <samp>smilies.pak</samp> which once downloaded can be used to create a <samp>.zip</samp> or <samp>.tgz</samp> file containing all of your smilies plus this <samp>smilies.pak</samp> configuration file%s.',
|
||||
|
||||
'FIRST' => 'First',
|
||||
|
||||
'ICONS_ADD' => 'Add a new icon',
|
||||
'ICONS_ADDED' => array(
|
||||
0 => 'No icons were added.',
|
||||
1 => 'The icon has been added successfully.',
|
||||
2 => 'The icons have been added successfully.',
|
||||
),
|
||||
'ICONS_CONFIG' => 'Icon configuration',
|
||||
'ICONS_DELETED' => 'The icon has been removed successfully.',
|
||||
'ICONS_EDIT' => 'Edit icon',
|
||||
'ICONS_EDITED' => array(
|
||||
0 => 'No icons were updated.',
|
||||
1 => 'The icon has been updated successfully.',
|
||||
2 => 'The icons have been updated successfully.',
|
||||
),
|
||||
'ICONS_HEIGHT' => 'Icon height',
|
||||
'ICONS_IMAGE' => 'Icon image',
|
||||
'ICONS_IMPORTED' => 'The icons pack has been installed successfully.',
|
||||
'ICONS_IMPORT_SUCCESS' => 'The icons pack was imported successfully.',
|
||||
'ICONS_LOCATION' => 'Icon location',
|
||||
'ICONS_NOT_DISPLAYED' => 'The following icons are not displayed on the posting page',
|
||||
'ICONS_ORDER' => 'Icon order',
|
||||
'ICONS_URL' => 'Icon image file',
|
||||
'ICONS_WIDTH' => 'Icon width',
|
||||
'IMPORT_ICONS' => 'Install icons package',
|
||||
'IMPORT_SMILIES' => 'Install smilies package',
|
||||
|
||||
'KEEP_ALL' => 'Keep all',
|
||||
|
||||
'MASS_ADD_SMILIES' => 'Add multiple smilies',
|
||||
|
||||
'NO_ICONS_ADD' => 'There are no icons available for adding.',
|
||||
'NO_ICONS_EDIT' => 'There are no icons available for modifying.',
|
||||
'NO_ICONS_EXPORT' => 'You have no icons with which to create a package.',
|
||||
'NO_ICONS_PAK' => 'No icon packages found.',
|
||||
'NO_SMILIES_ADD' => 'There are no smilies available for adding.',
|
||||
'NO_SMILIES_EDIT' => 'There are no smilies available for modifying.',
|
||||
'NO_SMILIES_EXPORT' => 'You have no smilies with which to create a package.',
|
||||
'NO_SMILIES_PAK' => 'No smiley packages found.',
|
||||
|
||||
'PAK_FILE_NOT_READABLE' => 'Could not read <samp>.pak</samp> file.',
|
||||
|
||||
'REPLACE_MATCHES' => 'Replace matches',
|
||||
|
||||
'SELECT_PACKAGE' => 'Select a package file',
|
||||
'SMILIES_ADD' => 'Add a new smiley',
|
||||
'SMILIES_ADDED' => array(
|
||||
0 => 'No smilies were added.',
|
||||
1 => 'The smiley has been added successfully.',
|
||||
2 => 'The smilies have been added successfully.',
|
||||
),
|
||||
'SMILIES_CODE' => 'Smiley code',
|
||||
'SMILIES_CONFIG' => 'Smiley configuration',
|
||||
'SMILIES_DELETED' => 'The smiley has been removed successfully.',
|
||||
'SMILIES_EDIT' => 'Edit smiley',
|
||||
'SMILIE_NO_CODE' => 'The smiley “%s” was ignored, as there was no code entered.',
|
||||
'SMILIE_NO_EMOTION' => 'The smiley “%s” was ignored, as there was no emotion entered.',
|
||||
'SMILIE_NO_FILE' => 'The smiley “%s” was ignored, as the file is missing.',
|
||||
'SMILIES_EDITED' => array(
|
||||
0 => 'No smilies were updated.',
|
||||
1 => 'The smiley has been updated successfully.',
|
||||
2 => 'The smilies have been updated successfully.',
|
||||
),
|
||||
'SMILIES_EMOTION' => 'Emotion',
|
||||
'SMILIES_HEIGHT' => 'Smiley height',
|
||||
'SMILIES_IMAGE' => 'Smiley image',
|
||||
'SMILIES_IMPORTED' => 'The smilies pack has been installed successfully.',
|
||||
'SMILIES_IMPORT_SUCCESS' => 'The smilies pack was imported successfully.',
|
||||
'SMILIES_LOCATION' => 'Smiley location',
|
||||
'SMILIES_NOT_DISPLAYED' => 'The following smilies are not displayed on the posting page',
|
||||
'SMILIES_ORDER' => 'Smiley order',
|
||||
'SMILIES_URL' => 'Smiley image file',
|
||||
'SMILIES_WIDTH' => 'Smiley width',
|
||||
|
||||
'TOO_MANY_SMILIES' => array(
|
||||
1 => 'Limit of %d smiley reached.',
|
||||
2 => 'Limit of %d smilies reached.',
|
||||
),
|
||||
|
||||
'WRONG_PAK_TYPE' => 'The specified package does not contain the appropriate data.',
|
||||
));
|
||||
|
||||
// Word censors
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_WORDS_EXPLAIN' => 'From this control panel you can add, edit, and remove words that will be automatically censored on your forums. People are still allowed to register with usernames containing these words. Wildcards (*) are accepted in the word field, e.g. *test* will match detestable, test* would match testing, *test would match detest.',
|
||||
'ADD_WORD' => 'Add new word',
|
||||
|
||||
'EDIT_WORD' => 'Edit word censor',
|
||||
'ENTER_WORD' => 'You must enter a word and its replacement.',
|
||||
|
||||
'NO_WORD' => 'No word selected for editing.',
|
||||
|
||||
'REPLACEMENT' => 'Replacement',
|
||||
|
||||
'UPDATE_WORD' => 'Update word censor',
|
||||
|
||||
'WORD' => 'Word',
|
||||
'WORD_ADDED' => 'The word censor has been successfully added.',
|
||||
'WORD_REMOVED' => 'The selected word censor has been successfully removed.',
|
||||
'WORD_UPDATED' => 'The selected word censor has been successfully updated.',
|
||||
));
|
||||
|
||||
// Ranks
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_RANKS_EXPLAIN' => 'Using this form you can add, edit, view and delete ranks. You can also create special ranks which can be applied to a user via the user management facility.',
|
||||
'ADD_RANK' => 'Add new rank',
|
||||
|
||||
'MUST_SELECT_RANK' => 'You must select a rank.',
|
||||
|
||||
'NO_ASSIGNED_RANK' => 'No special rank assigned.',
|
||||
'NO_RANK_TITLE' => 'You haven’t specified a title for the rank.',
|
||||
'NO_UPDATE_RANKS' => 'The rank was successfully deleted. However user accounts using this rank were not updated. You will need to manually reset the rank on these accounts.',
|
||||
|
||||
'RANK_ADDED' => 'The rank was successfully added.',
|
||||
'RANK_IMAGE' => 'Rank image',
|
||||
'RANK_IMAGE_EXPLAIN' => 'Use this to define a small image associated with the rank. The path is relative to the root phpBB directory.',
|
||||
'RANK_IMAGE_IN_USE' => '(In use)',
|
||||
'RANK_MINIMUM' => 'Minimum posts',
|
||||
'RANK_REMOVED' => 'The rank was successfully deleted.',
|
||||
'RANK_SPECIAL' => 'Set as special rank',
|
||||
'RANK_TITLE' => 'Rank title',
|
||||
'RANK_UPDATED' => 'The rank was successfully updated.',
|
||||
));
|
||||
|
||||
// Disallow Usernames
|
||||
$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 *.',
|
||||
'ADD_DISALLOW_EXPLAIN' => 'You can disallow a username using the wildcard character * to match any character.',
|
||||
'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_TITLE' => 'Remove a disallowed username',
|
||||
'DISALLOWED_ALREADY' => 'The name you entered is already disallowed.',
|
||||
'DISALLOWED_DELETED' => 'The disallowed username has been successfully removed.',
|
||||
'DISALLOW_SUCCESSFUL' => 'The disallowed username has been successfully added.',
|
||||
|
||||
'NO_DISALLOWED' => 'No disallowed usernames',
|
||||
'NO_USERNAME_SPECIFIED' => 'You haven’t selected or entered a username to operate with.',
|
||||
));
|
||||
|
||||
// Reasons
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_REASONS_EXPLAIN' => 'Here you can manage the reasons used in reports and denial messages when disapproving posts. There is one default reason (marked with a *) you are not able to remove, this reason is normally used for custom messages if no reason fits.',
|
||||
'ADD_NEW_REASON' => 'Add new reason',
|
||||
'AVAILABLE_TITLES' => 'Available localised reason titles',
|
||||
|
||||
'IS_NOT_TRANSLATED' => 'Reason has <strong>not</strong> been localised.',
|
||||
'IS_NOT_TRANSLATED_EXPLAIN' => 'Reason has <strong>not</strong> been localised. If you want to provide the localised form, specify the correct key from the language files report reasons section.',
|
||||
'IS_TRANSLATED' => 'Reason has been localised.',
|
||||
'IS_TRANSLATED_EXPLAIN' => 'Reason has been localised. If the title you enter here is specified within the language files report reasons section, the localised form of the title and description will be used.',
|
||||
|
||||
'NO_REASON' => 'Reason could not be found.',
|
||||
'NO_REASON_INFO' => 'You have to specify a title and a description for this reason.',
|
||||
'NO_REMOVE_DEFAULT_REASON' => 'You are not able to remove the default reason “Other”.',
|
||||
|
||||
'REASON_ADD' => 'Add report/denial reason',
|
||||
'REASON_ADDED' => 'Report/denial reason successfully added.',
|
||||
'REASON_ALREADY_EXIST' => 'A reason with this title already exist, please enter another title for this reason.',
|
||||
'REASON_DESCRIPTION' => 'Reason description',
|
||||
'REASON_DESC_TRANSLATED' => 'Displayed reason description',
|
||||
'REASON_EDIT' => 'Edit report/denial reason',
|
||||
'REASON_EDIT_EXPLAIN' => 'Here you are able to add or edit a reason. If the reason is translated the localised version is used instead of the description entered here.',
|
||||
'REASON_REMOVED' => 'Report/denial reason successfully removed.',
|
||||
'REASON_TITLE' => 'Reason title',
|
||||
'REASON_TITLE_TRANSLATED' => 'Displayed reason title',
|
||||
'REASON_UPDATED' => 'Report/denial reason successfully updated.',
|
||||
|
||||
'USED_IN_REPORTS' => 'Used in reports',
|
||||
));
|
||||
176
install/update/old/language/en/acp/profile.php
Normal file
176
install/update/old/language/en/acp/profile.php
Normal file
@@ -0,0 +1,176 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
// Custom profile fields
|
||||
$lang = array_merge($lang, array(
|
||||
'ADDED_PROFILE_FIELD' => 'Successfully added custom profile field.',
|
||||
'ALPHA_DOTS' => 'Alphanumeric and dots (periods)',
|
||||
'ALPHA_ONLY' => 'Alphanumeric only',
|
||||
'ALPHA_SPACERS' => 'Alphanumeric and spacers',
|
||||
'ALPHA_UNDERSCORE' => 'Alphanumeric and underscores',
|
||||
'ALPHA_PUNCTUATION' => 'Alphanumeric with comma, dots, underscore and dashes beginning with a letter',
|
||||
'ALWAYS_TODAY' => 'Always the current date',
|
||||
|
||||
'BOOL_ENTRIES_EXPLAIN' => 'Enter your options now',
|
||||
'BOOL_TYPE_EXPLAIN' => 'Define the type, either a checkbox or radio buttons. A checkbox will only be displayed if it is checked for a given user. In that case the <strong>second</strong> language option will be used. Radio buttons will display regardless of their value.',
|
||||
|
||||
'CHANGED_PROFILE_FIELD' => 'Successfully changed profile field.',
|
||||
'CHARS_ANY' => 'Any character',
|
||||
'CHECKBOX' => 'Checkbox',
|
||||
'COLUMNS' => 'Columns',
|
||||
'CP_LANG_DEFAULT_VALUE' => 'Default value',
|
||||
'CP_LANG_EXPLAIN' => 'Field description',
|
||||
'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_OPTIONS' => 'Options',
|
||||
'CREATE_NEW_FIELD' => 'Create new field',
|
||||
'CUSTOM_FIELDS_NOT_TRANSLATED' => 'At least one custom profile field has not yet been translated. Please enter the required information by clicking on the “Translate” link.',
|
||||
|
||||
'DEFAULT_ISO_LANGUAGE' => 'Default language [%s]',
|
||||
'DEFAULT_LANGUAGE_NOT_FILLED' => 'The language entries for the default language are not filled for this profile field.',
|
||||
'DEFAULT_VALUE' => 'Default value',
|
||||
'DELETE_PROFILE_FIELD' => 'Remove profile field',
|
||||
'DELETE_PROFILE_FIELD_CONFIRM' => 'Are you sure you want to delete this profile field?',
|
||||
'DISPLAY_AT_PROFILE' => 'Display in user control panel',
|
||||
'DISPLAY_AT_PROFILE_EXPLAIN' => 'The user is able to change this profile field within the user control panel.',
|
||||
'DISPLAY_AT_REGISTER' => 'Display on registration screen',
|
||||
'DISPLAY_AT_REGISTER_EXPLAIN' => 'If this option is enabled, the field will be displayed on registration.',
|
||||
'DISPLAY_ON_MEMBERLIST' => 'Display on memberlist screen',
|
||||
'DISPLAY_ON_MEMBERLIST_EXPLAIN' => 'If this option is enabled, the field will be displayed in the user rows on the memberlist screen.',
|
||||
'DISPLAY_ON_PM' => 'Display on view private message screen',
|
||||
'DISPLAY_ON_PM_EXPLAIN' => 'If this option is enabled, the field will be displayed in the mini-profile on the private message screen.',
|
||||
'DISPLAY_ON_VT' => 'Display on viewtopic screen',
|
||||
'DISPLAY_ON_VT_EXPLAIN' => 'If this option is enabled, the field will be displayed in the mini-profile on the topic screen.',
|
||||
'DISPLAY_PROFILE_FIELD' => 'Publicly display profile field',
|
||||
'DISPLAY_PROFILE_FIELD_EXPLAIN' => 'The profile field will be shown in all locations allowed within the load settings. Setting this to “no” will hide the field from topic pages, profiles and the memberlist.',
|
||||
'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.',
|
||||
'EMPTY_FIELD_IDENT' => 'Empty field identification',
|
||||
'EMPTY_USER_FIELD_NAME' => 'Please enter a field name/title',
|
||||
'ENTRIES' => 'Entries',
|
||||
'EVERYTHING_OK' => 'Everything OK',
|
||||
|
||||
'FIELD_BOOL' => 'Boolean (Yes/No)',
|
||||
'FIELD_CONTACT_DESC' => 'Contact description',
|
||||
'FIELD_CONTACT_URL' => 'Contact link',
|
||||
'FIELD_DATE' => 'Date',
|
||||
'FIELD_DESCRIPTION' => 'Field description',
|
||||
'FIELD_DESCRIPTION_EXPLAIN' => 'The explanation for this field presented to the user.',
|
||||
'FIELD_DROPDOWN' => 'Dropdown box',
|
||||
'FIELD_GOOGLEPLUS' => 'Google+',
|
||||
'FIELD_IDENT' => 'Field identification',
|
||||
'FIELD_IDENT_ALREADY_EXIST' => 'The chosen field identification already exist. Please choose another name.',
|
||||
'FIELD_IDENT_EXPLAIN' => 'The field identification is a name to identify the profile field within the database and the templates.',
|
||||
'FIELD_INT' => 'Numbers',
|
||||
'FIELD_IS_CONTACT' => 'Display field as a contact field',
|
||||
'FIELD_IS_CONTACT_EXPLAIN' => 'Contact fields are displayed within the contact section of the user profile and are displayed differently in the mini profile next to posts and private messages. You can use <samp>%s</samp> as a placeholder variable which will be replaced by a value provided by the user.',
|
||||
'FIELD_LENGTH' => 'Length of input box',
|
||||
'FIELD_NOT_FOUND' => 'Profile field not found.',
|
||||
'FIELD_STRING' => 'Single text field',
|
||||
'FIELD_TEXT' => 'Textarea',
|
||||
'FIELD_TYPE' => 'Field type',
|
||||
'FIELD_TYPE_EXPLAIN' => 'You are not able to change the field type later.',
|
||||
'FIELD_URL' => 'URL (Link)',
|
||||
'FIELD_VALIDATION' => 'Field validation',
|
||||
'FIRST_OPTION' => 'First option',
|
||||
|
||||
'HIDE_PROFILE_FIELD' => 'Hide profile field',
|
||||
'HIDE_PROFILE_FIELD_EXPLAIN' => 'Hide the profile field from all other users except the user, administrators and moderators who are still able to see this field. If the Display in user control panel option is disabled, the user will not be able to see or change this field and the field can only be changed by administrators.',
|
||||
|
||||
'INVALID_CHARS_FIELD_IDENT' => 'Field identification can only contain lowercase a-z and _',
|
||||
'INVALID_FIELD_IDENT_LEN' => 'Field identification can only be 17 characters long',
|
||||
'ISO_LANGUAGE' => 'Language [%s]',
|
||||
|
||||
'LANG_SPECIFIC_OPTIONS' => 'Language specific options [<strong>%s</strong>]',
|
||||
|
||||
'LETTER_NUM_DOTS' => 'Any letters, numbers and dots (periods)',
|
||||
'LETTER_NUM_ONLY' => 'Any letters and numbers',
|
||||
'LETTER_NUM_PUNCTUATION' => 'Any letters, numbers, comma, dots, underscores and dashes beginning with any letter',
|
||||
'LETTER_NUM_SPACERS' => 'Any letters, numbers and spacers',
|
||||
'LETTER_NUM_UNDERSCORE' => 'Any letters, numbers and underscores',
|
||||
|
||||
'MAX_FIELD_CHARS' => 'Maximum number of characters',
|
||||
'MAX_FIELD_NUMBER' => 'Highest allowed number',
|
||||
'MIN_FIELD_CHARS' => 'Minimum number of characters',
|
||||
'MIN_FIELD_NUMBER' => 'Lowest allowed number',
|
||||
|
||||
'NO_FIELD_ENTRIES' => 'No entries defined',
|
||||
'NO_FIELD_ID' => 'No field id specified.',
|
||||
'NO_FIELD_TYPE' => 'No Field type specified.',
|
||||
'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.',
|
||||
'NUMBERS_ONLY' => 'Only numbers (0-9)',
|
||||
|
||||
'PROFILE_BASIC_OPTIONS' => 'Basic options',
|
||||
'PROFILE_FIELD_ACTIVATED' => 'Profile field successfully activated.',
|
||||
'PROFILE_FIELD_DEACTIVATED' => 'Profile field successfully deactivated.',
|
||||
'PROFILE_LANG_OPTIONS' => 'Language specific options',
|
||||
'PROFILE_TYPE_OPTIONS' => 'Profile type specific options',
|
||||
|
||||
'RADIO_BUTTONS' => 'Radio buttons',
|
||||
'REMOVED_PROFILE_FIELD' => 'Successfully removed profile field.',
|
||||
'REQUIRED_FIELD' => 'Required field',
|
||||
'REQUIRED_FIELD_EXPLAIN' => 'Force profile field to be filled out or specified by user or administrator. If display at registration screen option is disabled, the field will only be required when the user edits their profile.',
|
||||
'ROWS' => 'Rows',
|
||||
|
||||
'SAVE' => 'Save',
|
||||
'SECOND_OPTION' => 'Second option',
|
||||
'SHOW_NOVALUE_FIELD' => 'Show field if no value was selected',
|
||||
'SHOW_NOVALUE_FIELD_EXPLAIN' => 'Determines if the profile field should be displayed if no value was selected for optional fields or if no value has been selected yet for required fields.',
|
||||
'STEP_1_EXPLAIN_CREATE' => 'Here you can enter the first basic parameters of your new profile field. This information is needed for the second step where you’ll be able to set remaining options and tweak your profile field further.',
|
||||
'STEP_1_EXPLAIN_EDIT' => 'Here you can change the basic parameters of your profile field. The relevant options are re-calculated within the second step.',
|
||||
'STEP_1_TITLE_CREATE' => 'Add profile field',
|
||||
'STEP_1_TITLE_EDIT' => 'Edit profile field',
|
||||
'STEP_2_EXPLAIN_CREATE' => 'Here you are able to define some common options you may want to adjust.',
|
||||
'STEP_2_EXPLAIN_EDIT' => 'Here you are able to change some common options.<br /><strong>Please note that changes to profile fields will not affect existing profile fields entered by your users.</strong>',
|
||||
'STEP_2_TITLE_CREATE' => 'Profile type specific options',
|
||||
'STEP_2_TITLE_EDIT' => 'Profile type specific options',
|
||||
'STEP_3_EXPLAIN_CREATE' => 'Since you have more than one board language installed, you have to fill out the remaining language items too. If you don’t, then default language setting for this custom profile field will be used, you are able to fill out the remaining language items later too.',
|
||||
'STEP_3_EXPLAIN_EDIT' => 'Since you have more than one board language installed, you now can change or add the remaining language items too. If you don’t, then default language setting for this custom profile field will be used.',
|
||||
'STEP_3_TITLE_CREATE' => 'Remaining language definitions',
|
||||
'STEP_3_TITLE_EDIT' => 'Language definitions',
|
||||
'STRING_DEFAULT_VALUE_EXPLAIN' => 'Enter a default phrase to be displayed, a default value. Leave empty if you want to show it empty at the first place.',
|
||||
|
||||
'TEXT_DEFAULT_VALUE_EXPLAIN' => 'Enter a default text to be displayed, a default value. Leave empty if you want to show it empty at the first place.',
|
||||
'TRANSLATE' => 'Translate',
|
||||
|
||||
'USER_FIELD_NAME' => 'Field name/title presented to the user',
|
||||
|
||||
'VISIBILITY_OPTION' => 'Visibility options',
|
||||
));
|
||||
90
install/update/old/language/en/acp/styles.php
Normal file
90
install/update/old/language/en/acp/styles.php
Normal file
@@ -0,0 +1,90 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'ACP_STYLES_EXPLAIN' => 'Here you can manage the available styles on your board. You may alter existing styles, delete, deactivate, reactivate, install new ones. You can also see what a style will look like using the preview function. Also listed is the total user count for each style, note that overriding user styles will not be reflected here.',
|
||||
|
||||
'CANNOT_BE_INSTALLED' => 'Cannot be installed',
|
||||
'CONFIRM_UNINSTALL_STYLES' => 'Are you sure you wish to uninstall selected styles?',
|
||||
'COPYRIGHT' => 'Copyright',
|
||||
|
||||
'DEACTIVATE_DEFAULT' => 'You cannot deactivate the default style.',
|
||||
'DELETE_FROM_FS' => 'Delete from filesystem',
|
||||
'DELETE_STYLE_FILES_FAILED' => 'Error deleting files for style "%s".',
|
||||
'DELETE_STYLE_FILES_SUCCESS' => 'Files for style "%s" have been deleted.',
|
||||
'DETAILS' => 'Details',
|
||||
|
||||
'INHERITING_FROM' => 'Inherits from',
|
||||
'INSTALL_STYLE' => 'Install style',
|
||||
'INSTALL_STYLES' => 'Install styles',
|
||||
'INSTALL_STYLES_EXPLAIN' => 'Here you can install new styles.<br />If you cannot find a specific style in list below, check to make sure style is already installed. If it is not installed, check if it was uploaded correctly.',
|
||||
'INVALID_STYLE_ID' => 'Invalid style ID.',
|
||||
|
||||
'NO_MATCHING_STYLES_FOUND' => 'No styles match your query.',
|
||||
'NO_UNINSTALLED_STYLE' => 'No uninstalled styles detected.',
|
||||
|
||||
'PURGED_CACHE' => 'Cache was purged.',
|
||||
|
||||
'REQUIRES_STYLE' => 'This style requires the style "%s" to be installed.',
|
||||
|
||||
'STYLE_ACTIVATE' => 'Activate',
|
||||
'STYLE_ACTIVE' => 'Active',
|
||||
'STYLE_DEACTIVATE' => 'Deactivate',
|
||||
'STYLE_DEFAULT' => 'Make default style',
|
||||
'STYLE_DEFAULT_CHANGE_INACTIVE' => 'You must activate style before making it default style.',
|
||||
'STYLE_ERR_INVALID_PARENT' => 'Invalid parent style.',
|
||||
'STYLE_ERR_NAME_EXIST' => 'A style with that name already exists.',
|
||||
'STYLE_ERR_STYLE_NAME' => 'You must supply a name for this style.',
|
||||
'STYLE_INSTALLED' => 'Style "%s" has been installed.',
|
||||
'STYLE_INSTALLED_RETURN_INSTALLED_STYLES' => 'Return to installed styles list',
|
||||
'STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES' => 'Install more styles',
|
||||
'STYLE_NAME' => 'Style name',
|
||||
'STYLE_NAME_RESERVED' => 'Style "%s" can not be installed, because the name is reserved.',
|
||||
'STYLE_NOT_INSTALLED' => 'Style "%s" was not installed.',
|
||||
'STYLE_PATH' => 'Style path',
|
||||
'STYLE_UNINSTALL' => 'Uninstall',
|
||||
'STYLE_UNINSTALL_DEPENDENT' => 'Style "%s" cannot be uninstalled because it has one or more child styles.',
|
||||
'STYLE_UNINSTALLED' => 'Style "%s" uninstalled successfully.',
|
||||
'STYLE_PHPBB_VERSION' => 'phpBB Version',
|
||||
'STYLE_USED_BY' => 'Used by (including robots)',
|
||||
'STYLE_VERSION' => 'Style version',
|
||||
|
||||
'UNINSTALL_DEFAULT' => 'You cannot uninstall the default style.',
|
||||
|
||||
'BROWSE_STYLES_DATABASE' => 'Browse styles database',
|
||||
));
|
||||
52
install/update/old/language/en/captcha_recaptcha.php
Normal file
52
install/update/old/language/en/captcha_recaptcha.php
Normal file
@@ -0,0 +1,52 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'RECAPTCHA_LANG' => 'en-GB', // Find the language/country code on https://developers.google.com/recaptcha/docs/language - If no code exists for your language you can use "en" or leave the string empty
|
||||
'RECAPTCHA_NOT_AVAILABLE' => 'In order to use reCaptcha, you must create an account on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
|
||||
'CAPTCHA_RECAPTCHA' => 'reCaptcha',
|
||||
'RECAPTCHA_INCORRECT' => 'The solution you provided was incorrect',
|
||||
'RECAPTCHA_NOSCRIPT' => 'Please enable JavaScript in your browser to load the challenge.',
|
||||
|
||||
'RECAPTCHA_PUBLIC' => 'Public reCaptcha key',
|
||||
'RECAPTCHA_PUBLIC_EXPLAIN' => 'Your public reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
|
||||
'RECAPTCHA_PRIVATE' => 'Private reCaptcha key',
|
||||
'RECAPTCHA_PRIVATE_EXPLAIN' => 'Your private reCaptcha key. Keys can be obtained on <a href="http://www.google.com/recaptcha">www.google.com/recaptcha</a>.',
|
||||
|
||||
'RECAPTCHA_EXPLAIN' => 'In an effort to prevent automatic submissions, we require that you complete the following challenge.',
|
||||
));
|
||||
178
install/update/old/language/en/cli.php
Normal file
178
install/update/old/language/en/cli.php
Normal file
@@ -0,0 +1,178 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'CLI_CONFIG_CANNOT_CACHED' => 'Set this option if the configuration option changes too frequently to be efficiently cached.',
|
||||
'CLI_CONFIG_CURRENT' => 'Current configuration value, use 0 and 1 to specify boolean values',
|
||||
'CLI_CONFIG_DELETE_SUCCESS' => 'Successfully deleted config %s.',
|
||||
'CLI_CONFIG_NEW' => 'New configuration value, use 0 and 1 to specify boolean values',
|
||||
'CLI_CONFIG_NOT_EXISTS' => 'Config %s does not exist',
|
||||
'CLI_CONFIG_OPTION_NAME' => 'The configuration option’s name',
|
||||
'CLI_CONFIG_PRINT_WITHOUT_NEWLINE' => 'Set this option if the value should be printed without a new line at the end.',
|
||||
'CLI_CONFIG_INCREMENT_BY' => 'Amount to increment by',
|
||||
'CLI_CONFIG_INCREMENT_SUCCESS' => 'Successfully incremented config %s',
|
||||
'CLI_CONFIG_SET_FAILURE' => 'Could not set config %s',
|
||||
'CLI_CONFIG_SET_SUCCESS' => 'Successfully set config %s',
|
||||
|
||||
'CLI_DESCRIPTION_CRON_LIST' => 'Prints a list of ready and unready cron jobs.',
|
||||
'CLI_DESCRIPTION_CRON_RUN' => 'Runs all ready cron tasks.',
|
||||
'CLI_DESCRIPTION_CRON_RUN_ARGUMENT_1' => 'Name of the task to be run',
|
||||
'CLI_DESCRIPTION_DB_LIST' => 'List all installed and available migrations.',
|
||||
'CLI_DESCRIPTION_DB_MIGRATE' => 'Updates the database by applying migrations.',
|
||||
'CLI_DESCRIPTION_DB_REVERT' => 'Revert a migration.',
|
||||
'CLI_DESCRIPTION_DELETE_CONFIG' => 'Deletes a configuration option',
|
||||
'CLI_DESCRIPTION_DISABLE_EXTENSION' => 'Disables the specified extension.',
|
||||
'CLI_DESCRIPTION_ENABLE_EXTENSION' => 'Enables the specified extension.',
|
||||
'CLI_DESCRIPTION_FIND_MIGRATIONS' => 'Finds migrations that are not depended upon.',
|
||||
'CLI_DESCRIPTION_FIX_LEFT_RIGHT_IDS' => 'Repairs the tree structure of the forums and modules.',
|
||||
'CLI_DESCRIPTION_GET_CONFIG' => 'Gets a configuration option’s value',
|
||||
'CLI_DESCRIPTION_INCREMENT_CONFIG' => 'Increments a configuration option’s integer value',
|
||||
'CLI_DESCRIPTION_LIST_EXTENSIONS' => 'Lists all extensions in the database and on the filesystem.',
|
||||
|
||||
'CLI_DESCRIPTION_OPTION_ENV' => 'The Environment name.',
|
||||
'CLI_DESCRIPTION_OPTION_SAFE_MODE' => 'Run in Safe Mode (without extensions).',
|
||||
'CLI_DESCRIPTION_OPTION_SHELL' => 'Launch the shell.',
|
||||
|
||||
'CLI_DESCRIPTION_PURGE_EXTENSION' => 'Purges the specified extension.',
|
||||
|
||||
'CLI_DESCRIPTION_REPARSER_LIST' => 'Lists the types of text that can be reparsed.',
|
||||
'CLI_DESCRIPTION_REPARSER_AVAILABLE' => 'Available reparsers:',
|
||||
'CLI_DESCRIPTION_REPARSER_REPARSE' => 'Reparses stored text with the current text_formatter services.',
|
||||
'CLI_DESCRIPTION_REPARSER_REPARSE_ARG_1' => 'Type of text to reparse. Leave blank to reparse everything.',
|
||||
'CLI_DESCRIPTION_REPARSER_REPARSE_OPT_DRY_RUN' => 'Do not save any changes; just print what would happen',
|
||||
'CLI_DESCRIPTION_REPARSER_REPARSE_OPT_RANGE_MIN' => 'Lowest record ID to process',
|
||||
'CLI_DESCRIPTION_REPARSER_REPARSE_OPT_RANGE_MAX' => 'Highest record ID to process',
|
||||
'CLI_DESCRIPTION_REPARSER_REPARSE_OPT_RANGE_SIZE' => 'Approximate number of records to process at a time',
|
||||
'CLI_DESCRIPTION_REPARSER_REPARSE_OPT_RESUME' => 'Start reparsing where the last execution stopped',
|
||||
|
||||
'CLI_DESCRIPTION_RECALCULATE_EMAIL_HASH' => 'Recalculates the user_email_hash column of the users table.',
|
||||
|
||||
'CLI_DESCRIPTION_SET_ATOMIC_CONFIG' => 'Sets a configuration option’s value only if the old matches the current value',
|
||||
'CLI_DESCRIPTION_SET_CONFIG' => 'Sets a configuration option’s value',
|
||||
|
||||
'CLI_DESCRIPTION_THUMBNAIL_DELETE' => 'Delete all existing thumbnails.',
|
||||
'CLI_DESCRIPTION_THUMBNAIL_GENERATE' => 'Generate all missing thumbnails.',
|
||||
'CLI_DESCRIPTION_THUMBNAIL_RECREATE' => 'Recreate all thumbnails.',
|
||||
|
||||
'CLI_DESCRIPTION_UPDATE_CHECK' => 'Check if the board is up to date.',
|
||||
'CLI_DESCRIPTION_UPDATE_CHECK_ARGUMENT_1' => 'Name of the extension to check (if all, checks all the extensions)',
|
||||
'CLI_DESCRIPTION_UPDATE_CHECK_OPTION_CACHE' => 'Run check command with cache.',
|
||||
'CLI_DESCRIPTION_UPDATE_CHECK_OPTION_STABILITY' => 'Run command choosing to check only stable or unstable versions.',
|
||||
|
||||
'CLI_DESCRIPTION_UPDATE_HASH_BCRYPT' => 'Updates outdated password hashes to be hashed with bcrypt.',
|
||||
|
||||
'CLI_ERROR_INVALID_STABILITY' => '"%s" needs to be set to "stable" or "unstable".',
|
||||
|
||||
'CLI_DESCRIPTION_USER_ACTIVATE' => 'Activate (or deactivate) a user account.',
|
||||
'CLI_DESCRIPTION_USER_ACTIVATE_USERNAME' => 'Username of the account to activate.',
|
||||
'CLI_DESCRIPTION_USER_ACTIVATE_DEACTIVATE' => 'Deactivate the user’s account',
|
||||
'CLI_DESCRIPTION_USER_ACTIVATE_ACTIVE' => 'The user is already active.',
|
||||
'CLI_DESCRIPTION_USER_ACTIVATE_INACTIVE' => 'The user is already inactive.',
|
||||
'CLI_DESCRIPTION_USER_ADD' => 'Add a new user.',
|
||||
'CLI_DESCRIPTION_USER_ADD_OPTION_USERNAME' => 'Username of the new user',
|
||||
'CLI_DESCRIPTION_USER_ADD_OPTION_PASSWORD' => 'Password of the new user',
|
||||
'CLI_DESCRIPTION_USER_ADD_OPTION_EMAIL' => 'E-mail address of the new user',
|
||||
'CLI_DESCRIPTION_USER_ADD_OPTION_NOTIFY' => 'Send account activation email to the new user (not sent by default)',
|
||||
'CLI_DESCRIPTION_USER_DELETE' => 'Delete a user account.',
|
||||
'CLI_DESCRIPTION_USER_DELETE_USERNAME' => 'Username of the user to delete',
|
||||
'CLI_DESCRIPTION_USER_DELETE_OPTION_POSTS' => 'Delete all posts by the user. Without this option, the user’s posts will be retained.',
|
||||
'CLI_DESCRIPTION_USER_RECLEAN' => 'Re-clean usernames.',
|
||||
|
||||
'CLI_EXTENSION_DISABLE_FAILURE' => 'Could not disable extension %s',
|
||||
'CLI_EXTENSION_DISABLE_SUCCESS' => 'Successfully disabled extension %s',
|
||||
'CLI_EXTENSION_DISABLED' => 'Extension %s is not enabled',
|
||||
'CLI_EXTENSION_ENABLE_FAILURE' => 'Could not enable extension %s',
|
||||
'CLI_EXTENSION_ENABLE_SUCCESS' => 'Successfully enabled extension %s',
|
||||
'CLI_EXTENSION_ENABLED' => 'Extension %s is already enabled',
|
||||
'CLI_EXTENSION_NOT_EXIST' => 'Extension %s does not exist',
|
||||
'CLI_EXTENSION_NAME' => 'Name of the extension',
|
||||
'CLI_EXTENSION_PURGE_FAILURE' => 'Could not purge extension %s',
|
||||
'CLI_EXTENSION_PURGE_SUCCESS' => 'Successfully purged extension %s',
|
||||
'CLI_EXTENSION_UPDATE_FAILURE' => 'Could not update extension %s',
|
||||
'CLI_EXTENSION_UPDATE_SUCCESS' => 'Successfully updated extension %s',
|
||||
'CLI_EXTENSION_NOT_FOUND' => 'No extensions were found.',
|
||||
'CLI_EXTENSION_NOT_ENABLEABLE' => 'Extension %s is not enableable.',
|
||||
'CLI_EXTENSIONS_AVAILABLE' => 'Available',
|
||||
'CLI_EXTENSIONS_DISABLED' => 'Disabled',
|
||||
'CLI_EXTENSIONS_ENABLED' => 'Enabled',
|
||||
|
||||
'CLI_FIXUP_FIX_LEFT_RIGHT_IDS_SUCCESS' => 'Successfully repaired the tree structure of the forums and modules.',
|
||||
'CLI_FIXUP_RECALCULATE_EMAIL_HASH_SUCCESS' => 'Successfully recalculated all email hashes.',
|
||||
'CLI_FIXUP_UPDATE_HASH_BCRYPT_SUCCESS' => 'Successfully updated outdated password hashes to bcrypt.',
|
||||
|
||||
'CLI_MIGRATION_NAME' => 'Migration name, including the namespace (use forward slashes instead of backslashes to avoid problems).',
|
||||
'CLI_MIGRATIONS_AVAILABLE' => 'Available migrations',
|
||||
'CLI_MIGRATIONS_INSTALLED' => 'Installed migrations',
|
||||
'CLI_MIGRATIONS_ONLY_AVAILABLE' => 'Show only available migrations',
|
||||
'CLI_MIGRATIONS_EMPTY' => 'No migrations.',
|
||||
|
||||
'CLI_REPARSER_REPARSE_REPARSING' => 'Reparsing %1$s (range %2$d..%3$d)',
|
||||
'CLI_REPARSER_REPARSE_REPARSING_START' => 'Reparsing %s...',
|
||||
'CLI_REPARSER_REPARSE_SUCCESS' => 'Reparsing ended with success',
|
||||
|
||||
// In all the case %1$s is the logical name of the file and %2$s the real name on the filesystem
|
||||
// eg: big_image.png (2_a51529ae7932008cf8454a95af84cacd) generated.
|
||||
'CLI_THUMBNAIL_DELETED' => '%1$s (%2$s) deleted.',
|
||||
'CLI_THUMBNAIL_DELETING' => 'Deleting thumbnails',
|
||||
'CLI_THUMBNAIL_SKIPPED' => '%1$s (%2$s) skipped.',
|
||||
'CLI_THUMBNAIL_GENERATED' => '%1$s (%2$s) generated.',
|
||||
'CLI_THUMBNAIL_GENERATING' => 'Generating thumbnails',
|
||||
'CLI_THUMBNAIL_GENERATING_DONE' => 'All thumbnails have been regenerated.',
|
||||
'CLI_THUMBNAIL_DELETING_DONE' => 'All thumbnails have been deleted.',
|
||||
|
||||
'CLI_THUMBNAIL_NOTHING_TO_GENERATE' => 'No thumbnails to generate.',
|
||||
'CLI_THUMBNAIL_NOTHING_TO_DELETE' => 'No thumbnails to delete.',
|
||||
|
||||
'CLI_USER_ADD_SUCCESS' => 'Successfully added user %s.',
|
||||
'CLI_USER_DELETE_CONFIRM' => 'Are you sure you want to delete ‘%s’? [y/N]',
|
||||
'CLI_USER_RECLEAN_START' => 'Re-cleaning usernames',
|
||||
'CLI_USER_RECLEAN_DONE' => [
|
||||
0 => 'Re-cleaning complete. No usernames needed to be cleaned.',
|
||||
1 => 'Re-cleaning complete. %d username was cleaned.',
|
||||
2 => 'Re-cleaning complete. %d usernames were cleaned.',
|
||||
],
|
||||
));
|
||||
|
||||
// Additional help for commands.
|
||||
$lang = array_merge($lang, array(
|
||||
'CLI_HELP_CRON_RUN' => $lang['CLI_DESCRIPTION_CRON_RUN'] . ' Optionally you can specify a cron task name to run only the specified cron task.',
|
||||
'CLI_HELP_USER_ACTIVATE' => 'Activate a user account, or deactivate an account using the <info>--deactivate</info> option.
|
||||
To optionally send an activation email to the user, use the <info>--send-email</info> option.',
|
||||
'CLI_HELP_USER_ADD' => 'The <info>%command.name%</info> command adds a new user:
|
||||
If this command is run without options, you will be prompted to enter them.
|
||||
To optionally send an email to the new user, use the <info>--send-email</info> option.',
|
||||
'CLI_HELP_USER_RECLEAN' => 'Re-clean usernames will check all stored usernames and ensure clean versions are also stored. Cleaned usernames are a case insensitive form, NFC normalized and transformed to ASCII.',
|
||||
));
|
||||
1438
install/update/old/language/en/common.php
Normal file
1438
install/update/old/language/en/common.php
Normal file
File diff suppressed because it is too large
Load Diff
13
install/update/old/language/en/email/admin_activate.txt
Normal file
13
install/update/old/language/en/email/admin_activate.txt
Normal file
@@ -0,0 +1,13 @@
|
||||
Subject: Activate user account
|
||||
|
||||
Hello,
|
||||
|
||||
The account owned by "{USERNAME}" has been deactivated or newly created, you should check the details of this user (if required) and handle it appropriately.
|
||||
|
||||
Use this link to view the user's profile:
|
||||
{U_USER_DETAILS}
|
||||
|
||||
Use this link to activate the account:
|
||||
{U_ACTIVATE}
|
||||
|
||||
{EMAIL_SIG}
|
||||
599
install/update/old/language/en/install.php
Normal file
599
install/update/old/language/en/install.php
Normal file
@@ -0,0 +1,599 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
// Common installer pages
|
||||
$lang = array_merge($lang, array(
|
||||
'INSTALL_PANEL' => 'Installation Panel',
|
||||
'SELECT_LANG' => 'Select language',
|
||||
|
||||
'STAGE_INSTALL' => 'Installing phpBB',
|
||||
|
||||
// Introduction page
|
||||
'INTRODUCTION_TITLE' => 'Introduction',
|
||||
'INTRODUCTION_BODY' => 'Welcome to phpBB3!<br /><br />phpBB® is the most widely used open source bulletin board solution in the world. phpBB3 is the latest installment in a package line started in 2000. Like its predecessors, phpBB3 is feature-rich, user-friendly, and fully supported by the phpBB Team. phpBB3 greatly improves on what made phpBB2 popular, and adds commonly requested features that were not present in previous versions. We hope it exceeds your expectations.<br /><br />This installation system will guide you through installing phpBB3, updating to the latest version of phpBB3 from past releases, as well as converting to phpBB3 from a different discussion board system (including phpBB2). For more information, we encourage you to read <a href="../docs/INSTALL.html">the installation guide</a>.<br /><br />To read the phpBB3 license or learn about obtaining support and our stance on it, please select the respective options from the side menu. To continue, please select the appropriate tab above.',
|
||||
|
||||
// Support page
|
||||
'SUPPORT_TITLE' => 'Support',
|
||||
'SUPPORT_BODY' => 'Full support will be provided for the current stable release of phpBB3, free of charge. This includes:</p><ul><li>installation</li><li>configuration</li><li>technical questions</li><li>problems relating to potential bugs in the software</li><li>updating from Release Candidate (RC) versions to the latest stable version</li><li>converting from phpBB 2.0.x to phpBB3</li><li>converting from other discussion board software to phpBB3 (please see the <a href="https://www.phpbb.com/community/viewforum.php?f=486">Convertors Forum</a>)</li></ul><p>We encourage users still running beta versions of phpBB3 to replace their installation with a fresh copy of the latest version.</p><h2>Extensions / Styles</h2><p>For issues relating to Extensions, please post in the appropriate <a href="https://www.phpbb.com/community/viewforum.php?f=451">Extensions Forum</a>.<br />For issues relating to styles, templates and themes, please post in the appropriate <a href="https://www.phpbb.com/community/viewforum.php?f=471">Styles Forum</a>.<br /><br />If your question relates to a specific package, please post directly in the topic dedicated to the package.</p><h2>Obtaining Support</h2><p><a href="https://www.phpbb.com/support/">Support Section</a><br /><a href="https://www.phpbb.com/support/docs/en/3.2/ug/quickstart/">Quick Start Guide</a><br /><br />To ensure you stay up to date with the latest news and releases, follow us on <a href="https://www.twitter.com/phpbb/">Twitter</a> and <a href="https://www.facebook.com/phpbb/">Facebook</a><br /><br />',
|
||||
|
||||
// License
|
||||
'LICENSE_TITLE' => 'General Public License',
|
||||
|
||||
// Install page
|
||||
'INSTALL_INTRO' => 'Welcome to Installation',
|
||||
'INSTALL_INTRO_BODY' => 'With this option, it is possible to install phpBB3 onto your server.</p><p>In order to proceed, you will need your database settings. If you do not know your database settings, please contact your host and ask for them. You will not be able to continue without them. You need:</p>
|
||||
|
||||
<ul>
|
||||
<li>The Database Type - the database you will be using.</li>
|
||||
<li>The Database server hostname or DSN - the address of the database server.</li>
|
||||
<li>The Database server port - the port of the database server (most of the time this is not needed).</li>
|
||||
<li>The Database name - the name of the database on the server.</li>
|
||||
<li>The Database username and Database password - the login data to access the database.</li>
|
||||
</ul>
|
||||
|
||||
<p><strong>Note:</strong> if you are installing using SQLite, you should enter the full path to your database file in the DSN field and leave the username and password fields blank. For security reasons, you should make sure that the database file is not stored in a location accessible from the web.</p>
|
||||
|
||||
<p>phpBB3 supports the following databases:</p>
|
||||
<ul>
|
||||
<li>MySQL 3.23 or above (MySQLi supported)</li>
|
||||
<li>PostgreSQL 8.3+</li>
|
||||
<li>SQLite 3.6.15+</li>
|
||||
<li>MS SQL Server 2000 or above (directly or via ODBC)</li>
|
||||
<li>MS SQL Server 2005 or above (native)</li>
|
||||
<li>Oracle</li>
|
||||
</ul>
|
||||
|
||||
<p>Only those databases supported on your server will be displayed.',
|
||||
|
||||
'ACP_LINK' => 'Take me to <a href="%1$s">the ACP</a>',
|
||||
|
||||
'INSTALL_PHPBB_INSTALLED' => 'phpBB is already installed.',
|
||||
'INSTALL_PHPBB_NOT_INSTALLED' => 'phpBB is not installed yet.',
|
||||
));
|
||||
|
||||
// Requirements translation
|
||||
$lang = array_merge($lang, array(
|
||||
// Filesystem requirements
|
||||
'FILE_NOT_EXISTS' => 'File does not exist',
|
||||
'FILE_NOT_EXISTS_EXPLAIN' => 'To be able to install phpBB the %1$s file needs to exist.',
|
||||
'FILE_NOT_EXISTS_EXPLAIN_OPTIONAL' => 'It is recommended that the %1$s file exist for a better forum user experience.',
|
||||
'FILE_NOT_WRITABLE' => 'File is not writable',
|
||||
'FILE_NOT_WRITABLE_EXPLAIN' => 'To be able to install phpBB the %1$s file needs to be writable.',
|
||||
'FILE_NOT_WRITABLE_EXPLAIN_OPTIONAL' => 'It is recommended that the %1$s file be writable for a better forum user experience.',
|
||||
|
||||
'DIRECTORY_NOT_EXISTS' => 'Directory does not exist',
|
||||
'DIRECTORY_NOT_EXISTS_EXPLAIN' => 'To be able to install phpBB the %1$s directory needs to exist.',
|
||||
'DIRECTORY_NOT_EXISTS_EXPLAIN_OPTIONAL' => 'It is recommended that the %1$s directory exist for a better forum user experience.',
|
||||
'DIRECTORY_NOT_WRITABLE' => 'Directory is not writable',
|
||||
'DIRECTORY_NOT_WRITABLE_EXPLAIN' => 'To be able to install phpBB the %1$s directory needs to be writable.',
|
||||
'DIRECTORY_NOT_WRITABLE_EXPLAIN_OPTIONAL' => 'It is recommended that the %1$s directory be writable for a better forum user experience.',
|
||||
|
||||
// Server requirements
|
||||
'PHP_VERSION_REQD' => 'PHP version',
|
||||
'PHP_VERSION_REQD_EXPLAIN' => 'phpBB requires PHP version 5.4.0 or higher.',
|
||||
'PHP_GETIMAGESIZE_SUPPORT' => 'PHP getimagesize() function is required',
|
||||
'PHP_GETIMAGESIZE_SUPPORT_EXPLAIN' => 'In order for phpBB to function correctly, the getimagesize function needs to be available.',
|
||||
'PCRE_UTF_SUPPORT' => 'PCRE UTF-8 support',
|
||||
'PCRE_UTF_SUPPORT_EXPLAIN' => 'phpBB will not run if your PHP installation is not compiled with UTF-8 support in the PCRE extension.',
|
||||
'PHP_JSON_SUPPORT' => 'PHP JSON support',
|
||||
'PHP_JSON_SUPPORT_EXPLAIN' => 'In order for phpBB to function correctly, the PHP JSON extension needs to be available.',
|
||||
'PHP_XML_SUPPORT' => 'PHP XML/DOM support',
|
||||
'PHP_XML_SUPPORT_EXPLAIN' => 'In order for phpBB to function correctly, the PHP XML/DOM extension needs to be available.',
|
||||
'PHP_SUPPORTED_DB' => 'Supported databases',
|
||||
'PHP_SUPPORTED_DB_EXPLAIN' => 'You must have support for at least one compatible database within PHP. If no database modules are shown as available you should contact your hosting provider or review the relevant PHP installation documentation for advice.',
|
||||
|
||||
'RETEST_REQUIREMENTS' => 'Retest requirements',
|
||||
|
||||
'STAGE_REQUIREMENTS' => 'Check requirements',
|
||||
));
|
||||
|
||||
// General error messages
|
||||
$lang = array_merge($lang, array(
|
||||
'INST_ERR_MISSING_DATA' => 'You must fill out all fields in this block.',
|
||||
|
||||
'TIMEOUT_DETECTED_TITLE' => 'The installer detected a timeout',
|
||||
'TIMEOUT_DETECTED_MESSAGE' => 'The installer has detected a timeout, you may try to refresh the page, which may lead to data corruption. We suggest that you either increase your timeout settings or try to use the CLI.',
|
||||
));
|
||||
|
||||
// Data obtaining translations
|
||||
$lang = array_merge($lang, array(
|
||||
'STAGE_OBTAIN_DATA' => 'Set installation data',
|
||||
|
||||
//
|
||||
// Admin data
|
||||
//
|
||||
'STAGE_ADMINISTRATOR' => 'Administrator details',
|
||||
|
||||
// Form labels
|
||||
'ADMIN_CONFIG' => 'Administrator configuration',
|
||||
'ADMIN_PASSWORD' => 'Administrator password',
|
||||
'ADMIN_PASSWORD_CONFIRM' => 'Confirm administrator password',
|
||||
'ADMIN_PASSWORD_EXPLAIN' => 'Please enter a password between 6 and 30 characters in length.',
|
||||
'ADMIN_USERNAME' => 'Administrator username',
|
||||
'ADMIN_USERNAME_EXPLAIN' => 'Please enter a username between 3 and 20 characters in length.',
|
||||
|
||||
// Errors
|
||||
'INST_ERR_EMAIL_INVALID' => 'The email address you entered is invalid.',
|
||||
'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_SHORT' => 'The password you entered is too short. The minimum length is 6 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.',
|
||||
|
||||
//
|
||||
// Board data
|
||||
//
|
||||
// Form labels
|
||||
'BOARD_CONFIG' => 'Bulletin board configuration',
|
||||
'DEFAULT_LANGUAGE' => 'Default language',
|
||||
'BOARD_NAME' => 'Title of the board',
|
||||
'BOARD_DESCRIPTION' => 'Short description of the board',
|
||||
|
||||
//
|
||||
// Database data
|
||||
//
|
||||
'STAGE_DATABASE' => 'Database settings',
|
||||
|
||||
// Form labels
|
||||
'DB_CONFIG' => 'Database configuration',
|
||||
'DBMS' => 'Database type',
|
||||
'DB_HOST' => 'Database server hostname or DSN',
|
||||
'DB_HOST_EXPLAIN' => 'DSN stands for Data Source Name and is relevant only for ODBC installs. On PostgreSQL, use localhost to connect to the local server via UNIX domain socket and 127.0.0.1 to connect via TCP. For SQLite, enter the full path to your database file.',
|
||||
'DB_PORT' => 'Database server port',
|
||||
'DB_PORT_EXPLAIN' => 'Leave this blank unless you know the server operates on a non-standard port.',
|
||||
'DB_PASSWORD' => 'Database password',
|
||||
'DB_NAME' => 'Database name',
|
||||
'DB_USERNAME' => 'Database username',
|
||||
'DATABASE_VERSION' => 'Database version',
|
||||
'TABLE_PREFIX' => 'Prefix for tables in database',
|
||||
'TABLE_PREFIX_EXPLAIN' => 'The prefix must start with a letter and must only contain letters, numbers and underscores.',
|
||||
|
||||
// Database options
|
||||
'DB_OPTION_MSSQL_ODBC' => 'MSSQL Server 2000+ via ODBC',
|
||||
'DB_OPTION_MSSQLNATIVE' => 'MSSQL Server 2005+ [ Native ]',
|
||||
'DB_OPTION_MYSQL' => 'MySQL',
|
||||
'DB_OPTION_MYSQLI' => 'MySQL with MySQLi Extension',
|
||||
'DB_OPTION_ORACLE' => 'Oracle',
|
||||
'DB_OPTION_POSTGRES' => 'PostgreSQL',
|
||||
'DB_OPTION_SQLITE3' => 'SQLite 3',
|
||||
|
||||
// Errors
|
||||
'INST_ERR_DB' => 'Database installation error',
|
||||
'INST_ERR_NO_DB' => 'Cannot load the PHP module for the selected database type.',
|
||||
'INST_ERR_DB_INVALID_PREFIX' => 'The prefix you entered is invalid. It must start with a letter and must only contain letters, numbers and underscores.',
|
||||
'INST_ERR_PREFIX_TOO_LONG' => 'The table prefix you have specified is too long. The maximum length is %d characters.',
|
||||
'INST_ERR_DB_NO_NAME' => 'No database name specified.',
|
||||
'INST_ERR_DB_FORUM_PATH' => 'The database file specified is within your board directory tree. You should put this file in a non web-accessible location.',
|
||||
'INST_ERR_DB_CONNECT' => 'Could not connect to the database, see error message below.',
|
||||
'INST_ERR_DB_NO_WRITABLE' => 'Both the database and the directory containing it must be writable.',
|
||||
'INST_ERR_DB_NO_ERROR' => 'No error message given.',
|
||||
'INST_ERR_PREFIX' => 'Tables with the specified prefix already exist, please choose an alternative.',
|
||||
'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_SQLITE3' => 'The version of the SQLite extension you have installed is too old, it must be upgraded to at least 3.6.15.',
|
||||
'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_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_SCHEMA_FILE_NOT_WRITABLE' => 'The schema file is not writable',
|
||||
|
||||
//
|
||||
// Email data
|
||||
//
|
||||
'EMAIL_CONFIG' => 'E-mail configuration',
|
||||
|
||||
// Package info
|
||||
'PACKAGE_VERSION' => 'Package version installed',
|
||||
'UPDATE_INCOMPLETE' => 'Your phpBB installation has not been correctly updated.',
|
||||
'UPDATE_INCOMPLETE_MORE' => 'Please read the information below in order to fix this error.',
|
||||
'UPDATE_INCOMPLETE_EXPLAIN' => '<h1>Incomplete update</h1>
|
||||
|
||||
<p>We noticed that the last update of your phpBB installation hasn’t been completed. Visit the <a href="%1$s" title="%1$s">database updater</a>, ensure <em>Update database only</em> is selected and click on <strong>Submit</strong>. Don\'t forget to delete the "install"-directory after you have updated the database sucessfully.</p>',
|
||||
|
||||
//
|
||||
// Server data
|
||||
//
|
||||
// Form labels
|
||||
'UPGRADE_INSTRUCTIONS' => 'A new feature release <strong>%1$s</strong> is available. Please read <a href="%2$s" title="%2$s"><strong>the release announcement</strong></a> to learn about what it has to offer, and how to upgrade.',
|
||||
'SERVER_CONFIG' => 'Server configuration',
|
||||
'SCRIPT_PATH' => 'Script path',
|
||||
'SCRIPT_PATH_EXPLAIN' => 'The path where phpBB is located relative to the domain name, e.g. <samp>/phpBB3</samp>.',
|
||||
));
|
||||
|
||||
// Default database schema entries...
|
||||
$lang = array_merge($lang, array(
|
||||
'CONFIG_BOARD_EMAIL_SIG' => 'Thanks, The Management',
|
||||
'CONFIG_SITE_DESC' => 'A short text to describe your forum',
|
||||
'CONFIG_SITENAME' => 'yourdomain.com',
|
||||
|
||||
'DEFAULT_INSTALL_POST' => 'This is an example post in your phpBB3 installation. Everything seems to be working. You may delete this post if you like and continue to set up your board. During the installation process your first category and your first forum are assigned an appropriate set of permissions for the predefined usergroups administrators, bots, global moderators, guests, registered users and registered COPPA users. If you also choose to delete your first category and your first forum, do not forget to assign permissions for all these usergroups for all new categories and forums you create. It is recommended to rename your first category and your first forum and copy permissions from these while creating new categories and forums. Have fun!',
|
||||
|
||||
'FORUMS_FIRST_CATEGORY' => 'Your first category',
|
||||
'FORUMS_TEST_FORUM_DESC' => 'Description of your first forum.',
|
||||
'FORUMS_TEST_FORUM_TITLE' => 'Your first forum',
|
||||
|
||||
'RANKS_SITE_ADMIN_TITLE' => 'Site Admin',
|
||||
'REPORT_WAREZ' => 'The post contains links to illegal or pirated software.',
|
||||
'REPORT_SPAM' => 'The reported post has the only purpose to advertise for a website or another product.',
|
||||
'REPORT_OFF_TOPIC' => 'The reported post is off topic.',
|
||||
'REPORT_OTHER' => 'The reported post does not fit into any other category, please use the further information field.',
|
||||
|
||||
'SMILIES_ARROW' => 'Arrow',
|
||||
'SMILIES_CONFUSED' => 'Confused',
|
||||
'SMILIES_COOL' => 'Cool',
|
||||
'SMILIES_CRYING' => 'Crying or Very Sad',
|
||||
'SMILIES_EMARRASSED' => 'Embarrassed',
|
||||
'SMILIES_EVIL' => 'Evil or Very Mad',
|
||||
'SMILIES_EXCLAMATION' => 'Exclamation',
|
||||
'SMILIES_GEEK' => 'Geek',
|
||||
'SMILIES_IDEA' => 'Idea',
|
||||
'SMILIES_LAUGHING' => 'Laughing',
|
||||
'SMILIES_MAD' => 'Mad',
|
||||
'SMILIES_MR_GREEN' => 'Mr. Green',
|
||||
'SMILIES_NEUTRAL' => 'Neutral',
|
||||
'SMILIES_QUESTION' => 'Question',
|
||||
'SMILIES_RAZZ' => 'Razz',
|
||||
'SMILIES_ROLLING_EYES' => 'Rolling Eyes',
|
||||
'SMILIES_SAD' => 'Sad',
|
||||
'SMILIES_SHOCKED' => 'Shocked',
|
||||
'SMILIES_SMILE' => 'Smile',
|
||||
'SMILIES_SURPRISED' => 'Surprised',
|
||||
'SMILIES_TWISTED_EVIL' => 'Twisted Evil',
|
||||
'SMILIES_UBER_GEEK' => 'Uber Geek',
|
||||
'SMILIES_VERY_HAPPY' => 'Very Happy',
|
||||
'SMILIES_WINK' => 'Wink',
|
||||
|
||||
'TOPICS_TOPIC_TITLE' => 'Welcome to phpBB3',
|
||||
));
|
||||
|
||||
// Common navigation items' translation
|
||||
$lang = array_merge($lang, array(
|
||||
'MENU_OVERVIEW' => 'Overview',
|
||||
'MENU_INTRO' => 'Introduction',
|
||||
'MENU_LICENSE' => 'License',
|
||||
'MENU_SUPPORT' => 'Support',
|
||||
));
|
||||
|
||||
// Task names
|
||||
$lang = array_merge($lang, array(
|
||||
// Install filesystem
|
||||
'TASK_CREATE_CONFIG_FILE' => 'Creating configuration file',
|
||||
|
||||
// Install database
|
||||
'TASK_ADD_CONFIG_SETTINGS' => 'Adding configuration settings',
|
||||
'TASK_ADD_DEFAULT_DATA' => 'Adding default settings to the database',
|
||||
'TASK_CREATE_DATABASE_SCHEMA_FILE' => 'Creating database schema file',
|
||||
'TASK_SETUP_DATABASE' => 'Setting up database',
|
||||
'TASK_CREATE_TABLES' => 'Creating tables',
|
||||
|
||||
// Install data
|
||||
'TASK_ADD_BOTS' => 'Registering bots',
|
||||
'TASK_ADD_LANGUAGES' => 'Installing available languages',
|
||||
'TASK_ADD_MODULES' => 'Installing modules',
|
||||
'TASK_CREATE_SEARCH_INDEX' => 'Creating search index',
|
||||
|
||||
// Install finish tasks
|
||||
'TASK_INSTALL_EXTENSIONS' => 'Installing packaged extensions',
|
||||
'TASK_NOTIFY_USER' => 'Sending notification e-mail',
|
||||
'TASK_POPULATE_MIGRATIONS' => 'Populating migrations',
|
||||
|
||||
// Installer general progress messages
|
||||
'INSTALLER_FINISHED' => 'The installer has finished successfully',
|
||||
));
|
||||
|
||||
// Installer's general messages
|
||||
$lang = array_merge($lang, array(
|
||||
'MODULE_NOT_FOUND' => 'Module not found',
|
||||
'MODULE_NOT_FOUND_DESCRIPTION' => 'A module could not be found because the service, %s, is undefined.',
|
||||
|
||||
'TASK_NOT_FOUND' => 'Task not found',
|
||||
'TASK_NOT_FOUND_DESCRIPTION' => 'A task could not be found because the service, %s, is undefined.',
|
||||
|
||||
'SKIP_MODULE' => 'Skip “%s” module',
|
||||
'SKIP_TASK' => 'Skip “%s” task',
|
||||
|
||||
'TASK_SERVICE_INSTALLER_MISSING' => 'All installer task services should start with “installer”',
|
||||
'TASK_CLASS_NOT_FOUND' => 'Installer task service definition is invalid. Service name “%1$s” given, the expected class namespace is “%2$s” for that. For more information please see the documentation of task_interface.',
|
||||
|
||||
'INSTALLER_CONFIG_NOT_WRITABLE' => 'The installer config file is not writable.',
|
||||
));
|
||||
|
||||
// CLI messages
|
||||
$lang = array_merge($lang, array(
|
||||
'CLI_INSTALL_BOARD' => 'Install phpBB',
|
||||
'CLI_UPDATE_BOARD' => 'Update phpBB',
|
||||
'CLI_INSTALL_SHOW_CONFIG' => 'Show the configuration which will be used',
|
||||
'CLI_INSTALL_VALIDATE_CONFIG' => 'Validate a configuration file',
|
||||
'CLI_CONFIG_FILE' => 'Config file to use',
|
||||
'MISSING_FILE' => 'Unable to access file %1$s',
|
||||
'MISSING_DATA' => 'Config file is missing data or might contain invalid settings.',
|
||||
'INVALID_YAML_FILE' => 'Could not parse YAML file %1$s',
|
||||
'CONFIGURATION_VALID' => 'The configuration file is valid',
|
||||
));
|
||||
|
||||
// Common updater messages
|
||||
$lang = array_merge($lang, array(
|
||||
'UPDATE_INSTALLATION' => 'Update phpBB installation',
|
||||
'UPDATE_INSTALLATION_EXPLAIN' => 'With this option, it is possible to update your phpBB installation to the latest version.<br />During the process all of your files will be checked for their integrity. You are able to review all differences and files before the update.<br /><br />The file update itself can be done in two different ways.</p><h2>Manual Update</h2><p>With this update you only download your personal set of changed files to make sure you do not lose your file modifications you may have done. After you downloaded this package you need to manually upload the files to their correct position under your phpBB root directory. Once done, you are able to do the file check stage again to see if you moved the files to their correct location.</p><h2>Automatic Update with FTP</h2><p>This method is similar to the first one but without the need to download the changed files and uploading them on your own. This will be done for you. In order to use this method you need to know your FTP login details since you will be asked for them. Once finished you will be redirected to the file check again to make sure everything got updated correctly.<br /><br />',
|
||||
'UPDATE_INSTRUCTIONS' => '
|
||||
|
||||
<h1>Release announcement</h1>
|
||||
|
||||
<p>Please read the release announcement for the latest version before you continue your update process, it may contain useful information. It also contains full download links as well as the change log.</p>
|
||||
|
||||
<br />
|
||||
|
||||
<h1>How to update your installation with the Full Package</h1>
|
||||
|
||||
<p>The recommended way of updating your installation is using the full package. If core phpBB files have been modified in your installation you may wish to use the automatic update package in order to not lose these changes. You are also able to update your installation using the other methods listed within the INSTALL.html document. The steps for updating phpBB3 using the full package are:</p>
|
||||
|
||||
<ol style="margin-left: 20px; font-size: 1.1em;">
|
||||
<li><strong class="error">Backup all board files and the database.</strong></li>
|
||||
<li>Go to the <a href="https://www.phpbb.com/downloads/" title="https://www.phpbb.com/downloads/">phpBB.com downloads page</a> and download the latest "Full Package" archive.</li>
|
||||
<li>Unpack the archive.</li>
|
||||
<li>Remove (delete) the <code class="inline">config.php</code> file, and the <code class="inline">/images</code>, <code class="inline">/store</code> and <code class="inline">/files</code> folders <em>from the package</em> (not your site).</li>
|
||||
<li>Go to the ACP, Board settings, and make sure prosilver is set as the default style. If not, set it to prosilver.</li>
|
||||
<li>Delete the <code class="inline">/vendor</code> and <code class="inline">/cache</code> folders from the board’s root folder on the host.</li>
|
||||
<li>Via FTP or SSH upload the remaining files and folders (that is, the remaining CONTENTS of the phpBB3 folder) to the root folder of your board installation on the server, overwriting the existing files. (Note: take care not to delete any extensions in your <code class="inline">/ext</code> folder when uploading the new phpBB3 contents.)</li>
|
||||
<li><strong><a href="%1$s" title="%1$s">Now start the update process by pointing your browser to the install folder</a>.</strong></li>
|
||||
<li>Follow the steps to update the database and let that run to completion.</li>
|
||||
<li>Via FTP or SSH delete the <code class="inline">/install</code> folder from the root of your board installation.<br><br></li>
|
||||
</ol>
|
||||
|
||||
<p>You now have a new up to date board containing all your users and posts. Follow up tasks:</p>
|
||||
<ul style="margin-left: 20px; font-size: 1.1em;">
|
||||
<li>Update your language pack</li>
|
||||
<li>Update your style<br><br></li>
|
||||
</ul>
|
||||
|
||||
<h1>How to update your installation with the Automatic Update Package</h1>
|
||||
|
||||
<p>The automatic update package is only recommended in case core phpBB files have been modified in your installation. You are also able to update your installation using the methods listed within the INSTALL.html document. The steps for updating phpBB3 using the automatic update package are:</p>
|
||||
|
||||
<ol style="margin-left: 20px; font-size: 1.1em;">
|
||||
<li>Go to the <a href="https://www.phpbb.com/downloads/" title="https://www.phpbb.com/downloads/">phpBB.com downloads page</a> and download the "Automatic Update Package" archive.</li>
|
||||
<li>Unpack the archive.</li>
|
||||
<li>Upload the complete uncompressed "install" and "vendor" folders to your phpBB root directory (where your config.php file is).<br><br></li>
|
||||
</ol>
|
||||
|
||||
<p>Once uploaded your board will be offline for normal users due to the install directory you uploaded now being present.<br /><br />
|
||||
<strong><a href="%1$s" title="%1$s">Now start the update process by pointing your browser to the install folder</a>.</strong><br />
|
||||
<br />
|
||||
You will then be guided through the update process. You will be notified once the update is complete.
|
||||
</p>
|
||||
',
|
||||
));
|
||||
|
||||
// Updater forms
|
||||
$lang = array_merge($lang, array(
|
||||
// Updater types
|
||||
'UPDATE_TYPE' => 'Type of update to run',
|
||||
|
||||
'UPDATE_TYPE_ALL' => 'Update filesystem and database',
|
||||
'UPDATE_TYPE_DB_ONLY' => 'Update database only',
|
||||
|
||||
// File updater methods
|
||||
'UPDATE_FILE_METHOD_TITLE' => 'File updater methods',
|
||||
|
||||
'UPDATE_FILE_METHOD' => 'File updater method',
|
||||
'UPDATE_FILE_METHOD_DOWNLOAD' => 'Download modified files in an archive',
|
||||
'UPDATE_FILE_METHOD_FTP' => 'Update files via FTP (Automatic)',
|
||||
'UPDATE_FILE_METHOD_FILESYSTEM' => 'Update files via direct file access (Automatic)',
|
||||
|
||||
// File updater archives
|
||||
'SELECT_DOWNLOAD_FORMAT' => 'Select download archive format',
|
||||
|
||||
// FTP settings
|
||||
'FTP_SETTINGS' => 'FTP settings',
|
||||
));
|
||||
|
||||
// Requirements messages
|
||||
$lang = array_merge($lang, array(
|
||||
'UPDATE_FILES_NOT_FOUND' => 'No valid update directory was found, please make sure you uploaded the relevant files.',
|
||||
|
||||
'NO_UPDATE_FILES_UP_TO_DATE' => 'Your version is up to date. There is no need to run the update tool. If you want to make an integrity check on your files make sure you uploaded the correct update files.',
|
||||
'OLD_UPDATE_FILES' => 'Update files are out of date. The update files found are for updating from phpBB %1$s to phpBB %2$s but the latest version of phpBB is %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.',
|
||||
));
|
||||
|
||||
// Update files
|
||||
$lang = array_merge($lang, array(
|
||||
'STAGE_UPDATE_FILES' => 'Update files',
|
||||
|
||||
// Check files
|
||||
'UPDATE_CHECK_FILES' => 'Check files to update',
|
||||
|
||||
// Update file differ
|
||||
'FILE_DIFFER_ERROR_FILE_CANNOT_BE_READ' => 'The file differ failed to open %s.',
|
||||
|
||||
'UPDATE_FILE_DIFF' => 'Diffing changed files',
|
||||
'ALL_FILES_DIFFED' => 'All modified files has been diffed.',
|
||||
|
||||
// File status
|
||||
'UPDATE_CONTINUE_FILE_UPDATE' => 'Update files',
|
||||
|
||||
'DOWNLOAD' => 'Download',
|
||||
'DOWNLOAD_CONFLICTS' => 'Download merge conflicts archive',
|
||||
'DOWNLOAD_CONFLICTS_EXPLAIN' => 'Search for <<< to spot conflicts',
|
||||
'DOWNLOAD_UPDATE_METHOD' => 'Download modified files archive',
|
||||
'DOWNLOAD_UPDATE_METHOD_EXPLAIN' => 'Once downloaded you should unpack the archive. You will find the modified files you need to upload to your phpBB root directory within it. Please upload the files to their respective locations then. After you have uploaded all files, you may continue with the update process.',
|
||||
|
||||
'FILE_ALREADY_UP_TO_DATE' => 'File is already up to date.',
|
||||
'FILE_DIFF_NOT_ALLOWED' => 'File not allowed to be diffed.',
|
||||
'FILE_USED' => 'Information used from', // Single file
|
||||
'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 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 losing the changes from the newer file.',
|
||||
'FILES_DELETED' => 'Deleted files',
|
||||
'FILES_DELETED_EXPLAIN' => 'The following files do not exist in the new version. These files have to be deleted from your installation.',
|
||||
'FILES_MODIFIED' => 'Modified files',
|
||||
'FILES_MODIFIED_EXPLAIN' => 'The following files are modified and do not represent the original files from the old version. The updated file will be a merge between your modifications and the new file.',
|
||||
'FILES_NEW' => 'New files',
|
||||
'FILES_NEW_EXPLAIN' => 'The following files currently do not exist within your installation. These files will be added to your installation.',
|
||||
'FILES_NEW_CONFLICT' => 'New conflicting files',
|
||||
'FILES_NEW_CONFLICT_EXPLAIN' => 'The following files are new within the latest version but it has been determined that there is already a file with the same name within the same position. This file will be overwritten by the new file.',
|
||||
'FILES_NOT_MODIFIED' => 'Not modified files',
|
||||
'FILES_NOT_MODIFIED_EXPLAIN' => 'The following files are not modified and represent the original phpBB files from the version you want to update from.',
|
||||
'FILES_UP_TO_DATE' => 'Already updated files',
|
||||
'FILES_UP_TO_DATE_EXPLAIN' => 'The following files are already up to date and do not need to be updated.',
|
||||
'FILES_VERSION' => 'Files Version',
|
||||
'TOGGLE_DISPLAY' => 'View/Hide file list',
|
||||
|
||||
// File updater
|
||||
'UPDATE_UPDATING_FILES' => 'Updating files',
|
||||
|
||||
'UPDATE_FILE_UPDATER_HAS_FAILED' => 'File updater “%1$s“ has failed. The installer will try to fallback to “%2$s“.',
|
||||
'UPDATE_FILE_UPDATERS_HAVE_FAILED' => 'The file updater failed. No further fallback methods are available.',
|
||||
|
||||
'UPDATE_CONTINUE_UPDATE_PROCESS' => 'Continue update process',
|
||||
'UPDATE_RECHECK_UPDATE_FILES' => 'Check files again',
|
||||
));
|
||||
|
||||
// Update database
|
||||
$lang = array_merge($lang, array(
|
||||
'STAGE_UPDATE_DATABASE' => 'Update database',
|
||||
|
||||
'INLINE_UPDATE_SUCCESSFUL' => 'The database update was successful.',
|
||||
|
||||
'TASK_UPDATE_EXTENSIONS' => 'Updating extensions',
|
||||
));
|
||||
|
||||
// Converter
|
||||
$lang = array_merge($lang, array(
|
||||
// Common converter messages
|
||||
'CONVERT_NOT_EXIST' => 'The specified convertor does not exist.',
|
||||
'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 board to allow the path to it to be verified.',
|
||||
'COULD_NOT_FIND_PATH' => 'Could not find path to your former board. Please check your settings and try again.<br />» %s was specified as the source path.',
|
||||
'CONFIG_PHPBB_EMPTY' => 'The phpBB3 config variable for “%s” is empty.',
|
||||
|
||||
'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>.',
|
||||
|
||||
'INSTALL_TEST' => 'Test again',
|
||||
|
||||
'NO_TABLES_FOUND' => 'No tables found.',
|
||||
'TABLES_MISSING' => 'Could not find these tables<br />» <strong>%s</strong>.',
|
||||
'CHECK_TABLE_PREFIX' => 'Please check your table prefix and try again.',
|
||||
|
||||
// Conversion in progress
|
||||
'CONTINUE_CONVERT' => 'Continue conversion',
|
||||
'CONTINUE_CONVERT_BODY' => 'A previous conversion attempt has been determined. You are now able to choose between starting a new conversion or continuing the conversion.',
|
||||
'CONVERT_NEW_CONVERSION' => 'New conversion',
|
||||
'CONTINUE_OLD_CONVERSION' => 'Continue previously started conversion',
|
||||
|
||||
// Start conversion
|
||||
'SUB_INTRO' => 'Introduction',
|
||||
'CONVERT_INTRO' => 'Welcome to the phpBB Unified Convertor Framework',
|
||||
'CONVERT_INTRO_BODY' => 'From here, you are able to import data from other (installed) board systems. The list below shows all the conversion modules currently available. If there is no convertor shown in this list for the board software you wish to convert from, please check our website where further conversion modules may be available for download.',
|
||||
'AVAILABLE_CONVERTORS' => 'Available convertors',
|
||||
'NO_CONVERTORS' => 'No convertors are available for use.',
|
||||
'CONVERT_OPTIONS' => 'Options',
|
||||
'SOFTWARE' => 'Board software',
|
||||
'VERSION' => 'Version',
|
||||
'CONVERT' => 'Convert',
|
||||
|
||||
// Settings
|
||||
'STAGE_SETTINGS' => 'Settings',
|
||||
'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.',
|
||||
'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 board you are converting from. The default table prefix for %1$s is <strong>%2$s</strong>.',
|
||||
'SPECIFY_OPTIONS' => 'Specify conversion options',
|
||||
'FORUM_PATH' => 'Board path',
|
||||
'FORUM_PATH_EXPLAIN' => 'This is the <strong>relative</strong> path on disk to your former board from the <strong>root of this phpBB3 installation</strong>.',
|
||||
'REFRESH_PAGE' => 'Refresh page to continue conversion',
|
||||
'REFRESH_PAGE_EXPLAIN' => 'If set to yes, the convertor will refresh the page to continue the conversion after having finished a step. If this is your first conversion for testing purposes and to determine any errors in advance, we suggest to set this to No.',
|
||||
|
||||
// Conversion
|
||||
'STAGE_IN_PROGRESS' => 'Conversion in progress',
|
||||
|
||||
'AUTHOR_NOTES' => 'Author notes<br />» %s',
|
||||
'STARTING_CONVERT' => 'Starting conversion process',
|
||||
'CONFIG_CONVERT' => 'Converting the configuration',
|
||||
'DONE' => 'Done',
|
||||
'PREPROCESS_STEP' => 'Executing pre-processing functions/queries',
|
||||
'FILLING_TABLE' => 'Filling table <strong>%s</strong>',
|
||||
'FILLING_TABLES' => 'Filling tables',
|
||||
'DB_ERR_INSERT' => 'Error while processing <code>INSERT</code> query.',
|
||||
'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_TABLE' => 'Error while executing <var>query_first</var>, %s (“%s”).',
|
||||
'DB_ERR_SELECT' => 'Error while running <code>SELECT</code> query.',
|
||||
'STEP_PERCENT_COMPLETED' => 'Step <strong>%d</strong> of <strong>%d</strong>',
|
||||
'FINAL_STEP' => 'Process final step',
|
||||
'SYNC_FORUMS' => 'Starting to synchronise forums',
|
||||
'SYNC_POST_COUNT' => 'Synchronising post_counts',
|
||||
'SYNC_POST_COUNT_ID' => 'Synchronising post_counts from <var>entry</var> %1$s to %2$s.',
|
||||
'SYNC_TOPICS' => 'Starting to synchronise topics',
|
||||
'SYNC_TOPIC_ID' => 'Synchronising topics from <var>topic_id</var> %1$s to %2$s.',
|
||||
'PROCESS_LAST' => 'Processing last statements',
|
||||
'UPDATE_TOPICS_POSTED' => 'Generating topics posted information',
|
||||
'UPDATE_TOPICS_POSTED_ERR' => 'An error occurred while generating topics posted information. You can retry this step in the ACP after the conversion process is completed.',
|
||||
'CONTINUE_LAST' => 'Continue last statements',
|
||||
'CLEAN_VERIFY' => 'Cleaning up and verifying the final structure',
|
||||
'NOT_UNDERSTAND' => 'Could not understand %s #%d, table %s (“%s”)',
|
||||
'NAMING_CONFLICT' => 'Naming conflict: %s and %s are both aliases<br /><br />%s',
|
||||
|
||||
// Finish conversion
|
||||
'CONVERT_COMPLETE' => 'Conversion completed',
|
||||
'CONVERT_COMPLETE_EXPLAIN' => 'You have now successfully converted your board to phpBB 3.2. You can now login and <a href="../">access your board</a>. Please ensure that the settings were transferred correctly before enabling your board by deleting the install directory. Remember that help on using phpBB is available online via the <a href="https://www.phpbb.com/support/docs/en/3.2/ug/">Documentation</a> and the <a href="https://www.phpbb.com/community/viewforum.php?f=466">support forums</a>.',
|
||||
|
||||
'CONV_ERROR_ATTACH_FTP_DIR' => 'FTP upload for attachments is enabled at the old board. Please disable the FTP upload option and make sure a valid upload directory is specified, then copy all attachment files to this new web accessible directory. Once you have done this, restart the convertor.',
|
||||
'CONV_ERROR_CONFIG_EMPTY' => 'There is no configuration information available for the conversion.',
|
||||
'CONV_ERROR_FORUM_ACCESS' => 'Unable to get forum access information.',
|
||||
'CONV_ERROR_GET_CATEGORIES' => 'Unable to get categories.',
|
||||
'CONV_ERROR_GET_CONFIG' => 'Could not retrieve your board configuration.',
|
||||
'CONV_ERROR_COULD_NOT_READ' => 'Unable to access/read “%s”.',
|
||||
'CONV_ERROR_GROUP_ACCESS' => 'Unable to get group authentication information.',
|
||||
'CONV_ERROR_INCONSISTENT_GROUPS' => 'Inconsistency in groups table detected in add_bots() - you need to add all special groups if you do it manually.',
|
||||
'CONV_ERROR_INSERT_BOT' => 'Unable to insert bot into users table.',
|
||||
'CONV_ERROR_INSERT_BOTGROUP' => 'Unable to insert bot into bots table.',
|
||||
'CONV_ERROR_INSERT_USER_GROUP' => 'Unable to insert user into user_group table.',
|
||||
'CONV_ERROR_MESSAGE_PARSER' => 'Message parser error',
|
||||
'CONV_ERROR_NO_AVATAR_PATH' => 'Note to developer: you must specify $convertor[\'avatar_path\'] to use %s.',
|
||||
'CONV_ERROR_NO_FORUM_PATH' => 'The relative path to the source board has not been specified.',
|
||||
'CONV_ERROR_NO_GALLERY_PATH' => 'Note to developer: you must specify $convertor[\'avatar_gallery_path\'] to use %s.',
|
||||
'CONV_ERROR_NO_GROUP' => 'Group “%1$s” could not be found in %2$s.',
|
||||
'CONV_ERROR_NO_RANKS_PATH' => 'Note to developer: you must specify $convertor[\'ranks_path\'] to use %s.',
|
||||
'CONV_ERROR_NO_SMILIES_PATH' => 'Note to developer: you must specify $convertor[\'smilies_path\'] to use %s.',
|
||||
'CONV_ERROR_NO_UPLOAD_DIR' => 'Note to developer: you must specify $convertor[\'upload_path\'] to use %s.',
|
||||
'CONV_ERROR_PERM_SETTING' => 'Unable to insert/update permission setting.',
|
||||
'CONV_ERROR_PM_COUNT' => 'Unable to select folder pm count.',
|
||||
'CONV_ERROR_REPLACE_CATEGORY' => 'Unable to insert new forum replacing old category.',
|
||||
'CONV_ERROR_REPLACE_FORUM' => 'Unable to insert new forum replacing old forum.',
|
||||
'CONV_ERROR_USER_ACCESS' => 'Unable to get user authentication information.',
|
||||
'CONV_ERROR_WRONG_GROUP' => 'Wrong group “%1$s” defined in %2$s.',
|
||||
'CONV_OPTIONS_BODY' => 'This page collects the data required to access the source board. Enter the database details of your former board; the converter will not change anything in the database given below. The source board should be disabled to allow a consistent conversion.',
|
||||
'CONV_SAVED_MESSAGES' => 'Saved messages',
|
||||
|
||||
'PRE_CONVERT_COMPLETE' => 'All pre-conversion steps have successfully been completed. You may now begin the actual conversion process. Please note that you may have to manually do and adjust several things. After conversion, especially check the permissions assigned, rebuild your search index which is not converted and also make sure files got copied correctly, for example avatars and smilies.',
|
||||
));
|
||||
81
install/update/old/language/en/migrator.php
Normal file
81
install/update/old/language/en/migrator.php
Normal file
@@ -0,0 +1,81 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'CONFIG_NOT_EXIST' => 'The config setting "%s" unexpectedly does not exist.',
|
||||
|
||||
'GROUP_NOT_EXIST' => 'The group "%s" unexpectedly does not exist.',
|
||||
|
||||
'MIGRATION_APPLY_DEPENDENCIES' => 'Apply dependencies of %s.',
|
||||
'MIGRATION_DATA_DONE' => 'Installed Data: %1$s; Time: %2$.2f seconds',
|
||||
'MIGRATION_DATA_IN_PROGRESS' => 'Installing Data: %1$s; Time: %2$.2f seconds',
|
||||
'MIGRATION_DATA_RUNNING' => 'Installing Data: %s.',
|
||||
'MIGRATION_EFFECTIVELY_INSTALLED' => 'Migration already effectively installed (skipped): %s',
|
||||
'MIGRATION_EXCEPTION_ERROR' => 'Something went wrong during the request and an exception was thrown. The changes made before the error occurred were reversed to the best of our abilities, but you should check the board for errors.',
|
||||
'MIGRATION_NOT_FULFILLABLE' => 'The migration "%1$s" is not fulfillable, missing migration "%2$s".',
|
||||
'MIGRATION_NOT_INSTALLED' => 'The migration "%s" is not installed.',
|
||||
'MIGRATION_NOT_VALID' => '%s is not a valid migration.',
|
||||
'MIGRATION_SCHEMA_DONE' => 'Installed Schema: %1$s; Time: %2$.2f seconds',
|
||||
'MIGRATION_SCHEMA_IN_PROGRESS' => 'Installing Schema: %1$s; Time: %2$.2f seconds',
|
||||
'MIGRATION_SCHEMA_RUNNING' => 'Installing Schema: %s.',
|
||||
|
||||
'MIGRATION_REVERT_DATA_DONE' => 'Reverted Data: %1$s; Time: %2$.2f seconds',
|
||||
'MIGRATION_REVERT_DATA_IN_PROGRESS' => 'Reverting Data: %1$s; Time: %2$.2f seconds',
|
||||
'MIGRATION_REVERT_DATA_RUNNING' => 'Reverting Data: %s.',
|
||||
'MIGRATION_REVERT_SCHEMA_DONE' => 'Reverted Schema: %1$s; Time: %2$.2f seconds',
|
||||
'MIGRATION_REVERT_SCHEMA_IN_PROGRESS' => 'Reverting Schema: %1$s; Time: %2$.2f seconds',
|
||||
'MIGRATION_REVERT_SCHEMA_RUNNING' => 'Reverting Schema: %s.',
|
||||
|
||||
'MIGRATION_INVALID_DATA_MISSING_CONDITION' => 'A migration is invalid. An if statement helper is missing a condition.',
|
||||
'MIGRATION_INVALID_DATA_MISSING_STEP' => 'A migration is invalid. An if statement helper is missing a valid call to a migration step.',
|
||||
'MIGRATION_INVALID_DATA_CUSTOM_NOT_CALLABLE' => 'A migration is invalid. A custom callable function could not be called.',
|
||||
'MIGRATION_INVALID_DATA_UNKNOWN_TYPE' => 'A migration is invalid. An unknown migration tool type was encountered.',
|
||||
'MIGRATION_INVALID_DATA_UNDEFINED_TOOL' => 'A migration is invalid. An undefined migration tool was encountered.',
|
||||
'MIGRATION_INVALID_DATA_UNDEFINED_METHOD' => 'A migration is invalid. An undefined migration tool method was encountered.',
|
||||
|
||||
'MODULE_ERROR' => 'An error occurred while creating a module: %s',
|
||||
'MODULE_EXISTS' => 'A module already exists: %s',
|
||||
'MODULE_EXIST_MULTIPLE' => 'Several modules with the given parent module langname already exist: %s. Try using before/after keys to clarify the module placement.',
|
||||
'MODULE_INFO_FILE_NOT_EXIST' => 'A required module info file is missing: %2$s',
|
||||
'MODULE_NOT_EXIST' => 'A required module does not exist: %s',
|
||||
|
||||
'PARENT_MODULE_FIND_ERROR' => 'Unable to determine the parent module identifier: %s',
|
||||
'PERMISSION_NOT_EXIST' => 'The permission setting "%s" unexpectedly does not exist.',
|
||||
|
||||
'ROLE_NOT_EXIST' => 'The permission role "%s" unexpectedly does not exist.',
|
||||
));
|
||||
287
install/update/old/language/en/posting.php
Normal file
287
install/update/old/language/en/posting.php
Normal file
@@ -0,0 +1,287 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
$lang = array_merge($lang, array(
|
||||
'ADD_ATTACHMENT' => 'Upload attachment',
|
||||
'ADD_ATTACHMENT_EXPLAIN' => 'If you wish to attach one or more files enter the details below.',
|
||||
'ADD_FILE' => 'Add the file',
|
||||
'ADD_POLL' => 'Poll creation',
|
||||
'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.',
|
||||
'ATTACH_DISK_FULL' => 'There is not enough free disk space to post this attachment.',
|
||||
'ATTACH_QUOTA_REACHED' => 'Sorry, the board attachment quota has been reached.',
|
||||
'ATTACH_SIG' => 'Attach a signature (signatures can be altered via the UCP)',
|
||||
|
||||
'BBCODE_A_HELP' => 'Inline uploaded attachment: [attachment=]filename.ext[/attachment]',
|
||||
'BBCODE_B_HELP' => 'Bold text: [b]text[/b]',
|
||||
'BBCODE_C_HELP' => 'Code display: [code]code[/code]',
|
||||
'BBCODE_D_HELP' => 'Flash: [flash=width,height]http://url[/flash]',
|
||||
'BBCODE_F_HELP' => 'Font size: [size=85]small text[/size]',
|
||||
'BBCODE_IS_OFF' => '%sBBCode%s is <em>OFF</em>',
|
||||
'BBCODE_IS_ON' => '%sBBCode%s is <em>ON</em>',
|
||||
'BBCODE_I_HELP' => 'Italic text: [i]text[/i]',
|
||||
'BBCODE_L_HELP' => 'List: [list][*]text[/list]',
|
||||
'BBCODE_LISTITEM_HELP' => 'List item: [*]text',
|
||||
'BBCODE_O_HELP' => 'Ordered list: e.g. [list=1][*]First point[/list] or [list=a][*]Point a[/list]',
|
||||
'BBCODE_P_HELP' => 'Insert image: [img]http://image_url[/img]',
|
||||
'BBCODE_Q_HELP' => 'Quote text: [quote]text[/quote]',
|
||||
'BBCODE_S_HELP' => 'Font colour: [color=red]text[/color] or [color=#FF0000]text[/color]',
|
||||
'BBCODE_U_HELP' => 'Underline text: [u]text[/u]',
|
||||
'BBCODE_W_HELP' => 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url]',
|
||||
'BBCODE_Y_HELP' => 'List: Add list element',
|
||||
'BUMP_ERROR' => 'You cannot bump this topic so soon after the last post.',
|
||||
|
||||
'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_TIME' => 'You can no longer edit or delete that post.',
|
||||
'CANNOT_POST_ANNOUNCE' => 'Sorry but you cannot post announcements.',
|
||||
'CANNOT_POST_STICKY' => 'Sorry but you cannot post sticky topics.',
|
||||
'CHANGE_TOPIC_TO' => 'Change topic type to',
|
||||
'CHARS_POST_CONTAINS' => array(
|
||||
1 => 'Your message contains %1$d character.',
|
||||
2 => 'Your message contains %1$d characters.',
|
||||
),
|
||||
'CHARS_SIG_CONTAINS' => array(
|
||||
1 => 'Your signature contains %1$d character.',
|
||||
2 => 'Your signature contains %1$d characters.',
|
||||
),
|
||||
'CLOSE_TAGS' => 'Close tags',
|
||||
'CURRENT_TOPIC' => 'Current topic',
|
||||
|
||||
'DELETE_FILE' => 'Delete file',
|
||||
'DELETE_MESSAGE' => 'Delete message',
|
||||
'DELETE_MESSAGE_CONFIRM' => 'Are you sure you want to delete this message?',
|
||||
'DELETE_OWN_POSTS' => 'Sorry but you can only delete your own posts.',
|
||||
'DELETE_PERMANENTLY' => 'Delete permanently',
|
||||
'DELETE_POST_CONFIRM' => 'Are you sure you want to delete this post?',
|
||||
'DELETE_POST_PERMANENTLY_CONFIRM' => 'Are you sure you want to <strong>permanently</strong> delete this post?',
|
||||
'DELETE_POST_PERMANENTLY' => array(
|
||||
1 => 'Permanently delete this post so it can not be recovered',
|
||||
2 => 'Permanently delete %1$d posts so they can not be recovered',
|
||||
),
|
||||
'DELETE_POSTS_CONFIRM' => 'Are you sure you want to delete these posts?',
|
||||
'DELETE_POSTS_PERMANENTLY_CONFIRM' => 'Are you sure you want to <strong>permanently</strong> delete these posts?',
|
||||
'DELETE_REASON' => 'Reason for deletion',
|
||||
'DELETE_REASON_EXPLAIN' => 'The specified reason for deletion will be visible to moderators.',
|
||||
'DELETE_POST_WARN' => 'Delete this post',
|
||||
'DELETE_TOPIC_CONFIRM' => 'Are you sure you want to delete this topic?',
|
||||
'DELETE_TOPIC_PERMANENTLY' => array(
|
||||
1 => 'Permanently delete this topic so it can not be recovered',
|
||||
2 => 'Permanently delete %1$d topics so they can not be recovered',
|
||||
),
|
||||
'DELETE_TOPIC_PERMANENTLY_CONFIRM' => 'Are you sure you want to <strong>permanently</strong> delete this topic?',
|
||||
'DELETE_TOPICS_CONFIRM' => 'Are you sure you want to delete these topics?',
|
||||
'DELETE_TOPICS_PERMANENTLY_CONFIRM' => 'Are you sure you want to <strong>permanently</strong> delete these topics?',
|
||||
'DISABLE_BBCODE' => 'Disable BBCode',
|
||||
'DISABLE_MAGIC_URL' => 'Do not automatically parse URLs',
|
||||
'DISABLE_SMILIES' => 'Disable smilies',
|
||||
'DISALLOWED_CONTENT' => 'The upload was rejected because the uploaded file was identified as a possible attack vector.',
|
||||
'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_PM' => 'Draft loaded into message area, you may want to finish your private message now.<br />Your draft will be deleted after submitting this private message.',
|
||||
'DRAFT_SAVED' => 'Draft successfully saved.',
|
||||
'DRAFT_TITLE' => 'Draft title',
|
||||
|
||||
'EDIT_REASON' => 'Reason for editing this post',
|
||||
'EMPTY_FILEUPLOAD' => 'The uploaded file is empty.',
|
||||
'EMPTY_MESSAGE' => 'You must enter a message when posting.',
|
||||
'EMPTY_REMOTE_DATA' => 'File could not be uploaded, please try uploading the file manually.',
|
||||
|
||||
'FLASH_IS_OFF' => '[flash] is <em>OFF</em>',
|
||||
'FLASH_IS_ON' => '[flash] is <em>ON</em>',
|
||||
'FLOOD_ERROR' => 'You cannot make another post so soon after your last.',
|
||||
'FONT_COLOR' => 'Font colour',
|
||||
'FONT_COLOR_HIDE' => 'Hide font colour',
|
||||
'FONT_HUGE' => 'Huge',
|
||||
'FONT_LARGE' => 'Large',
|
||||
'FONT_NORMAL' => 'Normal',
|
||||
'FONT_SIZE' => 'Font size',
|
||||
'FONT_SMALL' => 'Small',
|
||||
'FONT_TINY' => 'Tiny',
|
||||
|
||||
'GENERAL_UPLOAD_ERROR' => 'Could not upload attachment to %s.',
|
||||
|
||||
'IMAGES_ARE_OFF' => '[img] is <em>OFF</em>',
|
||||
'IMAGES_ARE_ON' => '[img] is <em>ON</em>',
|
||||
'INVALID_FILENAME' => '%s is an invalid filename.',
|
||||
|
||||
'LOAD' => 'Load',
|
||||
'LOAD_DRAFT' => 'Load draft',
|
||||
'LOAD_DRAFT_EXPLAIN' => 'Here you are able to select the draft you want to continue writing. Your current post will be cancelled, all current post contents will be deleted. View, edit and delete drafts within your User Control Panel.',
|
||||
'LOGIN_EXPLAIN_BUMP' => 'You need to login in order to bump topics within this forum.',
|
||||
'LOGIN_EXPLAIN_DELETE' => 'You need to login in order to delete posts within this forum.',
|
||||
'LOGIN_EXPLAIN_SOFT_DELETE' => 'You need to login in order to soft-delete posts within this forum.',
|
||||
'LOGIN_EXPLAIN_POST' => 'You need to login in order to post within this forum.',
|
||||
'LOGIN_EXPLAIN_QUOTE' => 'You need to login in order to quote posts within this forum.',
|
||||
'LOGIN_EXPLAIN_REPLY' => 'You need to login in order to reply to topics within this forum.',
|
||||
|
||||
'MAX_FONT_SIZE_EXCEEDED' => 'You may only use fonts up to size %d.',
|
||||
'MAX_FLASH_HEIGHT_EXCEEDED' => array(
|
||||
1 => 'Your flash files may only be up to %d pixel high.',
|
||||
2 => 'Your flash files may only be up to %d pixels high.',
|
||||
),
|
||||
'MAX_FLASH_WIDTH_EXCEEDED' => array(
|
||||
1 => 'Your flash files may only be up to %d pixel wide.',
|
||||
2 => 'Your flash files may only be up to %d pixels wide.',
|
||||
),
|
||||
'MAX_IMG_HEIGHT_EXCEEDED' => array(
|
||||
1 => 'Your images may only be up to %1$d pixel high.',
|
||||
2 => 'Your images may only be up to %1$d pixels high.',
|
||||
),
|
||||
'MAX_IMG_WIDTH_EXCEEDED' => array(
|
||||
1 => 'Your images may only be up to %d pixel wide.',
|
||||
2 => 'Your images may only be up to %d pixels wide.',
|
||||
),
|
||||
|
||||
'MESSAGE_BODY_EXPLAIN' => array(
|
||||
0 => '', // zero means no limit, so we don't view a message here.
|
||||
1 => 'Enter your message here, it may contain no more than <strong>%d</strong> character.',
|
||||
2 => 'Enter your message here, it may contain no more than <strong>%d</strong> characters.',
|
||||
),
|
||||
'MESSAGE_DELETED' => 'This message has been deleted successfully.',
|
||||
'MORE_SMILIES' => 'View more smilies',
|
||||
|
||||
'NOTIFY_REPLY' => 'Notify me when a reply is posted',
|
||||
'NOT_UPLOADED' => 'File could not be uploaded.',
|
||||
'NO_DELETE_POLL_OPTIONS' => 'You cannot delete existing poll options.',
|
||||
'NO_PM_ICON' => 'No PM icon',
|
||||
'NO_POLL_TITLE' => 'You have to enter a poll title.',
|
||||
'NO_POST' => 'The requested post does not exist.',
|
||||
'NO_POST_MODE' => 'No post mode specified.',
|
||||
'NO_TEMP_DIR' => 'Temporary folder could not be found or is not writable.',
|
||||
|
||||
'PARTIAL_UPLOAD' => 'The uploaded file was only partially uploaded.',
|
||||
'PHP_UPLOAD_STOPPED' => 'A PHP extension has stopped the file upload.',
|
||||
'PHP_SIZE_NA' => 'The attachment’s file size is too large.<br />Could not determine the maximum size defined by PHP in php.ini.',
|
||||
'PHP_SIZE_OVERRUN' => 'The attachment’s file size is too large, the maximum upload size is %1$d %2$s.<br />Please note this is set in php.ini and cannot be overridden.',
|
||||
'PLACE_INLINE' => 'Place inline',
|
||||
'POLL_DELETE' => 'Delete poll',
|
||||
'POLL_FOR' => 'Run poll for',
|
||||
'POLL_FOR_EXPLAIN' => 'Enter 0 for a never ending poll.',
|
||||
'POLL_MAX_OPTIONS' => 'Options per user',
|
||||
'POLL_MAX_OPTIONS_EXPLAIN' => 'This is the number of options each user may select when voting.',
|
||||
'POLL_OPTIONS' => 'Poll options',
|
||||
'POLL_OPTIONS_EXPLAIN' => array(
|
||||
1 => 'Place each option on a new line. You may enter <strong>%d</strong> option.',
|
||||
2 => 'Place each option on a new line. You may enter up to <strong>%d</strong> options.',
|
||||
),
|
||||
'POLL_OPTIONS_EDIT_EXPLAIN' => array(
|
||||
1 => 'Place each option on a new line. You may enter <strong>%d</strong> option. If you remove or add options all previous votes will be reset.',
|
||||
2 => 'Place each option on a new line. You may enter up to <strong>%d</strong> options. If you remove or add options all previous votes will be reset.',
|
||||
),
|
||||
'POLL_QUESTION' => 'Poll question',
|
||||
'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_VOTE_CHANGE' => 'Allow re-voting',
|
||||
'POLL_VOTE_CHANGE_EXPLAIN' => 'If enabled users are able to change their vote.',
|
||||
'POSTED_ATTACHMENTS' => 'Posted attachments',
|
||||
'POST_APPROVAL_NOTIFY' => 'You will be notified when your post has been approved.',
|
||||
'POST_CONFIRMATION' => 'Confirmation of post',
|
||||
'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 post has been deleted successfully.',
|
||||
'POST_EDITED' => 'This post has been edited successfully.',
|
||||
'POST_EDITED_MOD' => 'This post has been edited successfully, but it will need to be approved by a moderator before it is publicly viewable.',
|
||||
'POST_GLOBAL' => 'Global',
|
||||
'POST_ICON' => 'Post icon',
|
||||
'POST_NORMAL' => 'Normal',
|
||||
'POST_REVIEW' => 'Post review',
|
||||
'POST_REVIEW_EDIT' => 'Post review',
|
||||
'POST_REVIEW_EDIT_EXPLAIN' => 'This post has been altered by another user while you were editing it. You may wish to review the current version of this post and adjust your edits.',
|
||||
'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_MOD' => 'This message has been submitted successfully, but it will need to be approved by a moderator before it is publicly viewable.',
|
||||
'POST_TOPIC_AS' => 'Post topic as',
|
||||
'PROGRESS_BAR' => 'Progress bar',
|
||||
|
||||
'QUOTE_DEPTH_EXCEEDED' => array(
|
||||
1 => 'You may embed only %d quote within each other.',
|
||||
2 => 'You may embed only %d quotes within each other.',
|
||||
),
|
||||
'QUOTE_NO_NESTING' => 'You may not embed quotes within each other.',
|
||||
|
||||
'REMOTE_UPLOAD_TIMEOUT' => 'The specified file could not be uploaded because the request timed out.',
|
||||
'SAVE' => 'Save',
|
||||
'SAVE_DATE' => 'Saved at',
|
||||
'SAVE_DRAFT' => 'Save draft',
|
||||
'SAVE_DRAFT_CONFIRM' => 'Please note that saved drafts only include the subject and the message, any other element will be removed. Do you want to save your draft now?',
|
||||
'SMILIES' => 'Smilies',
|
||||
'SMILIES_ARE_OFF' => 'Smilies are <em>OFF</em>',
|
||||
'SMILIES_ARE_ON' => 'Smilies are <em>ON</em>',
|
||||
'STICKY_ANNOUNCE_TIME_LIMIT'=> 'Sticky/Announcement/Global time limit',
|
||||
'STICK_TOPIC_FOR' => 'Stick topic for',
|
||||
'STICK_TOPIC_FOR_EXPLAIN' => 'Enter 0 for a never ending Sticky/Announcement/Global. Please note that this number is relative to the date of the post.',
|
||||
'STYLES_TIP' => 'Tip: Styles can be applied quickly to selected text.',
|
||||
|
||||
'TOO_FEW_CHARS' => 'Your message contains too few characters.',
|
||||
'TOO_FEW_CHARS_LIMIT' => array(
|
||||
1 => 'You need to enter at least %1$d character.',
|
||||
2 => 'You need to enter at least %1$d characters.',
|
||||
),
|
||||
'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_CHARS' => 'Your message contains too many characters.',
|
||||
'TOO_MANY_CHARS_LIMIT' => array(
|
||||
2 => 'The maximum number of allowed characters is %1$d.',
|
||||
),
|
||||
'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_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.',
|
||||
'TOPIC_BUMPED' => 'Topic has been bumped successfully.',
|
||||
|
||||
'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.',
|
||||
'UNSUPPORTED_CHARACTERS_MESSAGE' => 'Your message contains the following unsupported characters:<br />%s',
|
||||
'UNSUPPORTED_CHARACTERS_SUBJECT' => 'Your subject contains the following unsupported characters:<br />%s',
|
||||
'UPDATE_COMMENT' => 'Update comment',
|
||||
'URL_INVALID' => 'The URL you specified is invalid.',
|
||||
'URL_NOT_FOUND' => 'The file specified could not be found.',
|
||||
'URL_IS_OFF' => '[url] is <em>OFF</em>',
|
||||
'URL_IS_ON' => '[url] is <em>ON</em>',
|
||||
'USER_CANNOT_BUMP' => 'You cannot bump topics 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_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.',
|
||||
|
||||
'VIEW_MESSAGE' => '%sView your submitted message%s',
|
||||
'VIEW_PRIVATE_MESSAGE' => '%sView your submitted private message%s',
|
||||
|
||||
'WRONG_FILESIZE' => 'The file is too big, maximum allowed size is %1$d %2$s.',
|
||||
'WRONG_SIZE' => 'The image must be at least %1$s wide, %2$s high and at most %3$s wide and %4$s high. The submitted image is %5$s wide and %6$s high.',
|
||||
));
|
||||
662
install/update/old/language/en/ucp.php
Normal file
662
install/update/old/language/en/ucp.php
Normal file
@@ -0,0 +1,662 @@
|
||||
<?php
|
||||
/**
|
||||
*
|
||||
* This file is part of the phpBB Forum Software package.
|
||||
*
|
||||
* @copyright (c) phpBB Limited <https://www.phpbb.com>
|
||||
* @license GNU General Public License, version 2 (GPL-2.0)
|
||||
*
|
||||
* For full copyright and license information, please see
|
||||
* the docs/CREDITS.txt file.
|
||||
*
|
||||
*/
|
||||
|
||||
/**
|
||||
* DO NOT CHANGE
|
||||
*/
|
||||
if (!defined('IN_PHPBB'))
|
||||
{
|
||||
exit;
|
||||
}
|
||||
|
||||
if (empty($lang) || !is_array($lang))
|
||||
{
|
||||
$lang = array();
|
||||
}
|
||||
|
||||
// DEVELOPERS PLEASE NOTE
|
||||
//
|
||||
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
||||
//
|
||||
// Placeholders can now contain order information, e.g. instead of
|
||||
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
||||
// translators to re-order the output of data while ensuring it remains correct
|
||||
//
|
||||
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
||||
// equally where a string contains only two placeholders which are used to wrap text
|
||||
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
||||
|
||||
// Privacy policy and T&C
|
||||
$lang = array_merge($lang, array(
|
||||
'TERMS_OF_USE_CONTENT' => 'By accessing “%1$s” (hereinafter “we”, “us”, “our”, “%1$s”, “%2$s”), you agree to be legally bound by the following terms. If you do not agree to be legally bound by all of the following terms then please do not access and/or use “%1$s”. We may change these at any time and we’ll do our utmost in informing you, though it would be prudent to review this regularly yourself as your continued usage of “%1$s” after changes mean you agree to be legally bound by these terms as they are updated and/or amended.<br />
|
||||
<br />
|
||||
Our forums are powered by phpBB (hereinafter “they”, “them”, “their”, “phpBB software”, “www.phpbb.com”, “phpBB Limited”, “phpBB Teams”) which is a bulletin board solution released under the “<a href="http://opensource.org/licenses/gpl-2.0.php">GNU General Public License v2</a>” (hereinafter “GPL”) and can be downloaded from <a href="https://www.phpbb.com/">www.phpbb.com</a>. The phpBB software only facilitates internet based discussions; phpBB Limited is not responsible for what we allow and/or disallow as permissible content and/or conduct. For further information about phpBB, please see: <a href="https://www.phpbb.com/">https://www.phpbb.com/</a>.<br />
|
||||
<br />
|
||||
You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-orientated or any other material that may violate any laws be it of your country, the country where “%1$s” is hosted or International Law. Doing so may lead to you being immediately and permanently banned, with notification of your Internet Service Provider if deemed required by us. The IP address of all posts are recorded to aid in enforcing these conditions. You agree that “%1$s” have the right to remove, edit, move or close any topic at any time should we see fit. As a user you agree to any information you have entered to being stored in a database. While this information will not be disclosed to any third party without your consent, neither “%1$s” nor phpBB shall be held responsible for any hacking attempt that may lead to the data being compromised.
|
||||
',
|
||||
|
||||
'PRIVACY_POLICY' => 'This policy explains in detail how “%1$s” along with its affiliated companies (hereinafter “we”, “us”, “our”, “%1$s”, “%2$s”) and phpBB (hereinafter “they”, “them”, “their”, “phpBB software”, “www.phpbb.com”, “phpBB Limited”, “phpBB Teams”) use any information collected during any session of usage by you (hereinafter “your information”).<br />
|
||||
<br />
|
||||
Your information is collected via two ways. Firstly, by browsing “%1$s” will cause the phpBB software to create a number of cookies, which are small text files that are downloaded on to your computer’s web browser temporary files. The first two cookies just contain a user identifier (hereinafter “user-id”) and an anonymous session identifier (hereinafter “session-id”), automatically assigned to you by the phpBB software. A third cookie will be created once you have browsed topics within “%1$s” and is used to store which topics have been read, thereby improving your user experience.<br />
|
||||
<br />
|
||||
We may also create cookies external to the phpBB software whilst browsing “%1$s”, though these are outside the scope of this document which is intended to only cover the pages created by the phpBB software. The second way in which we collect your information is by what you submit to us. This can be, and is not limited to: posting as an anonymous user (hereinafter “anonymous posts”), registering on “%1$s” (hereinafter “your account”) and posts submitted by you after registration and whilst logged in (hereinafter “your posts”).<br />
|
||||
<br />
|
||||
Your account will at a bare minimum contain a uniquely identifiable name (hereinafter “your user name”), a personal password used for logging into your account (hereinafter “your password”) and a personal, valid email address (hereinafter “your email”). Your information for your account at “%1$s” is protected by data-protection laws applicable in the country that hosts us. Any information beyond your user name, your password, and your email address required by “%1$s” during the registration process is either mandatory or optional, at the discretion of “%1$s”. In all cases, you have the option of what information in your account is publicly displayed. Furthermore, within your account, you have the option to opt-in or opt-out of automatically generated emails from the phpBB software.<br />
|
||||
<br />
|
||||
Your password is ciphered (a one-way hash) so that it is secure. However, it is recommended that you do not reuse the same password across a number of different websites. Your password is the means of accessing your account at “%1$s”, so please guard it carefully and under no circumstance will anyone affiliated with “%1$s”, phpBB or another 3rd party, legitimately ask you for your password. Should you forget your password for your account, you can use the “I forgot my password” feature provided by the phpBB software. This process will ask you to submit your user name and your email, then the phpBB software will generate a new password to reclaim your account.<br />
|
||||
',
|
||||
));
|
||||
|
||||
// Common language entries
|
||||
$lang = array_merge($lang, array(
|
||||
'ACCOUNT_ACTIVE' => 'Your account has now been activated. Thank you for registering.',
|
||||
'ACCOUNT_ACTIVE_ADMIN' => 'The account has now been activated.',
|
||||
'ACCOUNT_ACTIVE_PROFILE' => 'Your account has now been successfully reactivated.',
|
||||
'ACCOUNT_ADDED' => 'Thank you for registering, your account has been created. You may now login with your username and password.',
|
||||
'ACCOUNT_COPPA' => 'Your account has been created but has to be approved, please check your email for details.',
|
||||
'ACCOUNT_EMAIL_CHANGED' => 'Your account has been updated. However, this board requires account reactivation on email changes. An activation key has been sent to the new email address you provided. Please check your email for further information.',
|
||||
'ACCOUNT_EMAIL_CHANGED_ADMIN' => 'Your account has been updated. However, this board requires account reactivation by the administrators on email changes. An email has been sent to them and you will be informed when your account has been reactivated.',
|
||||
'ACCOUNT_INACTIVE' => 'Your account has been created. However, this board requires account activation. An activation key has been sent to the email address you provided. Please check your email for further information and also be sure to check your junk mail box. It may take a while to get the email depending on your email provider.',
|
||||
'ACCOUNT_INACTIVE_ADMIN' => 'Your account has been created. However, this board requires account activation by the administrator group. An email has been sent to them and you will be informed when your account has been activated.',
|
||||
'ACTIVATION_EMAIL_SENT' => 'The activation email has been sent to your email address.',
|
||||
'ACTIVATION_EMAIL_SENT_ADMIN' => 'The activation email has been sent to the administrators email addresses.',
|
||||
'ADD' => 'Add',
|
||||
'ADD_BCC' => 'Add [BCC]',
|
||||
'ADD_FOES' => 'Add new foes',
|
||||
'ADD_FOES_EXPLAIN' => 'You may enter several usernames each on a different line.',
|
||||
'ADD_FOLDER' => 'Add folder',
|
||||
'ADD_FRIENDS' => 'Add new friends',
|
||||
'ADD_FRIENDS_EXPLAIN' => 'You may enter several usernames each on a different line.',
|
||||
'ADD_NEW_RULE' => 'Add new rule',
|
||||
'ADD_RULE' => 'Add rule',
|
||||
'ADD_TO' => 'Add [To]',
|
||||
'ADD_USERS_UCP_EXPLAIN' => 'Here you can add new users to the group. You may select whether this group becomes the new default for the selected users. Please enter each username on a separate line.',
|
||||
'ADMIN_EMAIL' => 'Administrators can email me information',
|
||||
'AGREE' => 'I agree to these terms',
|
||||
'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.',
|
||||
'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_DELETED' => 'Attachments successfully deleted.',
|
||||
'ATTACHMENT_DELETED' => 'Attachment successfully deleted.',
|
||||
'AUTOLOGIN_SESSION_KEYS_DELETED'=> 'The selected "Remember Me" login keys were successfully deleted.',
|
||||
'AVATAR_CATEGORY' => 'Category',
|
||||
'AVATAR_DRIVER_GRAVATAR_TITLE' => 'Gravatar',
|
||||
'AVATAR_DRIVER_GRAVATAR_EXPLAIN'=> 'Gravatar is a service that allows you to maintain the same avatar across multiple websites. Visit <a href="http://www.gravatar.com/">Gravatar</a> for more information.',
|
||||
'AVATAR_DRIVER_LOCAL_TITLE' => 'Gallery avatar',
|
||||
'AVATAR_DRIVER_LOCAL_EXPLAIN' => 'You can choose your avatar from a locally available set of avatars.',
|
||||
'AVATAR_DRIVER_REMOTE_TITLE' => 'Remote avatar',
|
||||
'AVATAR_DRIVER_REMOTE_EXPLAIN' => 'Link to avatar images from another website.',
|
||||
'AVATAR_DRIVER_UPLOAD_TITLE' => 'Upload avatar',
|
||||
'AVATAR_DRIVER_UPLOAD_EXPLAIN' => 'Upload your own custom avatar.',
|
||||
'AVATAR_EXPLAIN' => 'Maximum dimensions; width: %1$s, height: %2$s, file size: %3$.2f KiB.',
|
||||
'AVATAR_EXPLAIN_NO_FILESIZE' => 'Maximum dimensions; width: %1$s, height: %2$s.',
|
||||
'AVATAR_FEATURES_DISABLED' => 'The avatar functionality is currently disabled.',
|
||||
'AVATAR_GALLERY' => 'Local gallery',
|
||||
'AVATAR_GENERAL_UPLOAD_ERROR' => 'Could not upload avatar to %s.',
|
||||
'AVATAR_NOT_ALLOWED' => 'Your avatar cannot be displayed because avatars have been disallowed.',
|
||||
'AVATAR_PAGE' => 'Page',
|
||||
'AVATAR_SELECT' => 'Select your avatar',
|
||||
'AVATAR_TYPE' => 'Avatar type',
|
||||
'AVATAR_TYPE_NOT_ALLOWED' => 'Your current avatar cannot be displayed because its type has been disallowed.',
|
||||
|
||||
'BACK_TO_DRAFTS' => 'Back to saved drafts',
|
||||
'BACK_TO_LOGIN' => 'Back to login screen',
|
||||
'BIRTHDAY' => 'Birthday',
|
||||
'BIRTHDAY_EXPLAIN' => 'Setting a year will list your age when it is your birthday.',
|
||||
'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_LANGUAGE' => 'My language',
|
||||
'BOARD_STYLE' => 'My board style',
|
||||
'BOARD_TIMEZONE' => 'My timezone',
|
||||
'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_DISABLED' => 'Bookmarks are disabled on this board.',
|
||||
'BOOKMARKS_REMOVED' => 'Bookmarks removed successfully.',
|
||||
|
||||
'CANNOT_EDIT_MESSAGE_TIME' => 'You can no longer edit or delete that message.',
|
||||
'CANNOT_MOVE_TO_SAME_FOLDER'=> 'Messages cannot be moved to the folder you want to remove.',
|
||||
'CANNOT_MOVE_FROM_SPECIAL' => 'Messages cannot be moved from the outbox.',
|
||||
'CANNOT_RENAME_FOLDER' => 'This folder cannot be renamed.',
|
||||
'CANNOT_REMOVE_FOLDER' => 'This folder cannot be removed.',
|
||||
'CHANGE_DEFAULT_GROUP' => 'Change default group',
|
||||
'CHANGE_PASSWORD' => 'Change password',
|
||||
'CLICK_GOTO_FOLDER' => '%1$sGo to your “%3$s” folder%2$s',
|
||||
'CLICK_RETURN_FOLDER' => '%1$sReturn to your “%3$s” folder%2$s',
|
||||
'CONFIRMATION' => 'Confirmation of registration',
|
||||
'CONFIRM_CHANGES' => 'Confirm changes',
|
||||
'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.',
|
||||
'VC_REFRESH' => 'Refresh confirmation code',
|
||||
'VC_REFRESH_EXPLAIN' => 'If you cannot read the code you can request a new one by clicking the button.',
|
||||
|
||||
'CONFIRM_PASSWORD' => 'Confirm password',
|
||||
'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_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.',
|
||||
'CREATE_FOLDER' => 'Add folder…',
|
||||
'CURRENT_IMAGE' => 'Current image',
|
||||
'CURRENT_PASSWORD' => 'Current password',
|
||||
'CURRENT_PASSWORD_EXPLAIN' => 'You must enter your current password if you wish to alter your email address or username.',
|
||||
'CURRENT_CHANGE_PASSWORD_EXPLAIN' => 'To change your password, your email address, or your username, you must enter your current password.',
|
||||
'CUR_PASSWORD_EMPTY' => 'You did not enter your current password.',
|
||||
'CUR_PASSWORD_ERROR' => 'The current password you entered is incorrect.',
|
||||
'CUSTOM_DATEFORMAT' => 'Custom…',
|
||||
|
||||
'DEFAULT_ACTION' => 'Default action',
|
||||
'DEFAULT_ACTION_EXPLAIN' => 'This action will be triggered if none of the above is applicable.',
|
||||
'DEFAULT_ADD_SIG' => 'Attach my signature by default',
|
||||
'DEFAULT_BBCODE' => 'Enable BBCode by default',
|
||||
'DEFAULT_NOTIFY' => 'Notify me upon replies by default',
|
||||
'DEFAULT_SMILIES' => 'Enable smilies by default',
|
||||
'DEFINED_RULES' => 'Defined rules',
|
||||
'DELETED_TOPIC' => 'Topic has been removed.',
|
||||
'DELETE_ATTACHMENT' => 'Delete attachment',
|
||||
'DELETE_ATTACHMENTS' => 'Delete attachments',
|
||||
'DELETE_ATTACHMENT_CONFIRM' => 'Are you sure you want to delete this attachment?',
|
||||
'DELETE_ATTACHMENTS_CONFIRM'=> 'Are you sure you want to delete these attachments?',
|
||||
'DELETE_AVATAR' => 'Delete image',
|
||||
'DELETE_COOKIES_CONFIRM' => 'Are you sure you want to delete all cookies set by this board?',
|
||||
'DELETE_MARKED_PM' => 'Delete marked messages',
|
||||
'DELETE_MARKED_PM_CONFIRM' => 'Are you sure you want to delete all marked messages?',
|
||||
'DELETE_OLDEST_MESSAGES' => 'Delete oldest messages',
|
||||
'DELETE_MESSAGE' => 'Delete message',
|
||||
'DELETE_MESSAGE_CONFIRM' => 'Are you sure you want to delete this private message?',
|
||||
'DELETE_MESSAGES_IN_FOLDER' => 'Delete all messages within removed folder',
|
||||
'DELETE_RULE' => 'Delete rule',
|
||||
'DELETE_RULE_CONFIRM' => 'Are you sure you want to delete this rule?',
|
||||
'DEMOTE_SELECTED' => 'Demote selected',
|
||||
'DISABLE_CENSORS' => 'Enable word censoring',
|
||||
'DISPLAY_GALLERY' => 'Display gallery',
|
||||
'DOMAIN_NO_MX_RECORD_EMAIL' => 'The entered email domain has no valid MX record.',
|
||||
'DOWNLOADS' => 'Downloads',
|
||||
'DRAFTS_DELETED' => 'All selected drafts were successfully deleted.',
|
||||
'DRAFTS_EXPLAIN' => 'Here you can view, edit and delete your saved drafts.',
|
||||
'DRAFT_UPDATED' => 'Draft successfully updated.',
|
||||
|
||||
'EDIT_DRAFT_EXPLAIN' => 'Here you are able to edit your draft. Drafts do not contain attachment and poll information.',
|
||||
'EMAIL_BANNED_EMAIL' => 'The email address you entered is not allowed to be used.',
|
||||
'EMAIL_REMIND' => 'This must be the email address associated with your account. If you have not changed this via your user control panel then it is the email address you registered your account with.',
|
||||
'EMAIL_TAKEN_EMAIL' => 'The entered email address is already in use.',
|
||||
'EMPTY_DRAFT' => 'You must enter a message to submit your changes.',
|
||||
'EMPTY_DRAFT_TITLE' => 'You must enter a draft title.',
|
||||
'EXPORT_AS_XML' => 'Export as XML',
|
||||
'EXPORT_AS_CSV' => 'Export as CSV',
|
||||
'EXPORT_AS_CSV_EXCEL' => 'Export as CSV (Excel)',
|
||||
'EXPORT_AS_TXT' => 'Export as TXT',
|
||||
'EXPORT_AS_MSG' => 'Export as MSG',
|
||||
'EXPORT_FOLDER' => 'Export this view',
|
||||
|
||||
'FIELD_REQUIRED' => 'The field “%s” must be completed.',
|
||||
'FIELD_TOO_SHORT' => array(
|
||||
1 => 'The field “%2$s” is too short, a minimum of %1$d character is required.',
|
||||
2 => 'The field “%2$s” is too short, a minimum of %1$d characters is required.',
|
||||
),
|
||||
'FIELD_TOO_LONG' => array(
|
||||
1 => 'The field “%2$s” is too long, a maximum of %1$d character is allowed.',
|
||||
2 => 'The field “%2$s” is too long, a maximum of %1$d characters is allowed.',
|
||||
),
|
||||
'FIELD_TOO_SMALL' => 'The value of “%2$s” is too small, a minimum value of %1$d is required.',
|
||||
'FIELD_TOO_LARGE' => 'The value of “%2$s” is too large, a maximum value of %1$d is allowed.',
|
||||
'FIELD_INVALID_CHARS_INVALID' => 'The field “%s” has invalid characters.',
|
||||
'FIELD_INVALID_CHARS_NUMBERS_ONLY' => 'The field “%s” has invalid characters, only numbers are allowed.',
|
||||
'FIELD_INVALID_CHARS_ALPHA_DOTS' => 'The field “%s” has invalid characters, only alphanumeric or . characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_ALPHA_ONLY' => 'The field “%s” has invalid characters, only alphanumeric characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_ALPHA_PUNCTUATION' => 'The field “%s” has invalid characters, only alphanumeric or _,-. characters are allowed and the first character must be alphabetic.',
|
||||
'FIELD_INVALID_CHARS_ALPHA_SPACERS' => 'The field “%s” has invalid characters, only alphanumeric, space or -+_[] characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_ALPHA_UNDERSCORE' => 'The field “%s” has invalid characters, only alphanumeric or _ characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_DOTS' => 'The field “%s” has invalid characters, only letter, number or . characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_ONLY' => 'The field “%s” has invalid characters, only letter and number characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_PUNCTUATION' => 'The field “%s” has invalid characters, only letter, number or _,-. characters are allowed and the first character must be alphabetic.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_SPACERS' => 'The field “%s” has invalid characters, only letter, number, space or -+_[] characters are allowed.',
|
||||
'FIELD_INVALID_CHARS_LETTER_NUM_UNDERSCORE' => 'The field “%s” has invalid characters, only letter, number or _ characters are allowed.',
|
||||
'FIELD_INVALID_DATE' => 'The field “%s” has an invalid date.',
|
||||
'FIELD_INVALID_URL' => 'The field “%s” has an invalid url.',
|
||||
'FIELD_INVALID_VALUE' => 'The field “%s” has an invalid value.',
|
||||
|
||||
'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_UPDATED' => 'Your foes list has been updated successfully.',
|
||||
'FOLDER_ADDED' => 'Folder successfully added.',
|
||||
'FOLDER_MESSAGE_STATUS' => array(
|
||||
1 => '%2$d out of %1$s stored',
|
||||
2 => '%2$d out of %1$s stored',
|
||||
),
|
||||
'FOLDER_NAME_EMPTY' => 'You must enter a name for this folder.',
|
||||
'FOLDER_NAME_EXIST' => 'Folder <strong>%s</strong> already exists.',
|
||||
'FOLDER_OPTIONS' => 'Folder options',
|
||||
'FOLDER_RENAMED' => 'Folder successfully renamed.',
|
||||
'FOLDER_REMOVED' => 'Folder successfully removed.',
|
||||
'FOLDER_STATUS_MSG' => array(
|
||||
1 => 'Folder is %3$d%% full (%2$d out of %1$s stored)',
|
||||
2 => 'Folder is %3$d%% full (%2$d out of %1$s stored)',
|
||||
),
|
||||
'FORWARD_PM' => 'Forward PM',
|
||||
'FORCE_PASSWORD_EXPLAIN' => 'Before you may continue browsing the board you are required to change your password.',
|
||||
'FRIEND_MESSAGE' => 'Message from friend',
|
||||
'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_OFFLINE' => 'Offline',
|
||||
'FRIENDS_ONLINE' => 'Online',
|
||||
'FRIENDS_UPDATED' => 'Your friends list has been updated successfully.',
|
||||
'FULL_FOLDER_OPTION_CHANGED'=> 'The action to take when a folder is full has been changed successfully.',
|
||||
'FWD_ORIGINAL_MESSAGE' => '-------- Original Message --------',
|
||||
'FWD_SUBJECT' => 'Subject: %s',
|
||||
'FWD_DATE' => 'Date: %s',
|
||||
'FWD_FROM' => 'From: %s',
|
||||
'FWD_TO' => 'To: %s',
|
||||
|
||||
'GLOBAL_ANNOUNCEMENT' => 'Global announcement',
|
||||
|
||||
'GRAVATAR_AVATAR_EMAIL' => 'Gravatar email',
|
||||
'GRAVATAR_AVATAR_EMAIL_EXPLAIN' => 'Enter the email address you used for registering your account on <a href="http://www.gravatar.com/">Gravatar</a>.',
|
||||
'GRAVATAR_AVATAR_SIZE' => 'Avatar dimensions',
|
||||
'GRAVATAR_AVATAR_SIZE_EXPLAIN' => 'Specify the width and height of the avatar, leave blank to attempt automatic verification.',
|
||||
|
||||
'HIDE_ONLINE' => 'Hide my online status',
|
||||
'HIDE_ONLINE_EXPLAIN' => 'Changing this setting won’t become effective until your next visit to the board.',
|
||||
'HOLD_NEW_MESSAGES' => 'Do not accept new messages (New messages will be held back until enough space is available)',
|
||||
'HOLD_NEW_MESSAGES_SHORT' => 'New messages will be held back',
|
||||
|
||||
'IF_FOLDER_FULL' => 'If folder is full',
|
||||
'IMPORTANT_NEWS' => 'Important announcements',
|
||||
'INVALID_USER_BIRTHDAY' => 'The entered birthday is not a valid date.',
|
||||
'INVALID_CHARS_USERNAME' => 'The username contains forbidden characters.',
|
||||
'INVALID_EMOJIS_USERNAME' => 'The username contains forbidden characters (Emoji).',
|
||||
'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.',
|
||||
|
||||
'JOIN_SELECTED' => 'Join selected',
|
||||
|
||||
'LANGUAGE' => 'Language',
|
||||
'LINK_REMOTE_AVATAR' => 'Link off-site',
|
||||
'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_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_LINK' => 'Link or register your account on an external service with your board account',
|
||||
'LOGIN_LINK_EXPLAIN' => 'You have attempted to login with an external service that is not yet connected to an account on this board. You must now either link this account to an existing account or create a new account.',
|
||||
'LOGIN_LINK_MISSING_DATA' => 'Data that is necessary to link your account with an external service is not available. Please restart the login process.',
|
||||
'LOGIN_LINK_NO_DATA_PROVIDED' => 'No data has been provided to this page to link an external account to a forum account. Please contact the board administrator if you continue to experience problems.',
|
||||
'LOGIN_KEY' => 'Login Key',
|
||||
'LOGIN_TIME' => 'Login Time',
|
||||
'LOGIN_REDIRECT' => 'You have been successfully logged in.',
|
||||
'LOGOUT_FAILED' => 'You were not logged out, as the request did not match your session. Please contact the board administrator if you continue to experience problems.',
|
||||
'LOGOUT_REDIRECT' => 'You have been successfully logged out.',
|
||||
|
||||
'MARK_IMPORTANT' => 'Mark/Unmark as important',
|
||||
'MARKED_MESSAGE' => 'Marked message',
|
||||
'MAX_FOLDER_REACHED' => 'Maximum number of allowed user defined folders reached.',
|
||||
'MESSAGE_BY_AUTHOR' => 'by',
|
||||
'MESSAGE_COLOURS' => 'Message colours',
|
||||
'MESSAGE_DELETED' => 'Message successfully deleted.',
|
||||
'MESSAGE_EDITED' => 'Message successfully edited.',
|
||||
'MESSAGE_HISTORY' => 'Message history',
|
||||
'MESSAGE_REMOVED_FROM_OUTBOX' => 'This message was deleted by its author.',
|
||||
'MESSAGE_REPORTED_MESSAGE' => 'Reported message',
|
||||
'MESSAGE_SENT_ON' => 'on',
|
||||
'MESSAGE_STORED' => 'This message has been sent successfully.',
|
||||
'MESSAGE_TO' => 'To',
|
||||
'MESSAGES_DELETED' => 'Messages successfully deleted',
|
||||
'MOVE_DELETED_MESSAGES_TO' => 'Move messages from removed folder to',
|
||||
'MOVE_DOWN' => 'Move down',
|
||||
'MOVE_MARKED_TO_FOLDER' => 'Move marked to %s',
|
||||
'MOVE_PM_ERROR' => array(
|
||||
1 => 'An error occurred while moving the messages to the new folder, only %2$d out of %1$s was moved.',
|
||||
2 => 'An error occurred while moving the messages to the new folder, only %2$d out of %1$s were moved.',
|
||||
),
|
||||
'MOVE_TO_FOLDER' => 'Move to folder',
|
||||
'MOVE_UP' => 'Move up',
|
||||
|
||||
'NEW_FOLDER_NAME' => 'New folder name',
|
||||
'NEW_PASSWORD' => 'New password',
|
||||
'NEW_PASSWORD_CONFIRM_EMPTY' => 'You did not enter a confirm password.',
|
||||
'NEW_PASSWORD_ERROR' => 'The passwords you entered do not match.',
|
||||
|
||||
'NOTIFICATIONS_MARK_ALL_READ' => 'Mark all notifications read',
|
||||
'NOTIFICATIONS_MARK_ALL_READ_CONFIRM' => 'Are you sure you want to mark all notifications read?',
|
||||
'NOTIFICATIONS_MARK_ALL_READ_SUCCESS' => 'All notifications have been marked read.',
|
||||
'NOTIFICATION_GROUP_MISCELLANEOUS' => 'Miscellaneous Notifications',
|
||||
'NOTIFICATION_GROUP_MODERATION' => 'Moderation Notifications',
|
||||
'NOTIFICATION_GROUP_ADMINISTRATION' => 'Administration Notifications',
|
||||
'NOTIFICATION_GROUP_POSTING' => 'Posting Notifications',
|
||||
'NOTIFICATION_METHOD_BOARD' => 'Notifications',
|
||||
'NOTIFICATION_METHOD_EMAIL' => 'Email',
|
||||
'NOTIFICATION_METHOD_JABBER' => 'Jabber',
|
||||
'NOTIFICATION_TYPE' => 'Notification type',
|
||||
'NOTIFICATION_TYPE_BOOKMARK' => 'Someone replies to a topic you have bookmarked',
|
||||
'NOTIFICATION_TYPE_GROUP_REQUEST' => 'Someone requests to join a group you lead',
|
||||
'NOTIFICATION_TYPE_IN_MODERATION_QUEUE' => 'A post or topic needs approval',
|
||||
'NOTIFICATION_TYPE_MODERATION_QUEUE' => 'Your topics/posts are approved or disapproved by a moderator',
|
||||
'NOTIFICATION_TYPE_PM' => 'Someone sends you a private message',
|
||||
'NOTIFICATION_TYPE_POST' => 'Someone replies to a topic to which you are subscribed',
|
||||
'NOTIFICATION_TYPE_QUOTE' => 'Someone quotes you in a post',
|
||||
'NOTIFICATION_TYPE_REPORT' => 'Someone reports a post',
|
||||
'NOTIFICATION_TYPE_TOPIC' => 'Someone creates a topic in a forum to which you are subscribed',
|
||||
'NOTIFICATION_TYPE_ADMIN_ACTIVATE_USER' => 'User requiring activation',
|
||||
|
||||
'NOTIFY_METHOD' => 'Notification method',
|
||||
'NOTIFY_METHOD_BOTH' => 'Both',
|
||||
'NOTIFY_METHOD_EMAIL' => 'Email only',
|
||||
'NOTIFY_METHOD_EXPLAIN' => 'Method for sending messages sent via this board.',
|
||||
'NOTIFY_METHOD_IM' => 'Jabber only',
|
||||
'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_BOTS' => 'You cannot add bots 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_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_ANONYMOUS' => 'You cannot add the anonymous user to your foes list.',
|
||||
'NOT_ADDED_FOES_BOTS' => 'You cannot add bots 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_SELF' => 'You cannot add yourself to the foes list.',
|
||||
'NOT_AGREE' => 'I do not agree to these terms',
|
||||
'NOT_ENOUGH_SPACE_FOLDER' => 'The destination folder “%s” seems to be full. The requested action has not been taken.',
|
||||
'NOT_MOVED_MESSAGES' => array(
|
||||
1 => 'You have %d private message currently on hold because of full folder.',
|
||||
2 => 'You have %d private messages currently on hold because of full folder.',
|
||||
),
|
||||
'NO_ACTION_MODE' => 'No message action specified.',
|
||||
'NO_AUTHOR' => 'No author defined for this message',
|
||||
'NO_AVATAR' => 'No avatar selected',
|
||||
'NO_AVATAR_CATEGORY' => 'None',
|
||||
|
||||
'NO_AUTH_DELETE_MESSAGE' => 'You are not authorised to delete private messages.',
|
||||
'NO_AUTH_EDIT_MESSAGE' => 'You are not authorised to edit private messages.',
|
||||
'NO_AUTH_FORWARD_MESSAGE' => 'You are not authorised to forward private messages.',
|
||||
'NO_AUTH_GROUP_MESSAGE' => 'You are not authorised to send private messages to groups.',
|
||||
'NO_AUTH_PROFILEINFO' => 'You are not authorised to change your profile information.',
|
||||
'NO_AUTH_READ_HOLD_MESSAGE' => 'You are not authorised to read private messages that are on hold.',
|
||||
'NO_AUTH_READ_MESSAGE' => 'You are not authorised to read private messages.',
|
||||
'NO_AUTH_PRINT_MESSAGE' => 'You are not authorised to print private messages.',
|
||||
'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 to send private messages.',
|
||||
'NO_AUTH_SIGNATURE' => 'You are not authorised to define a signature.',
|
||||
|
||||
'NO_BCC_RECIPIENT' => 'None',
|
||||
'NO_BOOKMARKS' => 'You have no bookmarks.',
|
||||
'NO_BOOKMARKS_SELECTED' => 'You have selected no bookmarks.',
|
||||
'NO_EDIT_READ_MESSAGE' => 'Private message cannot be edited because it has already been read.',
|
||||
'NO_EMAIL_USER' => 'The email/username information submitted could not be found.',
|
||||
'EMAIL_NOT_UNIQUE' => 'Email you specified is used by multiple users. You must specify username as well.',
|
||||
'NO_FOES' => 'No foes currently defined',
|
||||
'NO_FRIENDS' => 'No friends currently defined',
|
||||
'NO_FRIENDS_OFFLINE' => 'No friends offline',
|
||||
'NO_FRIENDS_ONLINE' => 'No friends online',
|
||||
'NO_GROUP_SELECTED' => 'No group specified.',
|
||||
'NO_IMPORTANT_NEWS' => 'No important announcements present.',
|
||||
'NO_MESSAGE' => 'Private message could not be found.',
|
||||
'NO_NEW_FOLDER_NAME' => 'You have to specify a new folder name.',
|
||||
'NO_NEWER_PM' => 'No newer messages.',
|
||||
'NO_OLDER_PM' => 'No older messages.',
|
||||
'NO_PASSWORD_SUPPLIED' => 'You cannot login without a password.',
|
||||
'NO_RECIPIENT' => 'No recipient defined.',
|
||||
'NO_RULES_DEFINED' => 'No rules defined.',
|
||||
'NO_SAVED_DRAFTS' => 'No drafts saved.',
|
||||
'NO_TO_RECIPIENT' => 'None',
|
||||
'NO_WATCHED_FORUMS' => 'You are not subscribed to any forums.',
|
||||
'NO_WATCHED_SELECTED' => 'You have not selected any subscribed topics or forums.',
|
||||
'NO_WATCHED_TOPICS' => 'You are not subscribed to any topics.',
|
||||
|
||||
'PASS_TYPE_ALPHA_EXPLAIN' => 'Password must be between %1$s and %2$s long, must contain letters in mixed case and must contain numbers.',
|
||||
'PASS_TYPE_ANY_EXPLAIN' => 'Must be between %1$s and %2$s.',
|
||||
'PASS_TYPE_CASE_EXPLAIN' => 'Password must be between %1$s and %2$s long and must contain letters in mixed case.',
|
||||
'PASS_TYPE_SYMBOL_EXPLAIN' => 'Password must be between %1$s and %2$s long, must contain letters in mixed case, must contain numbers and must contain symbols.',
|
||||
'PASSWORD' => 'Password',
|
||||
'PASSWORD_ACTIVATED' => 'Your new password has been activated.',
|
||||
'PASSWORD_UPDATED_IF_EXISTED' => 'If your account exists, a new password was sent to your registered email address. If you do not receive an email, it may be because you are banned, your account is not activated, or you are not allowed to change your password. Contact admin if any of those reasons apply. Also, check your spam filter.',
|
||||
'PERMISSIONS_RESTORED' => 'Successfully restored original permissions.',
|
||||
'PERMISSIONS_TRANSFERRED' => 'Successfully transferred permissions from <strong>%s</strong>, you are now able to browse the board with this user’s 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_FROM' => 'From',
|
||||
'PM_FROM_REMOVED_AUTHOR' => 'This message was sent by a user no longer registered.',
|
||||
'PM_ICON' => 'PM icon',
|
||||
'PM_INBOX' => 'Inbox',
|
||||
'PM_MARK_ALL_READ' => 'Mark all messages read',
|
||||
'PM_MARK_ALL_READ_SUCCESS' => 'All private messages in this folder have been marked read',
|
||||
'PM_NO_USERS' => 'The requested users to be added do not exist.',
|
||||
'PM_OUTBOX' => 'Outbox',
|
||||
'PM_SENTBOX' => 'Sent messages',
|
||||
'PM_SUBJECT' => 'Message subject',
|
||||
'PM_TO' => 'Send to',
|
||||
'PM_TOOLS' => 'Message tools',
|
||||
'PM_USERS_REMOVED_NO_PERMISSION' => 'Some users couldn’t be added as they do not have permission to read private messages.',
|
||||
'PM_USERS_REMOVED_NO_PM' => 'Some users couldn’t be added as they have disabled private message receipt.',
|
||||
'POST_EDIT_PM' => 'Edit message',
|
||||
'POST_FORWARD_PM' => 'Forward message',
|
||||
'POST_NEW_PM' => 'Compose message',
|
||||
'POST_PM_LOCKED' => 'Private messaging is locked.',
|
||||
'POST_PM_POST' => 'Quote post',
|
||||
'POST_QUOTE_PM' => 'Quote message',
|
||||
'POST_REPLY_PM' => 'Reply to message',
|
||||
'PRINT_PM' => 'Print view',
|
||||
'PREFERENCES_UPDATED' => 'Your preferences have been updated.',
|
||||
'PROFILE_INFO_NOTICE' => 'Please note that this information may be viewable to other members. Be careful when including any personal details. Any fields marked with a * must be completed.',
|
||||
'PROFILE_UPDATED' => 'Your profile has been updated.',
|
||||
'PROFILE_AUTOLOGIN_KEYS' => 'The "Remember Me" login keys automatically log you in when you visit the board. If you logout, the remember me login key is deleted only on the computer you are using to logout. Here you can see remember login keys created on other computers you used to access this site.',
|
||||
'PROFILE_NO_AUTOLOGIN_KEYS' => 'There are no saved "Remember Me" login keys.',
|
||||
|
||||
'RECIPIENT' => 'Recipient',
|
||||
'RECIPIENTS' => 'Recipients',
|
||||
'REGISTRATION' => 'Registration',
|
||||
'RELEASE_MESSAGES' => '%sRelease all on-hold messages%s… they will be re-sorted into the appropriate folder if enough space is made available.',
|
||||
'REMOVE_ADDRESS' => 'Remove address',
|
||||
'REMOVE_SELECTED_BOOKMARKS' => 'Remove selected bookmarks',
|
||||
'REMOVE_SELECTED_BOOKMARKS_CONFIRM' => 'Are you sure you want to delete all selected bookmarks?',
|
||||
'REMOVE_BOOKMARK_MARKED' => 'Remove marked bookmarks',
|
||||
'REMOVE_FOLDER' => 'Remove folder',
|
||||
'REMOVE_FOLDER_CONFIRM' => 'Are you sure you want to remove this folder?',
|
||||
'RENAME' => 'Rename',
|
||||
'RENAME_FOLDER' => 'Rename folder',
|
||||
'REPLIED_MESSAGE' => 'Replied to message',
|
||||
'REPLY_TO_ALL' => 'Reply to sender and all recipients.',
|
||||
'REPORT_PM' => 'Report private message',
|
||||
'RESIGN_SELECTED' => 'Resign selected',
|
||||
'RETURN_FOLDER' => '%1$sReturn to previous folder%2$s',
|
||||
'RETURN_UCP' => '%sReturn to the User Control Panel%s',
|
||||
'RULE_ADDED' => 'Rule successfully added.',
|
||||
'RULE_ALREADY_DEFINED' => 'This rule was defined previously.',
|
||||
'RULE_DELETED' => 'Rule successfully removed.',
|
||||
'RULE_LIMIT_REACHED' => 'You cannot add more PM rules. You have reached the maximum number of rules.',
|
||||
'RULE_NOT_DEFINED' => 'Rule not correctly specified.',
|
||||
'RULE_REMOVED_MESSAGES' => array(
|
||||
1 => '%d private message was removed due to private message filters.',
|
||||
2 => '%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.',
|
||||
'SEARCH_YOUR_POSTS' => 'Show your posts',
|
||||
'SEND_PASSWORD' => 'Send password',
|
||||
'SENT_AT' => 'Sent', // Used before dates in private messages
|
||||
'SHOW_EMAIL' => 'Users can contact me by email',
|
||||
'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_TOO_LONG' => 'Your signature is too long.',
|
||||
'SELECT_CURRENT_TIME' => 'Select current time',
|
||||
'SELECT_TIMEZONE' => 'Select timezone',
|
||||
'SORT' => 'Sort',
|
||||
'SORT_COMMENT' => 'File comment',
|
||||
'SORT_DOWNLOADS' => 'Downloads',
|
||||
'SORT_EXTENSION' => 'Extension',
|
||||
'SORT_FILENAME' => 'Filename',
|
||||
'SORT_POST_TIME' => 'Post time',
|
||||
'SORT_SIZE' => 'File size',
|
||||
|
||||
'TIMEZONE' => 'Timezone',
|
||||
'TIMEZONE_DATE_SUGGESTION' => 'Suggestion: %s',
|
||||
'TIMEZONE_INVALID' => 'The timezone you selected is invalid.',
|
||||
'TO' => 'Recipient',
|
||||
'TO_MASS' => 'Recipients',
|
||||
'TO_ADD' => 'Add recipient',
|
||||
'TO_ADD_MASS' => 'Add recipients',
|
||||
'TO_ADD_GROUPS' => 'Add groups',
|
||||
'TOO_MANY_RECIPIENTS' => 'You tried to send a private message to too many recipients.',
|
||||
'TOO_MANY_REGISTERS' => 'You have exceeded the maximum number of registration attempts for this session. Please try again later.',
|
||||
|
||||
'UCP' => 'User Control Panel',
|
||||
'UCP_ACTIVATE' => 'Activate account',
|
||||
'UCP_ADMIN_ACTIVATE' => 'Please note that you will need to enter a valid email address before your account is activated. The administrator will review your account and if approved you will receive an email at the address you specified.',
|
||||
'UCP_ATTACHMENTS' => 'Attachments',
|
||||
'UCP_AUTH_LINK' => 'External accounts',
|
||||
'UCP_AUTH_LINK_ASK' => 'You currently have no account associated with this external service. Click the button below to link your board account to an account with this external service.',
|
||||
'UCP_AUTH_LINK_ID' => 'Unique identifier',
|
||||
'UCP_AUTH_LINK_LINK' => 'Link',
|
||||
'UCP_AUTH_LINK_MANAGE' => 'Manage external account associations',
|
||||
'UCP_AUTH_LINK_NOT_SUPPORTED' => 'Linking board accounts to external services is not supported by this board’s current authentication method.',
|
||||
'UCP_AUTH_LINK_TITLE' => 'Manage your external account associations',
|
||||
'UCP_AUTH_LINK_UNLINK' => 'Unlink',
|
||||
'UCP_COPPA_BEFORE' => 'Before %s',
|
||||
'UCP_COPPA_ON_AFTER' => 'On or after %s',
|
||||
'UCP_EMAIL_ACTIVATE' => 'Please note that you will need to enter a valid email address before your account is activated. You will receive an email at the address you provide that contains an account activation link.',
|
||||
'UCP_JABBER' => 'Jabber address',
|
||||
'UCP_LOGIN_LINK' => 'Set up an external account association',
|
||||
|
||||
'UCP_MAIN' => 'Overview',
|
||||
'UCP_MAIN_ATTACHMENTS' => 'Manage attachments',
|
||||
'UCP_MAIN_BOOKMARKS' => 'Manage bookmarks',
|
||||
'UCP_MAIN_DRAFTS' => 'Manage drafts',
|
||||
'UCP_MAIN_FRONT' => 'Front page',
|
||||
'UCP_MAIN_SUBSCRIBED' => 'Manage subscriptions',
|
||||
|
||||
'UCP_NO_ATTACHMENTS' => 'You have posted no files.',
|
||||
|
||||
'UCP_NOTIFICATION_LIST' => 'Manage notifications',
|
||||
'UCP_NOTIFICATION_LIST_EXPLAIN' => 'Here you may view all past notifications.',
|
||||
'UCP_NOTIFICATION_OPTIONS' => 'Edit notification options',
|
||||
'UCP_NOTIFICATION_OPTIONS_EXPLAIN' => 'Here you can set your preferred notification methods for the board.',
|
||||
|
||||
'UCP_PREFS' => 'Board preferences',
|
||||
'UCP_PREFS_PERSONAL' => 'Edit global settings',
|
||||
'UCP_PREFS_POST' => 'Edit posting defaults',
|
||||
'UCP_PREFS_VIEW' => 'Edit display options',
|
||||
|
||||
'UCP_PM' => 'Private messages',
|
||||
'UCP_PM_COMPOSE' => 'Compose message',
|
||||
'UCP_PM_DRAFTS' => 'Manage PM drafts',
|
||||
'UCP_PM_OPTIONS' => 'Rules, folders & settings',
|
||||
'UCP_PM_UNREAD' => 'Unread messages',
|
||||
'UCP_PM_VIEW' => 'View messages',
|
||||
|
||||
'UCP_PROFILE' => 'Profile',
|
||||
'UCP_PROFILE_AVATAR' => 'Edit avatar',
|
||||
'UCP_PROFILE_PROFILE_INFO' => 'Edit profile',
|
||||
'UCP_PROFILE_REG_DETAILS' => 'Edit account settings',
|
||||
'UCP_PROFILE_SIGNATURE' => 'Edit signature',
|
||||
'UCP_PROFILE_AUTOLOGIN_KEYS'=> 'Manage “Remember Me” login keys',
|
||||
|
||||
'UCP_USERGROUPS' => 'Usergroups',
|
||||
'UCP_USERGROUPS_MEMBER' => 'Edit memberships',
|
||||
'UCP_USERGROUPS_MANAGE' => 'Manage groups',
|
||||
|
||||
'UCP_PASSWORD_RESET_DISABLED' => 'The password reset functionality has been disabled. If you need help accessing your account, please contact the %sBoard Administrator%s',
|
||||
'UCP_REGISTER_DISABLE' => 'Creating a new account is currently not possible.',
|
||||
'UCP_REMIND' => 'Send password',
|
||||
'UCP_RESEND' => 'Send activation email',
|
||||
'UCP_WELCOME' => 'Welcome to the User Control Panel. From here you can monitor, view and update your profile, preferences, subscribed forums and topics. You can also send messages to other users (if permitted). Please ensure you read any announcements before continuing.',
|
||||
'UCP_ZEBRA' => 'Friends & Foes',
|
||||
'UCP_ZEBRA_FOES' => 'Manage foes',
|
||||
'UCP_ZEBRA_FRIENDS' => 'Manage friends',
|
||||
'UNDISCLOSED_RECIPIENT' => 'Undisclosed Recipient',
|
||||
'UNKNOWN_FOLDER' => 'Unknown folder',
|
||||
'UNWATCH_MARKED' => 'Unwatch marked',
|
||||
'UPLOAD_AVATAR_FILE' => 'Upload from your machine',
|
||||
'UPLOAD_AVATAR_URL' => 'Upload from a URL',
|
||||
'UPLOAD_AVATAR_URL_EXPLAIN' => 'Enter the URL of the location containing the image. The image will be copied to this site.',
|
||||
'USERNAME_ALPHA_ONLY_EXPLAIN' => 'Username must be between %1$s and %2$s long and use only alphanumeric characters.',
|
||||
'USERNAME_ALPHA_SPACERS_EXPLAIN'=> 'Username must be between %1$s and %2$s long and use alphanumeric, space or -+_[] characters.',
|
||||
'USERNAME_ASCII_EXPLAIN' => 'Username must be between %1$s and %2$s long and use only ASCII characters, so no special symbols.',
|
||||
'USERNAME_LETTER_NUM_EXPLAIN' => 'Username must be between %1$s and %2$s long and use only letter or number characters.',
|
||||
'USERNAME_LETTER_NUM_SPACERS_EXPLAIN'=> 'Username must be between %1$s and %2$s long and use letter, number, space or -+_[] characters.',
|
||||
'USERNAME_CHARS_ANY_EXPLAIN' => 'Length must be between %1$s and %2$s.',
|
||||
'USERNAME_TAKEN_USERNAME' => 'The username you entered is already in use, please select an alternative.',
|
||||
'USERNAME_DISALLOWED_USERNAME' => 'The username you entered has been disallowed or contains a disallowed word. Please choose a different name.',
|
||||
'USER_NOT_FOUND_OR_INACTIVE' => 'The usernames you specified could either not be found or are not activated users.',
|
||||
|
||||
'VIEW_AVATARS' => 'Display avatars',
|
||||
'VIEW_EDIT' => 'View/Edit',
|
||||
'VIEW_FLASH' => 'Display Flash animations',
|
||||
'VIEW_IMAGES' => 'Display images within posts',
|
||||
'VIEW_NEXT_HISTORY' => 'Next PM in history',
|
||||
'VIEW_NEXT_PM' => 'Next PM',
|
||||
'VIEW_PM' => 'View message',
|
||||
'VIEW_PM_INFO' => 'Message details',
|
||||
'VIEW_PM_MESSAGES' => array(
|
||||
1 => '%d message',
|
||||
2 => '%d messages',
|
||||
),
|
||||
'VIEW_PREVIOUS_HISTORY' => 'Previous PM in history',
|
||||
'VIEW_PREVIOUS_PM' => 'Previous PM',
|
||||
'VIEW_PROFILE' => 'View profile',
|
||||
'VIEW_SIGS' => 'Display signatures',
|
||||
'VIEW_SMILIES' => 'Display smilies as images',
|
||||
'VIEW_TOPICS_DAYS' => 'Display topics from previous days',
|
||||
'VIEW_TOPICS_DIR' => 'Display topic order direction',
|
||||
'VIEW_TOPICS_KEY' => 'Display topics ordering by',
|
||||
'VIEW_POSTS_DAYS' => 'Display posts from previous days',
|
||||
'VIEW_POSTS_DIR' => 'Display post order direction',
|
||||
'VIEW_POSTS_KEY' => 'Display posts ordering by',
|
||||
|
||||
'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_TOPICS' => 'Watched topics',
|
||||
'WRONG_ACTIVATION' => 'The activation key you supplied does not match any in the database.',
|
||||
|
||||
'YOUR_DETAILS' => 'Your activity',
|
||||
'YOUR_FOES' => 'Your foes',
|
||||
'YOUR_FOES_EXPLAIN' => 'To remove usernames select them and click submit.',
|
||||
'YOUR_FRIENDS' => 'Your friends',
|
||||
'YOUR_FRIENDS_EXPLAIN' => 'To remove usernames select them and click submit.',
|
||||
'YOUR_WARNINGS' => 'Your warning level',
|
||||
|
||||
'PM_ACTION' => array(
|
||||
'PLACE_INTO_FOLDER' => 'Place into folder',
|
||||
'MARK_AS_READ' => 'Mark as read',
|
||||
'MARK_AS_IMPORTANT' => 'Mark message',
|
||||
'DELETE_MESSAGE' => 'Delete message',
|
||||
),
|
||||
'PM_CHECK' => array(
|
||||
'SUBJECT' => 'Subject',
|
||||
'SENDER' => 'Sender',
|
||||
'MESSAGE' => 'Message',
|
||||
'STATUS' => 'Message status',
|
||||
'TO' => 'Sent To',
|
||||
),
|
||||
'PM_RULE' => array(
|
||||
'IS_LIKE' => 'is like',
|
||||
'IS_NOT_LIKE' => 'is not like',
|
||||
'IS' => 'is',
|
||||
'IS_NOT' => 'is not',
|
||||
'BEGINS_WITH' => 'begins with',
|
||||
'ENDS_WITH' => 'ends with',
|
||||
'IS_FRIEND' => 'is friend',
|
||||
'IS_FOE' => 'is foe',
|
||||
'IS_USER' => 'is user',
|
||||
'IS_GROUP' => 'is in usergroup',
|
||||
'ANSWERED' => 'answered',
|
||||
'FORWARDED' => 'forwarded',
|
||||
'TO_GROUP' => 'to my default usergroup',
|
||||
'TO_ME' => 'to me',
|
||||
),
|
||||
|
||||
'GROUPS_EXPLAIN' => 'Usergroups enable board admins to better administer users. By default you will be placed in a specific group, this is your default group. This group defines how you may appear to other users, for example your username colouration, avatar, rank, etc. Depending on whether the administrator allows it you may be allowed to change your default group. You may also be placed in or allowed to join other groups. Some groups may give you additional permissions to view content or increase your capabilities in other areas.',
|
||||
'GROUP_LEADER' => 'Leaderships',
|
||||
'GROUP_MEMBER' => 'Memberships',
|
||||
'GROUP_PENDING' => 'Pending memberships',
|
||||
'GROUP_NONMEMBER' => 'Non-memberships',
|
||||
'GROUP_DETAILS' => 'Group details',
|
||||
|
||||
'NO_LEADER' => 'No group leaderships',
|
||||
'NO_MEMBER' => 'No group memberships',
|
||||
'NO_PENDING' => 'No pending memberships',
|
||||
'NO_NONMEMBER' => 'No non-member groups',
|
||||
));
|
||||
Reference in New Issue
Block a user