Updating the translations used by gauges to reference locally defined keys

One of the keys was referencing a non-existant key "allocated" from the dashboard translations. Most likely defined in the fork.
This commit is contained in:
Cody Jackson 2024-09-24 14:54:25 -07:00 committed by Francesco Torchia
parent 81711ee900
commit 6bb4b8105b
No known key found for this signature in database
GPG Key ID: E6D011B7415D4393
5 changed files with 20 additions and 6 deletions

View File

@ -88,7 +88,7 @@ export default {
>
<template #title="{amountTemplateValues, formattedPercentage}">
<span>
{{ t('clusterIndexPage.hardwareResourceGauge.reserved') }}
{{ t('harvester.formatters.hardwareResourceGauge.reserved') }}
</span>
<span class="precent-data">
{{ t('node.detail.glance.consumptionGauge.amount', amountTemplateValues) }}
@ -108,7 +108,7 @@ export default {
>
<template #title="{amountTemplateValues, formattedPercentage}">
<span>
{{ t('clusterIndexPage.hardwareResourceGauge.used') }}
{{ t('harvester.formatters.hardwareResourceGauge.used') }}
</span>
<span class="precent-data">
{{ t('node.detail.glance.consumptionGauge.amount', amountTemplateValues) }}

View File

@ -105,7 +105,7 @@ export default {
>
<template #title="{amountTemplateValues, formattedPercentage}">
<span>
{{ t('clusterIndexPage.hardwareResourceGauge.reserved') }}
{{ t('harvester.formatters.hardwareResourceGauge.reserved') }}
</span>
<span class="precent-data">
{{ t('node.detail.glance.consumptionGauge.amount', amountTemplateValues) }}
@ -126,7 +126,7 @@ export default {
>
<template #title="{amountTemplateValues, formattedPercentage}">
<span>
{{ t('clusterIndexPage.hardwareResourceGauge.used') }}
{{ t('harvester.formatters.hardwareResourceGauge.used') }}
</span>
<span class="precent-data">
{{ t('node.detail.glance.consumptionGauge.amount', amountTemplateValues) }}

View File

@ -147,7 +147,7 @@ export default {
>
<template #title="{formattedPercentage}">
<span>
{{ t('clusterIndexPage.hardwareResourceGauge.allocated') }}
{{ t('harvester.formatters.hardwareResourceGauge.allocated') }}
</span>
<span class="precent-data">
{{ t('node.detail.glance.consumptionGauge.amount', allocatedAmountTemplateValues) }}

View File

@ -192,6 +192,20 @@ harvester:
powerOn: Power On
reboot: Reboot
forceStop: Force Stop
formatters:
hardwareResourceGauge:
allocated: Allocated
consumption: "{useful} of {total} {units} {suffix}"
cores: CPU
pods: Pods
ram: Memory
used: Used
reserved: Reserved
units:
cores: |-
{count, plural,
=1 {core}
other {cores}}
tableHeaders:
size: Size
virtualSize: Virtual Size

View File

@ -660,7 +660,7 @@ export default {
:name="t('harvester.dashboard.hardwareResourceGauge.storage')"
:used="storageUsed"
:reserved="storageAllocated"
:reserved-title="t('clusterIndexPage.hardwareResourceGauge.allocated')"
:reserved-title="t('harvester.formatters.hardwareResourceGauge.allocated')"
/>
</div>
</template>