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"
|
v-model:value="pollingInterval"
|
||||||
data-testid="GitRepo-pollingInterval-input"
|
data-testid="GitRepo-pollingInterval-input"
|
||||||
min="1"
|
min="1"
|
||||||
:suffix="pollingInterval == 1 ? 'Second' : 'Seconds'"
|
:suffix="t('suffix.seconds', { count: pollingInterval })"
|
||||||
:label="t('fleet.gitRepo.polling.pollingInterval.label')"
|
:label="t('fleet.gitRepo.polling.pollingInterval.label')"
|
||||||
:mode="mode"
|
:mode="mode"
|
||||||
tooltip-key="fleet.gitRepo.polling.pollingInterval.tooltip"
|
tooltip-key="fleet.gitRepo.polling.pollingInterval.tooltip"
|
||||||
|
|
|
||||||
|
|
@ -254,7 +254,7 @@ export default {
|
||||||
>
|
>
|
||||||
<UnitInput
|
<UnitInput
|
||||||
v-model:value="terminationGracePeriodSeconds"
|
v-model:value="terminationGracePeriodSeconds"
|
||||||
:suffix="terminationGracePeriodSeconds == 1 ? 'Second' : 'Seconds'"
|
:suffix="t('suffix.seconds', { count: terminationGracePeriodSeconds })"
|
||||||
:label="t('workload.upgrading.activeDeadlineSeconds.label')"
|
:label="t('workload.upgrading.activeDeadlineSeconds.label')"
|
||||||
:mode="mode"
|
:mode="mode"
|
||||||
@input="update"
|
@input="update"
|
||||||
|
|
@ -316,7 +316,7 @@ export default {
|
||||||
>
|
>
|
||||||
<UnitInput
|
<UnitInput
|
||||||
v-model:value="terminationGracePeriodSeconds"
|
v-model:value="terminationGracePeriodSeconds"
|
||||||
:suffix="terminationGracePeriodSeconds == 1 ? 'Second' : 'Seconds'"
|
:suffix="t('suffix.seconds', { count: terminationGracePeriodSeconds })"
|
||||||
:label="t('workload.upgrading.activeDeadlineSeconds.label')"
|
:label="t('workload.upgrading.activeDeadlineSeconds.label')"
|
||||||
:mode="mode"
|
:mode="mode"
|
||||||
>
|
>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue