From 1ef8691571d89b53f6eccfc989adf6d27662bc71 Mon Sep 17 00:00:00 2001 From: Matt Hill Date: Fri, 26 Nov 2021 11:59:25 -0700 Subject: [PATCH] slight rewording --- ui/src/app/pages/apps-routes/app-show/app-show.page.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/app/pages/apps-routes/app-show/app-show.page.ts b/ui/src/app/pages/apps-routes/app-show/app-show.page.ts index 96151ec61..1e0ec27bb 100644 --- a/ui/src/app/pages/apps-routes/app-show/app-show.page.ts +++ b/ui/src/app/pages/apps-routes/app-show/app-show.page.ts @@ -174,7 +174,7 @@ export class AppShowPage { async tryStart (): Promise { if (this.dependencies.some(d => !!d.errorText)) { - const depErrMsg = `${this.pkg.manifest.title} has dependencies errors. It may not work as expected.` + const depErrMsg = `${this.pkg.manifest.title} has unmet dependencies. It will not work as expected.` const proceed = await this.presentAlertStart(depErrMsg) if (!proceed) return } @@ -268,7 +268,7 @@ export class AppShowPage { if (errorText) { if (this.pkg.manifest.dependencies[id].severity === DependencySeverity.Critical) { - errorText = `Critical: ${errorText}. Running ${this.pkg.manifest.title} will cause harm to your system.` + errorText = `Critical: ${errorText}. ${this.pkg.manifest.title} cannot be started until this dependency is satisfied, as it may cause harm to your system.` } else if (this.pkg.manifest.dependencies[id].severity === DependencySeverity.Warning) { errorText = `${errorText}. ${this.pkg.manifest.title} will not work as expected.` }