mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-03-26 10:21:52 +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> {
|
||||
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.`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user