Add details to inv source field help text

This commit is contained in:
Jake McDermott
2020-08-27 11:42:55 -04:00
committed by Ryan Petrello
parent a9cdf07690
commit f04aff81c4
2 changed files with 4 additions and 4 deletions

View File

@@ -305,7 +305,7 @@ export default ['NotificationsList', 'i18n', function(NotificationsList, i18n){
type: 'text',
dataTitle: i18n._('Host Filter'),
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',
ngDisabled: '!(inventory_source_obj.summary_fields.user_capabilities.edit || canAdd)',
subForm: 'sourceSubForm'
@@ -325,7 +325,7 @@ export default ['NotificationsList', 'i18n', function(NotificationsList, i18n){
type: 'text',
dataTitle: i18n._('Enabled Value'),
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',
ngDisabled: '!(inventory_source_obj.summary_fields.user_capabilities.edit || canAdd)',
subForm: 'sourceSubForm'

View File

@@ -174,7 +174,7 @@ export const EnabledValueField = withI18n()(({ i18n }) => {
id="inventory-enabled-value"
label={i18n._(t`Enabled Value`)}
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"
type="text"
@@ -188,7 +188,7 @@ export const HostFilterField = withI18n()(({ i18n }) => {
id="host-filter"
label={i18n._(t`Host Filter`)}
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"
type="text"