From bc6648b518e6927bc7f26020e13a6d9c68f9d6e2 Mon Sep 17 00:00:00 2001 From: Jake McDermott Date: Wed, 9 Oct 2019 10:54:32 -0400 Subject: [PATCH] Use consistent wording for JT options --- .../src/templates/job_templates/job-template.form.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/awx/ui/client/src/templates/job_templates/job-template.form.js b/awx/ui/client/src/templates/job_templates/job-template.form.js index 07c473a996..6f1f8cf025 100644 --- a/awx/ui/client/src/templates/job_templates/job-template.form.js +++ b/awx/ui/client/src/templates/job_templates/job-template.form.js @@ -328,14 +328,14 @@ function(NotificationsList, i18n) { ngDisabled: '!(job_template_obj.summary_fields.user_capabilities.edit || canAddJobTemplate)' }, { name: 'allow_callbacks', - label: i18n._('Allow Provisioning Callbacks'), + label: i18n._('Enable Provisioning Callbacks'), type: 'checkbox', ngChange: "toggleCallback('host_config_key')", column: 2, awPopOver: "

" + i18n._("Enables creation of a provisioning callback URL. Using the URL a host can contact {{BRAND_NAME}} and request a configuration update " + "using this job template.") + "

", dataPlacement: 'right', - dataTitle: i18n._('Allow Provisioning Callbacks'), + dataTitle: i18n._('Enable Provisioning Callbacks'), dataContainer: "body", ngDisabled: '!(job_template_obj.summary_fields.user_capabilities.edit || canAddJobTemplate)' }, { @@ -360,12 +360,12 @@ function(NotificationsList, i18n) { ngDisabled: '!(job_template_obj.summary_fields.user_capabilities.edit || canAddJobTemplate)' }, { name: 'use_fact_cache', - label: i18n._('Use Fact Cache'), + label: i18n._('Enable Fact Cache'), type: 'checkbox', column: 2, awPopOver: "

" + i18n._("If enabled, use cached facts if available and store discovered facts in the cache.") + "

", dataPlacement: 'right', - dataTitle: i18n._('Use Fact Cache'), + dataTitle: i18n._('Enable Fact Cache'), dataContainer: "body", ngDisabled: '!(job_template_obj.summary_fields.user_capabilities.edit || canAddJobTemplate)' }]