diff --git a/src/app/interfaces/virtualization.interface.ts b/src/app/interfaces/virtualization.interface.ts
index 8e610733794..6cef3553431 100644
--- a/src/app/interfaces/virtualization.interface.ts
+++ b/src/app/interfaces/virtualization.interface.ts
@@ -91,6 +91,7 @@ export interface UpdateVirtualizationInstance {
vnc_port?: number | null;
secure_boot?: boolean;
vnc_password?: string | null;
+ root_disk_size?: number;
}
export type VirtualizationDevice =
diff --git a/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.html b/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.html
index f7df1ef3c28..812f87ad2b7 100644
--- a/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.html
+++ b/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.html
@@ -18,6 +18,13 @@
{{ +instance().root_disk_size | ixFileSize }}
+
+ {{ 'Increase' | translate }}
+
}
diff --git a/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.scss b/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.scss
index 9a37cfe7c38..31609ada931 100644
--- a/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.scss
+++ b/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.scss
@@ -5,7 +5,15 @@
}
.root-disk-size {
+ display: flex;
margin-bottom: 6px;
+
+ .action {
+ color: var(--primary);
+ cursor: pointer;
+ margin-left: auto;
+ text-decoration: underline;
+ }
}
.label {
diff --git a/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.spec.ts b/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.spec.ts
index d35ea47639d..995040d4355 100644
--- a/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.spec.ts
+++ b/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.spec.ts
@@ -1,6 +1,7 @@
import { HarnessLoader } from '@angular/cdk/testing';
import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed';
import { MatButtonHarness } from '@angular/material/button/testing';
+import { MatDialog } from '@angular/material/dialog';
import { createComponentFactory, mockProvider, Spectator } from '@ngneat/spectator/jest';
import { MockComponent } from 'ng-mocks';
import { of } from 'rxjs';
@@ -18,6 +19,10 @@ import {
DeviceActionsMenuComponent,
} from 'app/pages/instances/components/common/device-actions-menu/device-actions-menu.component';
import { VirtualizationDevicesStore } from 'app/pages/instances/stores/virtualization-devices.store';
+import { VirtualizationInstancesStore } from 'app/pages/instances/stores/virtualization-instances.store';
+import {
+ IncreaseRootDiskSizeComponent,
+} from 'app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component';
describe('InstanceDisksComponent', () => {
let spectator: Spectator;
@@ -49,11 +54,19 @@ describe('InstanceDisksComponent', () => {
devices: () => disks,
loadDevices: jest.fn(),
}),
+ mockProvider(VirtualizationInstancesStore, {
+ instanceUpdated: jest.fn(),
+ }),
mockProvider(SlideIn, {
open: jest.fn(() => of({
response: true,
})),
}),
+ mockProvider(MatDialog, {
+ open: jest.fn(() => ({
+ afterClosed: () => of(true),
+ })),
+ }),
],
});
@@ -100,6 +113,7 @@ describe('InstanceDisksComponent', () => {
);
});
});
+
describe('vm', () => {
const vm = {
id: 'my-instance',
@@ -135,5 +149,17 @@ describe('InstanceDisksComponent', () => {
expect(rootDisk).toHaveText('Root Disk: 10 GiB');
});
+
+ it('opens dialog to increase root disk size when Increase link is pressed', () => {
+ const link = spectator.query('.root-disk-size .action');
+ expect(link).toHaveText('Increase');
+
+ spectator.click(link);
+
+ expect(spectator.inject(MatDialog).open).toHaveBeenCalledWith(IncreaseRootDiskSizeComponent, {
+ data: vm,
+ });
+ expect(spectator.inject(VirtualizationInstancesStore).instanceUpdated).toHaveBeenCalled();
+ });
});
});
diff --git a/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.ts b/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.ts
index 8884999a2dd..77c1224272e 100644
--- a/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.ts
+++ b/src/app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disks.component.ts
@@ -5,10 +5,12 @@ import { MatButton } from '@angular/material/button';
import {
MatCard, MatCardContent, MatCardHeader, MatCardTitle,
} from '@angular/material/card';
+import { MatDialog } from '@angular/material/dialog';
import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
import { TranslateModule } from '@ngx-translate/core';
import { NgxSkeletonLoaderModule } from 'ngx-skeleton-loader';
import { filter } from 'rxjs/operators';
+import { GiB } from 'app/constants/bytes.constant';
import { VirtualizationDeviceType } from 'app/enums/virtualization.enum';
import { VirtualizationDisk, VirtualizationInstance } from 'app/interfaces/virtualization.interface';
import { FileSizePipe } from 'app/modules/pipes/file-size/file-size.pipe';
@@ -19,6 +21,10 @@ import {
} from 'app/pages/instances/components/all-instances/instance-details/instance-disks/instance-disk-form/instance-disk-form.component';
import { DeviceActionsMenuComponent } from 'app/pages/instances/components/common/device-actions-menu/device-actions-menu.component';
import { VirtualizationDevicesStore } from 'app/pages/instances/stores/virtualization-devices.store';
+import { VirtualizationInstancesStore } from 'app/pages/instances/stores/virtualization-instances.store';
+import {
+ IncreaseRootDiskSizeComponent,
+} from 'app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component';
@UntilDestroy()
@Component({
@@ -47,7 +53,9 @@ export class InstanceDisksComponent {
constructor(
private slideIn: SlideIn,
+ private matDialog: MatDialog,
private deviceStore: VirtualizationDevicesStore,
+ private instanceStore: VirtualizationInstancesStore,
) {}
protected readonly visibleDisks = computed(() => {
@@ -65,6 +73,16 @@ export class InstanceDisksComponent {
this.openDiskForm(disk);
}
+ protected showRootDiskIncreaseDialog(): void {
+ this.matDialog.open(IncreaseRootDiskSizeComponent, { data: this.instance() })
+ .afterClosed()
+ .pipe(filter(Boolean), untilDestroyed(this))
+ .subscribe((newRootDiskSize: number) => this.instanceStore.instanceUpdated({
+ ...this.instance(),
+ root_disk_size: newRootDiskSize * GiB,
+ }));
+ }
+
private openDiskForm(disk?: VirtualizationDisk): void {
this.slideIn.open(InstanceDiskFormComponent, { data: { disk, instance: this.instance() } })
.pipe(filter((result) => !!result.response), untilDestroyed(this))
diff --git a/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.html b/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.html
new file mode 100644
index 00000000000..b017b81d095
--- /dev/null
+++ b/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.html
@@ -0,0 +1,33 @@
+
+ {{ 'Increase Root Disk Size' | translate }}
+
+
+
diff --git a/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.scss b/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.scss
new file mode 100644
index 00000000000..7b7b0f82f42
--- /dev/null
+++ b/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.scss
@@ -0,0 +1,4 @@
+:host {
+ display: block;
+ width: 350px;
+}
diff --git a/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.spec.ts b/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.spec.ts
new file mode 100644
index 00000000000..84286a74bde
--- /dev/null
+++ b/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.spec.ts
@@ -0,0 +1,86 @@
+import { HarnessLoader } from '@angular/cdk/testing';
+import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed';
+import { MatButtonHarness } from '@angular/material/button/testing';
+import { MAT_DIALOG_DATA, MatDialogRef } from '@angular/material/dialog';
+import { createComponentFactory, mockProvider, Spectator } from '@ngneat/spectator/jest';
+import { of } from 'rxjs';
+import { GiB } from 'app/constants/bytes.constant';
+import { fakeSuccessfulJob } from 'app/core/testing/utils/fake-job.utils';
+import { mockApi, mockJob } from 'app/core/testing/utils/mock-api.utils';
+import { VirtualizationInstance } from 'app/interfaces/virtualization.interface';
+import { DialogService } from 'app/modules/dialog/dialog.service';
+import { IxFormHarness } from 'app/modules/forms/ix-forms/testing/ix-form.harness';
+import { SnackbarService } from 'app/modules/snackbar/services/snackbar.service';
+import { ApiService } from 'app/modules/websocket/api.service';
+import {
+ IncreaseRootDiskSizeComponent,
+} from 'app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component';
+
+describe('IncreaseRootDiskSizeComponent', () => {
+ let spectator: Spectator;
+ let loader: HarnessLoader;
+
+ const createComponent = createComponentFactory({
+ component: IncreaseRootDiskSizeComponent,
+ providers: [
+ mockApi([
+ mockJob('virt.instance.update', fakeSuccessfulJob()),
+ ]),
+ mockProvider(SnackbarService),
+ mockProvider(MatDialogRef),
+ mockProvider(DialogService, {
+ jobDialog: jest.fn(() => ({
+ afterClosed: () => of(true),
+ })),
+ }),
+ {
+ provide: MAT_DIALOG_DATA,
+ useValue: {
+ id: 'test',
+ root_disk_size: 2 * GiB,
+ } as VirtualizationInstance,
+ },
+ ],
+ });
+
+ beforeEach(() => {
+ spectator = createComponent();
+ loader = TestbedHarnessEnvironment.loader(spectator.fixture);
+ });
+
+ it('shows current root disk size', async () => {
+ const form = await loader.getHarness(IxFormHarness);
+
+ expect(await form.getValues()).toEqual({
+ 'Root Disk Size (in GiB)': '2',
+ });
+ });
+
+ it('increases root disk size when new value is set', async () => {
+ const form = await loader.getHarness(IxFormHarness);
+ await form.fillForm({
+ 'Root Disk Size (in GiB)': '4',
+ });
+
+ const saveButton = await loader.getHarness(MatButtonHarness.with({ text: 'Save' }));
+ await saveButton.click();
+
+ expect(spectator.inject(ApiService).job).toHaveBeenCalledWith('virt.instance.update', [
+ 'test',
+ { root_disk_size: 4 },
+ ]);
+ expect(spectator.inject(DialogService).jobDialog).toHaveBeenCalled();
+ expect(spectator.inject(SnackbarService).success).toHaveBeenCalled();
+ expect(spectator.inject(MatDialogRef).close).toHaveBeenCalledWith(4);
+ });
+
+ it('does not allow value that is smaller than previous root disk size', async () => {
+ const form = await loader.getHarness(IxFormHarness);
+ await form.fillForm({
+ 'Root Disk Size (in GiB)': '1',
+ });
+
+ const input = await form.getControl('Root Disk Size (in GiB)');
+ expect(await input.getErrorText()).toBe('Minimum value is 2');
+ });
+});
diff --git a/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.ts b/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.ts
new file mode 100644
index 00000000000..2c0a62722c8
--- /dev/null
+++ b/src/app/pages/virtualization/components/all-instances/instance-details/instance-disks/increase-root-disk-size/increase-root-disk-size.component.ts
@@ -0,0 +1,78 @@
+import {
+ ChangeDetectionStrategy, Component, Inject,
+} from '@angular/core';
+import { NonNullableFormBuilder, ReactiveFormsModule, Validators } from '@angular/forms';
+import { MatButton } from '@angular/material/button';
+import {
+ MAT_DIALOG_DATA, MatDialogClose, MatDialogRef, MatDialogTitle,
+} from '@angular/material/dialog';
+import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy';
+import { TranslateModule, TranslateService } from '@ngx-translate/core';
+import { GiB } from 'app/constants/bytes.constant';
+import { VirtualizationInstance } from 'app/interfaces/virtualization.interface';
+import { DialogService } from 'app/modules/dialog/dialog.service';
+import { FormActionsComponent } from 'app/modules/forms/ix-forms/components/form-actions/form-actions.component';
+import { IxInputComponent } from 'app/modules/forms/ix-forms/components/ix-input/ix-input.component';
+import { IxFormatterService } from 'app/modules/forms/ix-forms/services/ix-formatter.service';
+import { SnackbarService } from 'app/modules/snackbar/services/snackbar.service';
+import { TestDirective } from 'app/modules/test-id/test.directive';
+import { ApiService } from 'app/modules/websocket/api.service';
+import { ErrorHandlerService } from 'app/services/error-handler.service';
+
+@UntilDestroy()
+@Component({
+ selector: 'ix-increase-root-disk-size',
+ templateUrl: './increase-root-disk-size.component.html',
+ styleUrls: ['./increase-root-disk-size.component.scss'],
+ standalone: true,
+ changeDetection: ChangeDetectionStrategy.OnPush,
+ imports: [
+ IxInputComponent,
+ MatButton,
+ MatDialogClose,
+ MatDialogTitle,
+ ReactiveFormsModule,
+ TestDirective,
+ TranslateModule,
+ FormActionsComponent,
+ ],
+})
+export class IncreaseRootDiskSizeComponent {
+ protected readonly form = this.formBuilder.group({
+ size: [0],
+ });
+
+ constructor(
+ @Inject(MAT_DIALOG_DATA) private instance: VirtualizationInstance,
+ private formBuilder: NonNullableFormBuilder,
+ private errorHandler: ErrorHandlerService,
+ private dialogService: DialogService,
+ private api: ApiService,
+ private translate: TranslateService,
+ private snackbar: SnackbarService,
+ private dialogRef: MatDialogRef,
+ protected formatter: IxFormatterService,
+ ) {
+ this.form.setValue({
+ size: this.instance.root_disk_size / GiB,
+ });
+
+ this.form.controls.size.addValidators(Validators.min(this.instance.root_disk_size / GiB));
+ }
+
+ onSubmit(): void {
+ this.dialogService.jobDialog(
+ this.api.job('virt.instance.update', [this.instance.id, { root_disk_size: this.form.value.size }]),
+ { title: this.translate.instant('Increasing disk size') },
+ )
+ .afterClosed()
+ .pipe(
+ this.errorHandler.catchError(),
+ untilDestroyed(this),
+ )
+ .subscribe(() => {
+ this.dialogRef.close(this.form.value.size);
+ this.snackbar.success(this.translate.instant('Disk size increased'));
+ });
+ }
+}
diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/af.json
+++ b/src/assets/i18n/af.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/ar.json
+++ b/src/assets/i18n/ar.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/ast.json
+++ b/src/assets/i18n/ast.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/az.json
+++ b/src/assets/i18n/az.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/be.json
+++ b/src/assets/i18n/be.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/bg.json
+++ b/src/assets/i18n/bg.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/bn.json
+++ b/src/assets/i18n/bn.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/br.json
+++ b/src/assets/i18n/br.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/bs.json
+++ b/src/assets/i18n/bs.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/ca.json
+++ b/src/assets/i18n/ca.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json
index f08d99f2fc3..ae82a8c9c8b 100644
--- a/src/assets/i18n/cs.json
+++ b/src/assets/i18n/cs.json
@@ -1056,6 +1056,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
"Disks temperature related alerts": "",
@@ -1797,7 +1798,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Inherit": "",
diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/cy.json
+++ b/src/assets/i18n/cy.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/da.json
+++ b/src/assets/i18n/da.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json
index 47e9e0f9ec5..8e44b0b22c2 100644
--- a/src/assets/i18n/de.json
+++ b/src/assets/i18n/de.json
@@ -1035,6 +1035,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
"Disks temperature related alerts": "",
@@ -1645,7 +1646,10 @@
"Incoming [{networkInterfaceName}]": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Informational": "",
"Inherit": "",
diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/dsb.json
+++ b/src/assets/i18n/dsb.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/el.json
+++ b/src/assets/i18n/el.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/en-au.json
+++ b/src/assets/i18n/en-au.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/en-gb.json
+++ b/src/assets/i18n/en-gb.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/eo.json
+++ b/src/assets/i18n/eo.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json
index 1f3cc139560..80a7c8b3738 100644
--- a/src/assets/i18n/es-ar.json
+++ b/src/assets/i18n/es-ar.json
@@ -2,7 +2,11 @@
"": "",
"Add Instances": "",
"Archs": "",
+ "Disk size increased": "",
"Flash Identify Light": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
+ "Increasing disk size": "",
"Key Cert Sign": "",
"Key Usage Config": "",
"Keychain Credential Read": "",
diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/es-co.json
+++ b/src/assets/i18n/es-co.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/es-mx.json
+++ b/src/assets/i18n/es-mx.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/es-ni.json
+++ b/src/assets/i18n/es-ni.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/es-ve.json
+++ b/src/assets/i18n/es-ve.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json
index 4cc8cfff2fd..5c3fb3ee6f2 100644
--- a/src/assets/i18n/es.json
+++ b/src/assets/i18n/es.json
@@ -1239,6 +1239,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
"Disks to be edited:": "",
@@ -2052,7 +2053,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/et.json
+++ b/src/assets/i18n/et.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/eu.json
+++ b/src/assets/i18n/eu.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/fa.json
+++ b/src/assets/i18n/fa.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/fi.json
+++ b/src/assets/i18n/fi.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json
index 17c583a40dc..57b5c55e757 100644
--- a/src/assets/i18n/fr.json
+++ b/src/assets/i18n/fr.json
@@ -182,6 +182,7 @@
"Disk IO": "",
"Disk Tests": "",
"Disk saved": "",
+ "Disk size increased": "",
"Disks on {enclosure}": "",
"Dismiss": "",
"Dispersal Strategy": "",
@@ -323,6 +324,9 @@
"Import File": "",
"Improvement": "",
"Incoming [{networkInterfaceName}]": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
+ "Increasing disk size": "",
"Init/Shutdown Script": "",
"Initialized": "",
"Initializing...": "",
diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/fy.json
+++ b/src/assets/i18n/fy.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json
index 1c683eeaaa5..d1bc5eb8ace 100644
--- a/src/assets/i18n/ga.json
+++ b/src/assets/i18n/ga.json
@@ -148,6 +148,7 @@
"Discovery Authentication": "",
"Disk I/O Full Pressure": "",
"Disk saved": "",
+ "Disk size increased": "",
"Do not connect to a fibre channel port": "",
"Docker Hub": "",
"Docker Registries": "",
@@ -244,7 +245,10 @@
"Image uploaded successfully": "",
"In order to update the form, you need to disable the service first": "",
"Incoming / Outgoing network traffic": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"Initialized": "",
"Initializing...": "",
"Initiator Group": "",
diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/gd.json
+++ b/src/assets/i18n/gd.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/gl.json
+++ b/src/assets/i18n/gl.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/he.json
+++ b/src/assets/i18n/he.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/hi.json
+++ b/src/assets/i18n/hi.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/hr.json
+++ b/src/assets/i18n/hr.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/hsb.json
+++ b/src/assets/i18n/hsb.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/hu.json
+++ b/src/assets/i18n/hu.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/ia.json
+++ b/src/assets/i18n/ia.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/id.json
+++ b/src/assets/i18n/id.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/io.json
+++ b/src/assets/i18n/io.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/is.json
+++ b/src/assets/i18n/is.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json
index 03e99fdddf1..38f8b6075f5 100644
--- a/src/assets/i18n/it.json
+++ b/src/assets/i18n/it.json
@@ -1242,6 +1242,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
"Disks temperature related alerts": "",
@@ -2091,7 +2092,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json
index 1c12cb396ef..4ed09bf62fe 100644
--- a/src/assets/i18n/ja.json
+++ b/src/assets/i18n/ja.json
@@ -1204,6 +1204,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
"Disks temperature related alerts": "",
@@ -1993,7 +1994,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/ka.json
+++ b/src/assets/i18n/ka.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/kk.json
+++ b/src/assets/i18n/kk.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/km.json
+++ b/src/assets/i18n/km.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/kn.json
+++ b/src/assets/i18n/kn.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json
index fab21a2b91f..5de53a5c5b6 100644
--- a/src/assets/i18n/ko.json
+++ b/src/assets/i18n/ko.json
@@ -1,6 +1,10 @@
{
"": "",
"Add Instances": "",
+ "Disk size increased": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
+ "Increasing disk size": "",
"Name cannot be changed after instance is created": "",
"Secure Boot is required for the VM image you selected": "",
"Secure Boot is required to be off for the VM image you selected": "",
diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/lb.json
+++ b/src/assets/i18n/lb.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json
index 81f393d3f72..812b35d1451 100644
--- a/src/assets/i18n/lt.json
+++ b/src/assets/i18n/lt.json
@@ -1389,6 +1389,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2263,7 +2264,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/lv.json
+++ b/src/assets/i18n/lv.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/mk.json
+++ b/src/assets/i18n/mk.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/ml.json
+++ b/src/assets/i18n/ml.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/mn.json
+++ b/src/assets/i18n/mn.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/mr.json
+++ b/src/assets/i18n/mr.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/my.json
+++ b/src/assets/i18n/my.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/nb.json
+++ b/src/assets/i18n/nb.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/ne.json
+++ b/src/assets/i18n/ne.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json
index 0d09b838505..9debcc4b069 100644
--- a/src/assets/i18n/nl.json
+++ b/src/assets/i18n/nl.json
@@ -18,6 +18,7 @@
"Created At": "",
"Delete volume": "",
"Details for ": "",
+ "Disk size increased": "",
"Edit App YAML": "",
"Edition": "",
"Enterprise": "",
@@ -27,6 +28,9 @@
"Host ID": "",
"Hottest": "",
"Image uploaded successfully": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
+ "Increasing disk size": "",
"Instance Console": "",
"Instance must be stopped to update VNC.": "",
"Job completed successfully": "",
diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/nn.json
+++ b/src/assets/i18n/nn.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/os.json
+++ b/src/assets/i18n/os.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/pa.json
+++ b/src/assets/i18n/pa.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json
index 88f48596ab9..15f3d58462b 100644
--- a/src/assets/i18n/pl.json
+++ b/src/assets/i18n/pl.json
@@ -1346,6 +1346,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2219,7 +2220,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json
index c7cc2cbfced..1353f35687d 100644
--- a/src/assets/i18n/pt-br.json
+++ b/src/assets/i18n/pt-br.json
@@ -1340,6 +1340,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2214,7 +2215,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json
index 17c97131895..3c390e08817 100644
--- a/src/assets/i18n/pt.json
+++ b/src/assets/i18n/pt.json
@@ -704,6 +704,7 @@
"Disk IO": "",
"Disk Tests": "",
"Disk saved": "",
+ "Disk size increased": "",
"Disks on {enclosure}": "",
"Disks w/ZFS Errors": "",
"Disks with exported pools": "",
@@ -1296,7 +1297,10 @@
"Incoming [{networkInterfaceName}]": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Inherit encryption properties from parent": "",
diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/ro.json
+++ b/src/assets/i18n/ro.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json
index c62a1945df1..8df51050bfe 100644
--- a/src/assets/i18n/ru.json
+++ b/src/assets/i18n/ru.json
@@ -905,6 +905,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
"Disks w/ZFS Errors": "",
@@ -1424,7 +1425,10 @@
"Incoming [{networkInterfaceName}]": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"Inherit Encryption": "",
"Inherit Only": "",
"Inherit domain from DHCP": "",
diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/sk.json
+++ b/src/assets/i18n/sk.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/sl.json
+++ b/src/assets/i18n/sl.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/sq.json
+++ b/src/assets/i18n/sq.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/sr-latn.json
+++ b/src/assets/i18n/sr-latn.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/sr.json
+++ b/src/assets/i18n/sr.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/strings.json
+++ b/src/assets/i18n/strings.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/sv.json
+++ b/src/assets/i18n/sv.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/sw.json
+++ b/src/assets/i18n/sw.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/ta.json
+++ b/src/assets/i18n/ta.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/te.json
+++ b/src/assets/i18n/te.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/th.json
+++ b/src/assets/i18n/th.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/tr.json
+++ b/src/assets/i18n/tr.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/tt.json
+++ b/src/assets/i18n/tt.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/udm.json
+++ b/src/assets/i18n/udm.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json
index 5256803951c..436ebbde708 100644
--- a/src/assets/i18n/uk.json
+++ b/src/assets/i18n/uk.json
@@ -625,6 +625,7 @@
"Disk IO": "",
"Disk Tests": "",
"Disk saved": "",
+ "Disk size increased": "",
"Disks on {enclosure}": "",
"Disks w/ZFS Errors": "",
"Disks with exported pools": "",
@@ -960,7 +961,10 @@
"Incoming / Outgoing network traffic": "",
"Incoming [{networkInterfaceName}]": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"Inherit ({value})": "",
"Inherit Encryption": "",
"Inherit encryption properties from parent": "",
diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json
index 3bc6d8d64aa..a0a9bb80ca0 100644
--- a/src/assets/i18n/vi.json
+++ b/src/assets/i18n/vi.json
@@ -1395,6 +1395,7 @@
"Disk not attached to any pools.": "",
"Disk saved": "",
"Disk settings successfully saved.": "",
+ "Disk size increased": "",
"Disks": "",
"Disks Overview": "",
"Disks on {enclosure}": "",
@@ -2269,7 +2270,10 @@
"Incorrect Password": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Info": "",
"Informational": "",
diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json
index 5ae95ee9c33..34958a0a988 100644
--- a/src/assets/i18n/zh-hans.json
+++ b/src/assets/i18n/zh-hans.json
@@ -39,6 +39,7 @@
"Delete volume": "",
"Details for ": "",
"Disable Service": "",
+ "Disk size increased": "",
"Docker Hub": "",
"Docker Registries": "",
"Docker Registry": "",
@@ -92,6 +93,9 @@
"Hottest": "",
"Image uploaded successfully": "",
"In order to update the form, you need to disable the service first": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
+ "Increasing disk size": "",
"Instance Console": "",
"Instance must be stopped to add TPM.": "",
"Instance must be stopped to update VNC.": "",
diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json
index 4beac300b4f..9b19c2abfe0 100644
--- a/src/assets/i18n/zh-hant.json
+++ b/src/assets/i18n/zh-hant.json
@@ -778,6 +778,7 @@
"Disable Endpoint Region": "",
"Disable Physical Block Size Reporting": "",
"Disable Service": "",
+ "Disk size increased": "",
"Dismiss": "",
"Dismiss All Alerts": "",
"Dismissed": "",
@@ -1452,7 +1453,10 @@
"Incoming [{networkInterfaceName}]": "",
"Incorrect crontab value.": "",
"Incorrect or expired OTP. Please try again.": "",
+ "Increase": "",
+ "Increase Root Disk Size": "",
"Increase logging verbosity related to the active directory service in /var/log/middlewared.log": "",
+ "Increasing disk size": "",
"InfluxDB time series name for collected points.": "",
"Inherit (encrypted)": "",
"Inherit (non-encrypted)": "",