mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-06 16:56:44 +02:00
Merge remote-tracking branch 'phpbb/develop' into feature/softdelete-1-permission
* phpbb/develop: (704 commits) [ticket/11630] Improvements to the PHP lint pre-commit hook [feature/auth-refactor] Move auth providers to separate directory [ticket/11619] Use HTTP/1.0 because of lack of chunked-encoding handling. [ticket/11619] Some tests for get_remote_file(). [ticket/11617] Remove spaces and tabs from empty lines [ticket/11617] Missing U_ACTION in acp_captcha.php [feature/auth-refactor] Fix code style issue [feature/auth-refactor] Fix comment grammar [feature/auth-refactor] Fix the actual cause of test failures [ticket/10838] Fix URL for wiki and remove irrelevant line [ticket/10838] Remove php 5.4 and builtin server references [ticket/10838] Fix missing data [ticket/10838] separate database used mentioned in unit tests [ticket/11585] Make $auth_admin class property [feature/auth-refactor] A possible fix for the functional test failures [ticket/11566] Subsilver template error displayed after table headers [ticket/11566] Remove extra pair of brackets from conditional statement [ticket/11566] Check that guest doesn't have reporting permission by default [ticket/11566] Add captcha to report post template in subsilver [ticket/11566] Use the new constant CONFIRM_REPORT for captcha init ... Conflicts: phpBB/docs/sphinx.sample.conf phpBB/feed.php phpBB/styles/prosilver/template/search_results.html phpBB/styles/prosilver/template/viewforum_body.html
This commit is contained in:
@@ -37,6 +37,8 @@ if (empty($lang) || !is_array($lang))
|
||||
// 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”.',
|
||||
'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.',
|
||||
@@ -452,6 +454,8 @@ $lang = array_merge($lang, array(
|
||||
'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',
|
||||
|
@@ -51,7 +51,7 @@ $lang = array_merge($lang, array(
|
||||
'LAST_ACTIVE_EXPLAIN' => 'Enter a date in <kbd>YYYY-MM-DD</kbd> format. Enter <kbd>0000-00-00</kbd> to prune users who never logged in, <em>Before</em> and <em>After</em> conditions will be ignored.',
|
||||
|
||||
'POSTS_ON_QUEUE' => 'Posts Awaiting Approval',
|
||||
'PRUNE_USERS_GROUP_EXPLAIN' => 'Selects all members of the group for pruning.',
|
||||
'PRUNE_USERS_GROUP_EXPLAIN' => 'Limit to users within the selected group.',
|
||||
'PRUNE_USERS_LIST' => 'Users to be pruned',
|
||||
'PRUNE_USERS_LIST_DELETE' => 'With the selected critera for pruning users the following accounts will be removed. You can remove individual users from the deletion list by unchecking the box next to their username.',
|
||||
'PRUNE_USERS_LIST_DEACTIVATE' => 'With the selected critera for pruning users the following accounts will be deactivated. You can remove individual users from the deactivation list by unchecking the box next to their username.',
|
||||
|
@@ -52,7 +52,7 @@ $lang = array_merge($lang, array(
|
||||
'DELETING_INDEX_IN_PROGRESS_EXPLAIN' => 'The search backend is currently cleaning its index. This can take a few minutes.',
|
||||
|
||||
'FULLTEXT_MYSQL_INCOMPATIBLE_DATABASE' => 'The MySQL fulltext backend can only be used with MySQL4 and above.',
|
||||
'FULLTEXT_MYSQL_NOT_MYISAM' => 'MySQL fulltext indexes can only be used with MyISAM tables.',
|
||||
'FULLTEXT_MYSQL_NOT_SUPPORTED' => 'MySQL fulltext indexes can only be used with MyISAM or InnoDB tables. MySQL 5.6.4 or later is required for fulltext indexes on InnoDB tables.',
|
||||
'FULLTEXT_MYSQL_TOTAL_POSTS' => 'Total number of indexed posts',
|
||||
'FULLTEXT_MYSQL_MIN_SEARCH_CHARS_EXPLAIN' => 'Words with at least this many characters will be indexed for searching. You or your host can only change this setting by changing the mysql configuration.',
|
||||
'FULLTEXT_MYSQL_MAX_SEARCH_CHARS_EXPLAIN' => 'Words with no more than this many characters will be indexed for searching. You or your host can only change this setting by changing the mysql configuration.',
|
||||
|
@@ -46,4 +46,5 @@ $lang = array_merge($lang, array(
|
||||
'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 enter both of the words displayed into the text field underneath.',
|
||||
'RECAPTCHA_SOCKET_ERROR' => 'There was a problem connecting to the RECAPTCHA service: could not open socket. Try again later.',
|
||||
));
|
||||
|
@@ -70,6 +70,9 @@ $lang = array_merge($lang, array(
|
||||
'AIM' => 'AIM',
|
||||
'AJAX_ERROR_TITLE' => 'AJAX error',
|
||||
'AJAX_ERROR_TEXT' => 'Something went wrong when processing your request.',
|
||||
'AJAX_ERROR_TEXT_ABORT' => 'User aborted request.',
|
||||
'AJAX_ERROR_TEXT_TIMEOUT' => 'Your request timed out; please try again.',
|
||||
'AJAX_ERROR_TEXT_PARSERERROR' => 'Something went wrong with the request and the server returned an invalid reply.',
|
||||
'ALLOWED' => 'Allowed',
|
||||
'ALL_FILES' => 'All files',
|
||||
'ALL_FORUMS' => 'All forums',
|
||||
@@ -313,6 +316,7 @@ $lang = array_merge($lang, array(
|
||||
'IN' => 'in',
|
||||
'INDEX' => 'Index page',
|
||||
'INFORMATION' => 'Information',
|
||||
'INSECURE_REDIRECT' => 'Tried to redirect to potentially insecure url.',
|
||||
'INTERESTS' => 'Interests',
|
||||
'INVALID_DIGEST_CHALLENGE' => 'Invalid digest challenge.',
|
||||
'INVALID_EMAIL_LOG' => '<strong>%s</strong> possibly an invalid email address?',
|
||||
@@ -423,6 +427,7 @@ $lang = array_merge($lang, array(
|
||||
'NOTIFICATION_TOPIC_APPROVED' => 'Your topic "%2$s" in the forum "%3$s" was approved.',
|
||||
'NOTIFICATION_TOPIC_DISAPPROVED' => 'Your topic "%1$s" was disapproved for reason: "%2$s".',
|
||||
'NOTIFICATION_TOPIC_IN_QUEUE' => 'A new topic titled "%2$s" was posted by %1$s and needs approval.',
|
||||
'NOTIFICATION_TYPE_NOT_EXIST' => 'The notification type "%s" is missing from the file system.',
|
||||
'NOTIFY_ADMIN' => 'Please notify the board administrator or webmaster.',
|
||||
'NOTIFY_ADMIN_EMAIL' => 'Please notify the board administrator or webmaster: <a href="mailto:%1$s">%1$s</a>',
|
||||
'NO_ACCESS_ATTACHMENT' => 'You are not allowed to access this file.',
|
||||
@@ -454,6 +459,7 @@ $lang = array_merge($lang, array(
|
||||
'NO_POSTS_TIME_FRAME' => 'No posts exist inside this topic for the selected time frame.',
|
||||
'NO_FEED_ENABLED' => 'Feeds are not available on this board.',
|
||||
'NO_FEED' => 'The requested feed is not available.',
|
||||
'NO_STYLE_DATA' => 'Could not get style data',
|
||||
'NO_SUBJECT' => 'No subject specified', // Used for posts having no subject defined but displayed within management pages.
|
||||
'NO_SUCH_SEARCH_MODULE' => 'The specified search backend doesn’t exist.',
|
||||
'NO_SUPPORTED_AUTH_METHODS' => 'No supported authentication methods.',
|
||||
@@ -817,6 +823,7 @@ $lang = array_merge($lang, array(
|
||||
'WHO_IS_ONLINE' => 'Who is online',
|
||||
'WRONG_PASSWORD' => 'You entered an incorrect password.',
|
||||
|
||||
'WRONG_DATA_COLOUR' => 'The colour value you entered is invalid.',
|
||||
'WRONG_DATA_ICQ' => 'The number you entered is not a valid ICQ number.',
|
||||
'WRONG_DATA_JABBER' => 'The name you entered is not a valid Jabber account name.',
|
||||
'WRONG_DATA_LANG' => 'The language you specified is not valid.',
|
||||
|
@@ -10,5 +10,4 @@ If you want to view the post, click the following link:
|
||||
If you want to view the topic, click the following link:
|
||||
{U_VIEW_TOPIC}
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
@@ -8,5 +8,4 @@ The following reason was given for the disapproval:
|
||||
|
||||
{REASON}
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
Subject: Topic reply notification - "{TOPIC_TITLE}"
|
||||
Subject: Post moderation notification - "{TOPIC_TITLE}"
|
||||
|
||||
Hello {USERNAME},
|
||||
|
||||
@@ -10,8 +10,4 @@ If you want to view the post, click the following link:
|
||||
If you want to view the topic, click the following link:
|
||||
{U_TOPIC}
|
||||
|
||||
If you no longer wish to receive updates about replies to bookmarks, please update your notification settings here:
|
||||
|
||||
{U_NOTIFICATION_SETTINGS}
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -4,5 +4,4 @@ Hello {USERNAME},
|
||||
|
||||
You are receiving this notification because the report you filed on the post "{POST_SUBJECT}" in "{TOPIC_TITLE}" at "{SITENAME}" was handled by a moderator or by an administrator. The report was afterwards closed. If you have further questions contact {CLOSER_NAME} with a personal message.
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
||||
{EMAIL_SIG}
|
||||
|
@@ -4,5 +4,4 @@ Hello {USERNAME},
|
||||
|
||||
You are receiving this notification because the report you filed on the post "{POST_SUBJECT}" in "{TOPIC_TITLE}" at "{SITENAME}" was deleted by a moderator or by an administrator.
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
||||
{EMAIL_SIG}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
Subject: Topic reply notification - "{TOPIC_TITLE}"
|
||||
Subject: Private Message report - "{TOPIC_TITLE}"
|
||||
|
||||
Hello {USERNAME},
|
||||
|
||||
@@ -7,8 +7,4 @@ You are receiving this notification because a Private Message titled "{SUBJECT}"
|
||||
If you want to view the report, click the following link:
|
||||
{U_VIEW_REPORT}
|
||||
|
||||
If you no longer wish to receive updates about replies to bookmarks, please update your notification settings here:
|
||||
|
||||
{U_NOTIFICATION_SETTINGS}
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
Subject: Topic reply notification - "{TOPIC_TITLE}"
|
||||
Subject: Post report - "{TOPIC_TITLE}"
|
||||
|
||||
Hello {USERNAME},
|
||||
|
||||
@@ -10,8 +10,4 @@ If you want to view the report, click the following link:
|
||||
If you want to view the post, click the following link:
|
||||
{U_VIEW_POST}
|
||||
|
||||
If you no longer wish to receive updates about replies to bookmarks, please update your notification settings here:
|
||||
|
||||
{U_NOTIFICATION_SETTINGS}
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -10,5 +10,4 @@ If you want to view the post, click the following link:
|
||||
If you want to view the topic, click the following link:
|
||||
{U_VIEW_TOPIC}
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
@@ -8,5 +8,4 @@ The following reason was given for the disapproval:
|
||||
|
||||
{REASON}
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
Subject: Topic reply notification - "{TOPIC_TITLE}"
|
||||
Subject: Post moderation notification - "{TOPIC_TITLE}"
|
||||
|
||||
Hello {USERNAME},
|
||||
|
||||
@@ -10,8 +10,4 @@ If you want to view the post, click the following link:
|
||||
If you want to view the topic, click the following link:
|
||||
{U_TOPIC}
|
||||
|
||||
If you no longer wish to receive updates about replies to bookmarks, please update your notification settings here:
|
||||
|
||||
{U_NOTIFICATION_SETTINGS}
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
Subject: Topic reply notification - "{TOPIC_TITLE}"
|
||||
Subject: Private Message report - "{TOPIC_TITLE}"
|
||||
|
||||
Hello {USERNAME},
|
||||
|
||||
@@ -7,8 +7,4 @@ You are receiving this notification because a Private Message titled "{SUBJECT}"
|
||||
If you want to view the report, click the following link:
|
||||
{U_VIEW_REPORT}
|
||||
|
||||
If you no longer wish to receive updates about replies to bookmarks, please update your notification settings here:
|
||||
|
||||
{U_NOTIFICATION_SETTINGS}
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
Subject: Topic reply notification - "{TOPIC_TITLE}"
|
||||
Subject: Post report - "{TOPIC_TITLE}"
|
||||
|
||||
Hello {USERNAME},
|
||||
|
||||
@@ -10,8 +10,4 @@ If you want to view the report, click the following link:
|
||||
If you want to view the post, click the following link:
|
||||
{U_VIEW_POST}
|
||||
|
||||
If you no longer wish to receive updates about replies to bookmarks, please update your notification settings here:
|
||||
|
||||
{U_NOTIFICATION_SETTINGS}
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -7,5 +7,4 @@ You are receiving this notification because your topic "{TOPIC_TITLE}" at "{SITE
|
||||
If you want to view the topic, click the following link:
|
||||
{U_VIEW_TOPIC}
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -8,5 +8,4 @@ The following reason was given for the disapproval:
|
||||
|
||||
{REASON}
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
Subject: Topic reply notification - "{TOPIC_TITLE}"
|
||||
Subject: Topic moderation notification - "{TOPIC_TITLE}"
|
||||
|
||||
Hello {USERNAME},
|
||||
|
||||
@@ -10,8 +10,4 @@ If you want to view the topic, click the following link:
|
||||
If you want to view the forum, click the following link:
|
||||
{U_FORUM}
|
||||
|
||||
If you no longer wish to receive updates about replies to bookmarks, please update your notification settings here:
|
||||
|
||||
{U_NOTIFICATION_SETTINGS}
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -7,5 +7,4 @@ You are receiving this notification because your topic "{TOPIC_TITLE}" at "{SITE
|
||||
If you want to view the topic, click the following link:
|
||||
{U_VIEW_TOPIC}
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -8,5 +8,4 @@ The following reason was given for the disapproval:
|
||||
|
||||
{REASON}
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -1,4 +1,4 @@
|
||||
Subject: Topic reply notification - "{TOPIC_TITLE}"
|
||||
Subject: Topic moderation notification - "{TOPIC_TITLE}"
|
||||
|
||||
Hello {USERNAME},
|
||||
|
||||
@@ -10,8 +10,4 @@ If you want to view the topic, click the following link:
|
||||
If you want to view the forum, click the following link:
|
||||
{U_FORUM}
|
||||
|
||||
If you no longer wish to receive updates about replies to bookmarks, please update your notification settings here:
|
||||
|
||||
{U_NOTIFICATION_SETTINGS}
|
||||
|
||||
{EMAIL_SIG}
|
||||
|
@@ -15,5 +15,4 @@ Please visit the following link to reactivate your account:
|
||||
|
||||
{U_ACTIVATE}
|
||||
|
||||
|
||||
{EMAIL_SIG}
|
@@ -14,7 +14,6 @@ Please visit the following link in order to activate your account:
|
||||
|
||||
{U_ACTIVATE}
|
||||
|
||||
|
||||
Thank you for registering.
|
||||
|
||||
{EMAIL_SIG}
|
@@ -256,6 +256,8 @@ $lang = array_merge($lang, array(
|
||||
'ONLY_TOPIC' => 'Only topic “%s”',
|
||||
'OTHER_USERS' => 'Other users posting from this IP',
|
||||
|
||||
'QUICKMOD_ACTION_NOT_ALLOWED' => "%s not allowed as quickmod",
|
||||
|
||||
'PM_REPORT_CLOSED_SUCCESS' => 'The selected PM report has been closed successfully.',
|
||||
'PM_REPORT_DELETED_SUCCESS' => 'The selected PM report has been deleted successfully.',
|
||||
'PM_REPORTED_SUCCESS' => 'This private message has been successfully reported.',
|
||||
|
@@ -173,7 +173,7 @@ $lang = array_merge($lang, array(
|
||||
'PLACE_INLINE' => 'Place inline',
|
||||
'POLL_DELETE' => 'Delete poll',
|
||||
'POLL_FOR' => 'Run poll for',
|
||||
'POLL_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending poll.',
|
||||
'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',
|
||||
@@ -223,7 +223,7 @@ $lang = array_merge($lang, array(
|
||||
'SMILIES_ARE_ON' => 'Smilies are <em>ON</em>',
|
||||
'STICKY_ANNOUNCE_TIME_LIMIT'=> 'Sticky/Announcement time limit',
|
||||
'STICK_TOPIC_FOR' => 'Stick topic for',
|
||||
'STICK_TOPIC_FOR_EXPLAIN' => 'Enter 0 or leave blank for a never ending Sticky/Announcement. Please note that this number is relative to the date of the post.',
|
||||
'STICK_TOPIC_FOR_EXPLAIN' => 'Enter 0 for a never ending Sticky/Announcement. 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.',
|
||||
|
@@ -521,6 +521,7 @@ $lang = array_merge($lang, array(
|
||||
'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',
|
||||
|
Reference in New Issue
Block a user