mirror of https://github.com/rancher/dashboard.git
Add second/seconds l10n
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
This commit is contained in:
parent
16a6389aba
commit
b884de441f
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
>
|
||||
|
|
|
|||
Loading…
Reference in New Issue