From b45696c407d72afcdd39837675e285d4e32d1e23 Mon Sep 17 00:00:00 2001 From: Boris Vasilenko Date: Wed, 5 Feb 2025 07:21:54 +0300 Subject: [PATCH 1/4] NAS-133932: Fix `fileInput` value reset --- .../components/ix-file-input/ix-file-input.component.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/modules/forms/ix-forms/components/ix-file-input/ix-file-input.component.ts b/src/app/modules/forms/ix-forms/components/ix-file-input/ix-file-input.component.ts index a4012e2be0a..072adc5d00a 100644 --- a/src/app/modules/forms/ix-forms/components/ix-file-input/ix-file-input.component.ts +++ b/src/app/modules/forms/ix-forms/components/ix-file-input/ix-file-input.component.ts @@ -1,5 +1,5 @@ import { - ChangeDetectionStrategy, ChangeDetectorRef, Component, input, viewChild, + ChangeDetectionStrategy, ChangeDetectorRef, Component, ElementRef, input, viewChild, } from '@angular/core'; import { ControlValueAccessor, NgControl, @@ -50,7 +50,7 @@ export class IxFileInputComponent implements ControlValueAccessor { private onChange: (value: File[]) => void = (): void => {}; private onTouch: () => void = (): void => {}; - private fileInput = viewChild.required('fileInput'); + private fileInput = viewChild.required>('fileInput'); constructor( public controlDirective: NgControl, @@ -70,7 +70,7 @@ export class IxFileInputComponent implements ControlValueAccessor { writeValue(value: File[] | null): void { this.value = this.transformFiles(value || []); if (!value?.length) { - this.fileInput().value = null; + this.fileInput().nativeElement.value = null; } this.cdr.markForCheck(); From 13c98d95cfcf4a211b3ecf5afc96f4bfc05b2798 Mon Sep 17 00:00:00 2001 From: Boris Vasilenko Date: Thu, 6 Feb 2025 16:40:51 +0300 Subject: [PATCH 2/4] NAS-133932: Check ISO for existence --- .../upload-iso-button.component.spec.ts | 4 ++++ .../upload-iso-button.component.ts | 18 +++++++++++++++--- src/assets/i18n/af.json | 1 + src/assets/i18n/ar.json | 1 + src/assets/i18n/ast.json | 1 + src/assets/i18n/az.json | 1 + src/assets/i18n/be.json | 1 + src/assets/i18n/bg.json | 1 + src/assets/i18n/bn.json | 1 + src/assets/i18n/br.json | 1 + src/assets/i18n/bs.json | 1 + src/assets/i18n/ca.json | 1 + src/assets/i18n/cs.json | 1 + src/assets/i18n/cy.json | 1 + src/assets/i18n/da.json | 1 + src/assets/i18n/de.json | 1 + src/assets/i18n/dsb.json | 1 + src/assets/i18n/el.json | 1 + src/assets/i18n/en-au.json | 1 + src/assets/i18n/en-gb.json | 1 + src/assets/i18n/en.json | 1 + src/assets/i18n/eo.json | 1 + src/assets/i18n/es-ar.json | 1 + src/assets/i18n/es-co.json | 1 + src/assets/i18n/es-mx.json | 1 + src/assets/i18n/es-ni.json | 1 + src/assets/i18n/es-ve.json | 1 + src/assets/i18n/es.json | 1 + src/assets/i18n/et.json | 1 + src/assets/i18n/eu.json | 1 + src/assets/i18n/fa.json | 1 + src/assets/i18n/fi.json | 1 + src/assets/i18n/fr.json | 1 + src/assets/i18n/fy.json | 1 + src/assets/i18n/ga.json | 1 + src/assets/i18n/gd.json | 1 + src/assets/i18n/gl.json | 1 + src/assets/i18n/he.json | 1 + src/assets/i18n/hi.json | 1 + src/assets/i18n/hr.json | 1 + src/assets/i18n/hsb.json | 1 + src/assets/i18n/hu.json | 1 + src/assets/i18n/ia.json | 1 + src/assets/i18n/id.json | 1 + src/assets/i18n/io.json | 1 + src/assets/i18n/is.json | 1 + src/assets/i18n/it.json | 1 + src/assets/i18n/ja.json | 1 + src/assets/i18n/ka.json | 1 + src/assets/i18n/kk.json | 1 + src/assets/i18n/km.json | 1 + src/assets/i18n/kn.json | 1 + src/assets/i18n/ko.json | 1 + src/assets/i18n/lb.json | 1 + src/assets/i18n/lt.json | 1 + src/assets/i18n/lv.json | 1 + src/assets/i18n/mk.json | 1 + src/assets/i18n/ml.json | 1 + src/assets/i18n/mn.json | 1 + src/assets/i18n/mr.json | 1 + src/assets/i18n/my.json | 1 + src/assets/i18n/nb.json | 1 + src/assets/i18n/ne.json | 1 + src/assets/i18n/nl.json | 1 + src/assets/i18n/nn.json | 1 + src/assets/i18n/os.json | 1 + src/assets/i18n/pa.json | 1 + src/assets/i18n/pl.json | 1 + src/assets/i18n/pt-br.json | 1 + src/assets/i18n/pt.json | 1 + src/assets/i18n/ro.json | 1 + src/assets/i18n/ru.json | 1 + src/assets/i18n/sk.json | 1 + src/assets/i18n/sl.json | 1 + src/assets/i18n/sq.json | 1 + src/assets/i18n/sr-latn.json | 1 + src/assets/i18n/sr.json | 1 + src/assets/i18n/strings.json | 1 + src/assets/i18n/sv.json | 1 + src/assets/i18n/sw.json | 1 + src/assets/i18n/ta.json | 1 + src/assets/i18n/te.json | 1 + src/assets/i18n/th.json | 1 + src/assets/i18n/tr.json | 1 + src/assets/i18n/tt.json | 1 + src/assets/i18n/udm.json | 1 + src/assets/i18n/uk.json | 1 + src/assets/i18n/vi.json | 1 + src/assets/i18n/zh-hans.json | 1 + src/assets/i18n/zh-hant.json | 1 + 90 files changed, 107 insertions(+), 3 deletions(-) diff --git a/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.spec.ts b/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.spec.ts index 2492a2e103e..143bc7efcc5 100644 --- a/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.spec.ts +++ b/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.spec.ts @@ -3,6 +3,7 @@ import { TestbedHarnessEnvironment } from '@angular/cdk/testing/testbed'; import { createComponentFactory, mockProvider, Spectator } from '@ngneat/spectator/jest'; import { of } from 'rxjs'; import { fakeFile } from 'app/core/testing/utils/fake-file.uitls'; +import { mockApi, mockCall } from 'app/core/testing/utils/mock-api.utils'; import { mockAuth } from 'app/core/testing/utils/mock-auth.utils'; import { Job } from 'app/interfaces/job.interface'; import { DialogService } from 'app/modules/dialog/dialog.service'; @@ -28,6 +29,9 @@ describe('UploadIsoButtonComponent', () => { })), }), mockProvider(SnackbarService), + mockApi([ + mockCall('virt.volume.query', []), + ]), mockAuth(), ], }); diff --git a/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.ts b/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.ts index 34790e4e435..89939ba55ed 100644 --- a/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.ts +++ b/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.ts @@ -4,12 +4,13 @@ import { import { FormControl, ReactiveFormsModule } from '@angular/forms'; import { UntilDestroy, untilDestroyed } from '@ngneat/until-destroy'; import { TranslateModule, TranslateService } from '@ngx-translate/core'; -import { filter } from 'rxjs'; +import { filter, map, switchMap } from 'rxjs'; import { RequiresRolesDirective } from 'app/directives/requires-roles/requires-roles.directive'; import { Role } from 'app/enums/role.enum'; import { DialogService } from 'app/modules/dialog/dialog.service'; import { IxFileInputComponent } from 'app/modules/forms/ix-forms/components/ix-file-input/ix-file-input.component'; import { SnackbarService } from 'app/modules/snackbar/services/snackbar.service'; +import { ApiService } from 'app/modules/websocket/api.service'; import { ErrorHandlerService } from 'app/services/error-handler.service'; import { UploadService } from 'app/services/upload.service'; @@ -39,18 +40,21 @@ export class UploadIsoButtonComponent implements OnInit { private translate: TranslateService, private uploadService: UploadService, private snackbar: SnackbarService, + private api: ApiService, ) {} ngOnInit(): void { this.imageFileControl.valueChanges .pipe( filter((files) => !!files.length), + switchMap(() => this.api.call('virt.volume.query')), + map((volumes) => volumes.map((volume) => volume.name)), untilDestroyed(this), ) - .subscribe(() => this.uploadImage()); + .subscribe((existingNames) => this.uploadImage(existingNames)); } - private uploadImage(): void { + private uploadImage(existingNames: string[]): void { const file = this.imageFileControl.value[0]; this.imageFileControl.setValue([]); const job$ = this.uploadService.uploadAsJob({ @@ -62,6 +66,14 @@ export class UploadIsoButtonComponent implements OnInit { }], }); + if (existingNames.includes(file.name)) { + this.dialogService.error({ + title: this.translate.instant('Error'), + message: this.translate.instant('Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.'), + }); + return; + } + this.dialogService .jobDialog(job$, { title: this.translate.instant('Uploading Image') }) .afterClosed() diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 9c3b47b9186..bd2cf412843 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -4226,6 +4226,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING: A failover will temporarily interrupt system services.": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 8528e03cc6f..1708c84da2f 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -3750,6 +3750,7 @@ "Volume Size": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", "WARNING: Based on the pool topology, {size} is the minimum recommended record size. Choosing a smaller size can reduce system performance.": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 41abf2211a2..77dcef2cf1e 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -116,6 +116,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "everyone@": "", "group@": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 05b5adaddd8..3cb5fab451a 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -4560,6 +4560,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index 3924d7d3c17..8f93db17de5 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -824,6 +824,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WWPN": "", "WWPN (B)": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index a56e4ad8e01..a67a0f4d6cb 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -532,6 +532,7 @@ "Volume Mounts": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WWPN": "", "WWPN (B)": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 76d1b2c01c5..b65eb84b519 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -3877,6 +3877,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", "WWPN": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 8f0d0382c00..0d4edda306b 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -4530,6 +4530,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 373a21ea46f..8d536834a1a 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -25,6 +25,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "\n It looks like your session has been inactive for more than {lifetime} seconds.
\n For security reasons we will log you out at {time}.\n ": "세션의 비활성화 시간이 {lifetime}초를 넘었습니다.
보안을 위해 {time}에 로그아웃 되었습니다.", " Est. Usable Raw Capacity": " 사용 가능한 원시 용량 추정", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index 35d9fdf918b..a6d05454c34 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -4988,6 +4988,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 343bd0b75d0..7cf3599bc3a 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -69,6 +69,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "{temp}°C (All Cores)": "", "{temp}°C (Core #{core})": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index c147e1d812b..3d7c28be890 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -4924,6 +4924,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index dbc73f785bc..912423f8beb 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -4942,6 +4942,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index b11ce106979..3eaddee1647 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -3285,6 +3285,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING: A failover will temporarily interrupt system services.": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 02d0faf7409..2e47f33ac70 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -3390,6 +3390,7 @@ "Volume Size": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", "WARNING: Based on the pool topology, {size} is the minimum recommended record size. Choosing a smaller size can reduce system performance.": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index b7760285fa9..f05ef55d560 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -2167,6 +2167,7 @@ "Volume Size": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", "WARNING: These unknown processes will be terminated while exporting the pool.": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index 15a3f83944e..3e2064f212d 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -4997,6 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 8c139ce6c87..d8e379d62ca 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -176,6 +176,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "Waiting for claim token to be generated": "", "Waiting for registration with TrueNAS Connect to complete": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index b9100d67fde..545bfa285e8 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -3475,6 +3475,7 @@ "Volume Size": "", "Volume is in use.": "", "Volume removed": "", + "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", "Volumes": "", "WARNING: A failover will temporarily interrupt system services.": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", From e22e54ea17c1f4505aa53b9b2d0e7c6a3595e216 Mon Sep 17 00:00:00 2001 From: Boris Vasilenko Date: Thu, 6 Feb 2025 16:40:52 +0300 Subject: [PATCH 3/4] NAS-133932: Fix `uploadAsJob` method --- src/app/services/upload.service.ts | 32 +++++++++++++++++++++--------- 1 file changed, 23 insertions(+), 9 deletions(-) diff --git a/src/app/services/upload.service.ts b/src/app/services/upload.service.ts index 8c6ebea63f1..eb1d54991a9 100644 --- a/src/app/services/upload.service.ts +++ b/src/app/services/upload.service.ts @@ -1,10 +1,12 @@ import { - HttpClient, HttpEvent, HttpRequest, HttpResponse, + HttpClient, HttpEvent, HttpProgressEvent, HttpRequest, HttpResponse, } from '@angular/common/http'; import { Injectable } from '@angular/core'; import { Store } from '@ngrx/store'; -import { filter, Observable } from 'rxjs'; +import { TranslateService } from '@ngx-translate/core'; +import { Observable, of } from 'rxjs'; import { map, switchMap, take } from 'rxjs/operators'; +import { JobState } from 'app/enums/job-state.enum'; import { observeJob } from 'app/helpers/operators/observe-job.operator'; import { ApiJobMethod, ApiJobResponse } from 'app/interfaces/api/api-job-directory.interface'; import { Job } from 'app/interfaces/job.interface'; @@ -24,6 +26,7 @@ export interface UploadOptions { export class UploadService { constructor( protected http: HttpClient, + private translate: TranslateService, private authService: AuthService, private store$: Store, ) {} @@ -55,15 +58,26 @@ export class UploadService { uploadAsJob(options: UploadOptions): Observable>> { return this.upload(options) .pipe( - filter((event) => event instanceof HttpResponse), - switchMap((response: HttpResponse<{ job_id: number }>) => { - const jobId = response.body?.job_id; - if (!jobId) { - throw new Error('Job ID not found in response'); + switchMap((response: HttpResponse<{ job_id: number }> | HttpProgressEvent) => { + if (response instanceof HttpResponse) { + const jobId = response.body?.job_id; + if (!jobId) { + throw new Error('Job ID not found in response'); + } + return this.store$.select(selectJob(jobId)) + .pipe(observeJob()) as Observable>>; } - return this.store$.select(selectJob(jobId)) - .pipe(observeJob()) as Observable>>; + const fakeJob: Job> = { + progress: { + percent: response.loaded && response.total ? response.loaded / response.total * 100 : 0, + description: this.translate.instant('Uploading Image'), + }, + method: options.method, + state: JobState.Running, + } as Job>; + + return of(fakeJob); }), ); } From c0d119530cf8903f96e3387de6f5719e79cbeada Mon Sep 17 00:00:00 2001 From: undsoft Date: Fri, 7 Feb 2025 11:24:30 -0500 Subject: [PATCH 4/4] NAS-133932: Ease of use improvements for ISO uploads --- .../upload-iso-button/upload-iso-button.component.ts | 2 +- src/app/services/upload.service.ts | 2 +- src/assets/i18n/af.json | 3 ++- src/assets/i18n/ar.json | 3 ++- src/assets/i18n/ast.json | 3 ++- src/assets/i18n/az.json | 3 ++- src/assets/i18n/be.json | 3 ++- src/assets/i18n/bg.json | 3 ++- src/assets/i18n/bn.json | 3 ++- src/assets/i18n/br.json | 3 ++- src/assets/i18n/bs.json | 3 ++- src/assets/i18n/ca.json | 3 ++- src/assets/i18n/cs.json | 3 ++- src/assets/i18n/cy.json | 3 ++- src/assets/i18n/da.json | 3 ++- src/assets/i18n/de.json | 3 ++- src/assets/i18n/dsb.json | 3 ++- src/assets/i18n/el.json | 3 ++- src/assets/i18n/en-au.json | 3 ++- src/assets/i18n/en-gb.json | 3 ++- src/assets/i18n/en.json | 3 ++- src/assets/i18n/eo.json | 3 ++- src/assets/i18n/es-ar.json | 3 ++- src/assets/i18n/es-co.json | 3 ++- src/assets/i18n/es-mx.json | 3 ++- src/assets/i18n/es-ni.json | 3 ++- src/assets/i18n/es-ve.json | 3 ++- src/assets/i18n/es.json | 3 ++- src/assets/i18n/et.json | 3 ++- src/assets/i18n/eu.json | 3 ++- src/assets/i18n/fa.json | 3 ++- src/assets/i18n/fi.json | 3 ++- src/assets/i18n/fr.json | 3 ++- src/assets/i18n/fy.json | 3 ++- src/assets/i18n/ga.json | 3 ++- src/assets/i18n/gd.json | 3 ++- src/assets/i18n/gl.json | 3 ++- src/assets/i18n/he.json | 3 ++- src/assets/i18n/hi.json | 3 ++- src/assets/i18n/hr.json | 3 ++- src/assets/i18n/hsb.json | 3 ++- src/assets/i18n/hu.json | 3 ++- src/assets/i18n/ia.json | 3 ++- src/assets/i18n/id.json | 3 ++- src/assets/i18n/io.json | 3 ++- src/assets/i18n/is.json | 3 ++- src/assets/i18n/it.json | 3 ++- src/assets/i18n/ja.json | 3 ++- src/assets/i18n/ka.json | 3 ++- src/assets/i18n/kk.json | 3 ++- src/assets/i18n/km.json | 3 ++- src/assets/i18n/kn.json | 3 ++- src/assets/i18n/ko.json | 3 ++- src/assets/i18n/lb.json | 3 ++- src/assets/i18n/lt.json | 3 ++- src/assets/i18n/lv.json | 3 ++- src/assets/i18n/mk.json | 3 ++- src/assets/i18n/ml.json | 3 ++- src/assets/i18n/mn.json | 3 ++- src/assets/i18n/mr.json | 3 ++- src/assets/i18n/my.json | 3 ++- src/assets/i18n/nb.json | 3 ++- src/assets/i18n/ne.json | 3 ++- src/assets/i18n/nl.json | 3 ++- src/assets/i18n/nn.json | 3 ++- src/assets/i18n/os.json | 3 ++- src/assets/i18n/pa.json | 3 ++- src/assets/i18n/pl.json | 3 ++- src/assets/i18n/pt-br.json | 3 ++- src/assets/i18n/pt.json | 3 ++- src/assets/i18n/ro.json | 3 ++- src/assets/i18n/ru.json | 3 ++- src/assets/i18n/sk.json | 3 ++- src/assets/i18n/sl.json | 3 ++- src/assets/i18n/sq.json | 3 ++- src/assets/i18n/sr-latn.json | 3 ++- src/assets/i18n/sr.json | 3 ++- src/assets/i18n/strings.json | 3 ++- src/assets/i18n/sv.json | 3 ++- src/assets/i18n/sw.json | 3 ++- src/assets/i18n/ta.json | 3 ++- src/assets/i18n/te.json | 3 ++- src/assets/i18n/th.json | 3 ++- src/assets/i18n/tr.json | 3 ++- src/assets/i18n/tt.json | 3 ++- src/assets/i18n/udm.json | 3 ++- src/assets/i18n/uk.json | 3 ++- src/assets/i18n/vi.json | 3 ++- src/assets/i18n/zh-hans.json | 3 ++- src/assets/i18n/zh-hant.json | 3 ++- 90 files changed, 178 insertions(+), 90 deletions(-) diff --git a/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.ts b/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.ts index e2f062b5ced..400f528c026 100644 --- a/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.ts +++ b/src/app/pages/virtualization/components/common/volumes-dialog/upload-iso-button/upload-iso-button.component.ts @@ -69,7 +69,7 @@ export class UploadIsoButtonComponent implements OnInit { if (existingNames.includes(file.name)) { this.dialogService.error({ title: this.translate.instant('Error'), - message: this.translate.instant('Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.'), + message: this.translate.instant('Volume with this name already exists.'), }); return; } diff --git a/src/app/services/upload.service.ts b/src/app/services/upload.service.ts index eb1d54991a9..29c5403fd7e 100644 --- a/src/app/services/upload.service.ts +++ b/src/app/services/upload.service.ts @@ -71,7 +71,7 @@ export class UploadService { const fakeJob: Job> = { progress: { percent: response.loaded && response.total ? response.loaded / response.total * 100 : 0, - description: this.translate.instant('Uploading Image'), + description: this.translate.instant('Uploading'), }, method: options.method, state: JobState.Running, diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index b580e3f7f67..fbc87934bd0 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -4121,6 +4121,7 @@ "Updating pool settings": "", "Updating settings": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Use Absolute Paths": "", "Use Debug": "", @@ -4225,7 +4226,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING: A failover will temporarily interrupt system services.": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index b545528be57..e002f0e523d 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -3589,6 +3589,7 @@ "Upgrading Apps. Please check on the progress in Task Manager.": "", "Upload Manual Update File": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Usable Capacity": "", @@ -3749,7 +3750,7 @@ "Volume Size": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", "WARNING: Based on the pool topology, {size} is the minimum recommended record size. Choosing a smaller size can reduce system performance.": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index dab96a6bb1d..19d638a6635 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -72,7 +72,8 @@ "Strip ACL": "", "Stripe": "", "Table Actions of Expandable Table": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Uploading": "", + "Volume with this name already exists.": "", "everyone@": "", "group@": "", "{license} Contract,": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 834d9079146..9689a1d7065 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -4395,6 +4395,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Upsmon will wait up to this many seconds in master mode for the slaves to disconnect during a shutdown situation.": "", @@ -4559,7 +4560,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index 23d10c9f214..dc38dd4d458 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -760,6 +760,7 @@ "Unix NSS Info": "", "Unlink": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Usage Collection": "", "Usages": "", @@ -806,7 +807,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WWPN": "", "WWPN (B)": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index ed9c7cb55f7..d58cd1fb295 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -488,6 +488,7 @@ "Updating pool settings": "", "Updating settings": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Use Absolute Paths": "", "Use Debug": "", @@ -533,7 +534,7 @@ "Volume Mounts": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WWPN": "", "WWPN (B)": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 8ef0a682686..a2fb65ffebc 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -3823,6 +3823,7 @@ "Updating pool settings": "", "Updating settings": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Use Absolute Paths": "", "Use Custom ACME Server Directory URI": "", @@ -3878,7 +3879,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", "WWPN": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index a9e166e352c..284baca9203 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -4350,6 +4350,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4529,7 +4530,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 4d3c9d45e2e..0ba1e29fdf0 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -1,6 +1,7 @@ { "": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Uploading": "", + "Volume with this name already exists.": "", "\n It looks like your session has been inactive for more than {lifetime} seconds.
\n For security reasons we will log you out at {time}.\n ": "세션의 비활성화 시간이 {lifetime}초를 넘었습니다.
보안을 위해 {time}에 로그아웃 되었습니다.", " Est. Usable Raw Capacity": " 사용 가능한 원시 용량 추정", " When the UPS Mode is set to slave. Enter the open network port number of the UPS Master system. The default port is 3493.": " UPS 모드슬레이브일 때, 마스터 UPS 시스템의 네트워크 포트 번호를 입력합니다. 기본 포트는 3493입니다.", diff --git a/src/assets/i18n/lb.json b/src/assets/i18n/lb.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index b6ed12a62b5..50fb54a063f 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -4798,6 +4798,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4987,7 +4988,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 5774225dbea..47d6707478f 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -58,6 +58,7 @@ "TrueNAS is Free and Open Source software, which is provided as-is with no warranty.": "", "Two-Factor Authentication has been enabled on this system. You are required to setup your 2FA authentication. You will not be able to proceed without setting up 2FA for your account. Make sure to scan the QR code with your authenticator app in the end before logging out of the system or navigating away. Otherwise, you will be locked out of the system and will be unable to login after logging out.": "", "Upload New Image": "", + "Uploading": "", "Use an ISO image": "", "Use zvol with previously installed OS": "", "Used By": "", @@ -71,7 +72,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "{temp}°C (All Cores)": "", "{temp}°C (Core #{core})": "", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 6aa6808d748..31bf9615c06 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -4731,6 +4731,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4923,7 +4924,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 28fe6b85ad9..acd980b082e 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -4749,6 +4749,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4941,7 +4942,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index 3e2591d882d..2c71ac98b96 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -3128,6 +3128,7 @@ "Upload Configuration": "", "Upload Manual Update File": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Upsmon will wait up to this many seconds in master mode for the slaves to disconnect during a shutdown situation.": "", @@ -3284,7 +3285,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING: A failover will temporarily interrupt system services.": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index 5e2e33f6090..2abae117981 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -3237,6 +3237,7 @@ "Upload Configuration": "", "Upload Manual Update File": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Usage Collection": "", @@ -3389,7 +3390,7 @@ "Volume Size": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", "WARNING: Based on the pool topology, {size} is the minimum recommended record size. Choosing a smaller size can reduce system performance.": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index 8e5fc6771dc..905b680b129 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -2060,6 +2060,7 @@ "Upload Configuration": "", "Upload Manual Update File": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Usage Collection": "", @@ -2166,7 +2167,7 @@ "Volume Size": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "", "WARNING: These unknown processes will be terminated while exporting the pool.": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index 722eb2eb82a..8be51013202 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -4804,6 +4804,7 @@ "Upload Manual Update File": "", "Upload New Image": "", "Upload SSH Key": "", + "Uploading": "", "Uploading Image": "", "Uploading and Applying Config": "", "Uploading file...": "", @@ -4996,7 +4997,7 @@ "Volume is in use.": "", "Volume removed": "", "Volume size cannot be zero.": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING": "", "WARNING: A failover will temporarily interrupt system services.": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 6f0e8a6f7b7..906e28be179 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -156,6 +156,7 @@ "URI": "", "Update completed successfully. The system will reboot shortly": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Use a Linux image (linuxcontainer.org)": "", "Use an ISO image": "", @@ -177,7 +178,7 @@ "Volume": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "Waiting for claim token to be generated": "", "Waiting for registration with TrueNAS Connect to complete": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index d2fda59692c..0751a84a96b 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -3338,6 +3338,7 @@ "Upgrading Apps. Please check on the progress in Task Manager.": "", "Upload Chunk Size (MiB)": "", "Upload New Image": "", + "Uploading": "", "Uploading Image": "", "Use Signature Version 2": "", "Use Syslog Only": "", @@ -3474,7 +3475,7 @@ "Volume Size": "", "Volume is in use.": "", "Volume removed": "", - "Volume with this name already exists. After closing this error message, please click Select button next to a name of existing volume.": "", + "Volume with this name already exists.": "", "Volumes": "", "WARNING: A failover will temporarily interrupt system services.": "", "WARNING: Adding data VDEVs with different numbers of disks is not recommended.": "",