We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
New language relevant PR in upstream repo: joomla/joomla-cms#41734 Here are the upstream changes:
diff --git a/administrator/components/com_admin/script.php b/administrator/components/com_admin/script.php index 9801c16a3eee7..790c7f8a6602b 100644 --- a/administrator/components/com_admin/script.php +++ b/administrator/components/com_admin/script.php @@ -634,7 +634,13 @@ protected function updateManifestCaches() if (!$installer->refreshManifestCache($extension->extension_id)) { $this->collectError( __METHOD__, - new \Exception(Text::sprintf('FILES_JOOMLA_ERROR_MANIFEST', $extension->type, $extension->element, $extension->name, $extension->client_id)) + new \Exception(sprintf( + 'Error on updating manifest cache: (type, element, folder, client) = (%s, %s, %s, %s)', + $extension->type, + $extension->element, + $extension->name, + $extension->client_id + )) ); } } @@ -8001,7 +8007,7 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) if (File::delete(JPATH_ROOT . $file)) { $status['files_deleted'][] = $file; } else { - $status['files_errors'][] = Text::sprintf('FILES_JOOMLA_ERROR_FILE_FOLDER', $file); + $status['files_errors'][] = sprintf('Error on deleting file or folder %s', $file); } } } @@ -8017,7 +8023,7 @@ public function deleteUnexistingFiles($dryRun = false, $suppressOutput = false) if (Folder::delete(JPATH_ROOT . $folder)) { $status['folders_deleted'][] = $folder; } else { - $status['folders_errors'][] = Text::sprintf('FILES_JOOMLA_ERROR_FILE_FOLDER', $folder); + $status['folders_errors'][] = sprintf('Error on deleting file or folder %s', $folder); } } } diff --git a/language/en-GB/files_joomla.sys.ini b/language/en-GB/files_joomla.sys.ini index ed17d91d71843..d5f0dd80e4447 100644 --- a/language/en-GB/files_joomla.sys.ini +++ b/language/en-GB/files_joomla.sys.ini @@ -4,6 +4,8 @@ ; Note : All ini files need to be saved as UTF-8 FILES_JOOMLA="Joomla CMS" +FILES_JOOMLA_XML_DESCRIPTION="Joomla! 4 Content Management System." + +; All the following strings are deprecated and will be removed with 6.0 FILES_JOOMLA_ERROR_FILE_FOLDER="Error on deleting file or folder %s" FILES_JOOMLA_ERROR_MANIFEST="Error on updating manifest cache: (type, element, folder, client) = (%s, %s, %s, %s)" -FILES_JOOMLA_XML_DESCRIPTION="Joomla! 4 Content Management System."
The text was updated successfully, but these errors were encountered:
fix joomlagerman#2997
2b437e5
tecpromotion
Successfully merging a pull request may close this issue.
New language relevant PR in upstream repo: joomla/joomla-cms#41734 Here are the upstream changes:
Click to expand the diff!
The text was updated successfully, but these errors were encountered: