Add second/seconds l10n

Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
This commit is contained in:
Francesco Torchia 2025-02-20 11:22:02 +01:00
parent 16a6389aba
commit b884de441f
No known key found for this signature in database
GPG Key ID: E6D011B7415D4393
2 changed files with 3 additions and 3 deletions

View File

@ -797,7 +797,7 @@ export default {
v-model:value="pollingInterval"
data-testid="GitRepo-pollingInterval-input"
min="1"
:suffix="pollingInterval == 1 ? 'Second' : 'Seconds'"
:suffix="t('suffix.seconds', { count: pollingInterval })"
:label="t('fleet.gitRepo.polling.pollingInterval.label')"
:mode="mode"
tooltip-key="fleet.gitRepo.polling.pollingInterval.tooltip"

View File

@ -254,7 +254,7 @@ export default {
>
<UnitInput
v-model:value="terminationGracePeriodSeconds"
:suffix="terminationGracePeriodSeconds == 1 ? 'Second' : 'Seconds'"
:suffix="t('suffix.seconds', { count: terminationGracePeriodSeconds })"
:label="t('workload.upgrading.activeDeadlineSeconds.label')"
:mode="mode"
@input="update"
@ -316,7 +316,7 @@ export default {
>
<UnitInput
v-model:value="terminationGracePeriodSeconds"
:suffix="terminationGracePeriodSeconds == 1 ? 'Second' : 'Seconds'"
:suffix="t('suffix.seconds', { count: terminationGracePeriodSeconds })"
:label="t('workload.upgrading.activeDeadlineSeconds.label')"
:mode="mode"
>