Replace some user-facing Embassy language (#2281)

This commit is contained in:
kn0wmad
2023-05-22 19:23:20 +00:00
committed by GitHub
parent bbd66e9cb0
commit 321fca2c0a
3 changed files with 4 additions and 4 deletions

View File

@@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
>&2 echo 'THIS IS NOT A STANDARD DEBIAN SYSTEM' >&2 echo 'THIS IS NOT A STANDARD DEBIAN SYSTEM'
>&2 echo 'USING apt COULD CAUSE IRREPARABLE DAMAGE TO YOUR EMBASSY' >&2 echo 'USING apt COULD CAUSE IRREPARABLE DAMAGE TO YOUR START9 SERVER'
>&2 echo 'PLEASE TURN BACK NOW!!!' >&2 echo 'PLEASE TURN BACK NOW!!!'
if [ "$1" == "upgrade" ] && [ "$(whoami)" == "root" ]; then if [ "$1" == "upgrade" ] && [ "$(whoami)" == "root" ]; then
>&2 echo 'IF YOU THINK RUNNING "sudo apt upgrade" IS A REASONABLE THING TO DO ON THIS SYSTEM, YOU PROBABLY SHOULDN'"'"'T BE ON THE COMMAND LINE.' >&2 echo 'IF YOU THINK RUNNING "sudo apt upgrade" IS A REASONABLE THING TO DO ON THIS SYSTEM, YOU PROBABLY SHOULDN'"'"'T BE ON THE COMMAND LINE.'

View File

@@ -45,7 +45,7 @@ export class TransferPage {
const alert = await this.alertCtrl.create({ const alert = await this.alertCtrl.create({
header: 'Warning', header: 'Warning',
message: message:
'After transferring data from this drive, <b>do not</b> use it again as an Embassy. This may result in services malfunctioning, data corruption, or loss of funds.', 'After transferring data from this drive, <b>do not</b> attempt to boot into it again as a Start9 Server. This may result in services malfunctioning, data corruption, or loss of funds.',
buttons: [ buttons: [
{ {
role: 'cancel', role: 'cancel',

View File

@@ -70,7 +70,7 @@ export class BackupDrivesComponent {
): void { ): void {
if (target.entry.type === 'cifs' && !target.entry.mountable) { if (target.entry.type === 'cifs' && !target.entry.mountable) {
const message = const message =
'Unable to connect to Network Folder. Ensure (1) target computer is connected to the same LAN as your Embassy, (2) target folder is being shared, and (3) hostname, path, and credentials are accurate.' 'Unable to connect to Network Folder. Ensure (1) target computer is connected to the same LAN as your Start9 Server, (2) target folder is being shared, and (3) hostname, path, and credentials are accurate.'
this.presentAlertError(message) this.presentAlertError(message)
return return
} }
@@ -78,7 +78,7 @@ export class BackupDrivesComponent {
if (this.type === 'restore' && !target.hasValidBackup) { if (this.type === 'restore' && !target.hasValidBackup) {
const message = `${ const message = `${
target.entry.type === 'cifs' ? 'Network Folder' : 'Drive partition' target.entry.type === 'cifs' ? 'Network Folder' : 'Drive partition'
} does not contain a valid Embassy backup.` } does not contain a valid Start9 Server backup.`
this.presentAlertError(message) this.presentAlertError(message)
return return
} }