mirror of
https://github.com/ansible/awx.git
synced 2026-01-11 10:00:01 -03:30
Mark missing words for translation
Add missing words for translation. `...more`, and `Show Less` were already marked for translation in a previous PR, since this code is shared as part of the `ChipGroup` code. See: https://github.com/ansible/awx/issues/6857
This commit is contained in:
parent
a1700404cd
commit
d149e23170
@ -179,7 +179,7 @@ function AdHocDetailsStep({ i18n, verbosityOptions, moduleOptions }) {
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{i18n._(`here`)}
|
||||
{i18n._(t`here`)}
|
||||
</a>
|
||||
</span>
|
||||
}
|
||||
|
||||
@ -135,7 +135,7 @@ function PromptJobTemplateDetail({ i18n, resource }) {
|
||||
<Detail label={i18n._(t`Verbosity`)} value={VERBOSITY[verbosity]} />
|
||||
<Detail
|
||||
label={i18n._(t`Show Changes`)}
|
||||
value={diff_mode ? 'On' : 'Off'}
|
||||
value={diff_mode ? i18n._(t`On`) : i18n._(t`Off`)}
|
||||
/>
|
||||
<Detail label={i18n._(t` Job Slicing`)} value={job_slice_count} />
|
||||
<Detail label={i18n._(t`Host Config Key`)} value={host_config_key} />
|
||||
|
||||
@ -225,7 +225,7 @@ function ScheduleDetail({ schedule, i18n }) {
|
||||
{ask_diff_mode_on_launch && typeof diff_mode === 'boolean' && (
|
||||
<Detail
|
||||
label={i18n._(t`Show Changes`)}
|
||||
value={diff_mode ? 'On' : 'Off'}
|
||||
value={diff_mode ? i18n._(t`On`) : i18n._(t`Off`)}
|
||||
/>
|
||||
)}
|
||||
{ask_credential_on_launch && (
|
||||
|
||||
@ -231,9 +231,9 @@ function JobTemplateDetail({ i18n, template }) {
|
||||
/>
|
||||
<Detail
|
||||
label={i18n._(t`Show Changes`)}
|
||||
value={diff_mode ? 'On' : 'Off'}
|
||||
value={diff_mode ? i18n._(t`On`) : i18n._(t`Off`)}
|
||||
/>
|
||||
<Detail label={i18n._(t` Job Slicing`)} value={job_slice_count} />
|
||||
<Detail label={i18n._(t`Job Slicing`)} value={job_slice_count} />
|
||||
{host_config_key && (
|
||||
<React.Fragment>
|
||||
<Detail
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user