Created
December 12, 2015 13:59
-
-
Save nickvergessen/f3ed22733be10cf9ef2e to your computer and use it in GitHub Desktop.
phpBB Language Changes 3.1.6 to 3.1.7-RC1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/phpBB/language/en/acp/permissions_phpbb.php b/phpBB/language/en/acp/permissions_phpbb.php | |
index b9aeed8..2e80e61 100644 | |
--- a/phpBB/language/en/acp/permissions_phpbb.php | |
+++ b/phpBB/language/en/acp/permissions_phpbb.php | |
@@ -155,9 +155,10 @@ $lang = array_merge($lang, array( | |
'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_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) | |
+ '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 | |
diff --git a/phpBB/language/en/cli.php b/phpBB/language/en/cli.php | |
index 0e7dc39..6989f26 100644 | |
--- a/phpBB/language/en/cli.php | |
+++ b/phpBB/language/en/cli.php | |
@@ -54,9 +54,9 @@ $lang = array_merge($lang, array( | |
'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 on.', | |
+ 'CLI_DESCRIPTION_FIND_MIGRATIONS' => 'Finds migrations that are not depended upon.', | |
'CLI_DESCRIPTION_GET_CONFIG' => 'Gets a configuration option’s value', | |
- 'CLI_DESCRIPTION_INCREMENT_CONFIG' => 'Increments 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_SAFE_MODE' => 'Run in Safe Mode (without extensions).', | |
'CLI_DESCRIPTION_OPTION_SHELL' => 'Launch the shell.', | |
@@ -79,3 +79,8 @@ $lang = array_merge($lang, array( | |
'CLI_FIXUP_RECALCULATE_EMAIL_HASH_SUCCESS' => 'Successfully recalculated all email hashes.', | |
)); | |
+ | |
+// 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.', | |
+)); | |
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php | |
index 79d504a..47e04d9 100644 | |
--- a/phpBB/language/en/common.php | |
+++ b/phpBB/language/en/common.php | |
@@ -329,6 +329,7 @@ $lang = array_merge($lang, array( | |
'IMAGE_FILETYPE_INVALID' => 'Image file type %d for mimetype %s not supported.', | |
'IMAGE_FILETYPE_MISMATCH' => 'Image file type mismatch: expected extension %1$s but extension %2$s given.', | |
'IN' => 'in', | |
+ 'INACTIVE' => 'Inactive', | |
'INDEX' => 'Index page', | |
'INFORMATION' => 'Information', | |
'INSECURE_REDIRECT' => 'Tried to redirect to potentially insecure url.', | |
@@ -467,7 +468,7 @@ $lang = array_merge($lang, array( | |
'NOTIFICATION_TOPIC_DISAPPROVED' => '<strong>Topic disapproved</strong>:', | |
'NOTIFICATION_TOPIC_IN_QUEUE' => '<strong>Topic approval</strong> request by %1$s:', | |
'NOTIFICATION_TYPE_NOT_EXIST' => 'The notification type "%s" is missing from the file system.', | |
- 'NOTIFICATION_ADMIN_ACTIVATE_USER' => '<strong>Activation required</strong> for newly registered user: “%1$s”', | |
+ 'NOTIFICATION_ADMIN_ACTIVATE_USER' => '<strong>Activation required</strong> for deactivated or newly registered user: “%1$s”', | |
// Used in conjuction with NOTIFICATION_BOOKMARK and NOTIFICATION_POST. | |
'NOTIFICATION_MANY_OTHERS' => 'others', | |
'NOTIFICATION_X_OTHERS' => array( | |
diff --git a/phpBB/language/en/help_bbcode.php b/phpBB/language/en/help_bbcode.php | |
index 989e5fc..c674d5c 100644 | |
--- a/phpBB/language/en/help_bbcode.php | |
+++ b/phpBB/language/en/help_bbcode.php | |
@@ -90,7 +90,7 @@ $help = array( | |
), | |
array( | |
0 => 'Linking to another site', | |
- 1 => 'phpBB BBCode supports a number of ways of creating URIs (Uniform Resource Indicators) better known as URLs.<ul><li>The first of these uses the <strong>[url=][/url]</strong> tag, whatever you type after the = sign will cause the contents of that tag to act as a URL. For example to link to phpBB.com you could use:<br /><br /><strong>[url=https://www.phpbb.com/]</strong>Visit phpBB!<strong>[/url]</strong><br /><br />This would generate the following link, <a href="https://www.phpbb.com/">Visit phpBB!</a> Please notice that the link opens in the same window or a new window depending on the users browser preferences.</li><li>If you want the URL itself displayed as the link you can do this by simply using:<br /><br /><strong>[url]</strong>https://www.phpbb.com/<strong>[/url]</strong><br /><br />This would generate the following link, <a href="https://www.phpbb.com/">https://www.phpbb.com/</a></li><li>Additionally, phpBB features something called <i>Magic Links</i>, this will turn any syntactically correct URL into a link without you needing to specify any tags or even the leading https://. For example typing www.phpbb.com into your message will automatically lead to <a href="https://www.phpbb.com/">www.phpbb.com</a> being output when you view the message.</li><li>The same thing applies equally to email addresses, you can either specify an address explicitly for example:<br /><br /><strong>[email]</strong>no.one@domain.adr<strong>[/email]</strong><br /><br />which will output <a href="mailto:no.one@domain.adr">no.one@domain.adr</a> or you can just type no.one@domain.adr into your message and it will be automatically converted when you view.</li></ul>As with all the BBCode tags you can wrap URLs around any of the other tags such as <strong>[img][/img]</strong> (see next entry), <strong>[b][/b]</strong>, etc. As with the formatting tags it is up to you to ensure the correct open and close order is following, for example:<br /><br /><strong>[url=https://www.phpbb.com/][img]</strong>https://www.phpbb.com/theme/images/logos/blue/160x52.png<strong>[/url][/img]</strong><br /><br />is <span style="text-decoration: underline">not</span> correct which may lead to your post being deleted so take care.' | |
+ 1 => 'phpBB BBCode supports a number of ways of creating URIs (Uniform Resource Indicators) better known as URLs.<ul><li>The first of these uses the <strong>[url=][/url]</strong> tag, whatever you type after the = sign will cause the contents of that tag to act as a URL. For example to link to phpBB.com you could use:<br /><br /><strong>[url=https://www.phpbb.com/]</strong>Visit phpBB!<strong>[/url]</strong><br /><br />This would generate the following link, <a href="https://www.phpbb.com/">Visit phpBB!</a> Please notice that the link opens in the same window or a new window depending on the users browser preferences.</li><li>If you want the URL itself displayed as the link you can do this by simply using:<br /><br /><strong>[url]</strong>https://www.phpbb.com/<strong>[/url]</strong><br /><br />This would generate the following link, <a href="https://www.phpbb.com/">https://www.phpbb.com/</a></li><li>Additionally, phpBB features something called <i>Magic Links</i>, this will turn any syntactically correct URL into a link without you needing to specify any tags or even the leading http://. For example typing www.phpbb.com into your message will automatically lead to <a href="http://www.phpbb.com/">www.phpbb.com</a> being output when you view the message.</li><li>The same thing applies equally to email addresses, you can either specify an address explicitly for example:<br /><br /><strong>[email]</strong>no.one@domain.adr<strong>[/email]</strong><br /><br />which will output <a href="mailto:no.one@domain.adr">no.one@domain.adr</a> or you can just type no.one@domain.adr into your message and it will be automatically converted when you view.</li></ul>As with all the BBCode tags you can wrap URLs around any of the other tags such as <strong>[img][/img]</strong> (see next entry), <strong>[b][/b]</strong>, etc. As with the formatting tags it is up to you to ensure the correct open and close order is following, for example:<br /><br /><strong>[url=https://www.phpbb.com/][img]</strong>https://www.phpbb.com/theme/images/logos/blue/160x52.png<strong>[/url][/img]</strong><br /><br />is <span style="text-decoration: underline">not</span> correct which may lead to your post being deleted so take care.' | |
), | |
array( | |
0 => '--', | |
diff --git a/phpBB/language/en/memberlist.php b/phpBB/language/en/memberlist.php | |
index 5605f8f..c7b2bf5 100644 | |
--- a/phpBB/language/en/memberlist.php | |
+++ b/phpBB/language/en/memberlist.php | |
@@ -101,6 +101,7 @@ $lang = array_merge($lang, array( | |
'LOGIN_EXPLAIN_SEARCHUSER' => 'The board requires you to be registered and logged in to search users.', | |
'LOGIN_EXPLAIN_VIEWPROFILE' => 'The board requires you to be registered and logged in to view profiles.', | |
+ 'MANAGE_GROUP' => 'Manage Group', | |
'MORE_THAN' => 'More than', | |
'NO_CONTACT_FORM' => 'The board administrator contact form has been disabled.', | |
diff --git a/phpBB/language/en/ucp.php b/phpBB/language/en/ucp.php | |
index 07751d1f..1faa623 100644 | |
--- a/phpBB/language/en/ucp.php | |
+++ b/phpBB/language/en/ucp.php | |
@@ -339,7 +339,7 @@ $lang = array_merge($lang, array( | |
'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' => 'Newly registered user requiring activation', | |
+ 'NOTIFICATION_TYPE_ADMIN_ACTIVATE_USER' => 'User requiring activation', | |
'NOTIFY_METHOD' => 'Notification method', | |
'NOTIFY_METHOD_BOTH' => 'Both', |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment