mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-04 22:39:46 +00:00
slight rewording
This commit is contained in:
committed by
Aiden McClelland
parent
557c81f41c
commit
1ef8691571
@@ -174,7 +174,7 @@ export class AppShowPage {
|
|||||||
|
|
||||||
async tryStart (): Promise<void> {
|
async tryStart (): Promise<void> {
|
||||||
if (this.dependencies.some(d => !!d.errorText)) {
|
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)
|
const proceed = await this.presentAlertStart(depErrMsg)
|
||||||
if (!proceed) return
|
if (!proceed) return
|
||||||
}
|
}
|
||||||
@@ -268,7 +268,7 @@ export class AppShowPage {
|
|||||||
|
|
||||||
if (errorText) {
|
if (errorText) {
|
||||||
if (this.pkg.manifest.dependencies[id].severity === DependencySeverity.Critical) {
|
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) {
|
} else if (this.pkg.manifest.dependencies[id].severity === DependencySeverity.Warning) {
|
||||||
errorText = `${errorText}. ${this.pkg.manifest.title} will not work as expected.`
|
errorText = `${errorText}. ${this.pkg.manifest.title} will not work as expected.`
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user