bfg-common 1.3.590 → 1.3.592
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/components/atoms/table/dataGrid/DataGridPagination.vue +1 -1
- package/components/common/layout/theHeader/feedback/Feedback.vue +1 -1
- package/components/common/layout/theHeader/helpMenu/helpMenuNew/lib/config/dropMenu.ts +1 -1
- package/components/common/layout/theHeader/helpMenu/helpMenuOld/lib/config/dropMenu.ts +1 -1
- package/components/common/layout/theHeader/userMenu/modals/preferences/inventory/InventoryNew.vue +1 -1
- package/components/common/layout/theHeader/userMenu/modals/preferences/lib/config/preferencesTabs.ts +1 -1
- package/components/common/pages/hardwareHealth/tableView/lib/config/systemLogTable.ts +1 -1
- package/components/common/shortcuts/Shortcuts.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/browseView/BrowseView.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuModel.vue +2 -2
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Hv.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/Sa.vue +1 -1
- package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/tooltip/Tooltip.vue +1 -1
- package/lib/utils/sendTask.ts +1 -1
- package/package.json +1 -1
|
@@ -67,7 +67,7 @@ const totalItemCount = computed<string>(() => {
|
|
|
67
67
|
|
|
68
68
|
return `${paginationInfo} ${
|
|
69
69
|
props.totalItems
|
|
70
|
-
} ${localization.value.items.toLowerCase()}`
|
|
70
|
+
} ${localization.value.common.items.toLowerCase()}`
|
|
71
71
|
})
|
|
72
72
|
|
|
73
73
|
const changePageSize = (pageSize: number): void => {
|
|
@@ -78,7 +78,7 @@ const showNotification = (message: UI_I_NotifyBodyMessage): void => {
|
|
|
78
78
|
}
|
|
79
79
|
const msgError = ref<UI_I_NotifyBodyMessage>({
|
|
80
80
|
status: 'error',
|
|
81
|
-
title: localization.value.error,
|
|
81
|
+
title: localization.value.common.error,
|
|
82
82
|
desc: '',
|
|
83
83
|
})
|
|
84
84
|
const handleErrors = (error: Ref<API_UI_I_Error>): void => {
|
package/components/common/layout/theHeader/userMenu/modals/preferences/lib/config/preferencesTabs.ts
CHANGED
|
@@ -25,7 +25,7 @@ export const preferencesTabs = (
|
|
|
25
25
|
testId: 'user-preferences-default-console',
|
|
26
26
|
}
|
|
27
27
|
const inventoryTab = {
|
|
28
|
-
text: `${localization.inventory}`,
|
|
28
|
+
text: `${localization.mainNavigation.inventory}`,
|
|
29
29
|
value: 'inventory-tab',
|
|
30
30
|
disabled: false,
|
|
31
31
|
testId: 'user-preferences-inventory',
|
|
@@ -16,7 +16,7 @@ const getItems = (
|
|
|
16
16
|
): [string, boolean, string, string][] => {
|
|
17
17
|
return [
|
|
18
18
|
[localization.time, true, '50%', hardwareHealthSystemLogTableKeys[0]],
|
|
19
|
-
[localization.events, true, '50%', hardwareHealthSystemLogTableKeys[1]],
|
|
19
|
+
[localization.mainNavigation.events, true, '50%', hardwareHealthSystemLogTableKeys[1]],
|
|
20
20
|
]
|
|
21
21
|
}
|
|
22
22
|
export const columnKeys = (
|
package/components/common/vm/actions/common/customizeHardware/virtualHardware/cpu/CpuModel.vue
CHANGED
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
@hide="isShowPassthroughHost = false"
|
|
63
63
|
>
|
|
64
64
|
<h3 class="passthrough-help-title">
|
|
65
|
-
{{ localization.help }}
|
|
65
|
+
{{ localization.mainNavigation.help }}
|
|
66
66
|
</h3>
|
|
67
67
|
|
|
68
68
|
<p class="passthrough-help-text">
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
@hide="isShowHostModel = false"
|
|
106
106
|
>
|
|
107
107
|
<h3 class="host-model-help-title">
|
|
108
|
-
{{ localization.help }}
|
|
108
|
+
{{ localization.mainNavigation.help }}
|
|
109
109
|
</h3>
|
|
110
110
|
|
|
111
111
|
<p class="host-model-help-text">
|
package/lib/utils/sendTask.ts
CHANGED
|
@@ -30,7 +30,7 @@ const showNotification = (message: UI_I_NotifyBodyMessage): void => {
|
|
|
30
30
|
}
|
|
31
31
|
const msgError: UI_I_NotifyBodyMessage = {
|
|
32
32
|
status: 'error',
|
|
33
|
-
title: localization.value.error,
|
|
33
|
+
title: localization.value.common.error,
|
|
34
34
|
desc: '',
|
|
35
35
|
}
|
|
36
36
|
const handleErrors = (error: Ref<API_UI_I_Error>): void => {
|