@xen-orchestra/web-core 0.51.0 → 0.53.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/assets/css/_reset.pcss +8 -1
- package/lib/components/column/VtsColumn.vue +5 -1
- package/lib/components/columns/VtsColumns.vue +17 -8
- package/lib/components/console/VtsRemoteConsole.vue +25 -19
- package/lib/components/form/VtsForm.vue +15 -0
- package/lib/components/{quick-info-column/VtsQuickInfoColumn.vue → key-value-list/VtsKeyValueList.vue} +3 -3
- package/lib/components/key-value-pair/VtsKeyValuePair.vue +48 -0
- package/lib/components/key-value-row/VtsKeyValueRow.vue +45 -0
- package/lib/components/status/VtsStatus.vue +1 -7
- package/lib/components/table/cells/VtsTagCell.vue +2 -4
- package/lib/components/tabular-key-value-list/VtsTabularKeyValueList.vue +29 -0
- package/lib/components/tabular-key-value-row/VtsTabularKeyValueRow.vue +42 -0
- package/lib/components/tag/VtsTag.vue +30 -0
- package/lib/components/ui/chip/UiChip.vue +52 -29
- package/lib/components/ui/info/UiInfo.vue +17 -6
- package/lib/components/ui/link/UiLink.vue +6 -2
- package/lib/components/ui/tag/UiTag.vue +10 -17
- package/lib/components/ui/tag/UiTertiaryTag.vue +39 -0
- package/lib/icons/action-icons.ts +1 -1
- package/lib/locales/cs.json +0 -1
- package/lib/locales/da.json +0 -1
- package/lib/locales/de.json +0 -1
- package/lib/locales/en.json +15 -1
- package/lib/locales/es.json +0 -1
- package/lib/locales/fr.json +15 -1
- package/lib/locales/nl.json +0 -1
- package/lib/locales/pt-BR.json +0 -1
- package/lib/locales/pt.json +0 -1
- package/lib/locales/ru.json +0 -1
- package/lib/locales/sk.json +0 -1
- package/lib/locales/sv.json +0 -1
- package/lib/locales/zh-Hans.json +0 -1
- package/lib/packages/form-validation/README.md +273 -0
- package/lib/packages/form-validation/custom-rules/out-of-range.rule.ts +15 -0
- package/lib/packages/form-validation/index.ts +8 -0
- package/lib/packages/form-validation/merge-validation-configs.ts +46 -0
- package/lib/packages/form-validation/types.ts +104 -0
- package/lib/packages/form-validation/use-form-validation.ts +196 -0
- package/lib/packages/modal/types.ts +1 -2
- package/lib/packages/remote-resource/define-remote-resource.ts +2 -1
- package/lib/packages/remote-resource/types.ts +1 -3
- package/lib/packages/request/define-request.ts +1 -2
- package/lib/packages/validated-form/README.md +389 -0
- package/lib/packages/validated-form/index.ts +2 -0
- package/lib/packages/validated-form/use-multi-step-validated-form.ts +203 -0
- package/lib/packages/validated-form/use-validated-form.ts +180 -0
- package/lib/utils/parse-tag.util.ts +22 -0
- package/package.json +11 -8
- package/tsconfig.json +2 -3
- package/lib/components/quick-info-row/VtsQuickInfoRow.vue +0 -59
- package/lib/components/ui/chip/ChipIcon.vue +0 -21
- package/lib/components/ui/chip/ChipRemoveIcon.vue +0 -16
|
@@ -1,15 +1,17 @@
|
|
|
1
|
-
<!--
|
|
1
|
+
<!-- v6 -->
|
|
2
2
|
<template>
|
|
3
3
|
<component :is="component" :class="classes" class="ui-link" v-bind="attributes">
|
|
4
4
|
<VtsIcon :name="icon" size="medium" />
|
|
5
5
|
<slot />
|
|
6
|
-
<VtsIcon v-if="attributes.target === '_blank'" name="
|
|
6
|
+
<VtsIcon v-if="attributes.target === '_blank'" name="action:open-in-new-tab" size="medium" class="external-icon" />
|
|
7
|
+
<VtsIcon v-if="isPrimary" v-tooltip="primaryTooltip" name="status:primary-circle" size="medium" />
|
|
7
8
|
</component>
|
|
8
9
|
</template>
|
|
9
10
|
|
|
10
11
|
<script lang="ts" setup>
|
|
11
12
|
import VtsIcon from '@core/components/icon/VtsIcon.vue'
|
|
12
13
|
import { type LinkOptions, useLinkComponent } from '@core/composables/link-component.composable'
|
|
14
|
+
import { vTooltip } from '@core/directives/tooltip.directive'
|
|
13
15
|
import type { IconName } from '@core/icons'
|
|
14
16
|
import { computed } from 'vue'
|
|
15
17
|
|
|
@@ -17,6 +19,8 @@ const props = defineProps<
|
|
|
17
19
|
LinkOptions & {
|
|
18
20
|
size: 'small' | 'medium'
|
|
19
21
|
icon?: IconName
|
|
22
|
+
isPrimary?: boolean
|
|
23
|
+
primaryTooltip?: string
|
|
20
24
|
}
|
|
21
25
|
>()
|
|
22
26
|
|
|
@@ -1,34 +1,27 @@
|
|
|
1
|
-
<!--
|
|
2
|
-
<!-- TODO: implement tertiary variant to bump to v4 -->
|
|
1
|
+
<!-- v5 -->
|
|
3
2
|
<template>
|
|
4
|
-
<span :class="
|
|
5
|
-
<slot
|
|
6
|
-
<VtsIcon :name="icon" size="medium" />
|
|
7
|
-
</slot>
|
|
8
|
-
<span>
|
|
9
|
-
<slot />
|
|
10
|
-
</span>
|
|
3
|
+
<span :class="className" class="ui-tag typo-body-regular-small">
|
|
4
|
+
<slot />
|
|
11
5
|
</span>
|
|
12
6
|
</template>
|
|
13
7
|
|
|
14
8
|
<script lang="ts" setup>
|
|
15
|
-
import VtsIcon from '@core/components/icon/VtsIcon.vue'
|
|
16
|
-
import type { IconName } from '@core/icons'
|
|
17
9
|
import { toVariants } from '@core/utils/to-variants.util'
|
|
10
|
+
import { computed } from 'vue'
|
|
18
11
|
|
|
19
|
-
type TagAccent = 'info' | 'neutral' | 'success' | 'warning' | 'danger' | 'muted'
|
|
12
|
+
export type TagAccent = 'info' | 'neutral' | 'success' | 'warning' | 'danger' | 'muted'
|
|
20
13
|
type TagVariant = 'primary' | 'secondary'
|
|
21
14
|
|
|
22
|
-
defineProps<{
|
|
15
|
+
const { accent, variant } = defineProps<{
|
|
23
16
|
accent: TagAccent
|
|
24
17
|
variant: TagVariant
|
|
25
|
-
icon?: IconName
|
|
26
18
|
}>()
|
|
27
19
|
|
|
28
20
|
defineSlots<{
|
|
29
21
|
default(): any
|
|
30
|
-
icon?(): any
|
|
31
22
|
}>()
|
|
23
|
+
|
|
24
|
+
const className = computed(() => toVariants({ accent, variant }))
|
|
32
25
|
</script>
|
|
33
26
|
|
|
34
27
|
<style lang="postcss" scoped>
|
|
@@ -39,9 +32,9 @@ defineSlots<{
|
|
|
39
32
|
gap: 0.8rem;
|
|
40
33
|
white-space: normal;
|
|
41
34
|
word-break: break-word;
|
|
42
|
-
padding: 0.
|
|
43
|
-
border-radius: 0.4rem;
|
|
35
|
+
padding: 0.35rem 0.8rem;
|
|
44
36
|
vertical-align: middle;
|
|
37
|
+
border-radius: 0.4rem;
|
|
45
38
|
|
|
46
39
|
/* COLOR VARIANTS */
|
|
47
40
|
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
<!-- v1 -->
|
|
2
|
+
<template>
|
|
3
|
+
<span class="ui-tertiary-tag">
|
|
4
|
+
<UiTag :accent variant="primary" class="radius-left">
|
|
5
|
+
<slot name="term" />
|
|
6
|
+
</UiTag>
|
|
7
|
+
<UiTag :accent variant="secondary" class="radius-right">
|
|
8
|
+
<slot />
|
|
9
|
+
</UiTag>
|
|
10
|
+
</span>
|
|
11
|
+
</template>
|
|
12
|
+
|
|
13
|
+
<script lang="ts" setup>
|
|
14
|
+
import UiTag, { type TagAccent } from '@core/components/ui/tag/UiTag.vue'
|
|
15
|
+
|
|
16
|
+
defineProps<{
|
|
17
|
+
accent: TagAccent
|
|
18
|
+
}>()
|
|
19
|
+
|
|
20
|
+
defineSlots<{
|
|
21
|
+
default(): any
|
|
22
|
+
term(): any
|
|
23
|
+
}>()
|
|
24
|
+
</script>
|
|
25
|
+
|
|
26
|
+
<style lang="postcss" scoped>
|
|
27
|
+
.ui-tertiary-tag {
|
|
28
|
+
display: inline-flex;
|
|
29
|
+
flex-direction: row;
|
|
30
|
+
|
|
31
|
+
:deep(.radius-left) {
|
|
32
|
+
border-radius: 0.4rem 0 0 0.4rem;
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
:deep(.radius-right) {
|
|
36
|
+
border-radius: 0 0.4rem 0.4rem 0;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
</style>
|
package/lib/locales/cs.json
CHANGED
|
@@ -540,7 +540,6 @@
|
|
|
540
540
|
"new-vm": "Nový virt. stroj",
|
|
541
541
|
"new-vm:add": "Přidat nový virt. stroj",
|
|
542
542
|
"new-vm:description": "Popis virt. stroje",
|
|
543
|
-
"new-vm:feature-not-supported": "Toto je nová podoba vytváření virt. stroje. Nastavení přes cloud-init, pokročilé možnosti a správa vTPM zatím ještě nejsou podporovány. Aktualizovaná verze bude k dispozici brzy v roce 2026. Mezitím je úplná sada funkcí k dispozici zde v {xo-5}",
|
|
544
543
|
"new-vm:install-source": "Instalační zdroj",
|
|
545
544
|
"new-vm:name": "Název virt. stroje",
|
|
546
545
|
"new-vm:network-config": "Nastavování sítě je kompatibilní pouze s {noCloudLink}.",
|
package/lib/locales/da.json
CHANGED
|
@@ -316,7 +316,6 @@
|
|
|
316
316
|
"new-vm": "Ny VM",
|
|
317
317
|
"new-vm:add": "Tilføj en ny VM",
|
|
318
318
|
"new-vm:description": "VM beskrivelse",
|
|
319
|
-
"new-vm:feature-not-supported": "Dette er vores nye VM oprettelsesformular. Cloud-init konfiguration, avancerede indstillinger og vTPM administration understøttes endnu ikke. En opdateret version vil være tilgængelig snart i 2026. I mellemtiden er hele funktionssættet tilgængeligt her i {xo-5}",
|
|
320
319
|
"new-vm:name": "VM navn",
|
|
321
320
|
"news": "Nyheder",
|
|
322
321
|
"news-name": "{name} nyheder",
|
package/lib/locales/de.json
CHANGED
|
@@ -504,7 +504,6 @@
|
|
|
504
504
|
"new-vm": "Neue VM",
|
|
505
505
|
"new-vm:add": "Neue VM hinzufügen",
|
|
506
506
|
"new-vm:description": "VM-Beschreibung",
|
|
507
|
-
"new-vm:feature-not-supported": "Dies ist unser neues Formular zur Erstellung von VMs. Cloud-init-Konfiguration, erweiterte Optionen und vTPM-Management werden noch nicht unterstützt. Die aktualisierte Version wird bald im Jahr 2026 verfügbar sein. In der Zwischenzeit ist der vollständige Funktionsumfang hier in {xo-5} verfügbar",
|
|
508
507
|
"new-vm:install-source": "Installationsquelle",
|
|
509
508
|
"new-vm:name": "VM-Name",
|
|
510
509
|
"new-vm:network-config": "Die Netzwerk-Konfiguration ist nur kompatibel mit {noCloudLink}.",
|
package/lib/locales/en.json
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"action:close": "Close",
|
|
21
21
|
"action:connect": "Connect",
|
|
22
22
|
"action:connect-another-pool": "Connect another pool",
|
|
23
|
+
"action:connect-n-vbds": "Connect 1 VBD | Connect {n} VBDs",
|
|
23
24
|
"action:connect-n-vifs": "Connect 1 VIF | Connect {n} VIFs",
|
|
24
25
|
"action:connect-pool": "Connect pool",
|
|
25
26
|
"action:copy": "Copy",
|
|
@@ -44,6 +45,7 @@
|
|
|
44
45
|
"action:deploy": "Deploy",
|
|
45
46
|
"action:deploy-xoa": "Deploy XOA",
|
|
46
47
|
"action:disconnect": "Disconnect",
|
|
48
|
+
"action:disconnect-n-vbds": "Disconnect 1 VBD | Disconnect {n} VBDs",
|
|
47
49
|
"action:disconnect-n-vifs": "Disconnect 1 VIF | Disconnect {n} VIFs",
|
|
48
50
|
"action:download-bugtools-archive": "Download bugtools archive",
|
|
49
51
|
"action:duplicate": "Duplicate",
|
|
@@ -324,6 +326,10 @@
|
|
|
324
326
|
"for-replication": "For replication",
|
|
325
327
|
"force-reboot-blocked": "Force reboot Blocked",
|
|
326
328
|
"force-shutdown-blocked": "Force shutdown Blocked",
|
|
329
|
+
"form:error:field-required": "{field} is required",
|
|
330
|
+
"form:error:integer": "Must be an integer",
|
|
331
|
+
"form:error:required": "This field is required",
|
|
332
|
+
"form:warning:out-of-range": "Should be between {min} and {max}",
|
|
327
333
|
"format": "Format",
|
|
328
334
|
"free-space": "Free space",
|
|
329
335
|
"fullscreen": "Fullscreen",
|
|
@@ -399,8 +405,12 @@
|
|
|
399
405
|
"job:network-delete:has-n-physical-pif-connected": "The network has one physical PIF connected | The network has {n} physical PIFs connected",
|
|
400
406
|
"job:network-delete:has-n-vif-attached": "The network has one VIF attached | The network has {n} VIFs attached",
|
|
401
407
|
"job:snapshot-delete:missing-snapshot": "No snapshots to delete",
|
|
408
|
+
"job:vbd-connect:missing-vbd": "No VBDs to connect",
|
|
409
|
+
"job:vbd-connect:vbd-already-connected": "VBD is already connected",
|
|
402
410
|
"job:vbd-delete:missing-vbd": "No VBDs to delete",
|
|
403
411
|
"job:vbd-delete:vbd-attached": "Cannot delete a VBD that is currently attached",
|
|
412
|
+
"job:vbd-disconnect:missing-vbd": "VBD is missing",
|
|
413
|
+
"job:vbd-disconnect:vbd-disconnected": "VBD is disconnected",
|
|
404
414
|
"job:vdi-delete:missing-vdi": "No VDIs to delete",
|
|
405
415
|
"job:vdi-delete:vbd-attached": "Cannot delete a VDI with VBD attached",
|
|
406
416
|
"job:vif-connect:missing-vif": "No VIFs to connect",
|
|
@@ -547,6 +557,7 @@
|
|
|
547
557
|
"n-selected-of": "{count} selected of {total} objects",
|
|
548
558
|
"n-snapshots": "1 snapshot | {n} snapshots",
|
|
549
559
|
"n-subtasks": "1 subtask | {n} subtasks",
|
|
560
|
+
"n-vbds": "1 VBD | {n} VBDs",
|
|
550
561
|
"n-vdis": "1 VDI | {n} VDIs",
|
|
551
562
|
"n-vifs": "1 VIF | {n} VIFs",
|
|
552
563
|
"n-vms": "1 VM | {n} VMs",
|
|
@@ -577,7 +588,6 @@
|
|
|
577
588
|
"new-vm": "New VM",
|
|
578
589
|
"new-vm:add": "Add a new VM",
|
|
579
590
|
"new-vm:description": "VM description",
|
|
580
|
-
"new-vm:feature-not-supported": "This is our new VM creation form. Cloud-init configuration, Advanced options and vTPM management are not yet supported. Updated version will be available soon in 2026. In the meanwhile, full feature set is available here in {xo-5}",
|
|
581
591
|
"new-vm:install-source": "Installation source",
|
|
582
592
|
"new-vm:name": "VM name",
|
|
583
593
|
"new-vm:network-config": "Network configuration is only compatible with {noCloudLink}.",
|
|
@@ -945,8 +955,11 @@
|
|
|
945
955
|
"user-config": "User config",
|
|
946
956
|
"username": "Username",
|
|
947
957
|
"uuid": "UUID",
|
|
958
|
+
"vbd-connect-title": "You are about to connect 1 VBD | You are about to connect {n} VBDs",
|
|
948
959
|
"vbd-delete-info": "This will detach the selected VDI from the VM. The disk will not be deleted and can be reattached later.",
|
|
949
960
|
"vbd-delete-title": "You are about to delete 1 VBD | You are about to delete {n} VBDs",
|
|
961
|
+
"vbd-disconnect-info": "The VM will no longer have access to the VDI. The disk remains attached and you can reconnect later.",
|
|
962
|
+
"vbd-disconnect-title": "You are about to disconnect 1 VBD | You are about to disconnect {n} VBDs",
|
|
950
963
|
"vcpu": "vCPU",
|
|
951
964
|
"vcpus": "vCPUs",
|
|
952
965
|
"vcpus-assigned": "vCPUs assigned",
|
|
@@ -988,6 +1001,7 @@
|
|
|
988
1001
|
"vm-protected-reboot": "This VM is protected against reboot.",
|
|
989
1002
|
"vm-protected-shutdown": "This VM is protected against shutdown.",
|
|
990
1003
|
"vm-protected-suspend": "This VM is protected against suspend.",
|
|
1004
|
+
"vm-running": "VM is running",
|
|
991
1005
|
"vm-shutdown": "VM is currently shut down",
|
|
992
1006
|
"vm-tools-missing": "VM tools missing",
|
|
993
1007
|
"vm:status:active": "@:status:active",
|
package/lib/locales/es.json
CHANGED
|
@@ -521,7 +521,6 @@
|
|
|
521
521
|
"new-vm": "Nueva VM",
|
|
522
522
|
"new-vm:add": "Añadir nueva VM",
|
|
523
523
|
"new-vm:description": "Descripción de la VM",
|
|
524
|
-
"new-vm:feature-not-supported": "Aquí hay nuestro formulario de creación de VM. Aún no admite la configuratión Cloud-init, las opciones avancadas, ni la gestión vTPM. Se dispondrá de una versión actualizada proximamente en el 2026. Mientras tanto, estas funciones están disponibles en {xo-5}",
|
|
525
524
|
"new-vm:install-source": "Origen de instalación",
|
|
526
525
|
"new-vm:name": "Nombre de la VM",
|
|
527
526
|
"new-vm:network-config": "La configuración de red sólo es compatible con {noCloudLink}.",
|
package/lib/locales/fr.json
CHANGED
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
"action:close": "Fermer",
|
|
21
21
|
"action:connect": "Connecter",
|
|
22
22
|
"action:connect-another-pool": "Connecter un autre pool",
|
|
23
|
+
"action:connect-n-vbds": "Connecter 1 VBD | Connecter {n} VBDs",
|
|
23
24
|
"action:connect-n-vifs": "Connecter 1 VIF | Connecter {n} VIFs",
|
|
24
25
|
"action:connect-pool": "Connecter un pool",
|
|
25
26
|
"action:copy": "Copier",
|
|
@@ -44,6 +45,7 @@
|
|
|
44
45
|
"action:deploy": "Déployer",
|
|
45
46
|
"action:deploy-xoa": "Déployer XOA",
|
|
46
47
|
"action:disconnect": "Déconnecter",
|
|
48
|
+
"action:disconnect-n-vbds": "Déconnecter 1 VBD | Déconnecter {n} VBDs",
|
|
47
49
|
"action:disconnect-n-vifs": "Déconnecter 1 VIF | Déconnecter {n} VIFs",
|
|
48
50
|
"action:download-bugtools-archive": "Télécharger l’archive bugtools",
|
|
49
51
|
"action:duplicate": "Dupliquer",
|
|
@@ -324,6 +326,10 @@
|
|
|
324
326
|
"for-replication": "Pour la réplication",
|
|
325
327
|
"force-reboot-blocked": "Redémarrage forcé bloqué",
|
|
326
328
|
"force-shutdown-blocked": "Arrêt forcé bloqué",
|
|
329
|
+
"form:error:field-required": "Le champ {field} est requis",
|
|
330
|
+
"form:error:integer": "Doit être un entier",
|
|
331
|
+
"form:error:required": "Ce champ est requis",
|
|
332
|
+
"form:warning:out-of-range": "Devrait être compris entre {min} et {max}",
|
|
327
333
|
"format": "Format",
|
|
328
334
|
"free-space": "Espace libre",
|
|
329
335
|
"fullscreen": "Plein écran",
|
|
@@ -399,8 +405,12 @@
|
|
|
399
405
|
"job:network-delete:has-n-physical-pif-connected": "Le réseau a un PIF physique connecté | Le réseau a {n} PIFs physiques connectés",
|
|
400
406
|
"job:network-delete:has-n-vif-attached": "Le réseau a un VIF attaché | Le réseau a {n} VIFs attachés",
|
|
401
407
|
"job:snapshot-delete:missing-snapshot": "Aucun instantané à supprimer",
|
|
408
|
+
"job:vbd-connect:missing-vbd": "Aucun VBD à connecter",
|
|
409
|
+
"job:vbd-connect:vbd-already-connected": "Le VBD est déjà connecté",
|
|
402
410
|
"job:vbd-delete:missing-vbd": "Aucun VBD à supprimer",
|
|
403
411
|
"job:vbd-delete:vbd-attached": "Impossible de supprimer un VBD actuellement attaché",
|
|
412
|
+
"job:vbd-disconnect:missing-vbd": "Aucun VBD à déconnecter",
|
|
413
|
+
"job:vbd-disconnect:vbd-disconnected": "VBD déconnecté",
|
|
404
414
|
"job:vdi-delete:missing-vdi": "Aucun VDI à supprimer",
|
|
405
415
|
"job:vdi-delete:vbd-attached": "Impossible de supprimer un VDI avec un VBD attaché",
|
|
406
416
|
"job:vif-connect:missing-vif": "Aucun VIF à connecter",
|
|
@@ -547,6 +557,7 @@
|
|
|
547
557
|
"n-selected-of": "{count} objet sélectionné sur {total} | {count} objet sélectionné sur {total} | {count} objets sélectionnés sur {total}",
|
|
548
558
|
"n-snapshots": "0 instantané | 1 instantané | {n} instantanés",
|
|
549
559
|
"n-subtasks": "0 sous-tâche | 1 sous-tâche | {n} sous-tâches",
|
|
560
|
+
"n-vbds": "0 VBD | 1 VBD | {n} VBDs",
|
|
550
561
|
"n-vdis": "0 VDI | 1 VDI | {n} VDIs",
|
|
551
562
|
"n-vifs": "0 VIF | 1 VIF | {n} VIFs",
|
|
552
563
|
"n-vms": "0 VM | 1 VM | {n} VMs",
|
|
@@ -577,7 +588,6 @@
|
|
|
577
588
|
"new-vm": "Nouvelle VM",
|
|
578
589
|
"new-vm:add": "Ajouter une nouvelle VM",
|
|
579
590
|
"new-vm:description": "Description de la VM",
|
|
580
|
-
"new-vm:feature-not-supported": "Ceci est notre nouveau formulaire de création de VM. La configuration Cloud-init, les options avancées et la gestion vTPM ne sont pas encore prises en charge. Une version mise à jour sera disponible prochainement en 2026. En attendant, l'ensemble des fonctionnalités est disponible ici sur {xo-5}",
|
|
581
591
|
"new-vm:install-source": "Source d'installation",
|
|
582
592
|
"new-vm:name": "Nom de la VM",
|
|
583
593
|
"new-vm:network-config": "La configuration réseau est uniquement compatible avec {noCloudLink}.",
|
|
@@ -945,8 +955,11 @@
|
|
|
945
955
|
"user-config": "Configuration utilisateur",
|
|
946
956
|
"username": "Nom d'utilisateur",
|
|
947
957
|
"uuid": "UUID",
|
|
958
|
+
"vbd-connect-title": "Vous êtes sur le point de connecter 1 VBD | Vous êtes sur le point de connecter {n} VBDs",
|
|
948
959
|
"vbd-delete-info": "Cela détachera le VDI sélectionné de la VM. Le disque ne sera pas supprimé et pourra être rattaché ultérieurement.",
|
|
949
960
|
"vbd-delete-title": "Vous êtes sur le point de supprimer 1 VBD | Vous êtes sur le point de supprimer {n} VBDs",
|
|
961
|
+
"vbd-disconnect-info": "La VM n'aura plus accès au VDI. Le disque reste attaché et vous pourrez le reconnecter ultérieurement.",
|
|
962
|
+
"vbd-disconnect-title": "Vous êtes sur le point de déconnecter 1 VBD | Vous êtes sur le point de déconnecter {n} VBDs",
|
|
950
963
|
"vcpu": "vCPU",
|
|
951
964
|
"vcpus": "vCPUs",
|
|
952
965
|
"vcpus-assigned": "vCPUs assignés",
|
|
@@ -988,6 +1001,7 @@
|
|
|
988
1001
|
"vm-protected-reboot": "Cette VM est protégée contre le redémarrage.",
|
|
989
1002
|
"vm-protected-shutdown": "Cette VM est protégée contre l'arrêt.",
|
|
990
1003
|
"vm-protected-suspend": "Cette VM est protégée contre la mise en veille.",
|
|
1004
|
+
"vm-running": "VM en cours d'exécution",
|
|
991
1005
|
"vm-shutdown": "La VM est actuellement arrêtée",
|
|
992
1006
|
"vm-tools-missing": "Les VM tools ne sont pas installés",
|
|
993
1007
|
"vm:status:active": "Active | Active | Actives",
|
package/lib/locales/nl.json
CHANGED
|
@@ -521,7 +521,6 @@
|
|
|
521
521
|
"new-vm": "Nieuwe VM",
|
|
522
522
|
"new-vm:add": "Voeg nieuwe VM toe",
|
|
523
523
|
"new-vm:description": "VM omschrijving",
|
|
524
|
-
"new-vm:feature-not-supported": "Dit is ons nieuwe formulier voor het aanmaken van VM's. Cloud-init-configuratie, geavanceerde opties en vTPM-beheer worden nog niet ondersteund. Een bijgewerkte versie zal binnenkort beschikbaar zijn in 2026. In de tussentijd is de volledige set functies hier beschikbaar in {xo-5}",
|
|
525
524
|
"new-vm:install-source": "Installatiebron",
|
|
526
525
|
"new-vm:name": "VM naam",
|
|
527
526
|
"new-vm:network-config": "Netwerkconfiguratie is alleen compatibel met {noCloudLink}.",
|
package/lib/locales/pt-BR.json
CHANGED
|
@@ -490,7 +490,6 @@
|
|
|
490
490
|
"n-hosts": "1 servidor | {n} servidores",
|
|
491
491
|
"n-percent": "{n}%",
|
|
492
492
|
"new-features-are-coming!": "Novidades em breve!",
|
|
493
|
-
"new-vm:feature-not-supported": "Este é o nosso novo formulário de criação de VM. A configuração do Cloud-init, as opções avançadas e a gestão de vTPM ainda não são suportadas. Uma versão atualizada estará disponível em breve, em 2026. Enquanto isso, todas as funcionalidades estão disponíveis aqui em {xo-5}",
|
|
494
493
|
"news": "Notícias",
|
|
495
494
|
"no-alarm-detected": "Nenhum alarme detectado",
|
|
496
495
|
"no-alarm-triggered": "Nenhum alarme foi acionado",
|
package/lib/locales/pt.json
CHANGED
|
@@ -513,7 +513,6 @@
|
|
|
513
513
|
"new-vm": "Nova VM",
|
|
514
514
|
"new-vm:add": "Adicionar uma nova VM",
|
|
515
515
|
"new-vm:description": "Descrição da VM",
|
|
516
|
-
"new-vm:feature-not-supported": "Este é o nosso novo formulário de criação de VM. A configuração do Cloud-init, as opções avançadas e a gestão de vTPM ainda não são suportadas. Uma versão atualizada estará disponível em breve, em 2026. Enquanto isso, todas as funcionalidades estão disponíveis aqui em {xo-5}",
|
|
517
516
|
"new-vm:install-source": "Fonte de instalação",
|
|
518
517
|
"new-vm:name": "Nome da VM",
|
|
519
518
|
"new-vm:network-config": "A configuração de rede é compatível apenas com o {noCloudLink}.",
|
package/lib/locales/ru.json
CHANGED
|
@@ -464,7 +464,6 @@
|
|
|
464
464
|
"new-vm": "Новая ВМ",
|
|
465
465
|
"new-vm:add": "Добавить новую ВМ",
|
|
466
466
|
"new-vm:description": "Описание ВМ",
|
|
467
|
-
"new-vm:feature-not-supported": "Это наша новая форма для создания ВМ. Настройки Cloud-init, расширенные настройки и управление vTPM пока что не поддерживаются. Обновленная версия будет доступна вскоре в 2026-м. А пока что, полный функционал доступен здесь, в {xo-5}",
|
|
468
467
|
"new-vm:name": "Название ВМ",
|
|
469
468
|
"news": "Новости",
|
|
470
469
|
"not-found": "Не найдено",
|
package/lib/locales/sk.json
CHANGED
|
@@ -540,7 +540,6 @@
|
|
|
540
540
|
"new-vm": "Nový VM",
|
|
541
541
|
"new-vm:add": "Pridať nový virt. stroj",
|
|
542
542
|
"new-vm:description": "Popis VM",
|
|
543
|
-
"new-vm:feature-not-supported": "Toto je nová podoba vytvárania virt. stroje. Nastavenia cez cloud-init, pokročilé možnosti a správa vTPM zatiaľ ešte nie sú podporované. Aktualizovaná verzia bude k dispozícii čoskoro v roku 2026. Medzitým je úplná sada funkcií k dispozícii tu v {xo-5}",
|
|
544
543
|
"new-vm:install-source": "Zdroj inštalácie",
|
|
545
544
|
"new-vm:name": "Názov VM",
|
|
546
545
|
"new-vm:network-config": "Konfigurácia siete je kompatibilná iba s {noCloudLink}.",
|
package/lib/locales/sv.json
CHANGED
|
@@ -505,7 +505,6 @@
|
|
|
505
505
|
"new-vm": "Ny VM",
|
|
506
506
|
"new-vm:add": "Lägg till ny VM",
|
|
507
507
|
"new-vm:description": "VM-beskrivning",
|
|
508
|
-
"new-vm:feature-not-supported": "Det här är vår nya VM-mall. Cloud-init, Avancerade inställningar och vTPM-hantering stöds inte än. En uppdaterad version kommer släppas under 2026. Under tiden finns alla funktioner tillgängliga här i {xo-5}",
|
|
509
508
|
"new-vm:install-source": "Installationskälla",
|
|
510
509
|
"new-vm:name": "VM-namn",
|
|
511
510
|
"new-vm:network-config": "Nätverkskonfiguration stöds endast med {noCloudLink}.",
|
package/lib/locales/zh-Hans.json
CHANGED
|
@@ -531,7 +531,6 @@
|
|
|
531
531
|
"new-vm": "新建虚拟机",
|
|
532
532
|
"new-vm:add": "添加新虚拟机",
|
|
533
533
|
"new-vm:description": "虚拟机描述",
|
|
534
|
-
"new-vm:feature-not-supported": "这是我们新的虚拟机创建表单。暂不支持 Cloud-init 配置、高级选项和 vTPM 管理功能。2026 年内将很快推出更新版本。在此期间,完整功能集可在 {xo-5} 中使用",
|
|
535
534
|
"new-vm:install-source": "安装源",
|
|
536
535
|
"new-vm:name": "虚拟机名称",
|
|
537
536
|
"new-vm:network-config": "网络配置仅与 {noCloudLink} 兼容。",
|