Last active
January 21, 2022 20:55
-
-
Save marc1706/78736229af0fce07d7b786fdbda613b9 to your computer and use it in GitHub Desktop.
Language changes 3.3.5 to 3.3.6-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/attachments.php b/phpBB/language/en/acp/attachments.php | |
index 5e0332462a..19fc6b4422 100644 | |
--- a/phpBB/language/en/acp/attachments.php | |
+++ b/phpBB/language/en/acp/attachments.php | |
@@ -170,4 +170,5 @@ $lang = array_merge($lang, array( | |
'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.', | |
+ 'UPLOAD_POST_NOT_EXIST' => 'File “%1$s” can not be uploaded to post number %2$d as the post does not exist.', | |
)); | |
diff --git a/phpBB/language/en/migrator.php b/phpBB/language/en/migrator.php | |
index 8a82d40be5..e5d7eff609 100644 | |
--- a/phpBB/language/en/migrator.php | |
+++ b/phpBB/language/en/migrator.php | |
@@ -77,5 +77,6 @@ $lang = array_merge($lang, array( | |
'PARENT_MODULE_FIND_ERROR' => 'Unable to determine the parent module identifier: %s', | |
'PERMISSION_NOT_EXIST' => 'The permission setting "%s" unexpectedly does not exist.', | |
+ 'ROLE_ASSIGNED_NOT_EXIST' => 'The permission role assigned to group "%1$s" unexpectedly does not exist. Role id: "%2$s"', | |
'ROLE_NOT_EXIST' => 'The permission role "%s" unexpectedly does not exist.', | |
)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment