@xen-orchestra/web-core 0.47.0 → 0.48.1

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.
@@ -0,0 +1,28 @@
1
+ <template>
2
+ <div
3
+ class="step"
4
+ :class="{
5
+ active: isActive,
6
+ }"
7
+ />
8
+ </template>
9
+
10
+ <script lang="ts" setup>
11
+ defineProps<{
12
+ isActive: boolean
13
+ }>()
14
+ </script>
15
+
16
+ <style lang="postcss" scoped>
17
+ .step {
18
+ flex: 1;
19
+ height: 0.8rem;
20
+ border-radius: 9rem;
21
+ background-color: var(--color-neutral-background-disabled);
22
+ transition: background 0.3s;
23
+
24
+ &.active {
25
+ background-color: var(--color-brand-item-base);
26
+ }
27
+ }
28
+ </style>
@@ -0,0 +1,61 @@
1
+ <!-- v1 -->
2
+ <template>
3
+ <div class="ui-stepper">
4
+ <div class="header">
5
+ <div class="typo-body-regular description">
6
+ {{ steps[currentStep]?.description ?? t('step-n-of', { current: currentStep + 1, total: steps.length }) }}
7
+ </div>
8
+ <div class="typo-h3">{{ steps[currentStep]?.label }}</div>
9
+ </div>
10
+
11
+ <div class="steps-container">
12
+ <Step v-for="(_, index) in steps" :key="index" :is-active="index <= currentStep" />
13
+ </div>
14
+
15
+ <slot />
16
+ </div>
17
+ </template>
18
+
19
+ <script lang="ts" setup>
20
+ import Step from '@core/components/ui/stepper/Step.vue'
21
+ import { useI18n } from 'vue-i18n'
22
+
23
+ export type StepDefinition = {
24
+ label: string
25
+ description?: string
26
+ }
27
+
28
+ defineProps<{
29
+ steps: StepDefinition[]
30
+ currentStep: number
31
+ }>()
32
+
33
+ defineSlots<{
34
+ default(): any
35
+ }>()
36
+
37
+ const { t } = useI18n()
38
+ </script>
39
+
40
+ <style lang="postcss" scoped>
41
+ .ui-stepper {
42
+ display: flex;
43
+ flex-direction: column;
44
+ gap: 1.6rem;
45
+
46
+ .header {
47
+ display: flex;
48
+ flex-direction: column;
49
+ gap: 0.8rem;
50
+
51
+ .description {
52
+ color: var(--color-neutral-txt-secondary);
53
+ }
54
+ }
55
+
56
+ .steps-container {
57
+ display: flex;
58
+ gap: 0.8rem;
59
+ }
60
+ }
61
+ </style>
@@ -0,0 +1,43 @@
1
+ import type { StepDefinition } from '@core/components/ui/stepper/UiStepper.vue'
2
+ import { toComputed } from '@core/utils/to-computed.util.ts'
3
+ import { computed, type MaybeRefOrGetter, ref } from 'vue'
4
+
5
+ export type StepperBindings = {
6
+ steps: StepDefinition[]
7
+ currentStep: number
8
+ }
9
+
10
+ export function useStepper(_steps: MaybeRefOrGetter<StepDefinition[]>) {
11
+ const steps = toComputed(_steps)
12
+
13
+ const currentStep = ref(0)
14
+
15
+ const isFirstStep = computed(() => currentStep.value === 0)
16
+ const isLastStep = computed(() => currentStep.value === steps.value.length - 1)
17
+
18
+ function next() {
19
+ if (!isLastStep.value) {
20
+ currentStep.value++
21
+ }
22
+ }
23
+
24
+ function prev() {
25
+ if (!isFirstStep.value) {
26
+ currentStep.value--
27
+ }
28
+ }
29
+
30
+ const stepperBindings = computed<StepperBindings>(() => ({
31
+ steps: steps.value,
32
+ currentStep: currentStep.value,
33
+ }))
34
+
35
+ return {
36
+ currentStep,
37
+ isFirstStep,
38
+ isLastStep,
39
+ next,
40
+ prev,
41
+ stepperBindings,
42
+ }
43
+ }
package/lib/i18n.ts CHANGED
@@ -85,6 +85,14 @@ export const locales: Locales = {
85
85
  code: 'zh-Hans',
86
86
  name: '中文(简体)',
87
87
  },
88
+ sk: {
89
+ code: 'sk',
90
+ name: 'Slovenčina',
91
+ },
92
+ pt: {
93
+ code: 'pt',
94
+ name: 'Português',
95
+ },
88
96
  }
89
97
 
90
98
  export default createI18n({
@@ -136,12 +136,15 @@
136
136
  "backed-up-pools": "Zálohované fondy",
137
137
  "backed-up-vms": "Zazálohované virt. stroje",
138
138
  "backup": "Záloha",
139
+ "backup-archive-status": "Stav archivu zálohy",
139
140
  "backup-issues": "Problémy se zálohou",
140
141
  "backup-job": "Úlohy zálohování",
141
142
  "backup-jobs": "Zálohovací úlohy",
143
+ "backup-jobs:see-all": "Zobrazit veškeré úlohy zálohování",
142
144
  "backup-network": "Síť pro zálohování",
143
145
  "backup-repositories": "Repozitáře zálohy",
144
- "backup-repository": "Repozitář pro zálohy (místní, NFS, SMB)",
146
+ "backup-repository": "Repozitář pro zálohy",
147
+ "backup-repository-type": "Repozitář pro zálohy (lokální, NFS, SMB)",
145
148
  "backup-targets": "Cíle zálohování",
146
149
  "backup:full": "Plná záloha",
147
150
  "backup:full-replication": "Úplná replikace",
@@ -163,10 +166,13 @@
163
166
  "backups:jobs:skipped-runs": "Přeskočená spouštění, žádné chyby",
164
167
  "backups:jobs:status": "Stav úloh zálohování",
165
168
  "backups:vms-protection": "Ochrana virt. strojů",
166
- "backups:vms-protection:no-job": "Není v žádné aktivní úloze",
167
- "backups:vms-protection:protected": "V alespoň jedné aktivní úloze a chráněn",
169
+ "backups:vms-protection:active-protected": "V alespoň 1 aktivní úloze a chráněno",
170
+ "backups:vms-protection:active-unprotected": "V alespoň jedné aktivní úloze ale zatím nechráněno",
171
+ "backups:vms-protection:no-active-job": "V žádné aktivní úloze",
172
+ "backups:vms-protection:no-job": "Žádné úloze",
173
+ "backups:vms-protection:protected": "V alespoň 1 úloze a chráněno",
168
174
  "backups:vms-protection:tooltip": "Virt. stroj je chráněn, pokud se nachází v zálohovací úloze, která má zapnuté pravidelné spouštění a její poslední vykonání bylo úspěšné",
169
- "backups:vms-protection:unprotected": "V alespoň jedné aktivní úloze, ale nechráněn",
175
+ "backups:vms-protection:unprotected": "V alespoň 1 úloze, ale zatím nechráněno",
170
176
  "bios-default": "bios (výchozí)",
171
177
  "bios-info": "Informace o BIOS",
172
178
  "bond": "Svazek",
@@ -187,6 +193,7 @@
187
193
  "checkpoint-snapshot": "Zachycený stav – kontrolní bod",
188
194
  "click-to-display-alarms:": "Kliknutím zobrazíte výstrahy:",
189
195
  "click-to-return-default-pool": "Kliknutím sem se vrátíte na výchozí fond",
196
+ "cloud-config": "Cloud config",
190
197
  "cloud-init-config": "Cloud Init config",
191
198
  "color-mode:auto": "Automatický režim",
192
199
  "coming-soon!": "Už brzy!",
@@ -343,6 +350,7 @@
343
350
  "ipv4-addresses": "IPv4 adresy",
344
351
  "ipv6-address": "IPv6 adresa",
345
352
  "ipv6-addresses": "IPv6 adresy",
353
+ "is-part-of-one-active-job": "Tento virt. stroj je v tuto chvíli součástí alespoň jedné aktivní úlohy. Poslední úloha, které se účastnil, se objeví zde (jakmile bude vykonána).",
346
354
  "is-primary-host": "{name} je hlavní hostitel",
347
355
  "iscsi-iqn": "iSCSI IQN název",
348
356
  "iso-dvd": "ISO/DVD",
@@ -416,6 +424,8 @@
416
424
  "language": "Jazyk",
417
425
  "language-preferences": "Předvolby jazyka",
418
426
  "last": "Poslední",
427
+ "last-n-backup-archives": "Poslední archiv zálohy | Posledních {n} archivů záloh",
428
+ "last-n-backup-runs": "Poslední spouštění zálohy | Posledních {n} spuštěních záloh",
419
429
  "last-n-runs": "Naposledy spuštěno | Posledních {n} spuštění",
420
430
  "last-run-number": "Poslední běh č. {n}",
421
431
  "last-week": "Uplynulý týden",
@@ -505,7 +515,16 @@
505
515
  "new-vm:add": "Přidat nový virt. stroj",
506
516
  "new-vm:description": "Popis virt. stroje",
507
517
  "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}",
518
+ "new-vm:install-source": "Instalační zdroj",
508
519
  "new-vm:name": "Název virt. stroje",
520
+ "new-vm:network-config": "Nastavování sítě je kompatibilní pouze s {noCloudLink}.",
521
+ "new-vm:network-config-documentation": "Dokumentace k nastavování sítě",
522
+ "new-vm:network-config-more": "Další informace viz {documentationLink}.",
523
+ "new-vm:network-config-nocloud-datasource": "NoCloud datový zdroj",
524
+ "new-vm:user-config-variables": "Proměnné pro šablonu",
525
+ "new-vm:user-config-variables-escape": "Jakoukoli proměnnou je možné zbavit významu (escape) pomocí zapsání zpětného lomítka („\\“) před ní",
526
+ "new-vm:user-config-variables-index": "{'{index}'}: pořadové číslo virt. stroje (v případě jediného stroje to bude 0 – nula)",
527
+ "new-vm:user-config-variables-name": "{'{name}'}: název virt. stroje. Nemůže obsahovat „_“ (podtržítko)",
509
528
  "news": "Novinky",
510
529
  "news-name": "Novinky v {name}",
511
530
  "nic-type": "Typ síťového rozhraní",
@@ -522,9 +541,12 @@
522
541
  "no-data-to-calculate": "Žádná data k výpočtu",
523
542
  "no-host-attached": "Nepřipojeni žádní hostitelé",
524
543
  "no-host-detected": "Nezjištěni žádní hostitelé",
544
+ "no-job-vm": "Tento virt. stroj není součástí žádné spuštěné úlohy.",
525
545
  "no-network-detected": "Nezjištěny žádné sítě",
526
546
  "no-pbd-attached": "Nepřipojená žádná PBD",
527
547
  "no-pif-detected": "Nezjištěna žádná fyz. rozhraní",
548
+ "no-pools-detected": "Nezjištěny žádné fondy",
549
+ "no-replicated-vm": "Tento virt. stroj není replikován. Pokud chcete zapnout replikaci, vytvořte úlohu replikování.",
528
550
  "no-result": "Nic nenalezeno",
529
551
  "no-schedule-available": "Nejsou k dispozici žádná naplánování",
530
552
  "no-selected-vm-can-be-exported": "Žádný z označených virt. strojů není možné exportovat",
@@ -577,7 +599,7 @@
577
599
  "partially-connected": "Částečně připojeno",
578
600
  "password": "Heslo",
579
601
  "password-invalid": "Neplatné heslo",
580
- "patch-name": "Popis umístění",
602
+ "patch-name": "Název opravy",
581
603
  "patches": "Záplaty",
582
604
  "patches-up-to-date": "Záplaty aktuální",
583
605
  "pause": "Pozastavit",
@@ -624,6 +646,7 @@
624
646
  "property": "Vlastnost",
625
647
  "protect-from-accidental-deletion": "Chránit před náhodným smazáním",
626
648
  "protect-from-accidental-shutdown": "Chránit před náhodným vypnutím",
649
+ "protection-status": "Stav ochrany",
627
650
  "provider-solutions": "{provider} řešení",
628
651
  "provisioning": "Přednastavování",
629
652
  "proxy": "Proxy",
@@ -712,6 +735,7 @@
712
735
  "show-by": "Položek/stránku",
713
736
  "shutdown-blocked": "Vypnutí blokováno",
714
737
  "size": "Velikost",
738
+ "size-on-disk": "Velikost na disku",
715
739
  "skipped": "Přeskočeno",
716
740
  "smart-mode": "Inteligentní režim",
717
741
  "snapshot": "Zachytit stav",
@@ -885,8 +909,8 @@
885
909
  "warnings": "Varování",
886
910
  "weblate": "Weblate",
887
911
  "welcome-to-xo6!": "Vítejte v XO 6!",
888
- "what-does-protected-means-content": "Virt. stroj je považován za chráněný, pokud je obsažen v alespoň jedné naplánované úloze zálohování a poslední tři běhy této úlohy byly úspěšně dokončeny. To pomáhá zajistit, že virt. stroj má aktuální a spolehlivé body obnovení.",
889
- "what-does-protected-means?": "Co znamená chráněné?",
912
+ "what-does-protected-mean-content": "Virt. stroj je považován za chráněný, pokud je obsažen v alespoň jedné naplánované úloze zálohování a poslední tři běhy této úlohy byly úspěšně dokončeny. To pomáhá zajistit, že virt. stroj má aktuální a spolehlivé body obnovení.",
913
+ "what-does-protected-mean?": "Co znamená chráněné?",
890
914
  "with-memory": "Včetně obsahu operační paměti",
891
915
  "write": "Zápis",
892
916
  "xcp-ng": "XCP-ng",
@@ -10,6 +10,7 @@
10
10
  "account-organization-more": "Konto, Organisation & mehr…",
11
11
  "action:add": "Hinzufügen",
12
12
  "action:add-filter": "Filter hinzufügen",
13
+ "action:add-group": "Gruppe hinzufügen",
13
14
  "action:add-host-internal-network-in-xo-5": "Füge ein host internes Netzwerk in XO-5 hinzu",
14
15
  "action:add-network-in-xo-5": "Netzwerk in XO-5 hinzufügen",
15
16
  "action:add-sort": "Sortierung hinzufügen",
@@ -26,9 +27,12 @@
26
27
  "action:copy-info-json": "Informationen nach JSON kopieren",
27
28
  "action:create": "Erstellen",
28
29
  "action:delete": "Löschen",
30
+ "action:delete-filter": "Filter löschen",
31
+ "action:delete-group": "Gruppe löschen",
29
32
  "action:delete-vms": "1 VM löschen | {n} VMs löschen",
30
33
  "action:deploy": "Bereitstellen",
31
34
  "action:deploy-xoa": "XOA bereitstellen",
35
+ "action:duplicate": "Duplizieren",
32
36
  "action:edit": "Bearbeiten",
33
37
  "action:edit-config": "Einstellungen bearbeiten",
34
38
  "action:enable-light-mode": "Aktiviere den Lichtmodus",
@@ -50,10 +54,15 @@
50
54
  "action:log-out": "Abmelden",
51
55
  "action:migrate": "Migrieren",
52
56
  "action:migrate-n-vms": "1 VM migrieren | {n} VMs migrieren",
57
+ "action:move-filters-to-parent-group": "Filter in übergeordnete Gruppe verschieben",
53
58
  "action:open": "Öffnen",
54
59
  "action:open-app": "@:action:open {name}",
55
60
  "action:open-console-in-new-tab": "Konsole in neuem Reiter öffnen",
56
61
  "action:pick-template": "Vorlage auswählen",
62
+ "action:plus-and": "+ @:and",
63
+ "action:plus-or": "+ @:or",
64
+ "action:query-builder:delete-filter": "Filter löschen",
65
+ "action:query-builder:delete-group": "Gruppe löschen",
57
66
  "action:reboot": "Neustart",
58
67
  "action:reformat": "Neu formatieren",
59
68
  "action:resume": "Fortsetzen",
@@ -83,8 +92,10 @@
83
92
  "action:start": "Starten",
84
93
  "action:start-on-host": "Auf bestimmtem Host starten",
85
94
  "action:suspend": "Anhalten",
95
+ "action:turn-into-group": "In Gruppe umwandeln",
86
96
  "action:unselect-all": "Alle abwählen",
87
97
  "action:update": "Update",
98
+ "action:use-query-builder": "Nutze den Query Builder",
88
99
  "action:visit-pool-dashboard": "Pool Dashboard anzeigen",
89
100
  "add-or": "+Oder",
90
101
  "admin-login": "Administrator Login",
@@ -108,6 +119,8 @@
108
119
  "all-good!": "Alles in Ordnung!",
109
120
  "all-quiet-launchpad": "Alles in Ordnung auf dem Dashboard",
110
121
  "allow-self-signed-ssl": "Es müssen eventuell selbstsignierte SSL-Zertifikate im Browser zugelassen werden",
122
+ "and": "Und",
123
+ "any-property": "Jede Eigenschaft",
111
124
  "api-error-details": "API Fehler Details",
112
125
  "api-info-details": "API Infos anzeigen",
113
126
  "api-warning-details": "API Warnungen",
@@ -150,10 +163,10 @@
150
163
  "backups:jobs:skipped-runs": "Übersprungene Durchgänge, keine Fehler",
151
164
  "backups:jobs:status": "Status der Backup Jobs",
152
165
  "backups:vms-protection": "Maschinenschutz",
153
- "backups:vms-protection:no-job": "In keinem aktive Job",
154
- "backups:vms-protection:protected": "In mindestens 1 aktive Job und geschützt",
166
+ "backups:vms-protection:no-job": "In keinem Job",
167
+ "backups:vms-protection:protected": "In mindestens 1 Job und geschützt",
155
168
  "backups:vms-protection:tooltip": "Eine VM ist geschützt, wenn sie sich in einem Job mit aktivierter Planung befindet und die letzte Ausführung erfolgreich war",
156
- "backups:vms-protection:unprotected": "In mindestens 1 aktive Job aber ohne Schutz",
169
+ "backups:vms-protection:unprotected": "In mindestens 1 Job aber ohne Schutz",
157
170
  "bios-default": "BIOS (Standard)",
158
171
  "bios-info": "BIOS Info",
159
172
  "bond": "Bond",
@@ -174,6 +187,7 @@
174
187
  "checkpoint-snapshot": "Checkpoint Snapshot",
175
188
  "click-to-display-alarms:": "Hier klicken um Alarme anzuzeigen:",
176
189
  "click-to-return-default-pool": "Hier klicken um zum Standardpool zurückzukehren",
190
+ "cloud-config": "Cloud-Konfiguration",
177
191
  "cloud-init-config": "Benutzerdefinierte Konfiguration",
178
192
  "color-mode:auto": "Automatikmodus",
179
193
  "coming-soon!": "Bald verfügbar!",
@@ -276,6 +290,7 @@
276
290
  "fast-clone": "Schneller Klon",
277
291
  "fetching-fresh-data": "Rufe neue Daten ab",
278
292
  "field:exceeds-max-characters": "Das Feld muss {max} Zeichen oder weniger enthalten.",
293
+ "filter-actions": "Aktionen filtern",
279
294
  "following-hosts-unreachable": "Die folgenden Hosts sind nicht erreichbar",
280
295
  "for-backup": "Für das Backup",
281
296
  "for-replication": "Für die Replikation",
@@ -415,6 +430,7 @@
415
430
  "loading": "Ladevorgang läuft…",
416
431
  "loading-hosts": "Lade Hosts…",
417
432
  "local": "Lokal",
433
+ "locked": "Gesperrt",
418
434
  "locking-mode": "Sperrmodus",
419
435
  "locking-mode-default": "Standard-Sperrmodus",
420
436
  "login": "Anmelden",
@@ -460,6 +476,7 @@
460
476
  "multi-creation": "Mehrfach-Erstellung",
461
477
  "multi-pathing": "Multi-Pathing",
462
478
  "n-cpus": "1 CPU | {n} CPUs",
479
+ "n-gb": "{n} GB",
463
480
  "n-gb-left": "{n} GB frei",
464
481
  "n-gb-required": "{n} GB benötigt",
465
482
  "n-hosts": "1 Host | {n} Hosts",
@@ -489,7 +506,14 @@
489
506
  "new-vm:add": "Neue VM hinzufügen",
490
507
  "new-vm:description": "VM-Beschreibung",
491
508
  "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",
509
+ "new-vm:install-source": "Installationsquelle",
492
510
  "new-vm:name": "VM-Name",
511
+ "new-vm:network-config": "Die Netzwerk-Konfiguration ist nur kompatibel mit {noCloudLink}.",
512
+ "new-vm:network-config-documentation": "Dokumentation der Netzwerkkonfiguration",
513
+ "new-vm:network-config-more": "Besuche {documentationLink} für weitere Informationen.",
514
+ "new-vm:network-config-nocloud-datasource": "die NoCloud Datenquelle",
515
+ "new-vm:user-config-variables": "Template-Variablen",
516
+ "new-vm:user-config-variables-escape": "Escape jede Variable mit einem vorangestellten Backslash '\\'",
493
517
  "news": "Neuigkeiten",
494
518
  "news-name": "Neuigkeiten zu {name}",
495
519
  "nic-type": "NIC-Typ",
@@ -612,8 +636,14 @@
612
636
  "provisioning": "Bereitstellung",
613
637
  "proxy": "Proxy",
614
638
  "proxy-url": "Proxy URL",
639
+ "public-key": "Öffentlicher Schlüssel",
640
+ "public-key-already-exists": "Öffentlicher Schlüssel existiert bereits",
641
+ "public-key-mandatory": "Öffentlicher Schlüssel ist erforderlich",
615
642
  "pxe": "PXE",
643
+ "query-builder": "Query Builder",
644
+ "query-builder:label": "Suchmaschine",
616
645
  "query-builder:operator:contains": "Enthält",
646
+ "query-builder:operator:empty": "ist leer",
617
647
  "query-builder:operator:ends-with": "Endet mit",
618
648
  "query-builder:operator:equals": "Entspricht",
619
649
  "query-builder:operator:is": "Ist",
@@ -622,11 +652,13 @@
622
652
  "query-builder:operator:is-true": "Ist wahr",
623
653
  "query-builder:operator:matches-regex": "Entspricht dem regulären Ausdruck",
624
654
  "query-builder:operator:not-contain": "Enthält nicht",
655
+ "query-builder:operator:not-empty": "ist nicht leer",
625
656
  "query-builder:operator:not-end-with": "Endet nicht mit",
626
657
  "query-builder:operator:not-equal": "Entspricht nicht",
627
658
  "query-builder:operator:not-match-regex": "Entspricht nicht dem regulären Ausdruck",
628
659
  "query-builder:operator:not-start-with": "Beginnt nicht mit",
629
660
  "query-builder:operator:starts-with": "Beginnt mit",
661
+ "query-builder:placeholder": "Erstelle deine Query…",
630
662
  "query-search-bar:label": "Suchmaschine",
631
663
  "query-search-bar:placeholder": "Schreiben Sie Ihre Anfrage…",
632
664
  "query-search-bar:use-query-builder": "Den Abfragekonstruktor verwenden",
@@ -661,6 +693,7 @@
661
693
  "resources": "Ressourcen",
662
694
  "resources-overview": "Überblick über die Ressourcen",
663
695
  "rest-api": "REST API",
696
+ "retry": "Erneut versuchen",
664
697
  "root-by-default": "Standardmäßig \"root\".",
665
698
  "run": "Start",
666
699
  "running-vm": "VM eingeschalten | VMs eingeschalten",
@@ -791,6 +824,7 @@
791
824
  "translation-tool": "Übersetzungstool",
792
825
  "unable-to-connect-to": "Verbindung zu {ip} fehlgeschlagen",
793
826
  "unable-to-connect-to-the-pool": "Konnte keine Verbindung zum Pool herstellen",
827
+ "unable-to-connect-to-xo-server": "Verbindung zum XO Server konnte nicht hergestellt werden.",
794
828
  "unknown": "Unbekannt",
795
829
  "unlocked": "Freigeschaltet",
796
830
  "unreachable-hosts": "Hosts nicht erreichbar",
@@ -857,8 +891,8 @@
857
891
  "warnings": "Warnungen",
858
892
  "weblate": "Weblate",
859
893
  "welcome-to-xo6!": "Willkommen bei XO 6!",
860
- "what-does-protected-means-content": "Eine VM gilt als geschützt, wenn sie in mindestens einem geplanten Backup-Job enthalten ist und die letzten drei Ausführungen dieses Jobs erfolgreich abgeschlossen wurden. Dies stellt sicher, dass die VM über aktuelle, zuverlässige Wiederherstellungspunkte verfügt.",
861
- "what-does-protected-means?": "Was bedeutet geschützt?",
894
+ "what-does-protected-mean-content": "Eine VM gilt als geschützt, wenn sie in mindestens einem geplanten Backup-Job enthalten ist und die letzten drei Ausführungen dieses Jobs erfolgreich abgeschlossen wurden. Dies stellt sicher, dass die VM über aktuelle, zuverlässige Wiederherstellungspunkte verfügt.",
895
+ "what-does-protected-mean?": "Was bedeutet geschützt?",
862
896
  "with-memory": "Mit Speicher",
863
897
  "write": "Schreiben",
864
898
  "xcp-ng": "XCP-ng",
@@ -32,6 +32,7 @@
32
32
  "action:delete-vms": "Delete 1 VM | Delete {n} VMs",
33
33
  "action:deploy": "Deploy",
34
34
  "action:deploy-xoa": "Deploy XOA",
35
+ "action:download-bugtools-archive": "Download bugtools archive",
35
36
  "action:duplicate": "Duplicate",
36
37
  "action:edit": "Edit",
37
38
  "action:edit-config": "Edit config",
@@ -163,7 +164,7 @@
163
164
  "backups:jobs:issues-ran-without-hitch": "All your backup jobs ran without a hitch.",
164
165
  "backups:jobs:last-seven-days": "In the last 7 days",
165
166
  "backups:jobs:no-recent-run": "No recent run",
166
- "backups:jobs:running-good": "Running good",
167
+ "backups:jobs:running-good": "All good",
167
168
  "backups:jobs:skipped-runs": "Skipped runs, no errors",
168
169
  "backups:jobs:status": "Backup jobs status",
169
170
  "backups:vms-protection": "VMs protection",
@@ -790,6 +791,7 @@
790
791
  "status:suspended": "Suspended",
791
792
  "status:unknown": "Unknown",
792
793
  "status:unreachable": "Unreachable",
794
+ "step-n-of": "Step {current} / {total}",
793
795
  "storage": "Storage",
794
796
  "storage-configuration": "Storage configuration",
795
797
  "storage-format": "Storage format",
@@ -924,8 +926,8 @@
924
926
  "warnings": "Warnings",
925
927
  "weblate": "Weblate",
926
928
  "welcome-to-xo6!": "Welcome to XO 6!",
927
- "what-does-protected-means-content": "A VM is considered protected when it’s included in at least one scheduled backup job and the last three runs of that job completed successfully. This helps ensure the VM has recent, reliable recovery points.",
928
- "what-does-protected-means?": "What does protected means?",
929
+ "what-does-protected-mean-content": "A VM is considered protected when it’s included in at least one scheduled backup job and the last three runs of that job completed successfully. This helps ensure the VM has recent, reliable recovery points.",
930
+ "what-does-protected-mean?": "What does protected mean?",
929
931
  "with-memory": "With memory",
930
932
  "write": "Write",
931
933
  "xcp-ng": "XCP-ng",