mirror of
https://github.com/ansible/awx.git
synced 2026-05-19 14:57:39 -02:30
Add details to inv source field help text
This commit is contained in:
committed by
Ryan Petrello
parent
a9cdf07690
commit
f04aff81c4
@@ -305,7 +305,7 @@ export default ['NotificationsList', 'i18n', function(NotificationsList, i18n){
|
|||||||
type: 'text',
|
type: 'text',
|
||||||
dataTitle: i18n._('Host Filter'),
|
dataTitle: i18n._('Host Filter'),
|
||||||
dataPlacement: 'right',
|
dataPlacement: 'right',
|
||||||
awPopOver: "<p>" + i18n._("Regular expression where only matching hosts will be imported.") + "</p>",
|
awPopOver: "<p>" + i18n._("Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied.") + "</p>",
|
||||||
dataContainer: 'body',
|
dataContainer: 'body',
|
||||||
ngDisabled: '!(inventory_source_obj.summary_fields.user_capabilities.edit || canAdd)',
|
ngDisabled: '!(inventory_source_obj.summary_fields.user_capabilities.edit || canAdd)',
|
||||||
subForm: 'sourceSubForm'
|
subForm: 'sourceSubForm'
|
||||||
@@ -325,7 +325,7 @@ export default ['NotificationsList', 'i18n', function(NotificationsList, i18n){
|
|||||||
type: 'text',
|
type: 'text',
|
||||||
dataTitle: i18n._('Enabled Value'),
|
dataTitle: i18n._('Enabled Value'),
|
||||||
dataPlacement: 'right',
|
dataPlacement: 'right',
|
||||||
awPopOver: "<p>" + i18n._("If the enabled variable matches this value, the host will be enabled on import.") + "</p>",
|
awPopOver: "<p>" + i18n._("This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import.") + "</p>",
|
||||||
dataContainer: 'body',
|
dataContainer: 'body',
|
||||||
ngDisabled: '!(inventory_source_obj.summary_fields.user_capabilities.edit || canAdd)',
|
ngDisabled: '!(inventory_source_obj.summary_fields.user_capabilities.edit || canAdd)',
|
||||||
subForm: 'sourceSubForm'
|
subForm: 'sourceSubForm'
|
||||||
|
|||||||
@@ -174,7 +174,7 @@ export const EnabledValueField = withI18n()(({ i18n }) => {
|
|||||||
id="inventory-enabled-value"
|
id="inventory-enabled-value"
|
||||||
label={i18n._(t`Enabled Value`)}
|
label={i18n._(t`Enabled Value`)}
|
||||||
tooltip={i18n._(
|
tooltip={i18n._(
|
||||||
t`If the enabled variable matches this value, the host will be enabled on import.`
|
t`This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import.`
|
||||||
)}
|
)}
|
||||||
name="enabled_value"
|
name="enabled_value"
|
||||||
type="text"
|
type="text"
|
||||||
@@ -188,7 +188,7 @@ export const HostFilterField = withI18n()(({ i18n }) => {
|
|||||||
id="host-filter"
|
id="host-filter"
|
||||||
label={i18n._(t`Host Filter`)}
|
label={i18n._(t`Host Filter`)}
|
||||||
tooltip={i18n._(
|
tooltip={i18n._(
|
||||||
t`Regular expression where only matching hosts will be imported.`
|
t`Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied.`
|
||||||
)}
|
)}
|
||||||
name="host_filter"
|
name="host_filter"
|
||||||
type="text"
|
type="text"
|
||||||
|
|||||||
Reference in New Issue
Block a user