From eca5b0a7df5da0345650bbe4e7dd7d46f5ab872d Mon Sep 17 00:00:00 2001 From: Denys Butenko Date: Fri, 24 Jan 2025 23:26:25 +0700 Subject: [PATCH] NAS-133730 / 25.04 / Add VNC Password field to Instances (#11379) --- .../interfaces/virtualization.interface.ts | 3 ++ .../instance-edit-form.component.html | 34 ++++++++++++------- .../instance-edit-form.component.spec.ts | 6 ++++ .../instance-edit-form.component.ts | 10 +++++- .../instance-general-info.component.spec.ts | 1 + .../instance-wizard.component.html | 7 ++++ .../instance-wizard.component.spec.ts | 15 ++++++-- .../instance-wizard.component.ts | 2 ++ src/assets/i18n/af.json | 2 ++ src/assets/i18n/ar.json | 2 ++ src/assets/i18n/ast.json | 2 ++ src/assets/i18n/az.json | 2 ++ src/assets/i18n/be.json | 2 ++ src/assets/i18n/bg.json | 2 ++ src/assets/i18n/bn.json | 2 ++ src/assets/i18n/br.json | 2 ++ src/assets/i18n/bs.json | 2 ++ src/assets/i18n/ca.json | 2 ++ src/assets/i18n/cs.json | 2 ++ src/assets/i18n/cy.json | 2 ++ src/assets/i18n/da.json | 2 ++ src/assets/i18n/de.json | 2 ++ src/assets/i18n/dsb.json | 2 ++ src/assets/i18n/el.json | 2 ++ src/assets/i18n/en-au.json | 2 ++ src/assets/i18n/en-gb.json | 2 ++ src/assets/i18n/en.json | 2 ++ src/assets/i18n/eo.json | 2 ++ src/assets/i18n/es-ar.json | 2 ++ src/assets/i18n/es-co.json | 2 ++ src/assets/i18n/es-mx.json | 2 ++ src/assets/i18n/es-ni.json | 2 ++ src/assets/i18n/es-ve.json | 2 ++ src/assets/i18n/es.json | 2 ++ src/assets/i18n/et.json | 2 ++ src/assets/i18n/eu.json | 2 ++ src/assets/i18n/fa.json | 2 ++ src/assets/i18n/fi.json | 2 ++ src/assets/i18n/fr.json | 2 ++ src/assets/i18n/fy.json | 2 ++ src/assets/i18n/ga.json | 2 ++ src/assets/i18n/gd.json | 2 ++ src/assets/i18n/gl.json | 2 ++ src/assets/i18n/he.json | 2 ++ src/assets/i18n/hi.json | 2 ++ src/assets/i18n/hr.json | 2 ++ src/assets/i18n/hsb.json | 2 ++ src/assets/i18n/hu.json | 2 ++ src/assets/i18n/ia.json | 2 ++ src/assets/i18n/id.json | 2 ++ src/assets/i18n/io.json | 2 ++ src/assets/i18n/is.json | 2 ++ src/assets/i18n/it.json | 2 ++ src/assets/i18n/ja.json | 2 ++ src/assets/i18n/ka.json | 2 ++ src/assets/i18n/kk.json | 2 ++ src/assets/i18n/km.json | 2 ++ src/assets/i18n/kn.json | 2 ++ src/assets/i18n/ko.json | 2 ++ src/assets/i18n/lb.json | 2 ++ src/assets/i18n/lt.json | 2 ++ src/assets/i18n/lv.json | 2 ++ src/assets/i18n/mk.json | 2 ++ src/assets/i18n/ml.json | 2 ++ src/assets/i18n/mn.json | 2 ++ src/assets/i18n/mr.json | 2 ++ src/assets/i18n/my.json | 2 ++ src/assets/i18n/nb.json | 2 ++ src/assets/i18n/ne.json | 2 ++ src/assets/i18n/nl.json | 2 ++ src/assets/i18n/nn.json | 2 ++ src/assets/i18n/os.json | 2 ++ src/assets/i18n/pa.json | 2 ++ src/assets/i18n/pl.json | 2 ++ src/assets/i18n/pt-br.json | 2 ++ src/assets/i18n/pt.json | 2 ++ src/assets/i18n/ro.json | 2 ++ src/assets/i18n/ru.json | 2 ++ src/assets/i18n/sk.json | 2 ++ src/assets/i18n/sl.json | 2 ++ src/assets/i18n/sq.json | 2 ++ src/assets/i18n/sr-latn.json | 2 ++ src/assets/i18n/sr.json | 2 ++ src/assets/i18n/strings.json | 2 ++ src/assets/i18n/sv.json | 2 ++ src/assets/i18n/sw.json | 2 ++ src/assets/i18n/ta.json | 2 ++ src/assets/i18n/te.json | 2 ++ src/assets/i18n/th.json | 2 ++ src/assets/i18n/tr.json | 2 ++ src/assets/i18n/tt.json | 2 ++ src/assets/i18n/udm.json | 2 ++ src/assets/i18n/uk.json | 2 ++ src/assets/i18n/vi.json | 2 ++ src/assets/i18n/zh-hans.json | 2 ++ src/assets/i18n/zh-hant.json | 2 ++ 96 files changed, 238 insertions(+), 16 deletions(-) diff --git a/src/app/interfaces/virtualization.interface.ts b/src/app/interfaces/virtualization.interface.ts index e853d30627c..1f5f5e90d55 100644 --- a/src/app/interfaces/virtualization.interface.ts +++ b/src/app/interfaces/virtualization.interface.ts @@ -39,6 +39,7 @@ export interface VirtualizationInstance { image: VirtualizationImage; vnc_enabled: boolean; vnc_port: number | null; + vnc_password: string | null; } export interface VirtualizationAlias { @@ -66,6 +67,7 @@ export interface CreateVirtualizationInstance { * Value must be greater or equal to 5900 and lesser or equal to 65535 */ vnc_port?: number | null; + vnc_password?: string | null; } export interface UpdateVirtualizationInstance { @@ -75,6 +77,7 @@ export interface UpdateVirtualizationInstance { memory?: number; enable_vnc?: boolean; vnc_port?: number | null; + vnc_password?: string | null; } export type VirtualizationDevice = diff --git a/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.html b/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.html index 13b0ffdd375..a5468603d77 100644 --- a/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.html +++ b/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.html @@ -28,20 +28,28 @@ @if (isVm) { - +
+ - @if (form.value.enable_vnc) { - - } + @if (form.getRawValue().enable_vnc) { + + + + } +
} diff --git a/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.spec.ts b/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.spec.ts index af0d588b395..bc70880388e 100644 --- a/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.spec.ts +++ b/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.spec.ts @@ -36,6 +36,7 @@ describe('InstanceEditFormComponent', () => { vnc_enabled: true, vnc_port: 9001, status: VirtualizationStatus.Stopped, + vnc_password: null, } as VirtualizationInstance; const createComponent = createComponentFactory({ @@ -59,6 +60,7 @@ describe('InstanceEditFormComponent', () => { environment: {}, enable_vnc: true, vnc_port: 9000, + vnc_password: 'testing', }, })), ), @@ -85,6 +87,7 @@ describe('InstanceEditFormComponent', () => { 'CPU Configuration': '1-3', 'Memory Size': '2 GiB', 'VNC Port': '9001', + 'VNC Password': '', }); }); @@ -94,6 +97,7 @@ describe('InstanceEditFormComponent', () => { 'CPU Configuration': '2-5', 'Memory Size': '1 GiB', 'VNC Port': 9000, + 'VNC Password': 'testing', }); const saveButton = await loader.getHarness(MatButtonHarness.with({ text: 'Save' })); @@ -106,6 +110,7 @@ describe('InstanceEditFormComponent', () => { environment: {}, enable_vnc: true, vnc_port: 9000, + vnc_password: 'testing', }]); expect(spectator.inject(DialogService).jobDialog).toHaveBeenCalled(); expect(spectator.inject(SnackbarService).success).toHaveBeenCalled(); @@ -118,6 +123,7 @@ describe('InstanceEditFormComponent', () => { environment: {}, enable_vnc: true, vnc_port: 9000, + vnc_password: 'testing', }, error: false, }); diff --git a/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.ts b/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.ts index 3c9b7e85af8..e6087dfc298 100644 --- a/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.ts +++ b/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-edit-form/instance-edit-form.component.ts @@ -78,6 +78,7 @@ export class InstanceEditFormComponent { memory: [null as number | null], enable_vnc: [false], vnc_port: [defaultVncPort, [Validators.required, Validators.min(5900), Validators.max(65535)]], + vnc_password: [null as string], environmentVariables: new FormArray([]), }); @@ -104,6 +105,7 @@ export class InstanceEditFormComponent { memory: this.editingInstance.memory, enable_vnc: this.editingInstance.vnc_enabled, vnc_port: this.editingInstance.vnc_port, + vnc_password: this.editingInstance.vnc_password, }); this.setVncControls(); @@ -115,6 +117,10 @@ export class InstanceEditFormComponent { protected onSubmit(): void { const payload = this.getSubmissionPayload(); + if (!payload.enable_vnc) { + delete payload.vnc_port; + delete payload.vnc_password; + } const job$ = this.api.job('virt.instance.update', [this.editingInstance.id, payload]); this.dialogService.jobDialog(job$, { @@ -156,6 +162,7 @@ export class InstanceEditFormComponent { memory: values.memory, enable_vnc: values.enable_vnc, vnc_port: values.enable_vnc ? values.vnc_port || defaultVncPort : null, + vnc_password: values.enable_vnc ? values.vnc_password : null, } as UpdateVirtualizationInstance; } @@ -172,7 +179,6 @@ export class InstanceEditFormComponent { } private setVncControls(): void { - this.form.controls.vnc_port.disable(); this.form.controls.enable_vnc.valueChanges.pipe(untilDestroyed(this)).subscribe((vncEnabled) => { if (vncEnabled) { this.form.controls.vnc_port.enable(); @@ -183,6 +189,8 @@ export class InstanceEditFormComponent { if (!this.isStopped) { this.form.controls.enable_vnc.disable(); + this.form.controls.vnc_password.disable(); + this.form.controls.vnc_port.disable(); } } } diff --git a/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-general-info.component.spec.ts b/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-general-info.component.spec.ts index 58052491338..8f44c8f7925 100644 --- a/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-general-info.component.spec.ts +++ b/src/app/pages/virtualization/components/all-instances/instance-details/instance-general-info/instance-general-info.component.spec.ts @@ -49,6 +49,7 @@ const instance = { aliases: {} as VirtualizationAlias, raw: null, vnc_enabled: true, + vnc_password: '123456', vnc_port: 9000, } as VirtualizationInstance; diff --git a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.html b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.html index d5fcad10290..4e6026f41ee 100644 --- a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.html +++ b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.html @@ -320,6 +320,13 @@ type="number" [label]="'VNC Port' | translate" > + + } diff --git a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.spec.ts b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.spec.ts index 7e866304b00..07726ff5281 100644 --- a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.spec.ts +++ b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.spec.ts @@ -200,6 +200,7 @@ describe('InstanceWizardComponent', () => { environment: {}, enable_vnc: false, vnc_port: null, + vnc_password: null, }]); expect(spectator.inject(DialogService).jobDialog).toHaveBeenCalled(); expect(spectator.inject(SnackbarService).success).toHaveBeenCalled(); @@ -242,6 +243,7 @@ describe('InstanceWizardComponent', () => { memory: GiB, enable_vnc: false, vnc_port: null, + vnc_password: null, instance_type: 'CONTAINER', environment: {}, }]); @@ -303,8 +305,14 @@ describe('InstanceWizardComponent', () => { const gpuDeviceCheckbox = await loader.getHarness(MatCheckboxHarness.with({ label: 'NVIDIA GeForce GTX 1080' })); await gpuDeviceCheckbox.check(); - await form.fillForm({ 'Enable VNC': true }); - await form.fillForm({ 'VNC Port': 9000 }); + await form.fillForm({ + 'Enable VNC': true, + }); + + await form.fillForm({ + 'VNC Port': 9000, + 'VNC Password': 'testing', + }); const createButton = await loader.getHarness(MatButtonHarness.with({ text: 'Create' })); await createButton.click(); @@ -334,6 +342,7 @@ describe('InstanceWizardComponent', () => { memory: GiB, enable_vnc: true, vnc_port: 9000, + vnc_password: 'testing', }]); expect(spectator.inject(DialogService).jobDialog).toHaveBeenCalled(); expect(spectator.inject(SnackbarService).success).toHaveBeenCalled(); @@ -382,6 +391,7 @@ describe('InstanceWizardComponent', () => { source_type: null, memory: 1073741824, vnc_port: null, + vnc_password: null, }]); expect(spectator.inject(DialogService).jobDialog).toHaveBeenCalled(); expect(spectator.inject(SnackbarService).success).toHaveBeenCalled(); @@ -421,6 +431,7 @@ describe('InstanceWizardComponent', () => { instance_type: 'CONTAINER', enable_vnc: false, vnc_port: null, + vnc_password: null, }]); expect(spectator.inject(DialogService).jobDialog).toHaveBeenCalled(); expect(spectator.inject(SnackbarService).success).toHaveBeenCalled(); diff --git a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.ts b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.ts index 7fb2d365f6c..9dc3103f73e 100644 --- a/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.ts +++ b/src/app/pages/virtualization/components/instance-wizard/instance-wizard.component.ts @@ -152,6 +152,7 @@ export class InstanceWizardComponent { image: ['', [Validators.required, Validators.minLength(1), Validators.maxLength(200)]], enable_vnc: [false], vnc_port: [defaultVncPort, [Validators.min(5900), Validators.max(65535)]], + vnc_password: [null as string], cpu: ['', [cpuValidator()]], memory: [null as number], tpm: [false], @@ -343,6 +344,7 @@ export class InstanceWizardComponent { instance_type: this.form.controls.instance_type.value, enable_vnc: this.isVm ? this.form.value.enable_vnc : false, vnc_port: this.isVm && this.form.value.enable_vnc ? this.form.value.vnc_port || defaultVncPort : null, + vnc_password: this.isVm && this.form.value.enable_vnc ? this.form.value.vnc_password : null, name: this.form.controls.name.value, cpu: this.form.controls.cpu.value, memory: this.form.controls.memory.value, diff --git a/src/assets/i18n/af.json b/src/assets/i18n/af.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/af.json +++ b/src/assets/i18n/af.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ar.json b/src/assets/i18n/ar.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/ar.json +++ b/src/assets/i18n/ar.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ast.json b/src/assets/i18n/ast.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/ast.json +++ b/src/assets/i18n/ast.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/az.json b/src/assets/i18n/az.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/az.json +++ b/src/assets/i18n/az.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/be.json b/src/assets/i18n/be.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/be.json +++ b/src/assets/i18n/be.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/bg.json b/src/assets/i18n/bg.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/bg.json +++ b/src/assets/i18n/bg.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/bn.json b/src/assets/i18n/bn.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/bn.json +++ b/src/assets/i18n/bn.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/br.json b/src/assets/i18n/br.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/br.json +++ b/src/assets/i18n/br.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/bs.json b/src/assets/i18n/bs.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/bs.json +++ b/src/assets/i18n/bs.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ca.json b/src/assets/i18n/ca.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/ca.json +++ b/src/assets/i18n/ca.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/cs.json b/src/assets/i18n/cs.json index 9be8c999eae..ed11b1e2824 100644 --- a/src/assets/i18n/cs.json +++ b/src/assets/i18n/cs.json @@ -4271,8 +4271,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate effective ACL": "", "Variant": "", "View logs": "", diff --git a/src/assets/i18n/cy.json b/src/assets/i18n/cy.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/cy.json +++ b/src/assets/i18n/cy.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/da.json b/src/assets/i18n/da.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/da.json +++ b/src/assets/i18n/da.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/de.json b/src/assets/i18n/de.json index 6bc8635474e..04b00aa0fb6 100644 --- a/src/assets/i18n/de.json +++ b/src/assets/i18n/de.json @@ -3731,8 +3731,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/dsb.json b/src/assets/i18n/dsb.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/dsb.json +++ b/src/assets/i18n/dsb.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/el.json b/src/assets/i18n/el.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/el.json +++ b/src/assets/i18n/el.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/en-au.json b/src/assets/i18n/en-au.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/en-au.json +++ b/src/assets/i18n/en-au.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/en-gb.json b/src/assets/i18n/en-gb.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/en-gb.json +++ b/src/assets/i18n/en-gb.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/en.json +++ b/src/assets/i18n/en.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/eo.json b/src/assets/i18n/eo.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/eo.json +++ b/src/assets/i18n/eo.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/es-ar.json b/src/assets/i18n/es-ar.json index 878ae388bc3..97a62062565 100644 --- a/src/assets/i18n/es-ar.json +++ b/src/assets/i18n/es-ar.json @@ -79,6 +79,8 @@ "Table Actions of Expandable Table": "", "USB Passthrough Device": "", "Unlock Child Encrypted Roots": "", + "VNC Password": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "everyone@": "", "group@": "", "{license} Contract,": "", diff --git a/src/assets/i18n/es-co.json b/src/assets/i18n/es-co.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/es-co.json +++ b/src/assets/i18n/es-co.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/es-mx.json b/src/assets/i18n/es-mx.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/es-mx.json +++ b/src/assets/i18n/es-mx.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/es-ni.json b/src/assets/i18n/es-ni.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/es-ni.json +++ b/src/assets/i18n/es-ni.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/es-ve.json b/src/assets/i18n/es-ve.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/es-ve.json +++ b/src/assets/i18n/es-ve.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/es.json b/src/assets/i18n/es.json index 4ecdc707e91..98944576c42 100644 --- a/src/assets/i18n/es.json +++ b/src/assets/i18n/es.json @@ -4586,8 +4586,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/et.json b/src/assets/i18n/et.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/et.json +++ b/src/assets/i18n/et.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/eu.json b/src/assets/i18n/eu.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/eu.json +++ b/src/assets/i18n/eu.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/fa.json b/src/assets/i18n/fa.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/fa.json +++ b/src/assets/i18n/fa.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/fi.json b/src/assets/i18n/fi.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/fi.json +++ b/src/assets/i18n/fi.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/fr.json b/src/assets/i18n/fr.json index 9ad413ba9dd..fe59595d897 100644 --- a/src/assets/i18n/fr.json +++ b/src/assets/i18n/fr.json @@ -876,8 +876,10 @@ "VMWare Sync": "", "VMware Snapshot": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Variant": "", "Vdevs spans enclosure": "", diff --git a/src/assets/i18n/fy.json b/src/assets/i18n/fy.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/fy.json +++ b/src/assets/i18n/fy.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ga.json b/src/assets/i18n/ga.json index 3a6ce2c0cdc..c5c056b5a6b 100644 --- a/src/assets/i18n/ga.json +++ b/src/assets/i18n/ga.json @@ -453,8 +453,10 @@ "VM Image Options": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate effective ACL": "", "Variant": "", "View Logs": "", diff --git a/src/assets/i18n/gd.json b/src/assets/i18n/gd.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/gd.json +++ b/src/assets/i18n/gd.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/gl.json b/src/assets/i18n/gl.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/gl.json +++ b/src/assets/i18n/gl.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/he.json b/src/assets/i18n/he.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/he.json +++ b/src/assets/i18n/he.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/hi.json b/src/assets/i18n/hi.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/hi.json +++ b/src/assets/i18n/hi.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/hr.json b/src/assets/i18n/hr.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/hr.json +++ b/src/assets/i18n/hr.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/hsb.json b/src/assets/i18n/hsb.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/hsb.json +++ b/src/assets/i18n/hsb.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/hu.json b/src/assets/i18n/hu.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/hu.json +++ b/src/assets/i18n/hu.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ia.json b/src/assets/i18n/ia.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/ia.json +++ b/src/assets/i18n/ia.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/id.json b/src/assets/i18n/id.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/id.json +++ b/src/assets/i18n/id.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/io.json b/src/assets/i18n/io.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/io.json +++ b/src/assets/i18n/io.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/is.json b/src/assets/i18n/is.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/is.json +++ b/src/assets/i18n/is.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/it.json b/src/assets/i18n/it.json index 0282030f178..4903994efa6 100644 --- a/src/assets/i18n/it.json +++ b/src/assets/i18n/it.json @@ -3912,8 +3912,10 @@ "VM Write": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Var": "", "Variant": "", "Vdev": "", diff --git a/src/assets/i18n/ja.json b/src/assets/i18n/ja.json index 0796fe420d3..2c71e45b9e5 100644 --- a/src/assets/i18n/ja.json +++ b/src/assets/i18n/ja.json @@ -4540,8 +4540,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ka.json b/src/assets/i18n/ka.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/ka.json +++ b/src/assets/i18n/ka.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/kk.json b/src/assets/i18n/kk.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/kk.json +++ b/src/assets/i18n/kk.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/km.json b/src/assets/i18n/km.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/km.json +++ b/src/assets/i18n/km.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/kn.json b/src/assets/i18n/kn.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/kn.json +++ b/src/assets/i18n/kn.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ko.json b/src/assets/i18n/ko.json index 7e8532b5a84..62ec9255667 100644 --- a/src/assets/i18n/ko.json +++ b/src/assets/i18n/ko.json @@ -1,6 +1,8 @@ { "": "", "Instance must be stopped to update VNC.": "", + "VNC Password": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "\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 f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/lb.json +++ b/src/assets/i18n/lb.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/lt.json b/src/assets/i18n/lt.json index d8ff048fdd9..4d2445dd56e 100644 --- a/src/assets/i18n/lt.json +++ b/src/assets/i18n/lt.json @@ -5012,8 +5012,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/lv.json b/src/assets/i18n/lv.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/lv.json +++ b/src/assets/i18n/lv.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/mk.json b/src/assets/i18n/mk.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/mk.json +++ b/src/assets/i18n/mk.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ml.json b/src/assets/i18n/ml.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/ml.json +++ b/src/assets/i18n/ml.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/mn.json b/src/assets/i18n/mn.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/mn.json +++ b/src/assets/i18n/mn.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/mr.json b/src/assets/i18n/mr.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/mr.json +++ b/src/assets/i18n/mr.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/my.json b/src/assets/i18n/my.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/my.json +++ b/src/assets/i18n/my.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/nb.json b/src/assets/i18n/nb.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/nb.json +++ b/src/assets/i18n/nb.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ne.json b/src/assets/i18n/ne.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/ne.json +++ b/src/assets/i18n/ne.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/nl.json b/src/assets/i18n/nl.json index 8ad607dca10..c6d83e8971a 100644 --- a/src/assets/i18n/nl.json +++ b/src/assets/i18n/nl.json @@ -1,6 +1,8 @@ { "": "", "Instance must be stopped to update VNC.": "", + "VNC Password": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "\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 ": "\n Het lijkt erop dat uw sessie langer dan {lifetime} seconden inactief is geweest.
\n Om veiligheidsredenen loggen we u om {time} uit.\n ", " Est. Usable Raw Capacity": "Geschatte bruikbare ruwe capaciteit", " When the UPS Mode is set to slave. Enter the open network port number of the UPS Master system. The default port is 3493.": "Wanneer de UPS-modus is ingesteld op slave. Het open netwerkpoortnummer van het UPS Master-systeem invoeren. De standaardpoort is 3493.", diff --git a/src/assets/i18n/nn.json b/src/assets/i18n/nn.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/nn.json +++ b/src/assets/i18n/nn.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/os.json b/src/assets/i18n/os.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/os.json +++ b/src/assets/i18n/os.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/pa.json b/src/assets/i18n/pa.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/pa.json +++ b/src/assets/i18n/pa.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/pl.json b/src/assets/i18n/pl.json index 2d3f5e64cc4..8a014382f78 100644 --- a/src/assets/i18n/pl.json +++ b/src/assets/i18n/pl.json @@ -4944,8 +4944,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/pt-br.json b/src/assets/i18n/pt-br.json index 9b06a36350c..273a086521d 100644 --- a/src/assets/i18n/pt-br.json +++ b/src/assets/i18n/pt-br.json @@ -4962,8 +4962,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/pt.json b/src/assets/i18n/pt.json index e194f2cd04b..0ec8226b551 100644 --- a/src/assets/i18n/pt.json +++ b/src/assets/i18n/pt.json @@ -3262,8 +3262,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ro.json b/src/assets/i18n/ro.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/ro.json +++ b/src/assets/i18n/ro.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ru.json b/src/assets/i18n/ru.json index c3d52194ab6..0088f14b141 100644 --- a/src/assets/i18n/ru.json +++ b/src/assets/i18n/ru.json @@ -3360,8 +3360,10 @@ "VMware Snapshots": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/sk.json b/src/assets/i18n/sk.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/sk.json +++ b/src/assets/i18n/sk.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/sl.json b/src/assets/i18n/sl.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/sl.json +++ b/src/assets/i18n/sl.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/sq.json b/src/assets/i18n/sq.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/sq.json +++ b/src/assets/i18n/sq.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/sr-latn.json b/src/assets/i18n/sr-latn.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/sr-latn.json +++ b/src/assets/i18n/sr-latn.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/sr.json b/src/assets/i18n/sr.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/sr.json +++ b/src/assets/i18n/sr.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/strings.json b/src/assets/i18n/strings.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/strings.json +++ b/src/assets/i18n/strings.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/sv.json b/src/assets/i18n/sv.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/sv.json +++ b/src/assets/i18n/sv.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/sw.json b/src/assets/i18n/sw.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/sw.json +++ b/src/assets/i18n/sw.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/ta.json b/src/assets/i18n/ta.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/ta.json +++ b/src/assets/i18n/ta.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/te.json b/src/assets/i18n/te.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/te.json +++ b/src/assets/i18n/te.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/th.json b/src/assets/i18n/th.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/th.json +++ b/src/assets/i18n/th.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/tr.json b/src/assets/i18n/tr.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/tr.json +++ b/src/assets/i18n/tr.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/tt.json b/src/assets/i18n/tt.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/tt.json +++ b/src/assets/i18n/tt.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/udm.json b/src/assets/i18n/udm.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/udm.json +++ b/src/assets/i18n/udm.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/uk.json b/src/assets/i18n/uk.json index bf9cbe46470..8ca29114696 100644 --- a/src/assets/i18n/uk.json +++ b/src/assets/i18n/uk.json @@ -2098,8 +2098,10 @@ "VMware Snapshots": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Remote Path": "", "Validate effective ACL": "", diff --git a/src/assets/i18n/vi.json b/src/assets/i18n/vi.json index f478c728a70..c445b31f23b 100644 --- a/src/assets/i18n/vi.json +++ b/src/assets/i18n/vi.json @@ -5021,8 +5021,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "", diff --git a/src/assets/i18n/zh-hans.json b/src/assets/i18n/zh-hans.json index 621e32bfe95..4df0594e8c7 100644 --- a/src/assets/i18n/zh-hans.json +++ b/src/assets/i18n/zh-hans.json @@ -108,8 +108,10 @@ "Use the default network settings to connect the default bridge to the host.

Bridged NIC uses an existing bridge on the host and creates a virtual device pair to connect the host bridge to the instance.

MACVLAN NIC sets up a new network device based on an existing one, but using a different MAC address.": "", "VM Image Options": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Virtualization (Old)": "", "Virtualization Method": "", "Waiting for claim token to be generated": "", diff --git a/src/assets/i18n/zh-hant.json b/src/assets/i18n/zh-hant.json index cea2d182b3e..a56e877ad5e 100644 --- a/src/assets/i18n/zh-hant.json +++ b/src/assets/i18n/zh-hant.json @@ -3479,8 +3479,10 @@ "VMware Sync": "", "VMware: Extent block size 512b, TPC enabled, no Xen compat mode, SSD speed": "", "VNC": "", + "VNC Password": "", "VNC Port": "", "VNC connection is currently insecure. Secure the connection in other ways.": "", + "VNC password is not cryptographically secure. You should not rely on it as a single authentication mechanism for your VMs.": "", "Validate Certificates": "", "Validate Connection": "", "Validate Remote Path": "",