]> source.dussan.org Git - nextcloud-server.git/commitdiff
adjust wording 38140/head
authorSimon L <szaimen@e.mail.de>
Tue, 9 May 2023 09:19:48 +0000 (11:19 +0200)
committerSimon L <szaimen@e.mail.de>
Tue, 9 May 2023 09:19:48 +0000 (11:19 +0200)
Signed-off-by: Simon L <szaimen@e.mail.de>
lib/base.php

index cca17fc1eae9456d57efb12524b702299c15b9ee..c7fde4136fef3f3d5c375d733e05a00e336e6848 100644 (file)
@@ -394,8 +394,8 @@ class OC {
 
                if (!empty($incompatibleShippedApps)) {
                        $l = Server::get(\OCP\L10N\IFactory::class)->get('core');
-                       $hint = $l->t('The files of the app %1$s were not replaced correctly or are not existing in the first place. Make sure to add a version of the app that is compatible with the server.', [implode(', ', $incompatibleShippedApps)]);
-                       throw new \OCP\HintException('The files of the app ' . implode(', ', $incompatibleShippedApps) . ' were not replaced correctly or are not existing in the first place. Make sure to add a version of the app that is compatible with the server.', $hint);
+                       $hint = $l->t('Application %1$s is not present or has a non-compatible version with this server. Please check the apps directory.', [implode(', ', $incompatibleShippedApps)]);
+                       throw new \OCP\HintException('Application ' . implode(', ', $incompatibleShippedApps) . ' is not present or has a non-compatible version with this server. Please check the apps directory.', $hint);
                }
 
                $tmpl->assign('appsToUpgrade', $appManager->getAppsNeedingUpgrade($ocVersion));