@xen-orchestra/web-core 0.16.0 → 0.18.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/console/VtsRemoteConsole.vue +1 -1
- package/lib/components/data-table/VtsDataTable.vue +13 -14
- package/lib/components/input-wrapper/VtsInputWrapper.vue +94 -0
- package/lib/components/{charts/LinearChart.md → linear-chart/VtsLinearChart.md} +3 -3
- package/lib/components/{charts/LinearChart.vue → linear-chart/VtsLinearChart.vue} +12 -11
- package/lib/components/menu/MenuList.vue +1 -0
- package/lib/components/quick-info-card/VtsQuickInfoCard.vue +29 -0
- package/lib/components/quick-info-column/VtsQuickInfoColumn.vue +13 -0
- package/lib/components/quick-info-row/VtsQuickInfoRow.vue +40 -0
- package/lib/components/state-hero/VtsLoadingHero.vue +1 -3
- package/lib/components/ui/card/UiCard.vue +12 -0
- package/lib/components/ui/dropdown/UiDropdown.vue +214 -0
- package/lib/components/ui/dropdown/UiDropdownList.vue +16 -0
- package/lib/components/ui/label/UiLabel.vue +3 -1
- package/lib/components/ui/progress-bar/UiProgressBar.vue +108 -0
- package/lib/components/ui/radio-button/UiRadioButton.vue +1 -1
- package/lib/components/ui/table-pagination/UiTablePagination.vue +23 -57
- package/lib/components/ui/toaster/UiToaster.vue +6 -2
- package/lib/composables/chart-theme.composable.ts +2 -2
- package/lib/composables/mapper.composable.md +74 -0
- package/lib/composables/mapper.composable.ts +18 -0
- package/lib/composables/pagination.composable.md +32 -0
- package/lib/composables/pagination.composable.ts +91 -0
- package/lib/composables/ranked.composable.md +118 -0
- package/lib/composables/ranked.composable.ts +37 -0
- package/lib/composables/relative-time.composable.md +18 -0
- package/lib/composables/relative-time.composable.ts +66 -0
- package/lib/i18n.ts +12 -0
- package/lib/locales/cs.json +49 -17
- package/lib/locales/de.json +233 -24
- package/lib/locales/en.json +69 -3
- package/lib/locales/es.json +42 -10
- package/lib/locales/fa.json +208 -6
- package/lib/locales/fr.json +68 -2
- package/lib/locales/it.json +178 -0
- package/lib/locales/ru.json +91 -0
- package/lib/locales/sv.json +25 -0
- package/lib/locales/uk.json +1 -0
- package/lib/utils/if-else.utils.ts +1 -1
- package/lib/utils/injection-keys.util.ts +3 -2
- package/lib/utils/time.util.ts +18 -0
- package/package.json +22 -22
- package/lib/components/dropdown/DropdownItem.vue +0 -163
- package/lib/components/dropdown/DropdownList.vue +0 -31
package/lib/locales/en.json
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
"admin-login": "Admin login",
|
|
11
11
|
"admin-password": "Admin password",
|
|
12
12
|
"admin-password-confirm": "Confirm admin password",
|
|
13
|
+
"affinity-host": "Affinity host",
|
|
13
14
|
"alarm-type.cpu_usage": "CPU usage exceeds {n}%",
|
|
14
15
|
"alarm-type.disk_usage": "Disk usage exceeds {n}%",
|
|
15
16
|
"alarm-type.fs_usage": "FS usage exceeds {n}%",
|
|
@@ -25,6 +26,8 @@
|
|
|
25
26
|
"allow-self-signed-ssl": "You may need to allow self-signed SSL certificates in your browser",
|
|
26
27
|
"appearance": "Appearance",
|
|
27
28
|
"ascending": "ascending",
|
|
29
|
+
"auto-generated": "Automatically generated",
|
|
30
|
+
"auto-power": "Auto power",
|
|
28
31
|
"available": "Available",
|
|
29
32
|
"available-properties-for-advanced-filter": "Available properties for advanced filter:",
|
|
30
33
|
"back-pool-dashboard": "Go back to your Pool dashboard",
|
|
@@ -44,15 +47,21 @@
|
|
|
44
47
|
"backups.vms-protection.protected": "In at least 1 job & protected",
|
|
45
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",
|
|
46
49
|
"backups.vms-protection.unprotected": "In at least 1 job but unprotected",
|
|
50
|
+
"bios-default": "bios (default)",
|
|
47
51
|
"bond": "Bond",
|
|
48
52
|
"bond-devices": "Bond devices",
|
|
49
53
|
"bond-status": "Bond status",
|
|
54
|
+
"boot-firmware": "Boot firmware",
|
|
55
|
+
"boot-firmware-bios": "The template already contains the BIOS strings",
|
|
56
|
+
"boot-firmware-uefi": "The boot firmware is UEFI",
|
|
57
|
+
"boot-vm": "Boot VM",
|
|
50
58
|
"bytes.gi": "GiB",
|
|
51
59
|
"bytes.ki": "KiB",
|
|
52
60
|
"bytes.mi": "MiB",
|
|
53
61
|
"cancel": "Cancel",
|
|
54
62
|
"change-state": "Change state",
|
|
55
63
|
"check-errors": "Check out the errors:",
|
|
64
|
+
"check-summing": "TX checksumming",
|
|
56
65
|
"click-to-display-alarms": "Click to display alarms:",
|
|
57
66
|
"click-to-return-default-pool": "Click here to return to the default pool",
|
|
58
67
|
"close": "Close",
|
|
@@ -68,6 +77,8 @@
|
|
|
68
77
|
"console-clipboard": "Console clipboard",
|
|
69
78
|
"console-unavailable": "Console unavailable",
|
|
70
79
|
"copy": "Copy",
|
|
80
|
+
"copy-all": "Copy all",
|
|
81
|
+
"copy-host": "Copy host",
|
|
71
82
|
"copy-info-json": "Copy information into JSON",
|
|
72
83
|
"core.character-limit": "{count}/{max} character | {count}/{max} characters",
|
|
73
84
|
"core.close": "Close",
|
|
@@ -78,6 +89,8 @@
|
|
|
78
89
|
"core.group": "Group",
|
|
79
90
|
"core.hide": "Hide",
|
|
80
91
|
"core.open": "Open",
|
|
92
|
+
"core.pagination.all": "All",
|
|
93
|
+
"core.pagination.show-by": "Show by",
|
|
81
94
|
"core.query-search-bar.label": "Search Engine",
|
|
82
95
|
"core.query-search-bar.placeholder": "Write your query…",
|
|
83
96
|
"core.query-search-bar.use-query-builder": "Use query builder",
|
|
@@ -96,9 +109,12 @@
|
|
|
96
109
|
"core.sort.ascending": "Sort ascending",
|
|
97
110
|
"core.sort.descending": "Sort descending",
|
|
98
111
|
"core.textarea.exceeds-max-characters": "Field value must be {max} characters or less.",
|
|
112
|
+
"cores-with-sockets": "Cores (sockets)",
|
|
99
113
|
"cpu-provisioning": "CPU provisioning",
|
|
100
114
|
"cpu-provisioning-warning": "The number of vCPUs allocated exceeds the number of physical CPUs available. System performance could be affected",
|
|
101
115
|
"cpu-usage": "CPU usage",
|
|
116
|
+
"create": "Create",
|
|
117
|
+
"custom-config": "Custom config",
|
|
102
118
|
"dark-mode.auto": "Auto dark mode",
|
|
103
119
|
"dark-mode.disable": "Disable dark mode",
|
|
104
120
|
"dark-mode.enable": "Enable dark mode",
|
|
@@ -123,6 +139,7 @@
|
|
|
123
139
|
"disabled": "Disabled",
|
|
124
140
|
"disconnected": "Disconnected",
|
|
125
141
|
"disconnected-from-physical-device": "Disconnected from physical device",
|
|
142
|
+
"disk-name": "Disk name",
|
|
126
143
|
"display": "Display",
|
|
127
144
|
"dns": "DNS",
|
|
128
145
|
"do-you-have-needs": "You have needs and/or expectations? Let us know",
|
|
@@ -143,6 +160,7 @@
|
|
|
143
160
|
"export-vm": "Export VM",
|
|
144
161
|
"export-vms": "Export VMs",
|
|
145
162
|
"export-vms-manually-information": "Some VM exports were not able to start automatically, probably due to your browser settings. To export them, you should click on each one. (Alternatively, copy the link as well.)",
|
|
163
|
+
"fast-clone": "Fast clone",
|
|
146
164
|
"fetching-fresh-data": "Fetching fresh data",
|
|
147
165
|
"filter.comparison.contains": "Contains",
|
|
148
166
|
"filter.comparison.ends-with": "Ends with",
|
|
@@ -168,10 +186,14 @@
|
|
|
168
186
|
"gateway": "Gateway",
|
|
169
187
|
"go-back": "Go back",
|
|
170
188
|
"gzip": "gzip",
|
|
189
|
+
"hardware": "Hardware",
|
|
171
190
|
"here": "Here",
|
|
172
191
|
"host": "Host",
|
|
173
192
|
"host-description": "Host description",
|
|
174
193
|
"host-internal-networks": "Host internal networks",
|
|
194
|
+
"host-status.halted": "Stopped",
|
|
195
|
+
"host-status.running": "Running",
|
|
196
|
+
"host-status.unknown": "Unknown",
|
|
175
197
|
"host-unknown": "Host unknown",
|
|
176
198
|
"host.active": "Active",
|
|
177
199
|
"host.inactive": "Inactive",
|
|
@@ -183,9 +205,14 @@
|
|
|
183
205
|
"hosts-status.unknown.tooltip": "Hosts metrics are unavailable",
|
|
184
206
|
"id": "Id",
|
|
185
207
|
"in-last-three-jobs": "In their last three jobs",
|
|
208
|
+
"install-settings": "Install settings",
|
|
209
|
+
"interfaces": "Interface | Interface | Interfaces",
|
|
186
210
|
"invalid-field": "Invalid field",
|
|
211
|
+
"ip-address": "IP address",
|
|
187
212
|
"ip-addresses": "IP addresses",
|
|
188
213
|
"ip-mode": "IP mode",
|
|
214
|
+
"is-primary-host": "{name} is primary host",
|
|
215
|
+
"iso-dvd": "ISO/DVD",
|
|
189
216
|
"job.vm-copy.bad-power-state": "VM must be halted",
|
|
190
217
|
"job.vm-copy.in-progress": "Copy in progress…",
|
|
191
218
|
"job.vm-copy.missing-vms": "No VM to copy",
|
|
@@ -235,6 +262,7 @@
|
|
|
235
262
|
"language": "Language",
|
|
236
263
|
"last-week": "Last week",
|
|
237
264
|
"learn-more": "Learn more",
|
|
265
|
+
"load-average": "Load average",
|
|
238
266
|
"load-now": "Load now",
|
|
239
267
|
"loading-hosts": "Loading hosts…",
|
|
240
268
|
"loading-in-progress": "Loading in progress…",
|
|
@@ -247,11 +275,14 @@
|
|
|
247
275
|
"mac-addresses": "MAC addresses",
|
|
248
276
|
"management": "Management",
|
|
249
277
|
"master": "Primary host",
|
|
278
|
+
"memory": "Memory",
|
|
279
|
+
"memory-usage": "Memory usage",
|
|
250
280
|
"migrate": "Migrate",
|
|
251
281
|
"migrate-n-vms": "Migrate 1 VM | Migrate {n} VMs",
|
|
252
282
|
"missing-patches": "Missing patches",
|
|
253
283
|
"more-actions": "More actions",
|
|
254
284
|
"mtu": "MTU",
|
|
285
|
+
"multi-creation": "Multi creation",
|
|
255
286
|
"n-gb-left": "{n} GB left",
|
|
256
287
|
"n-gb-required": "{n} GB required",
|
|
257
288
|
"n-hosts": "1 host | {n} hosts",
|
|
@@ -262,6 +293,7 @@
|
|
|
262
293
|
"netmask": "Netmask",
|
|
263
294
|
"network": "Network",
|
|
264
295
|
"network-block-device": "Network block device",
|
|
296
|
+
"network-config": "Network config",
|
|
265
297
|
"network-download": "Download",
|
|
266
298
|
"network-information": "Network information",
|
|
267
299
|
"network-throughput": "Network throughput",
|
|
@@ -269,17 +301,24 @@
|
|
|
269
301
|
"networks": "Networks",
|
|
270
302
|
"new": "New",
|
|
271
303
|
"new-features-are-coming": "New features are coming soon!",
|
|
304
|
+
"new-vif": "New VIF",
|
|
305
|
+
"new-vm": "New VM",
|
|
306
|
+
"new-vm.add": "Add a new VM",
|
|
307
|
+
"new-vm.description": "VM description",
|
|
308
|
+
"new-vm.name": "VM name",
|
|
272
309
|
"news": "News",
|
|
273
310
|
"news-name": "{name} news",
|
|
274
311
|
"no-alarm-triggered": "No alarm triggered",
|
|
312
|
+
"no-config": "No configuration",
|
|
275
313
|
"no-data": "No data",
|
|
276
314
|
"no-network-detected": "No network detected",
|
|
277
|
-
"no-pif-detected": "No
|
|
315
|
+
"no-pif-detected": "No PIF detected",
|
|
278
316
|
"no-result": "No result",
|
|
279
317
|
"no-results": "No results",
|
|
280
318
|
"no-selected-vm-can-be-exported": "No selected VM can be exported",
|
|
281
319
|
"no-selected-vm-can-be-migrated": "No selected VM can be migrated",
|
|
282
320
|
"no-tasks": "No tasks",
|
|
321
|
+
"no-vif-detected": "No VIF detected",
|
|
283
322
|
"none": "None",
|
|
284
323
|
"not-found": "Not found",
|
|
285
324
|
"object": "Object",
|
|
@@ -298,6 +337,7 @@
|
|
|
298
337
|
"patches": "Patches",
|
|
299
338
|
"pause": "Pause",
|
|
300
339
|
"physical-interface-status": "Physical interface status",
|
|
340
|
+
"pick-template": "Pick template",
|
|
301
341
|
"pif": "PIF",
|
|
302
342
|
"pif-status": "PIF status",
|
|
303
343
|
"pifs": "PIFs",
|
|
@@ -318,6 +358,9 @@
|
|
|
318
358
|
"professional-support": "Professional support",
|
|
319
359
|
"properties": "Properties",
|
|
320
360
|
"property": "Property",
|
|
361
|
+
"pxe": "PXE",
|
|
362
|
+
"quick-info": "Quick info",
|
|
363
|
+
"ram": "RAM",
|
|
321
364
|
"ram-usage": "RAM usage",
|
|
322
365
|
"reboot": "Reboot",
|
|
323
366
|
"receive": "Receive",
|
|
@@ -340,6 +383,7 @@
|
|
|
340
383
|
"see-all": "See all",
|
|
341
384
|
"select-compression": "Select a compression",
|
|
342
385
|
"select-destination-host": "Select a destination host",
|
|
386
|
+
"select-host": "Select host",
|
|
343
387
|
"select-to-see-details": "Select an element to see details",
|
|
344
388
|
"select.network": "Select a network",
|
|
345
389
|
"select.storage": "Select a storage",
|
|
@@ -351,10 +395,14 @@
|
|
|
351
395
|
"shutdown": "Shutdown",
|
|
352
396
|
"sidebar.search-tree-view": "Search in treeview",
|
|
353
397
|
"sidebar.vms-treeview": "VMs treeview",
|
|
398
|
+
"size": "Size",
|
|
354
399
|
"snapshot": "Snapshot",
|
|
400
|
+
"sockets-with-cores-per-socket": "{nSockets} sockets × {nCores} cores/socket",
|
|
355
401
|
"sort-by": "Sort by",
|
|
356
402
|
"speed": "Speed",
|
|
403
|
+
"sr": "SR",
|
|
357
404
|
"ssh-account": "SSH account",
|
|
405
|
+
"ssh-key": "SSH key",
|
|
358
406
|
"ssh-login": "SSH login",
|
|
359
407
|
"ssh-password": "SSH password",
|
|
360
408
|
"ssh-password-confirm": "Confirm SSH password",
|
|
@@ -362,13 +410,17 @@
|
|
|
362
410
|
"stacked-ram-usage": "Stacked RAM usage",
|
|
363
411
|
"start": "Start",
|
|
364
412
|
"start-on-host": "Start on specific host",
|
|
413
|
+
"started": "Started",
|
|
414
|
+
"state": "State",
|
|
365
415
|
"static": "Static",
|
|
366
416
|
"static-ip": "Static IP",
|
|
367
417
|
"stats": "Stats",
|
|
368
418
|
"status": "Status",
|
|
369
419
|
"storage": "Storage",
|
|
420
|
+
"storage-repositories": "Storage repositories",
|
|
370
421
|
"storage-repository": "Storage repository",
|
|
371
422
|
"storage-usage": "Storage usage",
|
|
423
|
+
"summary": "Summary",
|
|
372
424
|
"support": "Support",
|
|
373
425
|
"suspend": "Suspend",
|
|
374
426
|
"switch-theme": "Switch theme",
|
|
@@ -386,16 +438,20 @@
|
|
|
386
438
|
"tasks.quick-view.done": "Done",
|
|
387
439
|
"tasks.quick-view.failed": "Failed",
|
|
388
440
|
"tasks.quick-view.in-progress": "In progress",
|
|
441
|
+
"template": "Template",
|
|
389
442
|
"theme-auto": "Auto",
|
|
390
443
|
"theme-dark": "Dark",
|
|
391
444
|
"theme-light": "Light",
|
|
392
445
|
"this-vm-cant-be-migrated": "This VM can't be migrated",
|
|
393
446
|
"top-#": "Top {n}",
|
|
447
|
+
"topology": "Topology",
|
|
394
448
|
"total": "Total",
|
|
395
449
|
"total-cpus": "Total CPUs",
|
|
450
|
+
"total-free": "Total free",
|
|
396
451
|
"total-free:": "Total free:",
|
|
397
452
|
"total-memory": "Total memory",
|
|
398
453
|
"total-storage-repository": "Total storage repository",
|
|
454
|
+
"total-used": "Total used",
|
|
399
455
|
"total-used:": "Total used:",
|
|
400
456
|
"unknown": "Unknown",
|
|
401
457
|
"unlocked": "Unlocked",
|
|
@@ -403,21 +459,31 @@
|
|
|
403
459
|
"unreachable-hosts-reload-page": "Done, reload the page",
|
|
404
460
|
"up-to-date": "Up-to-date",
|
|
405
461
|
"used": "Used",
|
|
462
|
+
"user-config": "User config",
|
|
406
463
|
"uuid": "UUID",
|
|
407
|
-
"vcpus": "vCPUs",
|
|
464
|
+
"vcpus": "vCPU | vCPU | vCPUs",
|
|
408
465
|
"vcpus-used": "vCPUs used",
|
|
466
|
+
"vdis": "VDI | VDI | VDIs",
|
|
409
467
|
"version": "Version",
|
|
468
|
+
"vif": "VIF",
|
|
469
|
+
"vif-device": "VIF #{device}",
|
|
470
|
+
"vif-status": "VIF status",
|
|
471
|
+
"vifs": "VIFs",
|
|
410
472
|
"vlan": "VLAN",
|
|
411
473
|
"vm": "VM",
|
|
412
474
|
"vm-description": "VM description",
|
|
413
475
|
"vm-is-running": "The VM is running",
|
|
414
476
|
"vm.active": "Active",
|
|
415
477
|
"vm.inactive": "Inactive",
|
|
416
|
-
"
|
|
478
|
+
"vmSocketsWithCoresPerSocket": "{nSockets} sockets × {nCores} cores/socket",
|
|
479
|
+
"vms": "VM | VMs",
|
|
417
480
|
"vms-status": "VMs status",
|
|
481
|
+
"vms-status.halted": "Halted",
|
|
418
482
|
"vms-status.inactive": "Inactive",
|
|
419
483
|
"vms-status.inactive.tooltip": "Halted or suspended",
|
|
484
|
+
"vms-status.paused": "Paused",
|
|
420
485
|
"vms-status.running": "Running",
|
|
486
|
+
"vms-status.suspended": "Suspended",
|
|
421
487
|
"vms-status.unknown": "Unknown",
|
|
422
488
|
"vms-status.unknown.tooltip": "For which XO has lost connection to the pool",
|
|
423
489
|
"xo-backups": "XO backups",
|
package/lib/locales/es.json
CHANGED
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"alarm-type.memory_free_kib": "La memoria libre está debajo del {n}%",
|
|
19
19
|
"alarm-type.network_usage": "El uso de la red sobrepasa el {n}%",
|
|
20
20
|
"alarm-type.physical_utilisation": "El uso físico sobrepasa el {n}%",
|
|
21
|
-
"alarm-type.sr_io_throughput_total_per_host": "El uso total de Entrada/Salida SR por
|
|
21
|
+
"alarm-type.sr_io_throughput_total_per_host": "El uso total de Entrada/Salida SR por servidor físico sobrepasa el {n}%",
|
|
22
22
|
"alarm-type.unknown": "Alarma desconocida",
|
|
23
23
|
"alarms": "Alarmas",
|
|
24
|
-
"all-good": "Todo bien!",
|
|
24
|
+
"all-good": "¡Todo bien!",
|
|
25
25
|
"allow-self-signed-ssl": "Es posible que tendrá que permitir certificados SSL autofirmados dentro de su navegador",
|
|
26
26
|
"appearance": "Aparencia",
|
|
27
27
|
"ascending": "ascendente",
|
|
@@ -30,13 +30,13 @@
|
|
|
30
30
|
"back-pool-dashboard": "Regresa al panel de estado del conjunto de servidores",
|
|
31
31
|
"back-site-dashboard": "Regresar al panel del sitio",
|
|
32
32
|
"backup": "Salvaguarda",
|
|
33
|
-
"backup-issues": "Problemas de
|
|
34
|
-
"backup-repository": "Repositorio de
|
|
35
|
-
"backups": "
|
|
36
|
-
"backups.jobs": "
|
|
37
|
-
"backups.jobs.at-least-one-skipped": "
|
|
33
|
+
"backup-issues": "Problemas de salvaguarda",
|
|
34
|
+
"backup-repository": "Repositorio de salvaguarda (local, NFS, SMB)",
|
|
35
|
+
"backups": "Salvaguardas",
|
|
36
|
+
"backups.jobs": "Tareos",
|
|
37
|
+
"backups.jobs.at-least-one-skipped": "Se omitió al menos una tarea",
|
|
38
38
|
"backups.jobs.based-on-last-three": "Basado en las últimas tres tareas",
|
|
39
|
-
"backups.jobs.disabled": "
|
|
39
|
+
"backups.jobs.disabled": "Desactivados",
|
|
40
40
|
"backups.jobs.looks-like-issue": "Parece que hay un problema",
|
|
41
41
|
"backups.jobs.running-good": "Todo bien",
|
|
42
42
|
"backups.vms-protection": "Protección de máquinas virtuales",
|
|
@@ -44,6 +44,9 @@
|
|
|
44
44
|
"backups.vms-protection.protected": "Listada en al menos una tarea y protejida",
|
|
45
45
|
"backups.vms-protection.tooltip": "Una máquina virtual está «protejida» si está en una tarea de salvaguarda, con un horario activado, y la última ejecución tuvo éxito",
|
|
46
46
|
"backups.vms-protection.unprotected": "En al menos una tarea pero no está protejida",
|
|
47
|
+
"bond": "Bond",
|
|
48
|
+
"bond-devices": "Dispositivos enlazados",
|
|
49
|
+
"bond-status": "Estado del bond",
|
|
47
50
|
"bytes.gi": "Gio",
|
|
48
51
|
"bytes.ki": "Kio",
|
|
49
52
|
"bytes.mi": "Mio",
|
|
@@ -65,7 +68,9 @@
|
|
|
65
68
|
"console-clipboard": "Portapales de la cónsola",
|
|
66
69
|
"console-unavailable": "Cónsola no disponible",
|
|
67
70
|
"copy": "Copiar",
|
|
71
|
+
"copy-all": "Copiar todo",
|
|
68
72
|
"copy-info-json": "Copiar información en JSON",
|
|
73
|
+
"core.character-limit": "{count}/{max} caracter | {count}/{max} caracteres",
|
|
69
74
|
"core.close": "Cerrar",
|
|
70
75
|
"core.copied": "Copiado",
|
|
71
76
|
"core.copy-id": "Copiar la ID",
|
|
@@ -74,6 +79,8 @@
|
|
|
74
79
|
"core.group": "Grupar",
|
|
75
80
|
"core.hide": "Ocultar",
|
|
76
81
|
"core.open": "Abrir",
|
|
82
|
+
"core.pagination.all": "Todos",
|
|
83
|
+
"core.pagination.show-by": "Ver por",
|
|
77
84
|
"core.query-search-bar.label": "Buscador",
|
|
78
85
|
"core.query-search-bar.placeholder": "Entre su búsqueda…",
|
|
79
86
|
"core.query-search-bar.use-query-builder": "Utilizar la constructora de búsquedas",
|
|
@@ -91,6 +98,8 @@
|
|
|
91
98
|
"core.sidebar.unlock": "Desbloquear la barra lateral",
|
|
92
99
|
"core.sort.ascending": "Ordenar",
|
|
93
100
|
"core.sort.descending": "Ordenar descendentemente",
|
|
101
|
+
"core.textarea.exceeds-max-characters": "El valor del campo debe tener {max} carácteres o menos.",
|
|
102
|
+
"cores-with-sockets": "",
|
|
94
103
|
"cpu-provisioning": "Aprovisionamiento de CPU",
|
|
95
104
|
"cpu-provisioning-warning": "La cantidad de vCPU asignadas excede la cantidad de CPU físicas disponibles. El rendimiento del sistema puede verse afectado",
|
|
96
105
|
"cpu-usage": "Uso del CPU",
|
|
@@ -163,10 +172,12 @@
|
|
|
163
172
|
"gateway": "Puerta de enlace",
|
|
164
173
|
"go-back": "Regresa",
|
|
165
174
|
"gzip": "gzip",
|
|
175
|
+
"hardware": "",
|
|
166
176
|
"here": "Aquí",
|
|
167
177
|
"host": "Servidor",
|
|
168
178
|
"host-description": "Descripción servidor",
|
|
169
179
|
"host-internal-networks": "Redes internas del host",
|
|
180
|
+
"host-unknown": "Host desconocido",
|
|
170
181
|
"host.active": "Activo | Activo | Activos",
|
|
171
182
|
"host.inactive": "Inactivo | Inactivo | Inactivos",
|
|
172
183
|
"hosts": "Servidores",
|
|
@@ -180,6 +191,7 @@
|
|
|
180
191
|
"invalid-field": "Campo inválido",
|
|
181
192
|
"ip-addresses": "Dirección IP",
|
|
182
193
|
"ip-mode": "modo IP",
|
|
194
|
+
"is-primary-host": "",
|
|
183
195
|
"job.vm-copy.bad-power-state": "La máquina virtual debe estar apagada",
|
|
184
196
|
"job.vm-copy.in-progress": "Copiando…",
|
|
185
197
|
"job.vm-copy.missing-vms": "No hay máquinas virtuales para copiar",
|
|
@@ -229,6 +241,7 @@
|
|
|
229
241
|
"language": "Idioma",
|
|
230
242
|
"last-week": "Semana pasada",
|
|
231
243
|
"learn-more": "Saber más",
|
|
244
|
+
"load-average": "",
|
|
232
245
|
"load-now": "Cargar ahora",
|
|
233
246
|
"loading-hosts": "Cargando servidores…",
|
|
234
247
|
"loading-in-progress": "Cargando…",
|
|
@@ -237,9 +250,11 @@
|
|
|
237
250
|
"log-out": "Desconectarse",
|
|
238
251
|
"login": "Conectarse",
|
|
239
252
|
"login-only-on-master": "Sólo es posible conectarse al servidor principal",
|
|
240
|
-
"mac-
|
|
241
|
-
"
|
|
253
|
+
"mac-address": "Dirección MAC",
|
|
254
|
+
"mac-addresses": "Direcciones MAC",
|
|
255
|
+
"management": "Gestión",
|
|
242
256
|
"master": "Servidor principal",
|
|
257
|
+
"memory-usage": "",
|
|
243
258
|
"migrate": "Migrar",
|
|
244
259
|
"migrate-n-vms": "Migrar una máquina virtual | Migrar {n} máquinas virtuales",
|
|
245
260
|
"missing-patches": "Parches faltantes",
|
|
@@ -256,11 +271,13 @@
|
|
|
256
271
|
"network": "Red",
|
|
257
272
|
"network-block-device": "Dispositivo de bloques de red",
|
|
258
273
|
"network-download": "Rendimiento de descarga de red",
|
|
274
|
+
"network-information": "Información de Red",
|
|
259
275
|
"network-throughput": "Rendimiento de red",
|
|
260
276
|
"network-upload": "Rendimiento de carga de red",
|
|
261
277
|
"networks": "Redes",
|
|
262
278
|
"new": "Nuevo",
|
|
263
279
|
"new-features-are-coming": "Próximamente nuevas funciones!",
|
|
280
|
+
"new-vif": "Nuevo VIF",
|
|
264
281
|
"news": "Actualidades",
|
|
265
282
|
"news-name": "Actualidades {name}",
|
|
266
283
|
"no-alarm-triggered": "No hay alarma",
|
|
@@ -272,6 +289,7 @@
|
|
|
272
289
|
"no-selected-vm-can-be-exported": "Ninguna máquina virtual selectionada puede exportarse",
|
|
273
290
|
"no-selected-vm-can-be-migrated": "Ninguna máquina virtual selectionada puede migrarse",
|
|
274
291
|
"no-tasks": "No hay tareas",
|
|
292
|
+
"no-vif-detected": "No se detecta VIF",
|
|
275
293
|
"none": "Ninguno",
|
|
276
294
|
"not-found": "No encontrado",
|
|
277
295
|
"object": "Objeto",
|
|
@@ -289,6 +307,9 @@
|
|
|
289
307
|
"password-invalid": "La contraseña no es válido",
|
|
290
308
|
"patches": "Parches",
|
|
291
309
|
"pause": "Pausar",
|
|
310
|
+
"physical-interface-status": "Estado de la interfaz física",
|
|
311
|
+
"pif": "PIF",
|
|
312
|
+
"pif-status": "Estado del PIF",
|
|
292
313
|
"pifs": "PIFs",
|
|
293
314
|
"pifs-status": "Estado de los PIFs",
|
|
294
315
|
"please-confirm": "Confirme, por favor",
|
|
@@ -305,7 +326,9 @@
|
|
|
305
326
|
"power-on-vm-for-console": "Poner la MV en marcha para acceder a su cónsola",
|
|
306
327
|
"power-state": "Estado alimentación electrica",
|
|
307
328
|
"professional-support": "Soporte profesional",
|
|
329
|
+
"properties": "Propiedades",
|
|
308
330
|
"property": "Propriedad",
|
|
331
|
+
"ram": "",
|
|
309
332
|
"ram-usage": "Uso RAM",
|
|
310
333
|
"reboot": "Reiniciar",
|
|
311
334
|
"receive": "Recibir",
|
|
@@ -350,6 +373,7 @@
|
|
|
350
373
|
"stacked-ram-usage": "Uso RAM apilado",
|
|
351
374
|
"start": "Iniciar",
|
|
352
375
|
"start-on-host": "Iniciar en un servidor específico",
|
|
376
|
+
"started": "",
|
|
353
377
|
"static": "Estatico",
|
|
354
378
|
"static-ip": "IP estático",
|
|
355
379
|
"stats": "Stats",
|
|
@@ -362,6 +386,7 @@
|
|
|
362
386
|
"switch-theme": "Cambiar el tema",
|
|
363
387
|
"system": "Sistema",
|
|
364
388
|
"table-actions": "Tabla de acciones",
|
|
389
|
+
"tags": "Etiquetas",
|
|
365
390
|
"task.estimated-end": "Fin estimado",
|
|
366
391
|
"task.progress": "Progreso",
|
|
367
392
|
"task.started": "Iniciado",
|
|
@@ -380,9 +405,11 @@
|
|
|
380
405
|
"top-#": "{n} principales",
|
|
381
406
|
"total": "Total",
|
|
382
407
|
"total-cpus": "CPUs Totales",
|
|
408
|
+
"total-free": "",
|
|
383
409
|
"total-free:": "Total libre :",
|
|
384
410
|
"total-memory": "Memoria total",
|
|
385
411
|
"total-storage-repository": "Total reposito de almacenamiento",
|
|
412
|
+
"total-used": "",
|
|
386
413
|
"total-used:": "Total usado :",
|
|
387
414
|
"unknown": "Desconocido",
|
|
388
415
|
"unlocked": "Desbloqueado",
|
|
@@ -390,9 +417,14 @@
|
|
|
390
417
|
"unreachable-hosts-reload-page": "Acabado. Refresca la página",
|
|
391
418
|
"up-to-date": "Actualizado",
|
|
392
419
|
"used": "Usado",
|
|
420
|
+
"uuid": "UUID",
|
|
393
421
|
"vcpus": "vCPUs",
|
|
394
422
|
"vcpus-used": "vCPUs usados",
|
|
395
423
|
"version": "Versión",
|
|
424
|
+
"vif": "VIF",
|
|
425
|
+
"vif-device": "VIF #{device}",
|
|
426
|
+
"vif-status": "Estado VIF",
|
|
427
|
+
"vifs": "VIFs",
|
|
396
428
|
"vlan": "VLAN",
|
|
397
429
|
"vm": "máquina virtual",
|
|
398
430
|
"vm-description": "descripción máquina virtual",
|