@xen-orchestra/web-core 0.19.0 → 0.20.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/components/backdrop/VtsBackdrop.vue +1 -1
- package/lib/components/column/VtsColumn.vue +21 -0
- package/lib/components/columns/VtsColumns.vue +38 -0
- package/lib/components/copy-button/VtsCopyButton.vue +29 -0
- package/lib/components/enabled-state/VtsEnabledState.vue +23 -0
- package/lib/components/layout/VtsLayoutSidebar.vue +1 -1
- package/lib/components/quick-info-column/VtsQuickInfoColumn.vue +1 -1
- package/lib/components/quick-info-row/VtsQuickInfoRow.vue +26 -7
- package/lib/components/relative-time/VtsRelativeTime.vue +18 -0
- package/lib/components/select/VtsOption.vue +24 -0
- package/lib/components/select/VtsSelect.vue +96 -0
- package/lib/components/state-hero/VtsLoadingHero.vue +45 -4
- package/lib/components/tree/VtsTreeItem.vue +11 -1
- package/lib/components/ui/dropdown/UiDropdownList.vue +10 -2
- package/lib/components/ui/head-bar/UiHeadBar.vue +2 -2
- package/lib/composables/relative-time.composable.ts +1 -1
- package/lib/locales/cs.json +0 -1
- package/lib/locales/en.json +65 -1
- package/lib/locales/es.json +0 -1
- package/lib/locales/fa.json +0 -1
- package/lib/locales/fr.json +67 -3
- package/lib/locales/nl.json +0 -1
- package/lib/locales/sv.json +0 -1
- package/lib/packages/collection/README.md +38 -33
- package/lib/packages/collection/create-collection.ts +27 -13
- package/lib/packages/collection/create-item.ts +39 -0
- package/lib/packages/collection/guess-item-id.ts +26 -0
- package/lib/packages/collection/index.ts +0 -3
- package/lib/packages/collection/types.ts +46 -18
- package/lib/packages/collection/use-collection.ts +39 -7
- package/lib/packages/collection/use-flag-registry.ts +22 -5
- package/lib/packages/form-select/README.md +96 -0
- package/lib/packages/form-select/index.ts +2 -0
- package/lib/packages/form-select/types.ts +75 -0
- package/lib/packages/form-select/use-form-option-controller.ts +50 -0
- package/lib/packages/form-select/use-form-select-controller.ts +205 -0
- package/lib/packages/form-select/use-form-select-keyboard-navigation.ts +157 -0
- package/lib/packages/form-select/use-form-select.ts +193 -0
- package/lib/stores/sidebar.store.ts +14 -1
- package/package.json +1 -1
- package/lib/packages/collection/build-item.ts +0 -45
package/lib/locales/en.json
CHANGED
|
@@ -47,7 +47,9 @@
|
|
|
47
47
|
"backups.vms-protection.protected": "In at least 1 job & protected",
|
|
48
48
|
"backups.vms-protection.tooltip": "A VM is protected if it's in a backup job, with an enabled schedule, and the last run succeeded",
|
|
49
49
|
"backups.vms-protection.unprotected": "In at least 1 job but unprotected",
|
|
50
|
+
"best-effort": "best effort",
|
|
50
51
|
"bios-default": "bios (default)",
|
|
52
|
+
"bios-info": "BIOS info",
|
|
51
53
|
"bond": "Bond",
|
|
52
54
|
"bond-devices": "Bond devices",
|
|
53
55
|
"bond-status": "Bond status",
|
|
@@ -55,6 +57,7 @@
|
|
|
55
57
|
"boot-firmware-bios": "The template already contains the BIOS strings",
|
|
56
58
|
"boot-firmware-uefi": "The boot firmware is UEFI",
|
|
57
59
|
"boot-vm": "Boot VM",
|
|
60
|
+
"build-number": "Build number",
|
|
58
61
|
"bytes.gi": "GiB",
|
|
59
62
|
"bytes.ki": "KiB",
|
|
60
63
|
"bytes.mi": "MiB",
|
|
@@ -76,10 +79,12 @@
|
|
|
76
79
|
"console-actions": "Console actions",
|
|
77
80
|
"console-clipboard": "Console clipboard",
|
|
78
81
|
"console-unavailable": "Console unavailable",
|
|
82
|
+
"control-domain-memory": "Control domain memory",
|
|
79
83
|
"copy": "Copy",
|
|
80
84
|
"copy-all": "Copy all",
|
|
81
85
|
"copy-host": "Copy host",
|
|
82
86
|
"copy-info-json": "Copy information into JSON",
|
|
87
|
+
"core-socket": "Core (socket)",
|
|
83
88
|
"core.character-limit": "{count}/{max} character | {count}/{max} characters",
|
|
84
89
|
"core.close": "Close",
|
|
85
90
|
"core.copied": "Copied",
|
|
@@ -110,15 +115,21 @@
|
|
|
110
115
|
"core.sort.descending": "Sort descending",
|
|
111
116
|
"core.textarea.exceeds-max-characters": "Field value must be {max} characters or less.",
|
|
112
117
|
"cores-with-sockets": "Cores (sockets)",
|
|
118
|
+
"cpu-cap": "CPU cap",
|
|
119
|
+
"cpu-mask": "CPU mask",
|
|
120
|
+
"cpu-model": "CPU model",
|
|
113
121
|
"cpu-provisioning": "CPU provisioning",
|
|
114
122
|
"cpu-provisioning-warning": "The number of vCPUs allocated exceeds the number of physical CPUs available. System performance could be affected",
|
|
115
123
|
"cpu-usage": "CPU usage",
|
|
124
|
+
"cpu-weight": "CPU weight",
|
|
125
|
+
"cpus": "CPUs",
|
|
116
126
|
"create": "Create",
|
|
117
127
|
"custom-config": "Custom config",
|
|
118
128
|
"dark-mode.auto": "Auto dark mode",
|
|
119
129
|
"dark-mode.disable": "Disable dark mode",
|
|
120
130
|
"dark-mode.enable": "Enable dark mode",
|
|
121
131
|
"dashboard": "Dashboard",
|
|
132
|
+
"default-behavior": "Default behavior",
|
|
122
133
|
"default-locking-mode": "Default locking mode",
|
|
123
134
|
"delete": "Delete",
|
|
124
135
|
"delete-vms": "Delete 1 VM | Delete {n} VMs",
|
|
@@ -153,6 +164,7 @@
|
|
|
153
164
|
"error-no-data": "Error, can't collect data.",
|
|
154
165
|
"error-occurred": "An error has occurred",
|
|
155
166
|
"exit-fullscreen": "Exit fullscreen",
|
|
167
|
+
"expiration-date": "Expiration date",
|
|
156
168
|
"export": "Export",
|
|
157
169
|
"export-n-vms": "Export 1 VM | Export {n} VMs",
|
|
158
170
|
"export-n-vms-manually": "Export 1 VM manually | Export {n} VMs manually",
|
|
@@ -184,10 +196,15 @@
|
|
|
184
196
|
"fullscreen": "Fullscreen",
|
|
185
197
|
"fullscreen-leave": "Leave fullscreen",
|
|
186
198
|
"gateway": "Gateway",
|
|
199
|
+
"general-information": "General information",
|
|
187
200
|
"go-back": "Go back",
|
|
201
|
+
"gpus": "GPUs",
|
|
202
|
+
"graphics-display": "Graphics & Display",
|
|
188
203
|
"gzip": "gzip",
|
|
189
204
|
"hardware": "Hardware",
|
|
205
|
+
"hardware-specifications": "Hardware specifications",
|
|
190
206
|
"here": "Here",
|
|
207
|
+
"high-availability": "High availability (HA)",
|
|
191
208
|
"host": "Host",
|
|
192
209
|
"host-description": "Host description",
|
|
193
210
|
"host-internal-networks": "Host internal networks",
|
|
@@ -203,6 +220,7 @@
|
|
|
203
220
|
"hosts-status.running": "Running",
|
|
204
221
|
"hosts-status.unknown": "Unknown",
|
|
205
222
|
"hosts-status.unknown.tooltip": "Hosts metrics are unavailable",
|
|
223
|
+
"hyper-threading": "Hyper threading (SMT)",
|
|
206
224
|
"id": "Id",
|
|
207
225
|
"in-last-three-jobs": "In their last three jobs",
|
|
208
226
|
"install-settings": "Install settings",
|
|
@@ -212,6 +230,7 @@
|
|
|
212
230
|
"ip-addresses": "IP addresses",
|
|
213
231
|
"ip-mode": "IP mode",
|
|
214
232
|
"is-primary-host": "{name} is primary host",
|
|
233
|
+
"iscsi-iqn": "iSCSI IQN",
|
|
215
234
|
"iso-dvd": "ISO/DVD",
|
|
216
235
|
"job.vm-copy.bad-power-state": "VM must be halted",
|
|
217
236
|
"job.vm-copy.in-progress": "Copy in progress…",
|
|
@@ -262,6 +281,9 @@
|
|
|
262
281
|
"language": "Language",
|
|
263
282
|
"last-week": "Last week",
|
|
264
283
|
"learn-more": "Learn more",
|
|
284
|
+
"license-socket": "License socket",
|
|
285
|
+
"license-type": "License type",
|
|
286
|
+
"licensing": "Licensing",
|
|
265
287
|
"load-average": "Load average",
|
|
266
288
|
"load-now": "Load now",
|
|
267
289
|
"loading-hosts": "Loading hosts…",
|
|
@@ -273,16 +295,26 @@
|
|
|
273
295
|
"login-only-on-master": "Login is only possible on the master host",
|
|
274
296
|
"mac-address": "MAC address",
|
|
275
297
|
"mac-addresses": "MAC addresses",
|
|
298
|
+
"manage-citrix-pv-drivers-via-windows-update": "Manage citrix PV drivers via Windows Update",
|
|
276
299
|
"management": "Management",
|
|
300
|
+
"management-agent-version": "Management agent version",
|
|
301
|
+
"manufacturer-info": "Manufacturer info",
|
|
277
302
|
"master": "Primary host",
|
|
303
|
+
"maximum-cpu-limit": "Maximum CPU limit",
|
|
304
|
+
"maximum-dynamic-memory": "Maximum dynamic memory",
|
|
305
|
+
"maximum-static-memory": "Maximum static memory",
|
|
278
306
|
"memory": "Memory",
|
|
279
307
|
"memory-usage": "Memory usage",
|
|
280
308
|
"migrate": "Migrate",
|
|
281
309
|
"migrate-n-vms": "Migrate 1 VM | Migrate {n} VMs",
|
|
310
|
+
"minimum-cpu-limit": "Minimum CPU limit",
|
|
311
|
+
"minimum-dynamic-memory": "Minimum dynamic memory",
|
|
312
|
+
"minimum-static-memory": "Minimum static memory",
|
|
282
313
|
"missing-patches": "Missing patches",
|
|
283
314
|
"more-actions": "More actions",
|
|
284
315
|
"mtu": "MTU",
|
|
285
316
|
"multi-creation": "Multi creation",
|
|
317
|
+
"multi-pathing": "Multi-pathing",
|
|
286
318
|
"n-gb-left": "{n} GB left",
|
|
287
319
|
"n-gb-required": "{n} GB required",
|
|
288
320
|
"n-hosts": "1 host | {n} hosts",
|
|
@@ -290,6 +322,7 @@
|
|
|
290
322
|
"n-missing": "{n} missing",
|
|
291
323
|
"n-vms": "1 VM | {n} VMs",
|
|
292
324
|
"name": "Name",
|
|
325
|
+
"nested-virtualization": "Nested virtualization",
|
|
293
326
|
"netmask": "Netmask",
|
|
294
327
|
"network": "Network",
|
|
295
328
|
"network-block-device": "Network block device",
|
|
@@ -298,6 +331,7 @@
|
|
|
298
331
|
"network-information": "Network information",
|
|
299
332
|
"network-throughput": "Network throughput",
|
|
300
333
|
"network-upload": "Upload",
|
|
334
|
+
"networking": "Networking",
|
|
301
335
|
"networks": "Networks",
|
|
302
336
|
"new": "New",
|
|
303
337
|
"new-features-are-coming": "New features are coming soon!",
|
|
@@ -308,6 +342,7 @@
|
|
|
308
342
|
"new-vm.name": "VM name",
|
|
309
343
|
"news": "News",
|
|
310
344
|
"news-name": "{name} news",
|
|
345
|
+
"nic-type": "NIC type",
|
|
311
346
|
"no-alarm-triggered": "No alarm triggered",
|
|
312
347
|
"no-config": "No configuration",
|
|
313
348
|
"no-data": "No data",
|
|
@@ -321,6 +356,7 @@
|
|
|
321
356
|
"no-vif-detected": "No VIF detected",
|
|
322
357
|
"none": "None",
|
|
323
358
|
"not-found": "Not found",
|
|
359
|
+
"not-yet-available": "Information is not yet available",
|
|
324
360
|
"object": "Object",
|
|
325
361
|
"object-not-found": "Object {id} can't be found…",
|
|
326
362
|
"off": "Off",
|
|
@@ -329,6 +365,8 @@
|
|
|
329
365
|
"on-object": "on {object}",
|
|
330
366
|
"open-console-in-new-tab": "Open console in new tab",
|
|
331
367
|
"or": "Or",
|
|
368
|
+
"os-kernel": "OS kernel",
|
|
369
|
+
"os-name": "OS name",
|
|
332
370
|
"other": "Other",
|
|
333
371
|
"page-not-found": "This page is not to be found…",
|
|
334
372
|
"partially-connected": "Partially connected",
|
|
@@ -343,6 +381,7 @@
|
|
|
343
381
|
"pifs": "PIFs",
|
|
344
382
|
"pifs-status": "PIFs status",
|
|
345
383
|
"please-confirm": "Please confirm",
|
|
384
|
+
"pool": "Pool",
|
|
346
385
|
"pool-cpu-usage": "Pool CPU Usage",
|
|
347
386
|
"pool-ram-usage": "Pool RAM Usage",
|
|
348
387
|
"pools": "Pools",
|
|
@@ -353,14 +392,19 @@
|
|
|
353
392
|
"pools-status.unreachable": "Unreachable",
|
|
354
393
|
"pools-status.unreachable.tooltip": "Configured servers that can not be reached",
|
|
355
394
|
"power-on-host-for-console": "Power on your host to access its console",
|
|
395
|
+
"power-on-mode": "Power on mode",
|
|
356
396
|
"power-on-vm-for-console": "Power on your VM to access its console",
|
|
357
397
|
"power-state": "Power state",
|
|
398
|
+
"primary-host": "Primary host",
|
|
358
399
|
"professional-support": "Professional support",
|
|
359
400
|
"properties": "Properties",
|
|
360
401
|
"property": "Property",
|
|
402
|
+
"protect-from-accidental-deletion": "Protect from accidental deletion",
|
|
403
|
+
"protect-from-accidental-shutdown": "Protect from accidental shutdown",
|
|
361
404
|
"pxe": "PXE",
|
|
362
405
|
"quick-info": "Quick info",
|
|
363
406
|
"ram": "RAM",
|
|
407
|
+
"ram-provisioning": "RAM provisioning",
|
|
364
408
|
"ram-usage": "RAM usage",
|
|
365
409
|
"reboot": "Reboot",
|
|
366
410
|
"receive": "Receive",
|
|
@@ -374,12 +418,16 @@
|
|
|
374
418
|
"relative-time.past": "{str} ago",
|
|
375
419
|
"relative-time.second": "1 second | {n} seconds",
|
|
376
420
|
"relative-time.year": "1 year | {n} years",
|
|
421
|
+
"remote-syslog": "Remote syslog",
|
|
422
|
+
"resource-management": "Resource management",
|
|
377
423
|
"resources-overview": "Resources overview",
|
|
378
424
|
"resume": "Resume",
|
|
379
425
|
"running-vm": "Running VM | Running VMs",
|
|
380
426
|
"s3-backup-repository": "S3 backup repository",
|
|
381
427
|
"save": "Save",
|
|
382
428
|
"scan-pifs": "Scan PIFs",
|
|
429
|
+
"scheduler-granularity": "Scheduler granularity",
|
|
430
|
+
"secure-boot": "Secure boot",
|
|
383
431
|
"see-all": "See all",
|
|
384
432
|
"select-compression": "Select a compression",
|
|
385
433
|
"select-destination-host": "Select a destination host",
|
|
@@ -398,6 +446,7 @@
|
|
|
398
446
|
"size": "Size",
|
|
399
447
|
"snapshot": "Snapshot",
|
|
400
448
|
"sockets-with-cores-per-socket": "{nSockets} sockets × {nCores} cores/socket",
|
|
449
|
+
"software-tooling": "Software & tooling",
|
|
401
450
|
"sort-by": "Sort by",
|
|
402
451
|
"speed": "Speed",
|
|
403
452
|
"sr": "SR",
|
|
@@ -409,6 +458,7 @@
|
|
|
409
458
|
"stacked-cpu-usage": "Stacked CPU usage",
|
|
410
459
|
"stacked-ram-usage": "Stacked RAM usage",
|
|
411
460
|
"start": "Start",
|
|
461
|
+
"start-delay": "Start delay",
|
|
412
462
|
"start-on-host": "Start on specific host",
|
|
413
463
|
"started": "Started",
|
|
414
464
|
"state": "State",
|
|
@@ -417,14 +467,17 @@
|
|
|
417
467
|
"stats": "Stats",
|
|
418
468
|
"status": "Status",
|
|
419
469
|
"storage": "Storage",
|
|
470
|
+
"storage-configuration": "Storage configuration",
|
|
420
471
|
"storage-repositories": "Storage repositories",
|
|
421
472
|
"storage-repository": "Storage repository",
|
|
422
473
|
"storage-usage": "Storage usage",
|
|
423
474
|
"summary": "Summary",
|
|
424
475
|
"support": "Support",
|
|
425
476
|
"suspend": "Suspend",
|
|
477
|
+
"suspend-storage-repository": "Suspend storage repository",
|
|
426
478
|
"switch-theme": "Switch theme",
|
|
427
479
|
"system": "System",
|
|
480
|
+
"system-disks-health": "System disks health",
|
|
428
481
|
"table-actions": "Table actions",
|
|
429
482
|
"tags": "Tags",
|
|
430
483
|
"task.estimated-end": "Estimated end",
|
|
@@ -442,10 +495,13 @@
|
|
|
442
495
|
"theme-auto": "Auto",
|
|
443
496
|
"theme-dark": "Dark",
|
|
444
497
|
"theme-light": "Light",
|
|
498
|
+
"this-host": "This host",
|
|
445
499
|
"this-vm-cant-be-migrated": "This VM can't be migrated",
|
|
500
|
+
"toolstack-uptime": "Toolstack uptime",
|
|
446
501
|
"top-#": "Top {n}",
|
|
447
502
|
"topology": "Topology",
|
|
448
503
|
"total": "Total",
|
|
504
|
+
"total-assigned": "Total assigned",
|
|
449
505
|
"total-cpus": "Total CPUs",
|
|
450
506
|
"total-free": "Total free",
|
|
451
507
|
"total-free:": "Total free:",
|
|
@@ -462,20 +518,28 @@
|
|
|
462
518
|
"user-config": "User config",
|
|
463
519
|
"uuid": "UUID",
|
|
464
520
|
"vcpus": "vCPU | vCPU | vCPUs",
|
|
521
|
+
"vcpus-assigned": "vCPUs assigned",
|
|
465
522
|
"vcpus-used": "vCPUs used",
|
|
466
523
|
"vdis": "VDI | VDI | VDIs",
|
|
467
524
|
"version": "Version",
|
|
525
|
+
"vga": "VGA",
|
|
526
|
+
"video-ram": "Video RAM",
|
|
468
527
|
"vif": "VIF",
|
|
469
528
|
"vif-device": "VIF #{device}",
|
|
470
529
|
"vif-status": "VIF status",
|
|
471
530
|
"vifs": "VIFs",
|
|
531
|
+
"viridian": "Viridian",
|
|
532
|
+
"virtual-tpm": "Virtual TPM (VTPM)",
|
|
533
|
+
"virtualization-boot-settings": "Virtualization & boot settings",
|
|
534
|
+
"virtualization-mode": "Virtualization mode",
|
|
472
535
|
"vlan": "VLAN",
|
|
473
536
|
"vm": "VM",
|
|
474
537
|
"vm-description": "VM description",
|
|
475
538
|
"vm-is-running": "The VM is running",
|
|
539
|
+
"vm-limit-topology": "VM limit topology",
|
|
540
|
+
"vm-management": "VM management",
|
|
476
541
|
"vm.active": "Active",
|
|
477
542
|
"vm.inactive": "Inactive",
|
|
478
|
-
"vmSocketsWithCoresPerSocket": "{nSockets} sockets × {nCores} cores/socket",
|
|
479
543
|
"vms": "VM | VMs",
|
|
480
544
|
"vms-status": "VMs status",
|
|
481
545
|
"vms-status.halted": "Halted",
|
package/lib/locales/es.json
CHANGED
|
@@ -475,7 +475,6 @@
|
|
|
475
475
|
"vm-is-running": "La máquina virtual está en marcha",
|
|
476
476
|
"vm.active": "Activo | Activo | Activos",
|
|
477
477
|
"vm.inactive": "No activo | No activo | No activos",
|
|
478
|
-
"vmSocketsWithCoresPerSocket": "{nSockets} sockets x {nCores} cores/socket",
|
|
479
478
|
"vms": "VM | VMs",
|
|
480
479
|
"vms-status": "Estatus máquinas virtuales",
|
|
481
480
|
"vms-status.halted": "Detenido",
|
package/lib/locales/fa.json
CHANGED
|
@@ -475,7 +475,6 @@
|
|
|
475
475
|
"vm-is-running": "ماشین مجازی در حال اجراست",
|
|
476
476
|
"vm.active": "فعال",
|
|
477
477
|
"vm.inactive": "غیرفعال",
|
|
478
|
-
"vmSocketsWithCoresPerSocket": "{nSockets} سوکت × {nCores} هسته/سوکت",
|
|
479
478
|
"vms": "ماشین مجازی | ماشین های مجازی",
|
|
480
479
|
"vms-status": "وضعیت ماشینهای مجازی",
|
|
481
480
|
"vms-status.halted": "معلق شده",
|
package/lib/locales/fr.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"admin-login": "Nom d'utilisateur administrateur",
|
|
11
11
|
"admin-password": "Mot de passe administrateur",
|
|
12
12
|
"admin-password-confirm": "Confirmer le mot de passe administrateur",
|
|
13
|
-
"affinity-host": "
|
|
13
|
+
"affinity-host": "Hôte de préférence",
|
|
14
14
|
"alarm-type.cpu_usage": "L'utilisation du CPU dépasse {n}%",
|
|
15
15
|
"alarm-type.disk_usage": "L'utilisation du disque dépasse {n}%",
|
|
16
16
|
"alarm-type.fs_usage": "L'utilisation de FS dépasse {n}%",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"appearance": "Apparence",
|
|
28
28
|
"ascending": "ascendant",
|
|
29
29
|
"auto-generated": "Généré automatiquement",
|
|
30
|
-
"auto-power": "
|
|
30
|
+
"auto-power": "Démarrage automatique",
|
|
31
31
|
"available": "Disponible",
|
|
32
32
|
"available-properties-for-advanced-filter": "Propriétés disponibles pour le filtrage avancé :",
|
|
33
33
|
"back-pool-dashboard": "Revenez au tableau de bord de votre pool",
|
|
@@ -47,7 +47,9 @@
|
|
|
47
47
|
"backups.vms-protection.protected": "Dans au moins 1 job et protégé",
|
|
48
48
|
"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",
|
|
49
49
|
"backups.vms-protection.unprotected": "Dans au moins 1 job mais sans protection",
|
|
50
|
+
"best-effort": "du mieux possible",
|
|
50
51
|
"bios-default": "bios (défaut)",
|
|
52
|
+
"bios-info": "Information du BIOS",
|
|
51
53
|
"bond": "Bond",
|
|
52
54
|
"bond-devices": "Devices du bond",
|
|
53
55
|
"bond-status": "Statut du bond",
|
|
@@ -55,6 +57,7 @@
|
|
|
55
57
|
"boot-firmware-bios": "Le modèle contient déjà les BIOS strings",
|
|
56
58
|
"boot-firmware-uefi": "Le boot firmware est UEFI",
|
|
57
59
|
"boot-vm": "Démarrer la VM",
|
|
60
|
+
"build-number": "Numéro de build",
|
|
58
61
|
"bytes.gi": "Gio",
|
|
59
62
|
"bytes.ki": "Kio",
|
|
60
63
|
"bytes.mi": "Mio",
|
|
@@ -76,10 +79,12 @@
|
|
|
76
79
|
"console-actions": "Actions de la console",
|
|
77
80
|
"console-clipboard": "Presse-papiers de la console",
|
|
78
81
|
"console-unavailable": "Console indisponible",
|
|
82
|
+
"control-domain-memory": "Mémoire du domaine de contrôle",
|
|
79
83
|
"copy": "Copier",
|
|
80
84
|
"copy-all": "Copier tout",
|
|
81
85
|
"copy-host": "Copier l'hôte",
|
|
82
86
|
"copy-info-json": "Copier les informations en JSON",
|
|
87
|
+
"core-socket": "Cœur (socket)",
|
|
83
88
|
"core.character-limit": "{count}/{max} caractère | {count}/{max} caractères",
|
|
84
89
|
"core.close": "Fermer",
|
|
85
90
|
"core.copied": "Copié",
|
|
@@ -110,15 +115,21 @@
|
|
|
110
115
|
"core.sort.descending": "Trier par ordre décroissant",
|
|
111
116
|
"core.textarea.exceeds-max-characters": "Le champ doit contenir {max} caractères ou moins.",
|
|
112
117
|
"cores-with-sockets": "Cœurs (sockets)",
|
|
118
|
+
"cpu-cap": "Limite CPU",
|
|
119
|
+
"cpu-mask": "Masque CPU",
|
|
120
|
+
"cpu-model": "Modèle du CPU",
|
|
113
121
|
"cpu-provisioning": "Provisionnement CPU",
|
|
114
122
|
"cpu-provisioning-warning": "Le nombre de vCPU alloués dépasse le nombre de CPU physique disponible. Les performances du système pourraient être affectées",
|
|
115
123
|
"cpu-usage": "Utilisation CPU",
|
|
124
|
+
"cpu-weight": "Pondération CPU",
|
|
125
|
+
"cpus": "CPUs",
|
|
116
126
|
"create": "Créer",
|
|
117
127
|
"custom-config": "Configuration personnalisée",
|
|
118
128
|
"dark-mode.auto": "Mode sombre automatique",
|
|
119
129
|
"dark-mode.disable": "Désactiver le mode sombre",
|
|
120
130
|
"dark-mode.enable": "Activer le mode sombre",
|
|
121
131
|
"dashboard": "Tableau de bord",
|
|
132
|
+
"default-behavior": "Comportement par défaut",
|
|
122
133
|
"default-locking-mode": "Mode de verrouillage par défaut",
|
|
123
134
|
"delete": "Supprimer",
|
|
124
135
|
"delete-vms": "Supprimer 1 VM | Supprimer {n} VMs",
|
|
@@ -153,6 +164,7 @@
|
|
|
153
164
|
"error-no-data": "Erreur, impossible de collecter les données.",
|
|
154
165
|
"error-occurred": "Une erreur est survenue",
|
|
155
166
|
"exit-fullscreen": "Quitter le plein écran",
|
|
167
|
+
"expiration-date": "Date d'expiration",
|
|
156
168
|
"export": "Exporter",
|
|
157
169
|
"export-n-vms": "Exporter 1 VM | Exporter {n} VMs",
|
|
158
170
|
"export-n-vms-manually": "Exporter 1 VM manuellement | Exporter {n} VMs manuellement",
|
|
@@ -184,10 +196,15 @@
|
|
|
184
196
|
"fullscreen": "Plein écran",
|
|
185
197
|
"fullscreen-leave": "Quitter plein écran",
|
|
186
198
|
"gateway": "Passerelle",
|
|
199
|
+
"general-information": "Informations générales",
|
|
187
200
|
"go-back": "Revenir en arrière",
|
|
201
|
+
"gpus": "GPUs",
|
|
202
|
+
"graphics-display": "Graphique & Affichage",
|
|
188
203
|
"gzip": "gzip",
|
|
189
204
|
"hardware": "Matériel",
|
|
205
|
+
"hardware-specifications": "Spécifications matérielles",
|
|
190
206
|
"here": "Ici",
|
|
207
|
+
"high-availability": "Haute Disponibilité (HA)",
|
|
191
208
|
"host": "Hôte",
|
|
192
209
|
"host-description": "Description de l'hôte",
|
|
193
210
|
"host-internal-networks": "Réseaux internes de l'hôte",
|
|
@@ -203,6 +220,7 @@
|
|
|
203
220
|
"hosts-status.running": "Démarrés",
|
|
204
221
|
"hosts-status.unknown": "Inconnu",
|
|
205
222
|
"hosts-status.unknown.tooltip": "Les métriques de l'hôte sont inaccessibles",
|
|
223
|
+
"hyper-threading": "Hyper-threading (SMT)",
|
|
206
224
|
"id": "Id",
|
|
207
225
|
"in-last-three-jobs": "Dans leurs trois derniers jobs",
|
|
208
226
|
"install-settings": "Paramètres d'installation",
|
|
@@ -212,6 +230,7 @@
|
|
|
212
230
|
"ip-addresses": "Adresses IP",
|
|
213
231
|
"ip-mode": "Mode IP",
|
|
214
232
|
"is-primary-host": "{name} est l'hôte primaire",
|
|
233
|
+
"iscsi-iqn": "iSCSI IQN",
|
|
215
234
|
"iso-dvd": "ISO/DVD",
|
|
216
235
|
"job.vm-copy.bad-power-state": "La VM doit être arrêtée",
|
|
217
236
|
"job.vm-copy.in-progress": "Copie en cours…",
|
|
@@ -262,6 +281,9 @@
|
|
|
262
281
|
"language": "Langue",
|
|
263
282
|
"last-week": "Semaine dernière",
|
|
264
283
|
"learn-more": "En savoir plus",
|
|
284
|
+
"license-socket": "Licence socket",
|
|
285
|
+
"license-type": "Type de licence",
|
|
286
|
+
"licensing": "Licences",
|
|
265
287
|
"load-average": "Charge système",
|
|
266
288
|
"load-now": "Charger maintenant",
|
|
267
289
|
"loading-hosts": "Chargement des hôtes…",
|
|
@@ -273,16 +295,26 @@
|
|
|
273
295
|
"login-only-on-master": "La connexion n'est possible que sur l'hôte primaire",
|
|
274
296
|
"mac-address": "Adresse MAC",
|
|
275
297
|
"mac-addresses": "Adresses MAC",
|
|
298
|
+
"manage-citrix-pv-drivers-via-windows-update": "Gérer les pilotes Citrix PV via Windows Update",
|
|
276
299
|
"management": "Gestion",
|
|
300
|
+
"management-agent-version": "Version de l'agent de gestion",
|
|
301
|
+
"manufacturer-info": "Informations sur le fabricant",
|
|
277
302
|
"master": "Hôte primaire",
|
|
303
|
+
"maximum-cpu-limit": "Nombre maximal de CPU",
|
|
304
|
+
"maximum-dynamic-memory": "Mémoire dynamique maximale",
|
|
305
|
+
"maximum-static-memory": "Mémoire statique maximale",
|
|
278
306
|
"memory": "Mémoire",
|
|
279
307
|
"memory-usage": "Utilisation de la mémoire",
|
|
280
308
|
"migrate": "Migrer",
|
|
281
309
|
"migrate-n-vms": "Migrer 1 VM | Migrer {n} VMs",
|
|
310
|
+
"minimum-cpu-limit": "Nombre minimal de CPU",
|
|
311
|
+
"minimum-dynamic-memory": "Mémoire dynamique minimale",
|
|
312
|
+
"minimum-static-memory": "Mémoire statique minimale",
|
|
282
313
|
"missing-patches": "Patches manquants",
|
|
283
314
|
"more-actions": "Plus d'actions",
|
|
284
315
|
"mtu": "MTU",
|
|
285
316
|
"multi-creation": "Création multiple",
|
|
317
|
+
"multi-pathing": "Multi-pathing",
|
|
286
318
|
"n-gb-left": "{n} Go libres",
|
|
287
319
|
"n-gb-required": "{n} Go requis",
|
|
288
320
|
"n-hosts": "1 hôte | {n} hôtes",
|
|
@@ -290,6 +322,7 @@
|
|
|
290
322
|
"n-missing": "{n} manquant | {n} manquants",
|
|
291
323
|
"n-vms": "1 VM | {n} VMs",
|
|
292
324
|
"name": "Nom",
|
|
325
|
+
"nested-virtualization": "Virtualisation imbriquée",
|
|
293
326
|
"netmask": "Masque réseau",
|
|
294
327
|
"network": "Réseau",
|
|
295
328
|
"network-block-device": "Protocole NBD (Network Block Device)",
|
|
@@ -298,6 +331,7 @@
|
|
|
298
331
|
"network-information": "Informations du réseau",
|
|
299
332
|
"network-throughput": "Débit du réseau",
|
|
300
333
|
"network-upload": "Montant",
|
|
334
|
+
"networking": "Mise en réseau",
|
|
301
335
|
"networks": "Réseaux",
|
|
302
336
|
"new": "Nouveau",
|
|
303
337
|
"new-features-are-coming": "De nouvelles fonctionnalités arrivent bientôt !",
|
|
@@ -308,6 +342,7 @@
|
|
|
308
342
|
"new-vm.name": "Nom de la VM",
|
|
309
343
|
"news": "Actualités",
|
|
310
344
|
"news-name": "Actualités {name}",
|
|
345
|
+
"nic-type": "Type de carte réseau (NIC)",
|
|
311
346
|
"no-alarm-triggered": "Aucune alarme déclenchée",
|
|
312
347
|
"no-config": "Aucune configuration",
|
|
313
348
|
"no-data": "Aucune donnée",
|
|
@@ -321,6 +356,7 @@
|
|
|
321
356
|
"no-vif-detected": "Aucun VIF détecté",
|
|
322
357
|
"none": "Aucun",
|
|
323
358
|
"not-found": "Non trouvé",
|
|
359
|
+
"not-yet-available": "Information pas encore disponible",
|
|
324
360
|
"object": "Objet",
|
|
325
361
|
"object-not-found": "L'objet {id} est introuvable…",
|
|
326
362
|
"off": "Éteint",
|
|
@@ -329,6 +365,8 @@
|
|
|
329
365
|
"on-object": "sur {object}",
|
|
330
366
|
"open-console-in-new-tab": "Ouvrir la console dans un nouvel onglet",
|
|
331
367
|
"or": "Ou",
|
|
368
|
+
"os-kernel": "Noyau de l'OS",
|
|
369
|
+
"os-name": "Nom de l'OS",
|
|
332
370
|
"other": "Autre",
|
|
333
371
|
"page-not-found": "Cette page est introuvable…",
|
|
334
372
|
"partially-connected": "Partiellement connecté",
|
|
@@ -343,6 +381,7 @@
|
|
|
343
381
|
"pifs": "PIFs",
|
|
344
382
|
"pifs-status": "Statut des PIFs",
|
|
345
383
|
"please-confirm": "Veuillez confirmer",
|
|
384
|
+
"pool": "Pool",
|
|
346
385
|
"pool-cpu-usage": "Utilisation CPU du Pool",
|
|
347
386
|
"pool-ram-usage": "Utilisation RAM du Pool",
|
|
348
387
|
"pools": "Pools",
|
|
@@ -353,14 +392,19 @@
|
|
|
353
392
|
"pools-status.unreachable": "Injoignables",
|
|
354
393
|
"pools-status.unreachable.tooltip": "Serveurs configurés mais non joignables",
|
|
355
394
|
"power-on-host-for-console": "Allumez votre hôte pour accéder à sa console",
|
|
395
|
+
"power-on-mode": "Mode d'alimentation",
|
|
356
396
|
"power-on-vm-for-console": "Allumez votre VM pour accéder à sa console",
|
|
357
397
|
"power-state": "État d'alimentation",
|
|
398
|
+
"primary-host": "Hôte primaire",
|
|
358
399
|
"professional-support": "Support professionnel",
|
|
359
400
|
"properties": "Propriétés",
|
|
360
401
|
"property": "Propriété",
|
|
402
|
+
"protect-from-accidental-deletion": "Protection contre les suppressions accidentelles",
|
|
403
|
+
"protect-from-accidental-shutdown": "Protection contre les extinctions accidentelles",
|
|
361
404
|
"pxe": "PXE",
|
|
362
405
|
"quick-info": "Informations rapides",
|
|
363
406
|
"ram": "RAM",
|
|
407
|
+
"ram-provisioning": "Provisionnement RAM",
|
|
364
408
|
"ram-usage": "Utilisation de la RAM",
|
|
365
409
|
"reboot": "Redémarrer",
|
|
366
410
|
"receive": "Recevoir",
|
|
@@ -374,12 +418,16 @@
|
|
|
374
418
|
"relative-time.past": "Il y a {str}",
|
|
375
419
|
"relative-time.second": "1 seconde | {n} secondes",
|
|
376
420
|
"relative-time.year": "1 an | {n} ans",
|
|
421
|
+
"remote-syslog": "Syslog distant",
|
|
422
|
+
"resource-management": "Gestion des ressources",
|
|
377
423
|
"resources-overview": "Vue d'ensemble des ressources",
|
|
378
424
|
"resume": "Reprendre",
|
|
379
425
|
"running-vm": "VM en cours d'exécution | VMs en cours d'exécution",
|
|
380
426
|
"s3-backup-repository": "Dépot de sauvegarde S3",
|
|
381
427
|
"save": "Enregistrer",
|
|
382
428
|
"scan-pifs": "Scan PIFs",
|
|
429
|
+
"scheduler-granularity": "Granularité de la planification",
|
|
430
|
+
"secure-boot": "Démarrage sécurisé",
|
|
383
431
|
"see-all": "Voir tout",
|
|
384
432
|
"select-compression": "Sélectionnez une compression",
|
|
385
433
|
"select-destination-host": "Sélectionnez un hôte de destination",
|
|
@@ -398,6 +446,7 @@
|
|
|
398
446
|
"size": "Taille",
|
|
399
447
|
"snapshot": "Instantané",
|
|
400
448
|
"sockets-with-cores-per-socket": "{nSockets} sockets × {nCores} cœurs/socket",
|
|
449
|
+
"software-tooling": "Logiciels et outils",
|
|
401
450
|
"sort-by": "Trier par",
|
|
402
451
|
"speed": "Vitesse",
|
|
403
452
|
"sr": "SR",
|
|
@@ -409,6 +458,7 @@
|
|
|
409
458
|
"stacked-cpu-usage": "Utilisation CPU empilée",
|
|
410
459
|
"stacked-ram-usage": "Utilisation RAM empilée",
|
|
411
460
|
"start": "Démarrer",
|
|
461
|
+
"start-delay": "Départ différé",
|
|
412
462
|
"start-on-host": "Démarrer sur un hôte spécifique",
|
|
413
463
|
"started": "Démarré",
|
|
414
464
|
"state": "État",
|
|
@@ -417,14 +467,17 @@
|
|
|
417
467
|
"stats": "Stats",
|
|
418
468
|
"status": "Statut",
|
|
419
469
|
"storage": "Stockage",
|
|
470
|
+
"storage-configuration": "Configuration du stockage",
|
|
420
471
|
"storage-repositories": "Dépôts de stockage",
|
|
421
472
|
"storage-repository": "Dépot de stockage",
|
|
422
473
|
"storage-usage": "Utilisation du stockage",
|
|
423
474
|
"summary": "Résumé",
|
|
424
475
|
"support": "Support",
|
|
425
476
|
"suspend": "Suspendre",
|
|
477
|
+
"suspend-storage-repository": "Espace de stockage en attente",
|
|
426
478
|
"switch-theme": "Changer de thème",
|
|
427
479
|
"system": "Système",
|
|
480
|
+
"system-disks-health": "Santé des disques système",
|
|
428
481
|
"table-actions": "Actions du tableau",
|
|
429
482
|
"tags": "Tags",
|
|
430
483
|
"task.estimated-end": "Fin estimée",
|
|
@@ -442,10 +495,13 @@
|
|
|
442
495
|
"theme-auto": "Auto",
|
|
443
496
|
"theme-dark": "Sombre",
|
|
444
497
|
"theme-light": "Clair",
|
|
498
|
+
"this-host": "Cet hôte",
|
|
445
499
|
"this-vm-cant-be-migrated": "Cette VM ne peut pas être migrée",
|
|
500
|
+
"toolstack-uptime": "Temps de disponibilité de Toolstack",
|
|
446
501
|
"top-#": "Top {n}",
|
|
447
502
|
"topology": "Topologie",
|
|
448
503
|
"total": "Total",
|
|
504
|
+
"total-assigned": "Total assigné",
|
|
449
505
|
"total-cpus": "Total CPUs",
|
|
450
506
|
"total-free": "Total libre",
|
|
451
507
|
"total-free:": "Total libre :",
|
|
@@ -462,20 +518,28 @@
|
|
|
462
518
|
"user-config": "Configuration utilisateur",
|
|
463
519
|
"uuid": "UUID",
|
|
464
520
|
"vcpus": "vCPU | vCPU | vCPUs",
|
|
521
|
+
"vcpus-assigned": "vCPUs assignés",
|
|
465
522
|
"vcpus-used": "vCPUs utilisés",
|
|
466
523
|
"vdis": "VDI | VDI | VDIs",
|
|
467
524
|
"version": "Version",
|
|
525
|
+
"vga": "VGA",
|
|
526
|
+
"video-ram": "Mémoire vidéo",
|
|
468
527
|
"vif": "VIF",
|
|
469
528
|
"vif-device": "VIF #{device}",
|
|
470
529
|
"vif-status": "Statut du VIF",
|
|
471
530
|
"vifs": "VIFs",
|
|
531
|
+
"viridian": "Viridian",
|
|
532
|
+
"virtual-tpm": "TPM virtuel (VTPM)",
|
|
533
|
+
"virtualization-boot-settings": "Virtualisation & paramètres de démarrage",
|
|
534
|
+
"virtualization-mode": "Mode de virtualisation",
|
|
472
535
|
"vlan": "VLAN",
|
|
473
536
|
"vm": "VM",
|
|
474
537
|
"vm-description": "Description de la VM",
|
|
475
538
|
"vm-is-running": "La VM est en cours d'exécution",
|
|
539
|
+
"vm-limit-topology": "Limite de topologie physique des VMs",
|
|
540
|
+
"vm-management": "Gestion de la VM",
|
|
476
541
|
"vm.active": "Active | Active | Actives",
|
|
477
542
|
"vm.inactive": "Inactive | Inactive | Inactives",
|
|
478
|
-
"vmSocketsWithCoresPerSocket": "{nSockets} sockets × {nCores} cœurs/socket",
|
|
479
543
|
"vms": "VM | VMs",
|
|
480
544
|
"vms-status": "Statut des VMs",
|
|
481
545
|
"vms-status.halted": "Éteintes",
|
package/lib/locales/nl.json
CHANGED
|
@@ -475,7 +475,6 @@
|
|
|
475
475
|
"vm-is-running": "De VM draait",
|
|
476
476
|
"vm.active": "Actief",
|
|
477
477
|
"vm.inactive": "Inactief",
|
|
478
|
-
"vmSocketsWithCoresPerSocket": "{nSockets} sockets × {nCores} kernen/socket",
|
|
479
478
|
"vms": "VM | VM's",
|
|
480
479
|
"vms-status": "VM's status",
|
|
481
480
|
"vms-status.halted": "Gestopt",
|
package/lib/locales/sv.json
CHANGED
|
@@ -475,7 +475,6 @@
|
|
|
475
475
|
"vm-is-running": "Vmen är startad",
|
|
476
476
|
"vm.active": "Aktiv",
|
|
477
477
|
"vm.inactive": "Inaktiv",
|
|
478
|
-
"vmSocketsWithCoresPerSocket": "{nSockets} socklar × {nCores} kärnor/sockel",
|
|
479
478
|
"vms": "VMar",
|
|
480
479
|
"vms-status": "VM status",
|
|
481
480
|
"vms-status.halted": "Stannad",
|