@xen-orchestra/web-core 0.10.0 → 0.12.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/charts/LinearChart.md +33 -0
- package/lib/components/charts/LinearChart.vue +77 -0
- package/lib/components/connection-status/VtsConnectionStatus.vue +5 -1
- package/lib/components/console/VtsActionsConsole.vue +26 -12
- package/lib/components/console/VtsRemoteConsole.vue +58 -16
- package/lib/components/data-table/VtsDataTable.vue +58 -0
- package/lib/components/menu/MenuItem.vue +9 -13
- package/lib/components/menu/MenuList.vue +15 -13
- package/lib/components/tab/TabItem.vue +3 -4
- package/lib/components/tab/TabList.vue +5 -9
- package/lib/components/table/ColumnTitle.vue +1 -1
- package/lib/components/ui/account-menu-button/UiAccountMenuButton.vue +2 -3
- package/lib/components/ui/button/UiButton.vue +11 -17
- package/lib/components/ui/checkbox/UiCheckbox.vue +11 -15
- package/lib/components/ui/dropdown-button/UiDropdownButton.vue +9 -13
- package/lib/components/ui/input/UiInput.vue +2 -0
- package/lib/components/ui/radio-button/UiRadioButton.vue +12 -15
- package/lib/components/ui/toggle/UiToggle.vue +6 -10
- package/lib/composables/chart-theme.composable.ts +382 -0
- package/lib/composables/disabled.composable.ts +15 -0
- package/lib/composables/route-query/types.ts +3 -2
- package/lib/composables/table/multi-select.composable.ts +32 -0
- package/lib/i18n.ts +53 -0
- package/lib/layouts/CoreLayout.vue +20 -13
- package/lib/locales/cs.json +9 -9
- package/lib/locales/de.json +41 -46
- package/lib/locales/en.json +52 -14
- package/lib/locales/es.json +97 -0
- package/lib/locales/fa.json +5 -4
- package/lib/locales/fr.json +54 -16
- package/lib/types/chart.ts +9 -0
- package/lib/utils/injection-keys.util.ts +5 -0
- package/package.json +7 -2
- package/lib/context.ts +0 -10
package/lib/i18n.ts
CHANGED
|
@@ -13,6 +13,10 @@ export const locales: Locales = {
|
|
|
13
13
|
code: 'en',
|
|
14
14
|
name: 'English',
|
|
15
15
|
},
|
|
16
|
+
es: {
|
|
17
|
+
code: 'es',
|
|
18
|
+
name: 'Español',
|
|
19
|
+
},
|
|
16
20
|
fr: {
|
|
17
21
|
code: 'fr',
|
|
18
22
|
name: 'Français',
|
|
@@ -87,6 +91,48 @@ export default createI18n({
|
|
|
87
91
|
minute: '2-digit',
|
|
88
92
|
},
|
|
89
93
|
},
|
|
94
|
+
es: {
|
|
95
|
+
date_short: {
|
|
96
|
+
year: 'numeric',
|
|
97
|
+
month: 'numeric',
|
|
98
|
+
day: 'numeric',
|
|
99
|
+
},
|
|
100
|
+
date_medium: {
|
|
101
|
+
year: 'numeric',
|
|
102
|
+
month: 'short',
|
|
103
|
+
day: 'numeric',
|
|
104
|
+
},
|
|
105
|
+
date_long: {
|
|
106
|
+
year: 'numeric',
|
|
107
|
+
month: 'long',
|
|
108
|
+
day: 'numeric',
|
|
109
|
+
},
|
|
110
|
+
datetime_short: {
|
|
111
|
+
year: 'numeric',
|
|
112
|
+
month: 'numeric',
|
|
113
|
+
day: 'numeric',
|
|
114
|
+
hour: '2-digit',
|
|
115
|
+
minute: '2-digit',
|
|
116
|
+
},
|
|
117
|
+
datetime_medium: {
|
|
118
|
+
year: 'numeric',
|
|
119
|
+
month: 'short',
|
|
120
|
+
day: 'numeric',
|
|
121
|
+
hour: '2-digit',
|
|
122
|
+
minute: '2-digit',
|
|
123
|
+
},
|
|
124
|
+
datetime_long: {
|
|
125
|
+
year: 'numeric',
|
|
126
|
+
month: 'long',
|
|
127
|
+
day: 'numeric',
|
|
128
|
+
hour: '2-digit',
|
|
129
|
+
minute: '2-digit',
|
|
130
|
+
},
|
|
131
|
+
time: {
|
|
132
|
+
hour: '2-digit',
|
|
133
|
+
minute: '2-digit',
|
|
134
|
+
},
|
|
135
|
+
},
|
|
90
136
|
fr: {
|
|
91
137
|
date_short: {
|
|
92
138
|
year: 'numeric',
|
|
@@ -222,6 +268,13 @@ export default createI18n({
|
|
|
222
268
|
maximumFractionDigits: 2,
|
|
223
269
|
},
|
|
224
270
|
},
|
|
271
|
+
es: {
|
|
272
|
+
percent: {
|
|
273
|
+
style: 'percent',
|
|
274
|
+
minimumFractionDigits: 0,
|
|
275
|
+
maximumFractionDigits: 2,
|
|
276
|
+
},
|
|
277
|
+
},
|
|
225
278
|
fr: {
|
|
226
279
|
percent: {
|
|
227
280
|
style: 'percent',
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<div class="core-layout">
|
|
3
|
-
<header class="header">
|
|
3
|
+
<header v-if="uiStore.hasUi" class="header">
|
|
4
4
|
<slot name="app-logo" />
|
|
5
5
|
<UiButtonIcon
|
|
6
6
|
v-tooltip="{
|
|
@@ -16,18 +16,23 @@
|
|
|
16
16
|
<slot name="app-header" />
|
|
17
17
|
</header>
|
|
18
18
|
<div class="container">
|
|
19
|
-
<
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
<
|
|
25
|
-
<
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
<
|
|
29
|
-
|
|
30
|
-
|
|
19
|
+
<template v-if="uiStore.hasUi">
|
|
20
|
+
<VtsBackdrop
|
|
21
|
+
v-if="sidebarStore.isExpanded && !sidebarStore.isLocked"
|
|
22
|
+
@click="sidebarStore.toggleExpand(false)"
|
|
23
|
+
/>
|
|
24
|
+
<VtsLayoutSidebar class="sidebar">
|
|
25
|
+
<template #header>
|
|
26
|
+
<slot name="sidebar-header" />
|
|
27
|
+
</template>
|
|
28
|
+
<template #default>
|
|
29
|
+
<slot name="sidebar-content" />
|
|
30
|
+
</template>
|
|
31
|
+
<template #footer>
|
|
32
|
+
<slot name="sidebar-footer" />
|
|
33
|
+
</template>
|
|
34
|
+
</VtsLayoutSidebar>
|
|
35
|
+
</template>
|
|
31
36
|
<main class="main-container">
|
|
32
37
|
<slot name="content" />
|
|
33
38
|
</main>
|
|
@@ -41,8 +46,10 @@ import VtsLayoutSidebar from '@core/components/layout/VtsLayoutSidebar.vue'
|
|
|
41
46
|
import UiButtonIcon from '@core/components/ui/button-icon/UiButtonIcon.vue'
|
|
42
47
|
import { vTooltip } from '@core/directives/tooltip.directive'
|
|
43
48
|
import { useSidebarStore } from '@core/stores/sidebar.store'
|
|
49
|
+
import { useUiStore } from '@core/stores/ui.store'
|
|
44
50
|
import { faAngleDoubleLeft, faBars } from '@fortawesome/free-solid-svg-icons'
|
|
45
51
|
|
|
52
|
+
const uiStore = useUiStore()
|
|
46
53
|
const sidebarStore = useSidebarStore()
|
|
47
54
|
</script>
|
|
48
55
|
|
package/lib/locales/cs.json
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"alarms": "Výstrahy",
|
|
3
3
|
|
|
4
|
+
"bytes.gi": "GiB",
|
|
4
5
|
"bytes.ki": "KiB",
|
|
5
6
|
"bytes.mi": "MiB",
|
|
6
|
-
"bytes.gi": "GiB",
|
|
7
7
|
|
|
8
8
|
"coming-soon": "Už brzy!",
|
|
9
9
|
"console": "Konzole",
|
|
10
10
|
|
|
11
|
+
"core.close": "Zavřít",
|
|
11
12
|
"core.copied": "Zkopírováno",
|
|
12
13
|
"core.copy-id": "Zkopírovat identif.",
|
|
13
|
-
"core.close": "Zavřít",
|
|
14
14
|
"core.current": "Stávající",
|
|
15
15
|
"core.filter": "Filtrovat",
|
|
16
16
|
"core.group": "Skupina",
|
|
17
17
|
"core.hide": "Skrýt",
|
|
18
18
|
"core.open": "Otevřít",
|
|
19
|
-
"core.quick-actions": "Rychlé akce",
|
|
20
|
-
|
|
21
|
-
"core.search": "Hledat",
|
|
22
|
-
|
|
23
19
|
"core.query-search-bar.label": "Vyhledávací engine",
|
|
20
|
+
|
|
24
21
|
"core.query-search-bar.placeholder": "Zadejte svůj dotaz…",
|
|
22
|
+
|
|
25
23
|
"core.query-search-bar.use-query-builder": "Použít nástroj pro sestavování dotazů",
|
|
24
|
+
"core.quick-actions": "Rychlé akce",
|
|
25
|
+
"core.search": "Hledat",
|
|
26
26
|
|
|
27
27
|
"core.select.all": "Vybrat vše",
|
|
28
28
|
"core.select.none": "Zrušit výběr všeho",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"core.sort.ascending": "Seřadit vzestupně",
|
|
36
36
|
"core.sort.descending": "Seřadit sestupně",
|
|
37
37
|
|
|
38
|
-
"dark-mode.enable": "Zapnout tmavý režim",
|
|
39
|
-
"dark-mode.disable": "Vypnout tmavý režim",
|
|
40
38
|
"dark-mode.auto": "Automatický tmavý režim",
|
|
39
|
+
"dark-mode.disable": "Vypnout tmavý režim",
|
|
40
|
+
"dark-mode.enable": "Zapnout tmavý režim",
|
|
41
41
|
|
|
42
42
|
"dashboard": "Přehled",
|
|
43
43
|
"documentation-name": "Dokumentace k {name}",
|
|
@@ -53,8 +53,8 @@
|
|
|
53
53
|
"object-not-found": "Objekt {id} nebylo možné nalézt…",
|
|
54
54
|
"other": "Ostatní",
|
|
55
55
|
"patches": "Záplaty",
|
|
56
|
-
"power-on-vm-for-console": "Konzole virt. stroje bude přístupná až po jeho zapnutí",
|
|
57
56
|
"power-on-host-for-console": "Konzole virt. stroje bude přístupná až po jeho zapnutí",
|
|
57
|
+
"power-on-vm-for-console": "Konzole virt. stroje bude přístupná až po jeho zapnutí",
|
|
58
58
|
"professional-support": "Profesionální podpora",
|
|
59
59
|
"running-vm": "Spuštěný virt. stroj | Spuštěné virt. stroje",
|
|
60
60
|
"see-all": "Zobrazit vše",
|
package/lib/locales/de.json
CHANGED
|
@@ -1,48 +1,43 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
"tasks": "Aufgaben",
|
|
45
|
-
"tasks.quick-view": "Schnellansicht der Aufgaben",
|
|
46
|
-
|
|
47
|
-
"vms": "VMs"
|
|
2
|
+
"alarms": "Alarme",
|
|
3
|
+
"bytes.ki": "KiB",
|
|
4
|
+
"bytes.mi": "MiB",
|
|
5
|
+
"bytes.gi": "GiB",
|
|
6
|
+
"coming-soon": "Bald verfügbar!",
|
|
7
|
+
"console": "Konsole",
|
|
8
|
+
"core.close": "Schließen",
|
|
9
|
+
"core.group": "Gruppe",
|
|
10
|
+
"core.select.all": "Alles auswählen",
|
|
11
|
+
"core.select.none": "Alle abwählen",
|
|
12
|
+
"dark-mode.enable": "Aktivieren Sie den Dunkelmodus",
|
|
13
|
+
"dark-mode.disable": "Deaktivieren Sie den Dunkelmodus",
|
|
14
|
+
"dark-mode.auto": "Automatischer Dunkelmodus",
|
|
15
|
+
"dashboard": "Dashboard",
|
|
16
|
+
"dhcp": "DHCP",
|
|
17
|
+
"documentation-name": "{name} Dokumentation",
|
|
18
|
+
"error-no-data": "Fehler beim Datenabruf.",
|
|
19
|
+
"fullscreen": "Vollbild",
|
|
20
|
+
"gateway": "Gateway",
|
|
21
|
+
"hosts": "Hosts",
|
|
22
|
+
"learn-more": "Mehr erfahren",
|
|
23
|
+
"loading-in-progress": "Ladevorgang läuft…",
|
|
24
|
+
"log-out": "Abmelden",
|
|
25
|
+
"master": "Primärer Host",
|
|
26
|
+
"n-vms": "1 VM | {n} VMs",
|
|
27
|
+
"netmask": "Netzmaske",
|
|
28
|
+
"network": "Netzwerk",
|
|
29
|
+
"object-not-found": "Objekt {id} wurde nicht gefunden…",
|
|
30
|
+
"open-console-in-new-tab": "Konsole in neuem Reiter öffnen",
|
|
31
|
+
"page-not-found": "Diese Seite wurde nicht gefunden…",
|
|
32
|
+
"patches": "Patches",
|
|
33
|
+
"power-on-vm-for-console": "Konsole ist nach Start der VM verfügbar",
|
|
34
|
+
"power-on-host-for-console": "Konsole ist nach Start des Hosts verfügbar",
|
|
35
|
+
"running-vm": "VM eingeschalten | VMs eingeschalten",
|
|
36
|
+
"send-ctrl-alt-del": "Ctrl+Alt+Del senden",
|
|
37
|
+
"stats": "Statistiken",
|
|
38
|
+
"storage": "Speicher",
|
|
39
|
+
"system": "System",
|
|
40
|
+
"tasks": "Aufgaben",
|
|
41
|
+
"tasks.quick-view": "Schnellansicht der Aufgaben",
|
|
42
|
+
"vms": "VMs"
|
|
48
43
|
}
|
package/lib/locales/en.json
CHANGED
|
@@ -1,37 +1,42 @@
|
|
|
1
1
|
{
|
|
2
|
+
"access-forum": "Access forum",
|
|
2
3
|
"alarms": "Alarms",
|
|
3
4
|
|
|
5
|
+
"bytes.gi": "GiB",
|
|
4
6
|
"bytes.ki": "KiB",
|
|
5
7
|
"bytes.mi": "MiB",
|
|
6
|
-
"bytes.gi": "GiB",
|
|
7
8
|
|
|
8
9
|
"coming-soon": "Coming soon!",
|
|
10
|
+
"connected": "Connected",
|
|
9
11
|
"console": "Console",
|
|
10
12
|
"console-actions": "Console actions",
|
|
11
13
|
"console-clipboard": "Console clipboard",
|
|
14
|
+
"copy-info-json": "Copy information into JSON",
|
|
12
15
|
|
|
16
|
+
"core.close": "Close",
|
|
13
17
|
"core.copied": "Copied",
|
|
14
18
|
"core.copy-id": "Copy ID",
|
|
15
|
-
"core.close": "Close",
|
|
16
19
|
"core.current": "Current",
|
|
17
20
|
"core.filter": "Filter",
|
|
18
21
|
"core.group": "Group",
|
|
19
22
|
"core.hide": "Hide",
|
|
20
23
|
"core.open": "Open",
|
|
21
|
-
"core.quick-actions": "Quick actions",
|
|
22
|
-
|
|
23
|
-
"core.search": "Search",
|
|
24
|
-
"core.show-by": "Show by",
|
|
25
24
|
|
|
26
25
|
"core.query-search-bar.label": "Search Engine",
|
|
27
26
|
"core.query-search-bar.placeholder": "Write your query…",
|
|
28
27
|
"core.query-search-bar.use-query-builder": "Use query builder",
|
|
29
28
|
|
|
29
|
+
"core.quick-actions": "Quick actions",
|
|
30
|
+
"core.search": "Search",
|
|
31
|
+
|
|
30
32
|
"core.select.all": "Select all",
|
|
31
|
-
"core.select.none": "Select none",
|
|
32
|
-
"core.select.unselect": "Unselect all",
|
|
33
33
|
"core.select.n-object-of": "{from} - {to} of {total} objects",
|
|
34
34
|
"core.select.n-selected-of": "{count} selected of {total} objects",
|
|
35
|
+
"core.select.none": "Select none",
|
|
36
|
+
"core.select.unselect": "Unselect all",
|
|
37
|
+
|
|
38
|
+
"core.show-by": "Show by",
|
|
39
|
+
|
|
35
40
|
"core.sidebar.close": "Close sidebar",
|
|
36
41
|
"core.sidebar.lock": "Lock sidebar open",
|
|
37
42
|
"core.sidebar.open": "Open sidebar",
|
|
@@ -40,49 +45,79 @@
|
|
|
40
45
|
"core.sort.ascending": "Sort ascending",
|
|
41
46
|
"core.sort.descending": "Sort descending",
|
|
42
47
|
|
|
43
|
-
"dark-mode.enable": "Enable dark mode",
|
|
44
|
-
"dark-mode.disable": "Disable dark mode",
|
|
45
48
|
"dark-mode.auto": "Auto dark mode",
|
|
49
|
+
"dark-mode.disable": "Disable dark mode",
|
|
50
|
+
"dark-mode.enable": "Enable dark mode",
|
|
46
51
|
|
|
47
|
-
"access-forum": "Access forum",
|
|
48
|
-
"connected": "Connected",
|
|
49
52
|
"dashboard": "Dashboard",
|
|
53
|
+
"default-locking-mode": "Default locking mode",
|
|
54
|
+
"delete": "Delete",
|
|
55
|
+
"description": "Description",
|
|
56
|
+
"device": "Device",
|
|
57
|
+
"disabled": "Disabled",
|
|
50
58
|
"disconnected": "Disconnected",
|
|
51
59
|
"disconnected-from-physical-device": "Disconnected from physical device",
|
|
60
|
+
"dns": "DNS",
|
|
52
61
|
"documentation-name": "{name} documentation",
|
|
62
|
+
"edit": "Edit",
|
|
53
63
|
"error-no-data": "Error, can't collect data.",
|
|
54
64
|
"exit-fullscreen": "Exit fullscreen",
|
|
55
65
|
"fullscreen": "Fullscreen",
|
|
56
66
|
"gateway": "Gateway",
|
|
67
|
+
"host-internal-networks": "Host internal networks",
|
|
57
68
|
"hosts": "Hosts",
|
|
69
|
+
"id": "Id",
|
|
70
|
+
"ip-addresses": "IP addresses",
|
|
71
|
+
"ip-mode": "IP mode",
|
|
58
72
|
"learn-more": "Learn more",
|
|
59
73
|
"loading-in-progress": "Loading in progress…",
|
|
74
|
+
"locking-mode": "Locking mode",
|
|
75
|
+
"locking-mode-default": "Default locking mode",
|
|
60
76
|
"log-out": "Log out",
|
|
77
|
+
"mac-addresses": "MAC addresses",
|
|
78
|
+
"management": "Management",
|
|
61
79
|
"master": "Primary host",
|
|
80
|
+
"mtu": "MTU",
|
|
62
81
|
"n-vms": "1 VM | {n} VMs",
|
|
82
|
+
"name": "Name",
|
|
63
83
|
"network": "Network",
|
|
84
|
+
"network-block-device": "Network block device",
|
|
85
|
+
"networks": "Networks",
|
|
86
|
+
"new": "New",
|
|
64
87
|
"no-data": "No data",
|
|
88
|
+
"no-network-detected": "No network detected",
|
|
89
|
+
"no-pif-detected": "No pif detected",
|
|
90
|
+
"no-result": "No result",
|
|
91
|
+
"none": "None",
|
|
65
92
|
"object-not-found": "Object {id} can't be found…",
|
|
93
|
+
"off": "Off",
|
|
94
|
+
"on": "On",
|
|
66
95
|
"open-console-in-new-tab": "Open console in new tab",
|
|
67
96
|
"other": "Other",
|
|
68
97
|
"page-not-found": "This page is not to be found…",
|
|
69
98
|
"partially-connected": "Partially connected",
|
|
70
99
|
"patches": "Patches",
|
|
71
|
-
"
|
|
100
|
+
"pifs": "PIFs",
|
|
101
|
+
"pifs-status": "PIFs status",
|
|
72
102
|
"power-on-host-for-console": "Power on your host to access its console",
|
|
103
|
+
"power-on-vm-for-console": "Power on your VM to access its console",
|
|
73
104
|
"professional-support": "Professional support",
|
|
74
105
|
"receive": "Receive",
|
|
75
106
|
"running-vm": "Running VM | Running VMs",
|
|
107
|
+
"scan-pifs": "Scan PIFs",
|
|
76
108
|
"see-all": "See all",
|
|
77
109
|
"select-to-see-details": "Select an element to see details",
|
|
78
110
|
"send": "Send",
|
|
79
111
|
"send-ctrl-alt-del": "Send Ctrl+Alt+Del",
|
|
80
112
|
"speed": "Speed",
|
|
113
|
+
"static": "Static",
|
|
81
114
|
"stats": "Stats",
|
|
115
|
+
"status": "Status",
|
|
82
116
|
"storage": "Storage",
|
|
83
117
|
"system": "System",
|
|
84
|
-
|
|
118
|
+
"table-actions": "Table actions",
|
|
85
119
|
"tasks": "Tasks",
|
|
120
|
+
|
|
86
121
|
"tasks.n-subtasks": "{n} subtask | {n} subtasks",
|
|
87
122
|
"tasks.no-tasks": "No tasks",
|
|
88
123
|
"tasks.quick-view": "Tasks' quick view",
|
|
@@ -93,5 +128,8 @@
|
|
|
93
128
|
|
|
94
129
|
"total": "Total",
|
|
95
130
|
"total-cpus": "Total CPUs",
|
|
131
|
+
"unknown": "Unknown",
|
|
132
|
+
"unlocked": "Unlocked",
|
|
133
|
+
"vlan": "VLAN",
|
|
96
134
|
"vms": "VMs"
|
|
97
135
|
}
|
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
{
|
|
2
|
+
"alarms": "Alarmas",
|
|
3
|
+
|
|
4
|
+
"bytes.ki": "Kio",
|
|
5
|
+
"bytes.mi": "Mio",
|
|
6
|
+
"bytes.gi": "Gio",
|
|
7
|
+
|
|
8
|
+
"coming-soon": "¡Vendrá pronto!",
|
|
9
|
+
"console": "Consola",
|
|
10
|
+
"console-actions": "Acciones de la cónsola",
|
|
11
|
+
"console-clipboard": "Portapales de la cónsola",
|
|
12
|
+
|
|
13
|
+
"core.copied": "Copiar",
|
|
14
|
+
"core.copy-id": "Copiar la ID",
|
|
15
|
+
"core.close": "Cerrar",
|
|
16
|
+
"core.current": "Actual",
|
|
17
|
+
"core.filter": "Filtrar",
|
|
18
|
+
"core.group": "Grupar",
|
|
19
|
+
"core.hide": "Ocultar",
|
|
20
|
+
"core.open": "Abrir",
|
|
21
|
+
"core.quick-actions": "Acciones rápidas",
|
|
22
|
+
|
|
23
|
+
"core.search": "Buscar",
|
|
24
|
+
"core.show-by": "Mostrar por...",
|
|
25
|
+
|
|
26
|
+
"core.query-search-bar.label": "Buscador",
|
|
27
|
+
"core.query-search-bar.placeholder": "Entre su búsqueda",
|
|
28
|
+
"core.query-search-bar.use-query-builder": "Utilizar la constructora de búsquedas",
|
|
29
|
+
|
|
30
|
+
"core.select.all": "Selectionar todos",
|
|
31
|
+
"core.select.none": "Selectionar ninguno",
|
|
32
|
+
"core.select.unselect": "Deseleccionar todos",
|
|
33
|
+
"core.select.n-object-of": "{from} - {to} de {total} objectos",
|
|
34
|
+
"core.select.n-selected-of": "{count} objectos selectionados de un total de {total}",
|
|
35
|
+
"core.sidebar.close": "Cerrar la barra lateral",
|
|
36
|
+
"core.sidebar.lock": "Bloquear abierta la barra lateral",
|
|
37
|
+
"core.sidebar.open": "Abrir la barra lateral",
|
|
38
|
+
"core.sidebar.unlock": "Desbloquear la barra lateral",
|
|
39
|
+
|
|
40
|
+
"core.sort.ascending": "Ordenar",
|
|
41
|
+
"core.sort.descending": "Ordenar descendentemente",
|
|
42
|
+
|
|
43
|
+
"dark-mode.enable": "Activar modo oscuro",
|
|
44
|
+
"dark-mode.disable": "Desactivar modo oscuro",
|
|
45
|
+
"dark-mode.auto": "Modo oscuro automática",
|
|
46
|
+
|
|
47
|
+
"access-forum": "Acceso al foro",
|
|
48
|
+
"connected": "Conectado",
|
|
49
|
+
"dashboard": "Panel",
|
|
50
|
+
"disconnected": "Disconectado",
|
|
51
|
+
"disconnected-from-physical-device": "Disconectado del aparato físico",
|
|
52
|
+
"documentation-name": "Documentación {name}",
|
|
53
|
+
"error-no-data": "Error, imposible recoger datos.",
|
|
54
|
+
"exit-fullscreen": "Salir de pantala completa",
|
|
55
|
+
"fullscreen": "Pantalla completa",
|
|
56
|
+
"gateway": "Puerta de enlace",
|
|
57
|
+
"hosts": "Servidores",
|
|
58
|
+
"learn-more": "Saber más",
|
|
59
|
+
"loading-in-progress": "Cargando…",
|
|
60
|
+
"log-out": "Desconectarse",
|
|
61
|
+
"master": "Servidor principal",
|
|
62
|
+
"n-vms": "1 VM | {n} VMs",
|
|
63
|
+
"network": "Red",
|
|
64
|
+
"no-data": "No hay datos",
|
|
65
|
+
"object-not-found": "No se encuentra el objecto {id}…",
|
|
66
|
+
"open-console-in-new-tab": "Abrir la cónsola en una nueva pestaña",
|
|
67
|
+
"other": "Otro",
|
|
68
|
+
"page-not-found": "No se encuentra esta página",
|
|
69
|
+
"partially-connected": "Parcialmente connectado",
|
|
70
|
+
"patches": "Parches",
|
|
71
|
+
"power-on-vm-for-console": "Poner la MV en marcha para acceder a su cónsola",
|
|
72
|
+
"power-on-host-for-console": "Poner en marcha el servidor para acceder a su cónsola",
|
|
73
|
+
"professional-support": "Soporte profesional",
|
|
74
|
+
"receive": "Recibir",
|
|
75
|
+
"running-vm": "MV en marcha | MVs en marcha",
|
|
76
|
+
"see-all": "Ver todos",
|
|
77
|
+
"select-to-see-details": "Elegir un elemento para ver las detalles",
|
|
78
|
+
"send": "Enviar",
|
|
79
|
+
"send-ctrl-alt-del": "Enviar Ctrl+Alt+Supr",
|
|
80
|
+
"speed": "Velocidad",
|
|
81
|
+
"stats": "Stats",
|
|
82
|
+
"storage": "Amacenamiento",
|
|
83
|
+
"system": "Sistema",
|
|
84
|
+
|
|
85
|
+
"tasks": "Tareas",
|
|
86
|
+
"tasks.n-subtasks": "{n} subtarea | {n} subtareas",
|
|
87
|
+
"tasks.no-tasks": "Ninguna tarea",
|
|
88
|
+
"tasks.quick-view": "Vista rápida de tareas",
|
|
89
|
+
"tasks.quick-view.all": "Todas",
|
|
90
|
+
"tasks.quick-view.done": "Terminadas",
|
|
91
|
+
"tasks.quick-view.failed": "Falladas",
|
|
92
|
+
"tasks.quick-view.in-progress": "En progreso",
|
|
93
|
+
|
|
94
|
+
"total": "Total",
|
|
95
|
+
"total-cpus": "Total CPUs",
|
|
96
|
+
"vms": "VMs"
|
|
97
|
+
}
|
package/lib/locales/fa.json
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"alarms": "هشدارها",
|
|
3
3
|
|
|
4
|
+
"bytes.gi": "GiB",
|
|
4
5
|
"bytes.ki": "KiB",
|
|
5
6
|
"bytes.mi": "MiB",
|
|
6
|
-
"bytes.gi": "GiB",
|
|
7
7
|
|
|
8
8
|
"coming-soon": "به زودی!",
|
|
9
9
|
"console": "کنسول",
|
|
@@ -27,11 +27,12 @@
|
|
|
27
27
|
"core.sort.ascending": "مرتب سازی صعودی",
|
|
28
28
|
"core.sort.descending": "مرتب سازی نزولی",
|
|
29
29
|
|
|
30
|
-
"dark-mode.enable": "فعال کردن حالت تاریک",
|
|
31
|
-
"dark-mode.disable": "غیر فعال کردن حالت تاریک",
|
|
32
30
|
"dark-mode.auto": "حالت خودکار تاریک",
|
|
31
|
+
"dark-mode.disable": "غیر فعال کردن حالت تاریک",
|
|
32
|
+
"dark-mode.enable": "فعال کردن حالت تاریک",
|
|
33
33
|
|
|
34
34
|
"dashboard": "داشبورد",
|
|
35
|
+
"dhcp": "DHCP",
|
|
35
36
|
"documentation-name": "اسناد {name}",
|
|
36
37
|
"error-no-data": "خطا، نمی توان داده ها را جمع آوری کرد.",
|
|
37
38
|
"fullscreen": "تمام صفحه",
|
|
@@ -44,8 +45,8 @@
|
|
|
44
45
|
"open-console-in-new-tab": "باز کردن کنسول در برگه جدید",
|
|
45
46
|
"page-not-found": "این صفحه پیدا نمی شود…",
|
|
46
47
|
"patches": "وصله ها",
|
|
47
|
-
"power-on-vm-for-console": "ماشین مجازی خود را روشن کنید تا به کنسول آن دسترسی داشته باشید",
|
|
48
48
|
"power-on-host-for-console": "هاست خود را برای دسترسی به کنسول آن روشن کنید",
|
|
49
|
+
"power-on-vm-for-console": "ماشین مجازی خود را روشن کنید تا به کنسول آن دسترسی داشته باشید",
|
|
49
50
|
"running-vm": "ماشین های مجازی در حال اجرا | ماشین مجازی در حال اجرا",
|
|
50
51
|
"send-ctrl-alt-del": "ارسال کلیدهای Ctrl+Alt+Del",
|
|
51
52
|
"stats": "آمار",
|