slight rewording

This commit is contained in:
Matt Hill
2021-11-26 11:59:25 -07:00
committed by Aiden McClelland
parent 557c81f41c
commit 1ef8691571

View File

@@ -174,7 +174,7 @@ export class AppShowPage {
async tryStart (): Promise<void> {
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.`
}