+
+
@if (!showMobileDetails()) {
@@ -46,6 +57,7 @@
[class.selected]="selectedInstance()?.id === instance.id"
[selected]="selection.isSelected(instance.id)"
(click)="navigateToDetails(instance)"
+ (selectionChange)="selection.toggle(instance.id)"
(keydown.enter)="navigateToDetails(instance)"
>
}
diff --git a/src/app/pages/virtualization/components/all-instances/instance-list/instance-list.component.ts b/src/app/pages/virtualization/components/all-instances/instance-list/instance-list.component.ts
index b6914aff729..f11eb4bb00d 100644
--- a/src/app/pages/virtualization/components/all-instances/instance-list/instance-list.component.ts
+++ b/src/app/pages/virtualization/components/all-instances/instance-list/instance-list.component.ts
@@ -10,7 +10,6 @@ import { ActivatedRoute, Router } from '@angular/router';
import { UntilDestroy } from '@ngneat/until-destroy';
import { TranslateModule, TranslateService } from '@ngx-translate/core';
import { EmptyType } from 'app/enums/empty-type.enum';
-import { Role } from 'app/enums/role.enum';
import { WINDOW } from 'app/helpers/window.helper';
import { EmptyConfig } from 'app/interfaces/empty-config.interface';
import { VirtualizationInstance } from 'app/interfaces/virtualization.interface';
@@ -18,6 +17,7 @@ import { EmptyComponent } from 'app/modules/empty/empty.component';
import { SearchInput1Component } from 'app/modules/forms/search-input1/search-input1.component';
import { FakeProgressBarComponent } from 'app/modules/loader/components/fake-progress-bar/fake-progress-bar.component';
import { TestDirective } from 'app/modules/test-id/test.directive';
+import { InstanceListBulkActionsComponent } from 'app/pages/virtualization/components/all-instances/instance-list/instance-list-bulk-actions/instance-list-bulk-actions.component';
import { InstanceRowComponent } from 'app/pages/virtualization/components/all-instances/instance-list/instance-row/instance-row.component';
import { VirtualizationDevicesStore } from 'app/pages/virtualization/stores/virtualization-devices.store';
import { VirtualizationInstancesStore } from 'app/pages/virtualization/stores/virtualization-instances.store';
@@ -38,11 +38,11 @@ import { VirtualizationViewStore } from 'app/pages/virtualization/stores/virtual
MatCheckboxModule,
EmptyComponent,
TestDirective,
+ InstanceListBulkActionsComponent,
],
})
export class InstanceListComponent {
- protected readonly requireRoles = [Role.VirtInstanceWrite];
protected readonly searchQuery = signal('');
protected readonly window = inject(WINDOW);
protected readonly selection = new SelectionModel(true, []);
@@ -54,16 +54,18 @@ export class InstanceListComponent {
protected readonly showMobileDetails = this.viewStore.showMobileDetails;
protected readonly isMobileView = this.viewStore.isMobileView;
- protected readonly isAllSelected = computed(() => {
- return this.selection.selected.length === this.instances().length;
- });
+ get isAllSelected(): boolean {
+ return this.selection.selected.length === this.filteredInstances().length;
+ }
+
+ get checkedInstances(): VirtualizationInstance[] {
+ return this.selection.selected.map((id) => this.instances().find((instance) => instance.id === id));
+ }
protected readonly filteredInstances = computed(() => {
- return this.instances()
- .filter((instance) => {
- return instance?.name?.toLocaleLowerCase()
- .includes(this.searchQuery().toLocaleLowerCase());
- });
+ return this.instances().filter((instance) => {
+ return instance?.name?.toLocaleLowerCase().includes(this.searchQuery().toLocaleLowerCase());
+ });
});
protected readonly emptyConfig = computed(() => {
@@ -72,7 +74,7 @@ export class InstanceListComponent {
type: EmptyType.NoSearchResults,
title: this.translate.instant('No Search Results.'),
message: this.translate.instant('No matching results found'),
- large: true,
+ large: false,
};
}
return {
@@ -136,4 +138,8 @@ export class InstanceListComponent {
closeMobileDetails(): void {
this.viewStore.closeMobileDetails();
}
+
+ resetSelection(): void {
+ this.selection.clear();
+ }
}
diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/af.json
+++ b/src/assets/i18n/af.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/ar.json
+++ b/src/assets/i18n/ar.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/ast.json
+++ b/src/assets/i18n/ast.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/az.json
+++ b/src/assets/i18n/az.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/be.json
+++ b/src/assets/i18n/be.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/bg.json
+++ b/src/assets/i18n/bg.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/bn.json
+++ b/src/assets/i18n/bn.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/br.json
+++ b/src/assets/i18n/br.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/bs.json
+++ b/src/assets/i18n/bs.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/ca.json
+++ b/src/assets/i18n/ca.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json
index dc75ef9061d..9be0456007c 100644
--- a/src/assets/i18n/cs.json
+++ b/src/assets/i18n/cs.json
@@ -1812,6 +1812,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -2859,6 +2860,7 @@
"Reporting Read": "",
"Reporting Write": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -2893,6 +2895,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/cy.json
+++ b/src/assets/i18n/cy.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/da.json
+++ b/src/assets/i18n/da.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json
index 39608992640..1d11a1b92e0 100644
--- a/src/assets/i18n/de.json
+++ b/src/assets/i18n/de.json
@@ -1644,6 +1644,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface changes reverted.": "",
@@ -2490,6 +2491,7 @@
"Reporting Read": "",
"Reporting Write": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Required reset to fix system operation issues.": "",
"Required restart after new software installation.": "",
@@ -2517,6 +2519,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/dsb.json
+++ b/src/assets/i18n/dsb.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/el.json
+++ b/src/assets/i18n/el.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/en-au.json
+++ b/src/assets/i18n/en-au.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/en-gb.json
+++ b/src/assets/i18n/en-gb.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/eo.json
+++ b/src/assets/i18n/eo.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json
index bda1990e67e..ca038777731 100644
--- a/src/assets/i18n/es-ar.json
+++ b/src/assets/i18n/es-ar.json
@@ -593,6 +593,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Internal CA": "",
"Invalid cron expression": "",
"Invalid format or character": "",
@@ -970,6 +971,7 @@
"Reporting Read": "",
"Reporting Write": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Required reset to fix system operation issues.": "",
"Required restart after new software installation.": "",
@@ -989,6 +991,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart Options": "",
"Restart Standby": "",
"Restart is recommended for new FIPS setting to take effect. Would you like to restart now?": "",
diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/es-co.json
+++ b/src/assets/i18n/es-co.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/es-mx.json
+++ b/src/assets/i18n/es-mx.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/es-ni.json
+++ b/src/assets/i18n/es-ni.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/es-ve.json
+++ b/src/assets/i18n/es-ve.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json
index 23ac3a9937a..7a2098f1f6f 100644
--- a/src/assets/i18n/es.json
+++ b/src/assets/i18n/es.json
@@ -2117,6 +2117,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface changes reverted.": "",
@@ -3172,6 +3173,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3207,6 +3209,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/et.json
+++ b/src/assets/i18n/et.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/eu.json
+++ b/src/assets/i18n/eu.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/fa.json
+++ b/src/assets/i18n/fa.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/fi.json
+++ b/src/assets/i18n/fi.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json
index ab670679c20..1d354c5f04e 100644
--- a/src/assets/i18n/fr.json
+++ b/src/assets/i18n/fr.json
@@ -380,6 +380,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Invisible": "",
"Ipmi": "",
"Isolated GPU PCI Ids": "",
@@ -623,6 +624,7 @@
"Reporting Exporters": "",
"Reporting Read": "",
"Reporting Write": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Reservation": "",
"Reservation (in GiB)": "",
@@ -630,6 +632,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart Options": "",
"Restart Standby": "",
"Restart standby TrueNAS controller": "",
diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/fy.json
+++ b/src/assets/i18n/fy.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json
index be928777f24..eeb0b9849f5 100644
--- a/src/assets/i18n/ga.json
+++ b/src/assets/i18n/ga.json
@@ -143,6 +143,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Invalid CPU configuration.": "",
"Invalid Date": "",
@@ -210,9 +211,11 @@
"Regularly scheduled system checks and updates.": "",
"Release": "",
"Remove iXVolumes": "",
+ "Requested action performed for selected Instances": "",
"Required reset to fix system operation issues.": "",
"Required restart after new software installation.": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart Options": "",
"Restart standby TrueNAS controller": "",
"Restart to improve system performance speed.": "",
diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/gd.json
+++ b/src/assets/i18n/gd.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/gl.json
+++ b/src/assets/i18n/gl.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/he.json
+++ b/src/assets/i18n/he.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/hi.json
+++ b/src/assets/i18n/hi.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/hr.json
+++ b/src/assets/i18n/hr.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/hsb.json
+++ b/src/assets/i18n/hsb.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/hu.json
+++ b/src/assets/i18n/hu.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/ia.json
+++ b/src/assets/i18n/ia.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/id.json
+++ b/src/assets/i18n/id.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/io.json
+++ b/src/assets/i18n/io.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/is.json
+++ b/src/assets/i18n/is.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json
index d9ef29dffb9..57e8c4d11cc 100644
--- a/src/assets/i18n/it.json
+++ b/src/assets/i18n/it.json
@@ -2125,6 +2125,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3262,6 +3263,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3299,6 +3301,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json
index 170329b2d6f..6842fcdee07 100644
--- a/src/assets/i18n/ja.json
+++ b/src/assets/i18n/ja.json
@@ -2023,6 +2023,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface Settings": "",
@@ -3100,6 +3101,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3128,6 +3130,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/ka.json
+++ b/src/assets/i18n/ka.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/kk.json
+++ b/src/assets/i18n/kk.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/km.json
+++ b/src/assets/i18n/km.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/kn.json
+++ b/src/assets/i18n/kn.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json
index f090be9e5fe..58bc79b2656 100644
--- a/src/assets/i18n/ko.json
+++ b/src/assets/i18n/ko.json
@@ -1895,6 +1895,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3032,6 +3033,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3069,6 +3071,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/lb.json
+++ b/src/assets/i18n/lb.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json
index 81c6c6241f5..4a4887d4f31 100644
--- a/src/assets/i18n/lt.json
+++ b/src/assets/i18n/lt.json
@@ -2306,6 +2306,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3443,6 +3444,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3480,6 +3482,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/lv.json
+++ b/src/assets/i18n/lv.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/mk.json
+++ b/src/assets/i18n/mk.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/ml.json
+++ b/src/assets/i18n/ml.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/mn.json
+++ b/src/assets/i18n/mn.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/mr.json
+++ b/src/assets/i18n/mr.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/my.json
+++ b/src/assets/i18n/my.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/nb.json
+++ b/src/assets/i18n/nb.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/ne.json
+++ b/src/assets/i18n/ne.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json
index 4de4e43554d..4544b2fd6f1 100644
--- a/src/assets/i18n/nl.json
+++ b/src/assets/i18n/nl.json
@@ -52,6 +52,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Invalid CPU configuration.": "",
"Leave empty for default values": "",
@@ -73,6 +74,8 @@
"Reboot Local": "",
"Reboot Remote": "",
"Reboot Required": "",
+ "Requested action performed for selected Instances": "",
+ "Restart All Selected": "",
"Restart Options": "",
"Restarting...": "",
"Set an expiration date-time for the API key.": "",
diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/nn.json
+++ b/src/assets/i18n/nn.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/os.json
+++ b/src/assets/i18n/os.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/pa.json
+++ b/src/assets/i18n/pa.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json
index 6ec99a19cd8..9773d37522e 100644
--- a/src/assets/i18n/pl.json
+++ b/src/assets/i18n/pl.json
@@ -2259,6 +2259,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3393,6 +3394,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Required reset to fix system operation issues.": "",
"Required restart after new software installation.": "",
@@ -3417,6 +3419,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json
index ac81c8cc8ba..35c069b9923 100644
--- a/src/assets/i18n/pt-br.json
+++ b/src/assets/i18n/pt-br.json
@@ -2253,6 +2253,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3390,6 +3391,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3427,6 +3429,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json
index 7a8f5a270cd..19c407833ef 100644
--- a/src/assets/i18n/pt.json
+++ b/src/assets/i18n/pt.json
@@ -1265,6 +1265,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -2063,6 +2064,7 @@
"Reporting Read": "",
"Reporting Write": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -2085,6 +2087,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/ro.json
+++ b/src/assets/i18n/ro.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json
index 503d4e2ce69..383ff5d33c0 100644
--- a/src/assets/i18n/ru.json
+++ b/src/assets/i18n/ru.json
@@ -1394,6 +1394,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Intermediate CA": "",
@@ -2221,6 +2222,7 @@
"Reporting Read": "",
"Reporting Write": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Required reset to fix system operation issues.": "",
"Required restart after new software installation.": "",
@@ -2246,6 +2248,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/sk.json
+++ b/src/assets/i18n/sk.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/sl.json
+++ b/src/assets/i18n/sl.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/sq.json
+++ b/src/assets/i18n/sq.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/sr-latn.json
+++ b/src/assets/i18n/sr-latn.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/sr.json
+++ b/src/assets/i18n/sr.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/strings.json
+++ b/src/assets/i18n/strings.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/sv.json
+++ b/src/assets/i18n/sv.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/sw.json
+++ b/src/assets/i18n/sw.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/ta.json
+++ b/src/assets/i18n/ta.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/te.json
+++ b/src/assets/i18n/te.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/th.json
+++ b/src/assets/i18n/th.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/tr.json
+++ b/src/assets/i18n/tr.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/tt.json
+++ b/src/assets/i18n/tt.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/udm.json
+++ b/src/assets/i18n/udm.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json
index 22826252de6..34a85581220 100644
--- a/src/assets/i18n/uk.json
+++ b/src/assets/i18n/uk.json
@@ -894,6 +894,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Internal": "",
@@ -1375,6 +1376,7 @@
"Reporting Exporters": "",
"Reporting Read": "",
"Reporting Write": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Required reset to fix system operation issues.": "",
"Required restart after new software installation.": "",
@@ -1394,6 +1396,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json
index 0f5e82e08ae..774dcda84c5 100644
--- a/src/assets/i18n/vi.json
+++ b/src/assets/i18n/vi.json
@@ -2312,6 +2312,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface": "",
@@ -3449,6 +3450,7 @@
"Reporting Write": "",
"Reports": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -3486,6 +3488,7 @@
"Resolution": "",
"Restart": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",
diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json
index 5aca3989417..a2a144e6825 100644
--- a/src/assets/i18n/zh-hans.json
+++ b/src/assets/i18n/zh-hans.json
@@ -92,6 +92,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Invalid CPU configuration.": "",
"Invalid Date": "",
@@ -144,9 +145,11 @@
"Reboot Required": "",
"Regularly scheduled system checks and updates.": "",
"Release": "",
+ "Requested action performed for selected Instances": "",
"Required reset to fix system operation issues.": "",
"Required restart after new software installation.": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart Options": "",
"Restart standby TrueNAS controller": "",
"Restart to improve system performance speed.": "",
diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json
index ec56b61a427..f61c32ec47e 100644
--- a/src/assets/i18n/zh-hant.json
+++ b/src/assets/i18n/zh-hant.json
@@ -1916,6 +1916,7 @@
"Instance started": "",
"Instance stopped": "",
"Instance updated": "",
+ "Instances": "",
"Instances you created will automatically appear here.": "",
"Integrate Snapshots with VMware": "",
"Interface changes reverted.": "",
@@ -2887,6 +2888,7 @@
"Reporting Read": "",
"Reporting Write": "",
"Requested action performed for selected Applications": "",
+ "Requested action performed for selected Instances": "",
"Require IDENT Authentication": "",
"Require Kerberos for NFSv4": "",
"Required reset to fix system operation issues.": "",
@@ -2918,6 +2920,7 @@
"Resilvering:": "",
"Resolution": "",
"Restart After Update": "",
+ "Restart All Selected": "",
"Restart App": "",
"Restart Now": "",
"Restart Options": "",