diff --git a/src/app/enums/catalog-app-state.enum.ts b/src/app/enums/catalog-app-state.enum.ts index a78a2ac9bd3..fd71b5bf1f3 100644 --- a/src/app/enums/catalog-app-state.enum.ts +++ b/src/app/enums/catalog-app-state.enum.ts @@ -3,11 +3,13 @@ export enum CatalogAppState { Deploying = 'DEPLOYING', Stopped = 'STOPPED', Crashed = 'CRASHED', + Stopping = 'STOPPING', } export const appStateIcons = new Map([ [CatalogAppState.Running, 'mdi-check-circle'], [CatalogAppState.Deploying, 'mdi-progress-wrench'], + [CatalogAppState.Stopping, 'mdi-progress-wrench'], [CatalogAppState.Stopped, 'mdi-stop-circle'], [CatalogAppState.Crashed, 'mdi-alert-circle'], ]); diff --git a/src/app/pages/apps/components/installed-apps/installed-apps.component.ts b/src/app/pages/apps/components/installed-apps/installed-apps.component.ts index 9336b130981..ce67400787d 100644 --- a/src/app/pages/apps/components/installed-apps/installed-apps.component.ts +++ b/src/app/pages/apps/components/installed-apps/installed-apps.component.ts @@ -19,7 +19,7 @@ import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'; import { Store } from '@ngrx/store'; import { TranslateService } from '@ngx-translate/core'; import { - combineLatest, filter, finalize, + combineLatest, filter, Observable, } from 'rxjs'; import { CatalogAppState } from 'app/enums/catalog-app-state.enum'; @@ -324,10 +324,8 @@ export class InstalledAppsComponent implements OnInit, AfterViewInit { } stop(name: string): void { - this.loader.open(this.translate.instant('Stopping "{app}"', { app: name })); this.appService.stopApplication(name) .pipe( - finalize(() => this.loader.close()), this.errorHandler.catchError(), untilDestroyed(this), ) diff --git a/src/app/pages/apps/enum/app-status.enum.ts b/src/app/pages/apps/enum/app-status.enum.ts index 4160f3edda8..e7a445ff632 100644 --- a/src/app/pages/apps/enum/app-status.enum.ts +++ b/src/app/pages/apps/enum/app-status.enum.ts @@ -6,6 +6,7 @@ export enum AppStatus { Deploying = 'DEPLOYING', Stopped = 'STOPPED', Stopping = 'STOPPING', + Crashed = 'CRASHED', } export const appStatusIcons = new Map([ @@ -14,6 +15,7 @@ export const appStatusIcons = new Map([ [AppStatus.Deploying, 'mdi-progress-wrench'], [AppStatus.Stopping, 'mdi-progress-wrench'], [AppStatus.Stopped, 'mdi-stop-circle'], + [AppStatus.Crashed, 'mdi-stop-circle'], ]); export const appStatusLabels = new Map([ @@ -22,4 +24,5 @@ export const appStatusLabels = new Map([ [AppStatus.Deploying, T('Deploying')], [AppStatus.Stopped, T('Stopped')], [AppStatus.Stopping, T('Stopping')], + [AppStatus.Crashed, T('Crashed')], ]); diff --git a/src/app/pages/apps/utils/get-app-status.ts b/src/app/pages/apps/utils/get-app-status.ts index 55deabf1d43..d4c2399ec96 100644 --- a/src/app/pages/apps/utils/get-app-status.ts +++ b/src/app/pages/apps/utils/get-app-status.ts @@ -1,4 +1,3 @@ -import { CatalogAppState } from 'app/enums/catalog-app-state.enum'; import { App, AppStartQueryParams } from 'app/interfaces/app.interface'; import { Job } from 'app/interfaces/job.interface'; import { AppStatus } from 'app/pages/apps/enum/app-status.enum'; @@ -6,19 +5,5 @@ import { AppStatus } from 'app/pages/apps/enum/app-status.enum'; export function getAppStatus(app: App, _?: Job): AppStatus { if (!app) return null; - let status: AppStatus; - - switch (app.state) { - case CatalogAppState.Running: - status = AppStatus.Running; - break; - case CatalogAppState.Deploying: - status = AppStatus.Deploying; - break; - case CatalogAppState.Stopped: - status = AppStatus.Stopped; - break; - } - - return status; + return app.state as unknown as AppStatus; } diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index e1a89cb2801..40109147209 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -918,6 +918,7 @@ "Copy and Paste": "", "Copy to Clipboard": "", "Cores": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -3706,7 +3707,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index ad70a8a1f53..7c5782504ed 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -700,6 +700,7 @@ "Copies": "", "Copy Json": "", "Copy to Clipboard": "", + "Crashed": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", "Create Backup Credential": "", @@ -2900,7 +2901,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index b2b9f6e2ce8..232e00f8f5b 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -498,6 +498,7 @@ "Copies": "", "Copy Json": "", "Copy Text": "", + "Crashed": "", "Create": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", @@ -2235,7 +2236,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Storage Dashboard": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index c44cbb7fa12..ef2e4bc5409 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -887,6 +887,7 @@ "Copy Text": "", "Copy URL": "", "Copy to Clipboard": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -3757,7 +3758,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index f8104ecf67c..873ec1b750b 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -132,6 +132,7 @@ "Controller Type": "", "Cooling": "", "Copies": "", + "Crashed": "", "Create Exporter": "", "Create Kerberos Keytab": "", "Create Kerberos Realm": "", @@ -729,7 +730,6 @@ "Step Forward": "", "Stop All Selected": "", "Stop Flashing": "", - "Stopping \"{app}\"": "", "Storj": "", "Storj iX": "", "Stream Compression": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index a7d144bb2bf..a60b8a60dec 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -24,6 +24,7 @@ "Container ID": "", "Container Logs": "", "Container Shell": "", + "Crashed": "", "Creating custom app": "", "Custom App via YAML": "", "Custom Config": "", @@ -70,7 +71,6 @@ "SAVE": "", "Select the level of severity. Alert notifications send for all warnings matching and above the selected level. For example, a warning level set to Critical triggers notifications for Critical, Alert, and Emergency level warnings.": "", "Specifies level of authentication and cryptographic protection. SYS or none should be used if no KDC is available. If a KDC is available, e.g. Active Directory, KRB5 is recommended. If desired KRB5I (integrity protection) and/or KRB5P (privacy protection) may be included with KRB5.": "", - "Stopping \"{app}\"": "", "String of additional smb4.conf parameters not covered by the system's API.": "", "Successfully exported/disconnected {pool}.": "", "Support License": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 8d5f80535fc..f4b3209a7a9 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -857,6 +857,7 @@ "Copy URL": "", "Copy to Clipboard": "", "Cores": "", + "Crashed": "", "Create": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", @@ -4256,7 +4257,6 @@ "Stop {vmName}?": "Vuoi fermare {vmName}?", "Stopped": "Fermato", "Stopping": "Interruzione in corso", - "Stopping \"{app}\"": "Arresto di \"{app}\"", "Stopping Apps Service": "Arresto del Servizio App", "Stopping {rowName}": "Arresto di {rowName}", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "Ferma il rollback quando il controllo di sicurezza trova snapshot cloni correlati che sono più recenti dello snapshot di rollback.", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 8bb2281c627..cc17c2cbc15 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -809,6 +809,7 @@ "Copy Text": "", "Copy URL": "", "Cores": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -3640,7 +3641,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 70ac8f05848..b7d3ffb9649 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -552,6 +552,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -3659,7 +3660,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index e2a0ef67365..682f8c7d394 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -972,6 +972,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4079,7 +4080,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 10d67ded045..d41a89a18a2 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -236,6 +236,7 @@ "Controller Type": "", "Cooling": "", "Copies": "", + "Crashed": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", "Create Backup Credential": "", @@ -992,7 +993,6 @@ "Step Forward": "", "Stop All Selected": "", "Stop Flashing": "", - "Stopping \"{app}\"": "", "Storj iX": "", "Stream Compression": "", "String of additional smb4.conf parameters not covered by the system's API.": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index c26c84d4436..6f0d5eabed8 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -932,6 +932,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4007,7 +4008,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 1078f3c4d99..4a4ce29607d 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -919,6 +919,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4025,7 +4026,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index ac1cd6bead8..4e9de74c506 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -404,6 +404,7 @@ "Controls whether the volume snapshot devices under /dev/zvol/⟨pool⟩ are hidden or visible. The default value is hidden.": "", "Cooling": "", "Copies": "", + "Crashed": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", "Create Backup Credential": "", @@ -2437,7 +2438,6 @@ "Stop TrueCommand Cloud Connection": "", "Stop the {serviceName} service and close these connections?": "", "Stop this Cloud Sync?": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 5b088803768..442752f8d8f 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -574,6 +574,7 @@ "Copy Text": "", "Copy URL": "", "Copy to Clipboard": "", + "Crashed": "", "Create": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", @@ -2566,7 +2567,6 @@ "Stop {serviceName}?": "", "Stop {vmName}?": "", "Stopped": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index 703ed864ede..e858ae499b1 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -354,6 +354,7 @@ "Copies": "", "Copy Json": "", "Copy Text": "", + "Crashed": "", "Create": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", @@ -1506,7 +1507,6 @@ "Stop All Selected": "", "Stop Flashing": "", "Stop this Cloud Sync?": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Storage Dashboard": "", "Storj": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index bd7b95b3adb..c73e15443bf 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -978,6 +978,7 @@ "Copy to Clipboard": "", "Cores": "", "Country": "", + "Crashed": "", "Create": "", "Create ACME Certificate": "", "Create ACME DNS-Authenticator": "", @@ -4085,7 +4086,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 00be8dc8fa6..228e06c652c 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -242,6 +242,7 @@ "Controller Type": "", "Cooling": "", "Copies": "", + "Crashed": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", "Create Backup Credential": "", @@ -1042,7 +1043,6 @@ "Step Forward": "", "Stop All Selected": "", "Stop Flashing": "", - "Stopping \"{app}\"": "", "Storj iX": "", "Stream Compression": "", "String of additional smb4.conf parameters not covered by the system's API.": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index 35944cff0af..82c10dca6c1 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -798,6 +798,7 @@ "Copies": "", "Copy Json": "", "Copy Text": "", + "Crashed": "", "Create": "", "Create ACME DNS-Authenticator": "", "Create Alert": "", @@ -3414,7 +3415,6 @@ "Stop {vmName}?": "", "Stopped": "", "Stopping": "", - "Stopping \"{app}\"": "", "Stopping Apps Service": "", "Stopping {rowName}": "", "Stops the rollback when the safety check finds any related clone snapshots that are newer than the rollback snapshot.": "",