@xen-orchestra/web-core 0.44.0 → 0.46.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.
@@ -8,7 +8,6 @@
8
8
  <script lang="ts" setup>
9
9
  import { useDisabled } from '@core/composables/disabled.composable'
10
10
  import { useUiStore } from '@core/stores/ui.store'
11
- import { storeToRefs } from 'pinia'
12
11
  import { computed } from 'vue'
13
12
 
14
13
  const props = withDefaults(
@@ -20,13 +19,13 @@ const props = withDefaults(
20
19
  { tag: 'span' }
21
20
  )
22
21
 
23
- const { isSmall } = storeToRefs(useUiStore())
22
+ const uiStore = useUiStore()
24
23
 
25
24
  const isDisabled = useDisabled(() => props.disabled)
26
25
 
27
26
  const classNames = computed(() => {
28
27
  return [
29
- isSmall.value ? 'typo-caption-small' : 'typo-caption',
28
+ uiStore.isSmall ? 'typo-caption-small' : 'typo-caption',
30
29
  {
31
30
  disabled: isDisabled.value,
32
31
  active: props.active,
@@ -1,6 +1,6 @@
1
1
  <!-- WIP -->
2
2
  <template>
3
- <div :class="{ mobile: isSmall }" class="ui-quick-task-panel">
3
+ <div :class="{ mobile: uiStore.isSmall }" class="ui-quick-task-panel">
4
4
  <VtsQuickTaskTabBar
5
5
  v-model="currentTab"
6
6
  :failure-count="failureTasks.length"
@@ -24,7 +24,7 @@ const props = defineProps<{
24
24
  loading?: boolean
25
25
  }>()
26
26
 
27
- const { isSmall } = useUiStore()
27
+ const uiStore = useUiStore()
28
28
 
29
29
  const currentTab = ref<TaskTab>('pending')
30
30
 
@@ -20,11 +20,11 @@
20
20
  @click="emit('toggle')"
21
21
  />
22
22
  <div v-else class="h-line" />
23
- <a v-tooltip="{ selector: '.text' }" :href class="link typo-body-bold-small" @click="navigate">
23
+ <a :href class="link typo-body-bold-small" @click="navigate">
24
24
  <slot name="icon">
25
25
  <VtsIcon :name="icon" size="medium" class="icon" />
26
26
  </slot>
27
- <div class="text text-ellipsis">
27
+ <div v-tooltip class="text text-ellipsis">
28
28
  <slot />
29
29
  </div>
30
30
  </a>
@@ -48,8 +48,8 @@ export function useTableState(config: {
48
48
 
49
49
  return computed(() => {
50
50
  return (
51
- handleStateInput('busy', config.busy) ??
52
51
  handleStateInput('error', config.error) ??
52
+ handleStateInput('busy', config.busy) ??
53
53
  handleStateInput('no-data', config.empty)
54
54
  )
55
55
  })
@@ -1,7 +1,7 @@
1
1
  import { defineIconPack, type IconSingleConfig } from '@core/packages/icon'
2
2
  import {
3
- faSquare as checkboxEmpty,
4
3
  faCircle as circleEmpty,
4
+ faSquare as checkboxEmpty,
5
5
  type IconDefinition,
6
6
  } from '@fortawesome/free-regular-svg-icons'
7
7
  import {
@@ -51,11 +51,11 @@ export const statusIcons = defineIconPack({
51
51
  'paused-circle': [
52
52
  {
53
53
  icon: faCircle,
54
- color: 'var(--color-brand-item-base)',
54
+ color: 'var(--color-info-item-base)',
55
55
  },
56
56
  {
57
57
  icon: faPause,
58
- color: 'var(--color-brand-txt-item)',
58
+ color: 'var(--color-info-txt-item)',
59
59
  size: 8,
60
60
  },
61
61
  ],
@@ -10,6 +10,7 @@
10
10
  "account-organization-more": "Účet, organizace a další…",
11
11
  "action:add": "Přidat",
12
12
  "action:add-filter": "Přidat filtr",
13
+ "action:add-group": "Přidat skupinu",
13
14
  "action:add-host-internal-network-in-xo-5": "Přidat vnitřní síť hostitele v XO-5",
14
15
  "action:add-network-in-xo-5": "Přidat síť v XO-5",
15
16
  "action:add-sort": "Přidat řazení",
@@ -26,9 +27,12 @@
26
27
  "action:copy-info-json": "Zkopírovat informace do JSON",
27
28
  "action:create": "Vytvořit",
28
29
  "action:delete": "Smazat",
30
+ "action:delete-filter": "Smazat filtr",
31
+ "action:delete-group": "Smazat skupinu",
29
32
  "action:delete-vms": "Smazat 1 virt. stroj | Smazat {n} virt. strojů",
30
33
  "action:deploy": "Nasadit",
31
34
  "action:deploy-xoa": "Nasadit XOA",
35
+ "action:duplicate": "Zduplikovat",
32
36
  "action:edit": "Upravit",
33
37
  "action:edit-config": "Upravit nastavení",
34
38
  "action:enable-light-mode": "Zapnout světlý režim",
@@ -50,10 +54,15 @@
50
54
  "action:log-out": "Odhlásit",
51
55
  "action:migrate": "Přestěhovat",
52
56
  "action:migrate-n-vms": "Přestěhovat 1 virt. stroj | Přestěhovat {n} virt. strojů",
57
+ "action:move-filters-to-parent-group": "Přesunout filtry do nadřazené skupiny",
53
58
  "action:open": "Otevřít",
54
59
  "action:open-app": "Otevřít {name}",
55
60
  "action:open-console-in-new-tab": "Otevřít konzoli v novém panelu",
56
61
  "action:pick-template": "Vybrat šablonu",
62
+ "action:plus-and": "+ @:and",
63
+ "action:plus-or": "+ @:or",
64
+ "action:query-builder:delete-filter": "Smazat filtr",
65
+ "action:query-builder:delete-group": "Smazat skupinu",
57
66
  "action:reboot": "Restartovat",
58
67
  "action:reformat": "Přeformátovat",
59
68
  "action:resume": "Navázat v chodu",
@@ -83,8 +92,10 @@
83
92
  "action:start": "Spustit",
84
93
  "action:start-on-host": "Spustit na konkrétním hostiteli",
85
94
  "action:suspend": "Uspat",
95
+ "action:turn-into-group": "Přeměnit na skupinu",
86
96
  "action:unselect-all": "Zrušit výběr všeho",
87
97
  "action:update": "Aktualizovat",
98
+ "action:use-query-builder": "Použít nástroj pro sestavování dotazů",
88
99
  "action:visit-pool-dashboard": "Přejít na přehled fondu",
89
100
  "add-or": "+NEBO",
90
101
  "admin-login": "Přihlašovací jméno správce",
@@ -108,6 +119,8 @@
108
119
  "all-good!": "Všechno v pořádku!",
109
120
  "all-quiet-launchpad": "Na startovní rampě klid",
110
121
  "allow-self-signed-ssl": "Je možné že bude třeba ve vámi využívaném prohlížeči povolit samy sebou podepsané SSL certifikáty",
122
+ "and": "A",
123
+ "any-property": "Jakákoli vlastnost",
111
124
  "api-error-details": "Podrobnosti o chybě API rozhraní",
112
125
  "api-info-details": "Podrobnosti o informaci z API",
113
126
  "api-warning-details": "Podrobnosti o varování z API",
@@ -174,6 +187,7 @@
174
187
  "checkpoint-snapshot": "Zachycený stav – kontrolní bod",
175
188
  "click-to-display-alarms:": "Kliknutím zobrazíte výstrahy:",
176
189
  "click-to-return-default-pool": "Kliknutím sem se vrátíte na výchozí fond",
190
+ "cloud-init-config": "Cloud Init config",
177
191
  "color-mode:auto": "Automatický režim",
178
192
  "coming-soon!": "Už brzy!",
179
193
  "community": "Komunita",
@@ -219,7 +233,6 @@
219
233
  "cron-pattern": "Vzorec plánování (cron)",
220
234
  "current": "Stávající",
221
235
  "current-attach": "Stávající připojení",
222
- "custom-config": "Uživatelsky určené nastavení",
223
236
  "custom-fields": "Uživatelsky určené kolonky",
224
237
  "dark-mode:auto": "Automatický tmavý režim",
225
238
  "dark-mode:disable": "Vypnout tmavý režim",
@@ -276,6 +289,7 @@
276
289
  "fast-clone": "Rychlý klon",
277
290
  "fetching-fresh-data": "Získávání aktuálních údajů",
278
291
  "field:exceeds-max-characters": "Je třeba, aby zadání v kolonce bylo dlouhé nejvýše {max} znaků.",
292
+ "filter-actions": "Akce filtru",
279
293
  "following-hosts-unreachable": "Následující hostitelé nejsou dosažitelní",
280
294
  "for-backup": "Pro zálohu",
281
295
  "for-replication": "Pro replikaci",
@@ -415,6 +429,7 @@
415
429
  "loading": "Načítání…",
416
430
  "loading-hosts": "Načítání hostitelů…",
417
431
  "local": "Lokální",
432
+ "locked": "Uzamčeno",
418
433
  "locking-mode": "Režim zamykání",
419
434
  "locking-mode-default": "Výchozí režim zamykání",
420
435
  "login": "Přihlášení",
@@ -460,6 +475,7 @@
460
475
  "multi-creation": "Vícenásobné vytvoření",
461
476
  "multi-pathing": "Propojování vícero cestami",
462
477
  "n-cpus": "1 procesor | {n} procesory | {n} procesorů",
478
+ "n-gb": "{n} GB",
463
479
  "n-gb-left": "{n} GB zbývá",
464
480
  "n-gb-required": "{n} GB vyžadováno",
465
481
  "n-hosts": "1 hostitel | {n} hostitelů",
@@ -612,24 +628,34 @@
612
628
  "provisioning": "Přednastavování",
613
629
  "proxy": "Proxy",
614
630
  "proxy-url": "URL proxy",
631
+ "public-key": "Veřejný klíč",
632
+ "public-key-already-exists": "Veřejný klíč už existuje",
633
+ "public-key-mandatory": "Veřejný klíč je třeba zadat",
615
634
  "pxe": "PXE",
635
+ "query-builder": "Nástroj pro sestavování dotazů",
636
+ "query-builder:label": "Vyhledávací engine",
616
637
  "query-builder:operator:contains": "Obsahuje",
638
+ "query-builder:operator:empty": "Je prázdné",
617
639
  "query-builder:operator:ends-with": "Končí na",
618
640
  "query-builder:operator:equals": "Rovno",
619
641
  "query-builder:operator:is": "Je",
620
642
  "query-builder:operator:is-false": "Neplatí",
621
643
  "query-builder:operator:is-not": "Není",
622
644
  "query-builder:operator:is-true": "Platí",
645
+ "query-builder:operator:matches-glob": "Shoduje se glob",
623
646
  "query-builder:operator:matches-regex": "Odpovídá regulárnímu výrazu",
624
647
  "query-builder:operator:not-contain": "Neobsahuje",
648
+ "query-builder:operator:not-empty": "Není prázdné",
625
649
  "query-builder:operator:not-end-with": "Nekončí na",
626
650
  "query-builder:operator:not-equal": "Není rovno",
651
+ "query-builder:operator:not-match-glob": "Neshoduje se glob",
627
652
  "query-builder:operator:not-match-regex": "Neodpovídá regulárnímu výrazu",
628
653
  "query-builder:operator:not-start-with": "Nezačíná na",
629
654
  "query-builder:operator:starts-with": "Začíná na",
630
- "query-search-bar:label": "Vyhledávací engine",
631
- "query-search-bar:placeholder": "Zadejte svůj dotaz…",
632
- "query-search-bar:use-query-builder": "Použít nástroj pro sestavování dotazů",
655
+ "query-builder:placeholder": "Sestavte si svůj dotaz…",
656
+ "query-search-bar:label": "@:query-builder:label",
657
+ "query-search-bar:placeholder": "@:query-builder:placeholder",
658
+ "query-search-bar:use-query-builder": "@:query-builder",
633
659
  "quick-actions": "Rychlé akce",
634
660
  "quick-info": "Stručné informace",
635
661
  "ram": "Operační paměť",
@@ -152,8 +152,8 @@
152
152
  "console-unavailable": "Konsol ikke tilgængelig",
153
153
  "console-unavailable-reason": "Konsollen er i øjeblikket utilgængelig, fordi {type} er slukket.",
154
154
  "copied": "Kopieret",
155
- "core-socket": "Kerne (sokket)",
156
- "cores-with-sockets": "Kerner (stikkontakter)",
155
+ "core-socket": "Kerne (sokkel)",
156
+ "cores-with-sockets": "Kerner (sokler)",
157
157
  "cpu": "CPU",
158
158
  "cpu-model": "CPU model",
159
159
  "cpu-usage": "CPU forbrug",
@@ -174,6 +174,7 @@
174
174
  "checkpoint-snapshot": "Checkpoint Snapshot",
175
175
  "click-to-display-alarms:": "Hier klicken um Alarme anzuzeigen:",
176
176
  "click-to-return-default-pool": "Hier klicken um zum Standardpool zurückzukehren",
177
+ "cloud-init-config": "Benutzerdefinierte Konfiguration",
177
178
  "color-mode:auto": "Automatikmodus",
178
179
  "coming-soon!": "Bald verfügbar!",
179
180
  "community": "Gemeinschaft",
@@ -219,7 +220,6 @@
219
220
  "cron-pattern": "Cron-Muster",
220
221
  "current": "Aktuell",
221
222
  "current-attach": "Aktuelle Anhänge",
222
- "custom-config": "Benutzerdefinierte Konfiguration",
223
223
  "custom-fields": "Benutzerdefinierte Felder",
224
224
  "dark-mode:auto": "Automatischer Dunkelmodus",
225
225
  "dark-mode:disable": "Deaktiviere den Dunkelmodus",
@@ -136,12 +136,15 @@
136
136
  "backed-up-pools": "Backed up Pools",
137
137
  "backed-up-vms": "Backed up VMs",
138
138
  "backup": "Backup",
139
+ "backup-archive-status": "Backup archive status",
139
140
  "backup-issues": "Backup issues",
140
141
  "backup-job": "Backup job",
141
142
  "backup-jobs": "Backup jobs",
143
+ "backup-jobs:see-all": "See all backup jobs",
142
144
  "backup-network": "Backup network",
143
145
  "backup-repositories": "Backup repositories",
144
- "backup-repository": "Backup repository (local, NFS, SMB)",
146
+ "backup-repository": "Backup repository",
147
+ "backup-repository-type": "Backup repository (local, NFS, SMB)",
145
148
  "backup-targets": "Backup targets",
146
149
  "backup:full": "Full backup",
147
150
  "backup:full-replication": "Full replication",
@@ -163,10 +166,13 @@
163
166
  "backups:jobs:skipped-runs": "Skipped runs, no errors",
164
167
  "backups:jobs:status": "Backup jobs status",
165
168
  "backups:vms-protection": "VMs protection",
166
- "backups:vms-protection:no-job": "In no active job",
167
- "backups:vms-protection:protected": "In at least 1 active job & protected",
169
+ "backups:vms-protection:active-protected": "In at least 1 active job & protected",
170
+ "backups:vms-protection:active-unprotected": "In at least 1 active job but unprotected",
171
+ "backups:vms-protection:no-active-job": "In no active job",
172
+ "backups:vms-protection:no-job": "In no job",
173
+ "backups:vms-protection:protected": "In at least 1 job & protected",
168
174
  "backups:vms-protection:tooltip": "A VM is protected if it's in a backup job, with an enabled schedule, and the last run succeeded",
169
- "backups:vms-protection:unprotected": "In at least 1 active job but unprotected",
175
+ "backups:vms-protection:unprotected": "In at least 1 job but unprotected",
170
176
  "bios-default": "bios (default)",
171
177
  "bios-info": "BIOS info",
172
178
  "bond": "Bond",
@@ -188,6 +194,7 @@
188
194
  "click-to-display-alarms:": "Click to display alarms:",
189
195
  "click-to-return-default-pool": "Click here to return to the default pool",
190
196
  "cloud-config": "Cloud config",
197
+ "cloud-init-config": "Cloud-init config",
191
198
  "color-mode:auto": "Automatic mode",
192
199
  "coming-soon!": "Coming soon!",
193
200
  "community": "Community",
@@ -233,7 +240,6 @@
233
240
  "cron-pattern": "Cron pattern",
234
241
  "current": "Current",
235
242
  "current-attach": "Current attach",
236
- "custom-config": "Custom config",
237
243
  "custom-fields": "Custom fields",
238
244
  "dark-mode:auto": "Auto dark mode",
239
245
  "dark-mode:disable": "Disable dark mode",
@@ -344,6 +350,7 @@
344
350
  "ipv4-addresses": "IPv4 addresses",
345
351
  "ipv6-address": "IPv6 address",
346
352
  "ipv6-addresses": "IPv6 addresses",
353
+ "is-part-of-one-active-job": "This VM is currently part of at least one active job. The last job it participated in will appear here once it has been executed.",
347
354
  "is-primary-host": "{name} is primary host",
348
355
  "iscsi-iqn": "iSCSI IQN",
349
356
  "iso-dvd": "ISO/DVD",
@@ -417,6 +424,8 @@
417
424
  "language": "Language",
418
425
  "language-preferences": "Language preferences",
419
426
  "last": "Last",
427
+ "last-n-backup-archives": "Last backup archive | Last {n} backup archives",
428
+ "last-n-backup-runs": "Last backup run | Last {n} backup runs",
420
429
  "last-n-runs": "Last run | Last {n} runs",
421
430
  "last-run-number": "Last run #{n}",
422
431
  "last-week": "Last week",
@@ -505,8 +514,17 @@
505
514
  "new-vm": "New VM",
506
515
  "new-vm:add": "Add a new VM",
507
516
  "new-vm:description": "VM description",
517
+ "new-vm:install-source": "Installation source",
508
518
  "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}",
509
519
  "new-vm:name": "VM name",
520
+ "new-vm:network-config": "Network configuration is only compatible with {noCloudLink}.",
521
+ "new-vm:network-config-more": "See {documentationLink} for more info.",
522
+ "new-vm:network-config-documentation": "Network config documentation",
523
+ "new-vm:network-config-nocloud-datasource": "the NoCloud datasource",
524
+ "new-vm:user-config-variables": "Template variables",
525
+ "new-vm:user-config-variables-name": "{'{name}'}: the VM's name. It must not contain '_'",
526
+ "new-vm:user-config-variables-index": "{'{index}'}: the VM's index, it will take 0 in case of single VM",
527
+ "new-vm:user-config-variables-escape": "Escape any variable with a preceding backslash '\\'",
510
528
  "news": "News",
511
529
  "news-name": "{name} news",
512
530
  "nic-type": "NIC type",
@@ -523,9 +541,12 @@
523
541
  "no-data-to-calculate": "No data to calculate",
524
542
  "no-host-attached": "No hosts attached",
525
543
  "no-host-detected": "No hosts detected",
544
+ "no-job-vm": "This VM isn’t part of any running job.",
526
545
  "no-network-detected": "No networks detected",
527
546
  "no-pbd-attached": "No PBDs attached",
528
547
  "no-pif-detected": "No PIFs detected",
548
+ "no-pools-detected": "No pools detected",
549
+ "no-replicated-vm": "This VM isn’t being replicated. Configure a replication job to enable it.",
529
550
  "no-result": "No results",
530
551
  "no-schedule-available": "No schedules available",
531
552
  "no-selected-vm-can-be-exported": "No selected VM can be exported",
@@ -625,6 +646,7 @@
625
646
  "property": "Property",
626
647
  "protect-from-accidental-deletion": "Protect from accidental deletion",
627
648
  "protect-from-accidental-shutdown": "Protect from accidental shutdown",
649
+ "protection-status": "Protection status",
628
650
  "provider-solutions": "{provider} solutions",
629
651
  "provisioning": "Provisioning",
630
652
  "proxy": "Proxy",
@@ -713,6 +735,7 @@
713
735
  "show-by": "Show by",
714
736
  "shutdown-blocked": "Shutdown Blocked",
715
737
  "size": "Size",
738
+ "size-on-disk": "Size on disk",
716
739
  "skipped": "Skipped",
717
740
  "smart-mode": "Smart mode",
718
741
  "snapshot": "Snapshot",
@@ -171,6 +171,7 @@
171
171
  "checkpoint-snapshot": "Instantáneo de punto de control",
172
172
  "click-to-display-alarms:": "Haga clic para mostrar las alarmas :",
173
173
  "click-to-return-default-pool": "Haga clic para regresar al conjunto de servidores predeterminado",
174
+ "cloud-init-config": "Configuración personalizada",
174
175
  "color-mode:auto": "Modo automático",
175
176
  "coming-soon!": "¡Pronto disponible!",
176
177
  "community": "Comunidad",
@@ -216,7 +217,6 @@
216
217
  "cron-pattern": "Padrón cron",
217
218
  "current": "Actual",
218
219
  "current-attach": "Adjuntos actuales",
219
- "custom-config": "Configuración personalizada",
220
220
  "custom-fields": "Campos personalizados",
221
221
  "dark-mode:auto": "Modo oscuro automático",
222
222
  "dark-mode:disable": "Desactivar modo oscuro",
@@ -117,6 +117,7 @@
117
117
  "check-summing": "در حال بررسی TX شبکه",
118
118
  "click-to-display-alarms:": "برای نمایش هشدارها کلیک کنید:",
119
119
  "click-to-return-default-pool": "برای بازگشت به Pool پیش فرض اینجا کلیک کنید",
120
+ "cloud-init-config": "تنظیمات پیشفرض",
120
121
  "coming-soon!": "به زودی!",
121
122
  "community": "انجمن",
122
123
  "community-name": "{name} انجمن",
@@ -134,7 +135,6 @@
134
135
  "cpu-provisioning-warning": "تعداد CPU های مجازی اختصاص داده شده بیش از تعداد CPUهای فیزیکی موجود است. عملکرد سیستم ممکن است تحت تأثیر قرار بگیرد",
135
136
  "cpu-usage": "استفاده از CPU",
136
137
  "current": "جاری",
137
- "custom-config": "تنظیمات پیشفرض",
138
138
  "dark-mode:auto": "حالت خودکار تاریک",
139
139
  "dark-mode:disable": "غیر فعال کردن حالت تاریک",
140
140
  "dark-mode:enable": "فعال کردن حالت تاریک",
@@ -58,6 +58,7 @@
58
58
  "bytes:ki": "KiB",
59
59
  "bytes:mi": "MiB",
60
60
  "cancel": "Peruuttaa",
61
+ "cloud-init-config": "Mukautettu kokoonpano",
61
62
  "coming-soon!": "Tulossa pian!",
62
63
  "community": "Yhteisö",
63
64
  "compression": "Pakkaus",
@@ -76,7 +77,6 @@
76
77
  "created-by": "Luonut",
77
78
  "created-on": "Luotu",
78
79
  "current": "Nykyinen",
79
- "custom-config": "Mukautettu kokoonpano",
80
80
  "custom-fields": "Mukautetut kentät",
81
81
  "dashboard": "Kojelauta",
82
82
  "date": "Päivämäärä",
@@ -136,12 +136,15 @@
136
136
  "backed-up-pools": "Pools sauvegardés",
137
137
  "backed-up-vms": "VMs sauvegardées",
138
138
  "backup": "Sauvegarde",
139
+ "backup-archive-status": "Statut de l'archive",
139
140
  "backup-issues": "Problèmes de sauvegarde",
140
141
  "backup-job": "Job de sauvegarde",
141
142
  "backup-jobs": "Jobs de sauvegarde",
143
+ "backup-jobs:see-all": "Voir toutes les sauvegardes",
142
144
  "backup-network": "Réseau de sauvegarde",
143
145
  "backup-repositories": "Dépôts de sauvegarde",
144
- "backup-repository": "Dépôt de sauvegarde (local, NFS, SMB)",
146
+ "backup-repository": "Dépôt de sauvegarde",
147
+ "backup-repository-type": "Dépôt de sauvegarde (local, NFS, SMB)",
145
148
  "backup-targets": "Cibles de sauvegarde",
146
149
  "backup:full": "Sauvegarde complète",
147
150
  "backup:full-replication": "Réplication complète",
@@ -163,10 +166,13 @@
163
166
  "backups:jobs:skipped-runs": "Runs ignorés, pas d'erreurs",
164
167
  "backups:jobs:status": "Statut des sauvegardes",
165
168
  "backups:vms-protection": "Protection des VMs",
166
- "backups:vms-protection:no-job": "Dans aucun job actif",
167
- "backups:vms-protection:protected": "Dans au moins 1 job actif et protégé",
169
+ "backups:vms-protection:active-protected": "Dans au moins 1 job actif et protégé",
170
+ "backups:vms-protection:active-unprotected": "Dans au moins 1 job actif mais non protégé",
171
+ "backups:vms-protection:no-active-job": "Dans aucun job actif",
172
+ "backups:vms-protection:no-job": "Dans aucun job",
173
+ "backups:vms-protection:protected": "Dans au moins 1 job et protégé",
168
174
  "backups:vms-protection:tooltip": "Une VM est protégée si elle se trouve dans un job, avec une planification activée, et si la dernière exécution a réussi",
169
- "backups:vms-protection:unprotected": "Dans au moins 1 job actif mais sans protection",
175
+ "backups:vms-protection:unprotected": "Dans au moins 1 job mais sans protection",
170
176
  "bios-default": "bios (défaut)",
171
177
  "bios-info": "Information du BIOS",
172
178
  "bond": "Bond",
@@ -188,6 +194,7 @@
188
194
  "click-to-display-alarms:": "Cliquer pour afficher les alarmes :",
189
195
  "click-to-return-default-pool": "Cliquer ici pour revenir au pool par défaut",
190
196
  "cloud-config": "Cloud config",
197
+ "cloud-init-config": "Configuration Cloud-init",
191
198
  "color-mode:auto": "Mode automatique",
192
199
  "coming-soon!": "Bientôt disponible !",
193
200
  "community": "Communauté",
@@ -233,7 +240,6 @@
233
240
  "cron-pattern": "Pattern cron",
234
241
  "current": "Actuel",
235
242
  "current-attach": "Attachement actuel",
236
- "custom-config": "Configuration personnalisée",
237
243
  "custom-fields": "Champs personnalisés",
238
244
  "dark-mode:auto": "Mode sombre automatique",
239
245
  "dark-mode:disable": "Désactiver le mode sombre",
@@ -344,6 +350,7 @@
344
350
  "ipv4-addresses": "Adresses IPv4",
345
351
  "ipv6-address": "Adresse IPv6",
346
352
  "ipv6-addresses": "Adresses IPv6",
353
+ "is-part-of-one-active-job": "Cette VM fait partie d'au moins un job actif. La dernière tâche à laquelle elle a participé apparaîtra ici une fois qu'elle aura été exécutée.",
347
354
  "is-primary-host": "{name} est l'hôte primaire",
348
355
  "iscsi-iqn": "iSCSI IQN",
349
356
  "iso-dvd": "ISO/DVD",
@@ -417,6 +424,8 @@
417
424
  "language": "Langue",
418
425
  "language-preferences": "Choix de la langue",
419
426
  "last": "Dernier",
427
+ "last-n-backup-archives": "Dernier run d'archivage | {n} derniers archivages",
428
+ "last-n-backup-runs": "Dernier run de sauvegarde | {n} dernières sauvegardes",
420
429
  "last-n-runs": "Dernier run | {n} derniers runs",
421
430
  "last-run-number": "Dernière exécution #{n}",
422
431
  "last-week": "Semaine dernière",
@@ -505,8 +514,17 @@
505
514
  "new-vm": "Nouvelle VM",
506
515
  "new-vm:add": "Ajouter une nouvelle VM",
507
516
  "new-vm:description": "Description de la VM",
517
+ "new-vm:install-source": "Source d'installation",
508
518
  "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}",
509
519
  "new-vm:name": "Nom de la VM",
520
+ "new-vm:network-config": "La configuration réseau est uniquement compatible avec {noCloudLink}.",
521
+ "new-vm:network-config-more": "Voir {documentationLink} pour plus d'informations.",
522
+ "new-vm:network-config-documentation": "la documentation de la configuration réseau",
523
+ "new-vm:network-config-nocloud-datasource": "la source de données NoCloud",
524
+ "new-vm:user-config-variables": "Variables de modèle",
525
+ "new-vm:user-config-variables-name": "{'{name}'}: le nom de la VM. Il ne doit pas contenir '_'",
526
+ "new-vm:user-config-variables-index": "{'{index}'}: l'index de la VM, il prendra 0 en cas de VM unique",
527
+ "new-vm:user-config-variables-escape": "Échapper toute variable avec un antislash précédant '\\'",
510
528
  "news": "Actualités",
511
529
  "news-name": "Actualités {name}",
512
530
  "nic-type": "Type de carte réseau (NIC)",
@@ -523,9 +541,12 @@
523
541
  "no-data-to-calculate": "Aucune donnée à calculer",
524
542
  "no-host-attached": "Aucun hôte attaché",
525
543
  "no-host-detected": "Aucun hôte détecté",
544
+ "no-job-vm": "Cette VM ne fait partie d'aucun job actif.",
526
545
  "no-network-detected": "Aucun réseau détecté",
527
546
  "no-pbd-attached": "Aucun PBD attaché",
528
547
  "no-pif-detected": "Aucun PIF détecté",
548
+ "no-pools-detected": "Aucun pool détecté",
549
+ "no-replicated-vm": "Cette VM n'est pas répliquée. Configurez une tâche de réplication pour l'activer.",
529
550
  "no-result": "Aucun résultat",
530
551
  "no-schedule-available": "Aucune planification disponible",
531
552
  "no-selected-vm-can-be-exported": "Aucune VM sélectionnée ne peut être exportée",
@@ -625,6 +646,7 @@
625
646
  "property": "Propriété",
626
647
  "protect-from-accidental-deletion": "Protection contre les suppressions accidentelles",
627
648
  "protect-from-accidental-shutdown": "Protection contre les extinctions accidentelles",
649
+ "protection-status": "Statut de la protection",
628
650
  "provider-solutions": "Solutions {provider}",
629
651
  "provisioning": "Provisionnement",
630
652
  "proxy": "Proxy",
@@ -713,6 +735,7 @@
713
735
  "show-by": "Afficher par",
714
736
  "shutdown-blocked": "Arrêt bloqué",
715
737
  "size": "Taille",
738
+ "size-on-disk": "Taille sur le disque",
716
739
  "skipped": "Ignoré",
717
740
  "smart-mode": "Mode intelligent",
718
741
  "snapshot": "Instantané",
@@ -117,6 +117,7 @@
117
117
  "check-summing": "TX checksumming",
118
118
  "click-to-display-alarms:": "Fai click per mostrare gli allarmi:",
119
119
  "click-to-return-default-pool": "Clicca qui per tornare alla pool predefinita",
120
+ "cloud-init-config": "Configurazioni personalizzate",
120
121
  "coming-soon!": "In arrivo!",
121
122
  "community": "Comunità",
122
123
  "community-name": "Comunità {name}",
@@ -143,7 +144,6 @@
143
144
  "created-by": "Creato per",
144
145
  "created-on": "Creato a",
145
146
  "current": "Corrente",
146
- "custom-config": "Configurazioni personalizzate",
147
147
  "dark-mode:auto": "Modalità scura automatica",
148
148
  "dark-mode:disable": "Disabilita modalità scura",
149
149
  "dark-mode:enable": "Abilita modalità scura",
@@ -145,6 +145,7 @@
145
145
  "checkpoint-snapshot": "Kontrollpunkt-øyeblikksbilde",
146
146
  "click-to-display-alarms:": "Klikk for å vise alarmer:",
147
147
  "click-to-return-default-pool": "Klikk her for å gå tilbake til standardpool",
148
+ "cloud-init-config": "Tilpasset konfigurasjon",
148
149
  "color-mode:auto": "Automatisk modus",
149
150
  "coming-soon!": "Kommer snart!",
150
151
  "community": "Fellesskap",
@@ -187,7 +188,6 @@
187
188
  "cron-pattern": "Cron-mønster",
188
189
  "current": "Nåværende",
189
190
  "current-attach": "Nåværende tilkobling",
190
- "custom-config": "Tilpasset konfigurasjon",
191
191
  "custom-fields": "Tilpassede felt",
192
192
  "dark-mode:auto": "Automatisk mørk modus",
193
193
  "dark-mode:disable": "Deaktiver mørk modus",
@@ -174,6 +174,7 @@
174
174
  "checkpoint-snapshot": "Checkpoint snapshot",
175
175
  "click-to-display-alarms:": "Klik om alarmen weer te geven:",
176
176
  "click-to-return-default-pool": "Klik hier om terug te gaan naar de standaard pool",
177
+ "cloud-init-config": "Aangepaste configuratie",
177
178
  "color-mode:auto": "Automatische modus",
178
179
  "coming-soon!": "Binnenkort verwacht!",
179
180
  "community": "Gemeenschap",
@@ -219,7 +220,6 @@
219
220
  "cron-pattern": "Cron-patroon",
220
221
  "current": "Huidig",
221
222
  "current-attach": "Momenteel aangesloten",
222
- "custom-config": "Aangepaste configuratie",
223
223
  "custom-fields": "Aangepaste velden",
224
224
  "dark-mode:auto": "Automatische donkere modus",
225
225
  "dark-mode:disable": "Donkere modus uitschakelen",
@@ -79,6 +79,7 @@
79
79
  "bytes:ki": "KiB",
80
80
  "bytes:mi": "MiB",
81
81
  "cancel": "Anuluj",
82
+ "cloud-init-config": "Niestandardowa konfiguracja",
82
83
  "coming-soon!": "Już wkrótce!",
83
84
  "community": "Społeczność",
84
85
  "compression": "Kompresja",
@@ -97,7 +98,6 @@
97
98
  "created-by": "Stworzone przez",
98
99
  "created-on": "Stworzone na",
99
100
  "current": "Aktualne",
100
- "custom-config": "Niestandardowa konfiguracja",
101
101
  "custom-fields": "Niestandardowe pola",
102
102
  "dark-mode:enable": "Włącz tryb ciemny",
103
103
  "dashboard": "Pulpit",
@@ -157,6 +157,7 @@
157
157
  "checkpoint-snapshot": "Моментальный снимок контрольной точки",
158
158
  "click-to-display-alarms:": "Нажмите, чтобы отобразить тревоги:",
159
159
  "click-to-return-default-pool": "Нажмите здесь для возвращения в пул по-умолчанию",
160
+ "cloud-init-config": "Пользовательская конфигурация",
160
161
  "color-mode:auto": "Автоматический режим",
161
162
  "coming-soon!": "Скоро!",
162
163
  "community": "Сообщество",
@@ -200,7 +201,6 @@
200
201
  "cron-pattern": "Паттерн cron",
201
202
  "current": "Текущий",
202
203
  "current-attach": "Текущее подключение",
203
- "custom-config": "Пользовательская конфигурация",
204
204
  "custom-fields": "Настраиваемые поля",
205
205
  "dark-mode:auto": "Автоматический тёмный режим",
206
206
  "dark-mode:disable": "Отключить тёмный режим",
@@ -143,6 +143,7 @@
143
143
  "checkpoint-snapshot": "Kontrollpunkt för ögonblicksbild",
144
144
  "click-to-display-alarms:": "Klicka för att visa larm:",
145
145
  "click-to-return-default-pool": "Klicka här för att återgå till standardpoolen",
146
+ "cloud-init-config": "Skräddarsydd konfiguration",
146
147
  "coming-soon!": "Kommer snart!",
147
148
  "community": "Community",
148
149
  "community-name": "{name} community",
@@ -183,7 +184,6 @@
183
184
  "created-on": "Skapad",
184
185
  "cron-pattern": "Cron-mönster",
185
186
  "current": "Nuvarande",
186
- "custom-config": "Skräddarsydd konfiguration",
187
187
  "dark-mode:auto": "Automatiskt mörkt läge",
188
188
  "dark-mode:disable": "Inaktivera mörkt läge",
189
189
  "dark-mode:enable": "Aktivera mörkt läge",
@@ -117,6 +117,7 @@
117
117
  "check-summing": "Контрольна сума TX",
118
118
  "click-to-display-alarms:": "Натисніть, щоб відобразити тривоги:",
119
119
  "click-to-return-default-pool": "Натисніть тут, щоб повернутися до пулу за замовчуванням",
120
+ "cloud-init-config": "Користувацька конфігурація",
120
121
  "coming-soon!": "Скоро!",
121
122
  "community": "Спільнота",
122
123
  "community-name": "{name} спільнота",
@@ -152,7 +153,6 @@
152
153
  "created-on": "Створено на",
153
154
  "cron-pattern": "Патерн cron",
154
155
  "current": "Поточний",
155
- "custom-config": "Користувацька конфігурація",
156
156
  "dark-mode:auto": "Автоматичний темний режим",
157
157
  "dark-mode:disable": "Вимкнути темний режим",
158
158
  "dark-mode:enable": "Увімкнути темний режим",
@@ -174,6 +174,7 @@
174
174
  "checkpoint-snapshot": "检查点快照",
175
175
  "click-to-display-alarms:": "点击显示告警:",
176
176
  "click-to-return-default-pool": "点击返回默认资源池",
177
+ "cloud-init-config": "自定义配置",
177
178
  "color-mode:auto": "自动模式",
178
179
  "coming-soon!": "即将推出!",
179
180
  "community": "社区",
@@ -219,7 +220,6 @@
219
220
  "cron-pattern": "Cron表达式",
220
221
  "current": "当前",
221
222
  "current-attach": "当前挂载",
222
- "custom-config": "自定义配置",
223
223
  "custom-fields": "自定义字段",
224
224
  "dark-mode:auto": "自动深色模式",
225
225
  "dark-mode:disable": "禁用深色模式",
@@ -28,7 +28,7 @@ export const useDateColumn = defineColumn((config?: HeaderConfig & DateConfig) =
28
28
  dateStyle: config?.dateStyle,
29
29
  timeStyle: config?.timeStyle,
30
30
  })
31
- })
31
+ }, 'end')
32
32
  },
33
33
  }
34
34
  })
@@ -0,0 +1,15 @@
1
+ import { defineColumns } from '@core/packages/table/define-columns.ts'
2
+ import { useDateColumn } from '@core/tables/column-definitions/date-column'
3
+ import { useLinkColumn } from '@core/tables/column-definitions/link-column'
4
+ import { useNumberColumn } from '@core/tables/column-definitions/number-column'
5
+ import { useI18n } from 'vue-i18n'
6
+
7
+ export const useBackupArchiveColumns = defineColumns(() => {
8
+ const { t } = useI18n()
9
+
10
+ return {
11
+ date: useDateColumn({ headerLabel: () => t('date'), dateStyle: 'short', timeStyle: 'medium' }),
12
+ backupRepository: useLinkColumn({ headerLabel: () => t('backup-repository') }),
13
+ sizeOnDisk: useNumberColumn({ headerLabel: () => t('size-on-disk') }),
14
+ }
15
+ })
@@ -0,0 +1,15 @@
1
+ import { defineColumns } from '@core/packages/table/define-columns.ts'
2
+ import { useDateColumn } from '@core/tables/column-definitions/date-column'
3
+ import { useLinkColumn } from '@core/tables/column-definitions/link-column'
4
+ import { useStatusColumn } from '@core/tables/column-definitions/status-column.ts'
5
+ import { useI18n } from 'vue-i18n'
6
+
7
+ export const useBackupRunColumns = defineColumns(() => {
8
+ const { t } = useI18n()
9
+
10
+ return {
11
+ date: useDateColumn({ headerLabel: () => t('date'), dateStyle: 'short', timeStyle: 'medium' }),
12
+ backupArchiveStatus: useStatusColumn({ headerLabel: () => t('backup-archive-status') }),
13
+ backupJob: useLinkColumn({ headerLabel: () => t('backup-job') }),
14
+ }
15
+ })
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@xen-orchestra/web-core",
3
3
  "type": "module",
4
- "version": "0.44.0",
4
+ "version": "0.46.0",
5
5
  "private": false,
6
6
  "exports": {
7
7
  "./*": {