diff --git a/awx/ui_next/src/components/NotificationList/__snapshots__/NotificationListItem.test.jsx.snap b/awx/ui_next/src/components/NotificationList/__snapshots__/NotificationListItem.test.jsx.snap
index 182a83e488..6a8da3eff9 100644
--- a/awx/ui_next/src/components/NotificationList/__snapshots__/NotificationListItem.test.jsx.snap
+++ b/awx/ui_next/src/components/NotificationList/__snapshots__/NotificationListItem.test.jsx.snap
@@ -640,6 +640,19 @@ callback URL. Using the URL a host can contact BRAND_NAME
and request a configuration update using this job
template.",
"Enables creation of a provisioning
+callback URL. Using the URL a host can contact {BrandName}
+and request a configuration update using this job
+template.": Array [
+ "Enables creation of a provisioning
+callback URL. Using the URL a host can contact ",
+ Array [
+ "BrandName",
+ ],
+ "
+and request a configuration update using this job
+template.",
+ ],
+ "Enables creation of a provisioning
callback URL. Using the URL a host can contact {brandName}
and request a configuration update using this job
template": Array [
@@ -1161,6 +1174,7 @@ reset by the inventory sync process.",
"Last job": "Last job",
"Last job run": "Last job run",
"Last modified": "Last modified",
+ "Last used": "Last used",
"Launch": "Launch",
"Launch Management Job": "Launch Management Job",
"Launch Template": "Launch Template",
@@ -1302,11 +1316,11 @@ disassociating if the host is also a member of that group’s
children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.": "Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
@@ -2709,23 +2723,13 @@ message. For more information, refer to the",
},
],
],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other { Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
+ "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}": Array [
Array [
"0",
"plural",
Object {
"one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": " Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": "Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
+ "other": "These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?",
},
],
],
@@ -2789,6 +2793,16 @@ message. For more information, refer to the",
},
],
],
+ "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}": Array [
+ Array [
+ "0",
+ "plural",
+ Object {
+ "one": "You cannot cancel the following job because it is not running:",
+ "other": "You cannot cancel the following jobs because they are not running:",
+ },
+ ],
+ ],
"{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}": Array [
Array [
"0",
diff --git a/awx/ui_next/src/components/PaginatedDataList/ToolbarDeleteButton.jsx b/awx/ui_next/src/components/PaginatedDataList/ToolbarDeleteButton.jsx
index 43e53895ae..f7879da373 100644
--- a/awx/ui_next/src/components/PaginatedDataList/ToolbarDeleteButton.jsx
+++ b/awx/ui_next/src/components/PaginatedDataList/ToolbarDeleteButton.jsx
@@ -17,7 +17,6 @@ import {
DropdownItem,
Tooltip,
} from '@patternfly/react-core';
-import { withI18n } from '@lingui/react';
import { t } from '@lingui/macro';
import AlertModal from '../AlertModal';
import { KebabifiedContext } from '../../contexts/Kebabified';
@@ -95,7 +94,6 @@ function ToolbarDeleteButton({
deleteDetailsRequests,
warningMessage,
deleteMessage,
- i18n,
cannotDelete,
}) {
const { isKebabified, onKebabModalChange } = useContext(KebabifiedContext);
@@ -151,20 +149,18 @@ function ToolbarDeleteButton({
{`: ${itemsUnableToDelete}`}
>
) : (
- i18n._(
- t`You do not have permission to delete ${pluralizedItemName}: ${itemsUnableToDelete}`
- )
+ t`You do not have permission to delete ${pluralizedItemName}: ${itemsUnableToDelete}`
)}
);
}
if (itemsToDelete.length) {
- return i18n._(t`Delete`);
+ return t`Delete`;
}
- return i18n._(t`Select a row to delete`);
+ return t`Select a row to delete`;
};
- const modalTitle = i18n._(t`Delete ${pluralizedItemName}?`);
+ const modalTitle = t`Delete ${pluralizedItemName}?`;
const isDisabled =
itemsToDelete.length === 0 || itemsToDelete.some(cannotDelete);
@@ -206,7 +202,7 @@ function ToolbarDeleteButton({
return (
{
toggleModal(false);
setDeleteMessageError();
@@ -235,7 +231,7 @@ function ToolbarDeleteButton({
toggleModal(true);
}}
>
- {i18n._(t`Delete`)}
+ {t`Delete`}
) : (
@@ -245,11 +241,11 @@ function ToolbarDeleteButton({
variant="secondary"
isLoading={isLoading}
spinnerAriaValueText={isLoading ? 'Loading' : undefined}
- aria-label={i18n._(t`Delete`)}
+ aria-label={t`Delete`}
onClick={() => toggleModal(true)}
isDisabled={isDisabled}
>
- {i18n._(t`Delete`)}
+ {t`Delete`}
@@ -266,25 +262,25 @@ function ToolbarDeleteButton({
ouiaId="delete-modal-confirm"
key="delete"
variant="danger"
- aria-label={i18n._(t`confirm delete`)}
+ aria-label={t`confirm delete`}
isDisabled={Boolean(
deleteDetails && itemsToDelete[0]?.type === 'credential_type'
)}
onClick={handleDelete}
>
- {i18n._(t`Delete`)}
+ {t`Delete`}
,
,
]}
>
-
{i18n._(t`This action will delete the following:`)}
+
{t`This action will delete the following:`}
{itemsToDelete.map(item => (
{item.name || item.username || item.image}
@@ -318,4 +314,4 @@ ToolbarDeleteButton.defaultProps = {
cannotDelete: item => !item.summary_fields.user_capabilities.delete,
};
-export default withI18n()(ToolbarDeleteButton);
+export default ToolbarDeleteButton;
diff --git a/awx/ui_next/src/components/PaginatedDataList/__snapshots__/ToolbarDeleteButton.test.jsx.snap b/awx/ui_next/src/components/PaginatedDataList/__snapshots__/ToolbarDeleteButton.test.jsx.snap
index a6d89025e7..aa67cd1bd6 100644
--- a/awx/ui_next/src/components/PaginatedDataList/__snapshots__/ToolbarDeleteButton.test.jsx.snap
+++ b/awx/ui_next/src/components/PaginatedDataList/__snapshots__/ToolbarDeleteButton.test.jsx.snap
@@ -3,3051 +3,6 @@
exports[` should render button 1`] = `
add": "> add",
- "> edit": "> edit",
- "A refspec to fetch (passed to the Ansible git
-module). This parameter allows access to references via
-the branch field not otherwise available.": "A refspec to fetch (passed to the Ansible git
-module). This parameter allows access to references via
-the branch field not otherwise available.",
- "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available.": "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available.",
- "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com0>. For more information, see the <1>User Guide1>.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com0>. For more information, see the <1>User Guide1>.",
- "ALL": "ALL",
- "API Service/Integration Key": "API Service/Integration Key",
- "API Token": "API Token",
- "API service/integration key": "API service/integration key",
- "AWX Logo": "AWX Logo",
- "About": "About",
- "AboutModal Logo": "AboutModal Logo",
- "Access": "Access",
- "Access Token Expiration": "Access Token Expiration",
- "Account SID": "Account SID",
- "Account token": "Account token",
- "Action": "Action",
- "Actions": "Actions",
- "Activity": "Activity",
- "Activity Stream": "Activity Stream",
- "Activity Stream settings": "Activity Stream settings",
- "Activity Stream type selector": "Activity Stream type selector",
- "Actor": "Actor",
- "Add": "Add",
- "Add Link": "Add Link",
- "Add Node": "Add Node",
- "Add Question": "Add Question",
- "Add Roles": "Add Roles",
- "Add Team Roles": "Add Team Roles",
- "Add User Roles": "Add User Roles",
- "Add a new node": "Add a new node",
- "Add a new node between these two nodes": "Add a new node between these two nodes",
- "Add container group": "Add container group",
- "Add existing group": "Add existing group",
- "Add existing host": "Add existing host",
- "Add instance group": "Add instance group",
- "Add inventory": "Add inventory",
- "Add job template": "Add job template",
- "Add new group": "Add new group",
- "Add new host": "Add new host",
- "Add resource type": "Add resource type",
- "Add smart inventory": "Add smart inventory",
- "Add team permissions": "Add team permissions",
- "Add user permissions": "Add user permissions",
- "Add workflow template": "Add workflow template",
- "Adminisration": "Adminisration",
- "Administration": "Administration",
- "Admins": "Admins",
- "Advanced": "Advanced",
- "Advanced search documentation": "Advanced search documentation",
- "Advanced search value input": "Advanced search value input",
- "After every project update where the SCM revision
-changes, refresh the inventory from the selected source
-before executing job tasks. This is intended for static content,
-like the Ansible inventory .ini file format.": "After every project update where the SCM revision
-changes, refresh the inventory from the selected source
-before executing job tasks. This is intended for static content,
-like the Ansible inventory .ini file format.",
- "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format.": "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format.",
- "After number of occurrences": "After number of occurrences",
- "Agree to end user license agreement": "Agree to end user license agreement",
- "Agree to the end user license agreement and click submit.": "Agree to the end user license agreement and click submit.",
- "Alert modal": "Alert modal",
- "All": "All",
- "All job types": "All job types",
- "Allow Branch Override": "Allow Branch Override",
- "Allow Provisioning Callbacks": "Allow Provisioning Callbacks",
- "Allow changing the Source Control branch or revision in a job
-template that uses this project.": "Allow changing the Source Control branch or revision in a job
-template that uses this project.",
- "Allow changing the Source Control branch or revision in a job template that uses this project.": "Allow changing the Source Control branch or revision in a job template that uses this project.",
- "Allowed URIs list, space separated": "Allowed URIs list, space separated",
- "Always": "Always",
- "Amazon EC2": "Amazon EC2",
- "An error occurred": "An error occurred",
- "An inventory must be selected": "An inventory must be selected",
- "Ansible Environment": "Ansible Environment",
- "Ansible Tower": "Ansible Tower",
- "Ansible Tower Documentation.": "Ansible Tower Documentation.",
- "Ansible Version": "Ansible Version",
- "Ansible environment": "Ansible environment",
- "Answer type": "Answer type",
- "Answer variable name": "Answer variable name",
- "Any": "Any",
- "Application": "Application",
- "Application Name": "Application Name",
- "Application access token": "Application access token",
- "Application information": "Application information",
- "Application name": "Application name",
- "Application not found.": "Application not found.",
- "Applications": "Applications",
- "Applications & Tokens": "Applications & Tokens",
- "Apply roles": "Apply roles",
- "Approval": "Approval",
- "Approve": "Approve",
- "Approved": "Approved",
- "Approved by {0} - {1}": Array [
- "Approved by ",
- Array [
- "0",
- ],
- " - ",
- Array [
- "1",
- ],
- ],
- "April": "April",
- "Are you sure you want to delete the {0} below?": Array [
- "Are you sure you want to delete the ",
- Array [
- "0",
- ],
- " below?",
- ],
- "Are you sure you want to delete:": "Are you sure you want to delete:",
- "Are you sure you want to exit the Workflow Creator without saving your changes?": "Are you sure you want to exit the Workflow Creator without saving your changes?",
- "Are you sure you want to remove all the nodes in this workflow?": "Are you sure you want to remove all the nodes in this workflow?",
- "Are you sure you want to remove the node below:": "Are you sure you want to remove the node below:",
- "Are you sure you want to remove this link?": "Are you sure you want to remove this link?",
- "Are you sure you want to remove this node?": "Are you sure you want to remove this node?",
- "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team.": Array [
- "Are you sure you want to remove ",
- Array [
- "0",
- ],
- " access from ",
- Array [
- "1",
- ],
- "? Doing so affects all members of the team.",
- ],
- "Are you sure you want to remove {0} access from {username}?": Array [
- "Are you sure you want to remove ",
- Array [
- "0",
- ],
- " access from ",
- Array [
- "username",
- ],
- "?",
- ],
- "Are you sure you want to submit the request to cancel this job?": "Are you sure you want to submit the request to cancel this job?",
- "Arguments": "Arguments",
- "Artifacts": "Artifacts",
- "Associate": "Associate",
- "Associate role error": "Associate role error",
- "Association modal": "Association modal",
- "At least one value must be selected for this field.": "At least one value must be selected for this field.",
- "August": "August",
- "Authentication": "Authentication",
- "Authentication Settings": "Authentication Settings",
- "Authorization Code Expiration": "Authorization Code Expiration",
- "Authorization grant type": "Authorization grant type",
- "Auto": "Auto",
- "Azure AD": "Azure AD",
- "Azure AD settings": "Azure AD settings",
- "Back": "Back",
- "Back to Credentials": "Back to Credentials",
- "Back to Dashboard.": "Back to Dashboard.",
- "Back to Groups": "Back to Groups",
- "Back to Hosts": "Back to Hosts",
- "Back to Inventories": "Back to Inventories",
- "Back to Jobs": "Back to Jobs",
- "Back to Notifications": "Back to Notifications",
- "Back to Organizations": "Back to Organizations",
- "Back to Projects": "Back to Projects",
- "Back to Schedules": "Back to Schedules",
- "Back to Settings": "Back to Settings",
- "Back to Sources": "Back to Sources",
- "Back to Teams": "Back to Teams",
- "Back to Templates": "Back to Templates",
- "Back to Tokens": "Back to Tokens",
- "Back to Users": "Back to Users",
- "Back to Workflow Approvals": "Back to Workflow Approvals",
- "Back to applications": "Back to applications",
- "Back to credential types": "Back to credential types",
- "Back to execution environments": "Back to execution environments",
- "Back to instance groups": "Back to instance groups",
- "Back to management jobs": "Back to management jobs",
- "Base path used for locating playbooks. Directories
-found inside this path will be listed in the playbook directory drop-down.
-Together the base path and selected playbook directory provide the full
-path used to locate playbooks.": "Base path used for locating playbooks. Directories
-found inside this path will be listed in the playbook directory drop-down.
-Together the base path and selected playbook directory provide the full
-path used to locate playbooks.",
- "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks.": "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks.",
- "Basic auth password": "Basic auth password",
- "Branch to checkout. In addition to branches,
-you can input tags, commit hashes, and arbitrary refs. Some
-commit hashes and refs may not be available unless you also
-provide a custom refspec.": "Branch to checkout. In addition to branches,
-you can input tags, commit hashes, and arbitrary refs. Some
-commit hashes and refs may not be available unless you also
-provide a custom refspec.",
- "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec.": "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec.",
- "Brand Image": "Brand Image",
- "Browse": "Browse",
- "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature.": "By default, Tower collects and transmits analytics data on Tower usage to Red Hat. There are two categories of data collected by Tower. For more information, see <0>this Tower documentation page0>. Uncheck the following boxes to disable this feature.",
- "Cache Timeout": "Cache Timeout",
- "Cache timeout": "Cache timeout",
- "Cache timeout (seconds)": "Cache timeout (seconds)",
- "Cancel": "Cancel",
- "Cancel Job": "Cancel Job",
- "Cancel job": "Cancel job",
- "Cancel link changes": "Cancel link changes",
- "Cancel link removal": "Cancel link removal",
- "Cancel lookup": "Cancel lookup",
- "Cancel node removal": "Cancel node removal",
- "Cancel revert": "Cancel revert",
- "Cancel selected job": "Cancel selected job",
- "Cancel selected jobs": "Cancel selected jobs",
- "Cancel subscription edit": "Cancel subscription edit",
- "Cancel sync": "Cancel sync",
- "Cancel sync process": "Cancel sync process",
- "Cancel sync source": "Cancel sync source",
- "Canceled": "Canceled",
- "Cannot enable log aggregator without providing
-logging aggregator host and logging aggregator type.": "Cannot enable log aggregator without providing
-logging aggregator host and logging aggregator type.",
- "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type.": "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type.",
- "Cannot find organization with ID": "Cannot find organization with ID",
- "Cannot find resource.": "Cannot find resource.",
- "Cannot find route {0}.": Array [
- "Cannot find route ",
- Array [
- "0",
- ],
- ".",
- ],
- "Capacity": "Capacity",
- "Case-insensitive version of contains": "Case-insensitive version of contains",
- "Case-insensitive version of endswith.": "Case-insensitive version of endswith.",
- "Case-insensitive version of exact.": "Case-insensitive version of exact.",
- "Case-insensitive version of regex.": "Case-insensitive version of regex.",
- "Case-insensitive version of startswith.": "Case-insensitive version of startswith.",
- "Change PROJECTS_ROOT when deploying
-{brandName} to change this location.": Array [
- "Change PROJECTS_ROOT when deploying
-",
- Array [
- "brandName",
- ],
- " to change this location.",
- ],
- "Change PROJECTS_ROOT when deploying {brandName} to change this location.": Array [
- "Change PROJECTS_ROOT when deploying ",
- Array [
- "brandName",
- ],
- " to change this location.",
- ],
- "Changed": "Changed",
- "Changes": "Changes",
- "Channel": "Channel",
- "Check": "Check",
- "Check whether the given field or related object is null; expects a boolean value.": "Check whether the given field or related object is null; expects a boolean value.",
- "Check whether the given field's value is present in the list provided; expects a comma-separated list of items.": "Check whether the given field's value is present in the list provided; expects a comma-separated list of items.",
- "Choose a .json file": "Choose a .json file",
- "Choose a Notification Type": "Choose a Notification Type",
- "Choose a Playbook Directory": "Choose a Playbook Directory",
- "Choose a Source Control Type": "Choose a Source Control Type",
- "Choose a Webhook Service": "Choose a Webhook Service",
- "Choose a job type": "Choose a job type",
- "Choose a module": "Choose a module",
- "Choose a source": "Choose a source",
- "Choose an HTTP method": "Choose an HTTP method",
- "Choose an answer type or format you want as the prompt for the user.
-Refer to the Ansible Tower Documentation for more additional
-information about each option.": "Choose an answer type or format you want as the prompt for the user.
-Refer to the Ansible Tower Documentation for more additional
-information about each option.",
- "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option.": "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option.",
- "Choose an email option": "Choose an email option",
- "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources.": "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources.",
- "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step.": "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step.",
- "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step.": "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step.",
- "Clean": "Clean",
- "Clear all filters": "Clear all filters",
- "Clear subscription": "Clear subscription",
- "Clear subscription selection": "Clear subscription selection",
- "Click an available node to create a new link. Click outside the graph to cancel.": "Click an available node to create a new link. Click outside the graph to cancel.",
- "Click the Edit button below to reconfigure the node.": "Click the Edit button below to reconfigure the node.",
- "Click this button to verify connection to the secret management system using the selected credential and specified inputs.": "Click this button to verify connection to the secret management system using the selected credential and specified inputs.",
- "Click to create a new link to this node.": "Click to create a new link to this node.",
- "Click to view job details": "Click to view job details",
- "Client ID": "Client ID",
- "Client Identifier": "Client Identifier",
- "Client identifier": "Client identifier",
- "Client secret": "Client secret",
- "Client type": "Client type",
- "Close": "Close",
- "Close subscription modal": "Close subscription modal",
- "Cloud": "Cloud",
- "Collapse": "Collapse",
- "Command": "Command",
- "Completed Jobs": "Completed Jobs",
- "Completed jobs": "Completed jobs",
- "Compliant": "Compliant",
- "Concurrent Jobs": "Concurrent Jobs",
- "Confirm Delete": "Confirm Delete",
- "Confirm Password": "Confirm Password",
- "Confirm delete": "Confirm delete",
- "Confirm disassociate": "Confirm disassociate",
- "Confirm link removal": "Confirm link removal",
- "Confirm node removal": "Confirm node removal",
- "Confirm removal of all nodes": "Confirm removal of all nodes",
- "Confirm revert all": "Confirm revert all",
- "Confirm selection": "Confirm selection",
- "Container Group": "Container Group",
- "Container group": "Container group",
- "Container group not found.": "Container group not found.",
- "Content Loading": "Content Loading",
- "Continue": "Continue",
- "Control the level of output Ansible
-will produce for inventory source update jobs.": "Control the level of output Ansible
-will produce for inventory source update jobs.",
- "Control the level of output Ansible will produce for inventory source update jobs.": "Control the level of output Ansible will produce for inventory source update jobs.",
- "Control the level of output ansible
-will produce as the playbook executes.": "Control the level of output ansible
-will produce as the playbook executes.",
- "Control the level of output ansible will
-produce as the playbook executes.": "Control the level of output ansible will
-produce as the playbook executes.",
- "Control the level of output ansible will produce as the playbook executes.": "Control the level of output ansible will produce as the playbook executes.",
- "Controller": "Controller",
- "Convergence": "Convergence",
- "Convergence select": "Convergence select",
- "Copy": "Copy",
- "Copy Credential": "Copy Credential",
- "Copy Error": "Copy Error",
- "Copy Execution Environment": "Copy Execution Environment",
- "Copy Inventory": "Copy Inventory",
- "Copy Notification Template": "Copy Notification Template",
- "Copy Project": "Copy Project",
- "Copy Template": "Copy Template",
- "Copy full revision to clipboard.": "Copy full revision to clipboard.",
- "Copyright": "Copyright",
- "Copyright 2018 Red Hat, Inc.": "Copyright 2018 Red Hat, Inc.",
- "Copyright 2019 Red Hat, Inc.": "Copyright 2019 Red Hat, Inc.",
- "Create": "Create",
- "Create Execution environments": "Create Execution environments",
- "Create New Application": "Create New Application",
- "Create New Credential": "Create New Credential",
- "Create New Host": "Create New Host",
- "Create New Job Template": "Create New Job Template",
- "Create New Notification Template": "Create New Notification Template",
- "Create New Organization": "Create New Organization",
- "Create New Project": "Create New Project",
- "Create New Schedule": "Create New Schedule",
- "Create New Team": "Create New Team",
- "Create New User": "Create New User",
- "Create New Workflow Template": "Create New Workflow Template",
- "Create a new Smart Inventory with the applied filter": "Create a new Smart Inventory with the applied filter",
- "Create container group": "Create container group",
- "Create instance group": "Create instance group",
- "Create new container group": "Create new container group",
- "Create new credential Type": "Create new credential Type",
- "Create new credential type": "Create new credential type",
- "Create new execution environment": "Create new execution environment",
- "Create new group": "Create new group",
- "Create new host": "Create new host",
- "Create new instance group": "Create new instance group",
- "Create new inventory": "Create new inventory",
- "Create new smart inventory": "Create new smart inventory",
- "Create new source": "Create new source",
- "Create user token": "Create user token",
- "Created": "Created",
- "Created By (Username)": "Created By (Username)",
- "Created by (username)": "Created by (username)",
- "Credential": "Credential",
- "Credential Input Sources": "Credential Input Sources",
- "Credential Name": "Credential Name",
- "Credential Type": "Credential Type",
- "Credential Types": "Credential Types",
- "Credential not found.": "Credential not found.",
- "Credential passwords": "Credential passwords",
- "Credential to authenticate with Kubernetes or OpenShift. Must be of type \\"Kubernetes/OpenShift API Bearer Token”.": "Credential to authenticate with Kubernetes or OpenShift. Must be of type \\"Kubernetes/OpenShift API Bearer Token”.",
- "Credential to authenticate with Kubernetes or OpenShift. Must be of type \\"Kubernetes/OpenShift API Bearer Token\\". If left blank, the underlying Pod's service account will be used.": "Credential to authenticate with Kubernetes or OpenShift. Must be of type \\"Kubernetes/OpenShift API Bearer Token\\". If left blank, the underlying Pod's service account will be used.",
- "Credential to authenticate with a protected container registry.": "Credential to authenticate with a protected container registry.",
- "Credential type not found.": "Credential type not found.",
- "Credentials": "Credentials",
- "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: {0}": Array [
- "Credentials that require passwords on launch are not permitted. Please remove or replace the following credentials with a credential of the same type in order to proceed: ",
- Array [
- "0",
- ],
- ],
- "Current page": "Current page",
- "Custom pod spec": "Custom pod spec",
- "Custom virtual environment {0} must be replaced by an execution environment.": Array [
- "Custom virtual environment ",
- Array [
- "0",
- ],
- " must be replaced by an execution environment.",
- ],
- "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment.": Array [
- "Custom virtual environment ",
- Array [
- "virtualEnvironment",
- ],
- " must be replaced by an execution environment.",
- ],
- "Customize messages…": "Customize messages…",
- "Customize pod specification": "Customize pod specification",
- "DELETED": "DELETED",
- "Dashboard": "Dashboard",
- "Dashboard (all activity)": "Dashboard (all activity)",
- "Data retention period": "Data retention period",
- "Day": "Day",
- "Days of Data to Keep": "Days of Data to Keep",
- "Days remaining": "Days remaining",
- "Debug": "Debug",
- "December": "December",
- "Default": "Default",
- "Default Execution Environment": "Default Execution Environment",
- "Default answer": "Default answer",
- "Default choice must be answered from the choices listed.": "Default choice must be answered from the choices listed.",
- "Define system-level features and functions": "Define system-level features and functions",
- "Delete": "Delete",
- "Delete All Groups and Hosts": "Delete All Groups and Hosts",
- "Delete Credential": "Delete Credential",
- "Delete Execution Environment": "Delete Execution Environment",
- "Delete Group?": "Delete Group?",
- "Delete Groups?": "Delete Groups?",
- "Delete Host": "Delete Host",
- "Delete Inventory": "Delete Inventory",
- "Delete Job": "Delete Job",
- "Delete Job Template": "Delete Job Template",
- "Delete Notification": "Delete Notification",
- "Delete Organization": "Delete Organization",
- "Delete Project": "Delete Project",
- "Delete Questions": "Delete Questions",
- "Delete Schedule": "Delete Schedule",
- "Delete Survey": "Delete Survey",
- "Delete Team": "Delete Team",
- "Delete User": "Delete User",
- "Delete User Token": "Delete User Token",
- "Delete Workflow Approval": "Delete Workflow Approval",
- "Delete Workflow Job Template": "Delete Workflow Job Template",
- "Delete all nodes": "Delete all nodes",
- "Delete application": "Delete application",
- "Delete credential type": "Delete credential type",
- "Delete error": "Delete error",
- "Delete instance group": "Delete instance group",
- "Delete inventory source": "Delete inventory source",
- "Delete on Update": "Delete on Update",
- "Delete smart inventory": "Delete smart inventory",
- "Delete the local repository in its entirety prior to
-performing an update. Depending on the size of the
-repository this may significantly increase the amount
-of time required to complete an update.": "Delete the local repository in its entirety prior to
-performing an update. Depending on the size of the
-repository this may significantly increase the amount
-of time required to complete an update.",
- "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update.": "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update.",
- "Delete this link": "Delete this link",
- "Delete this node": "Delete this node",
- "Delete {0}": Array [
- "Delete ",
- Array [
- "0",
- ],
- ],
- "Delete {itemName}": Array [
- "Delete ",
- Array [
- "itemName",
- ],
- ],
- "Delete {pluralizedItemName}?": Array [
- "Delete ",
- Array [
- "pluralizedItemName",
- ],
- "?",
- ],
- "Deleted": "Deleted",
- "Deletion Error": "Deletion Error",
- "Deletion error": "Deletion error",
- "Denied": "Denied",
- "Denied by {0} - {1}": Array [
- "Denied by ",
- Array [
- "0",
- ],
- " - ",
- Array [
- "1",
- ],
- ],
- "Deny": "Deny",
- "Deprecated": "Deprecated",
- "Description": "Description",
- "Destination Channels": "Destination Channels",
- "Destination Channels or Users": "Destination Channels or Users",
- "Destination SMS Number(s)": "Destination SMS Number(s)",
- "Destination SMS number(s)": "Destination SMS number(s)",
- "Destination channels": "Destination channels",
- "Destination channels or users": "Destination channels or users",
- "Detail coming soon :)": "Detail coming soon :)",
- "Details": "Details",
- "Details tab": "Details tab",
- "Disable SSL Verification": "Disable SSL Verification",
- "Disable SSL verification": "Disable SSL verification",
- "Disassociate": "Disassociate",
- "Disassociate group from host?": "Disassociate group from host?",
- "Disassociate host from group?": "Disassociate host from group?",
- "Disassociate instance from instance group?": "Disassociate instance from instance group?",
- "Disassociate related group(s)?": "Disassociate related group(s)?",
- "Disassociate related team(s)?": "Disassociate related team(s)?",
- "Disassociate role": "Disassociate role",
- "Disassociate role!": "Disassociate role!",
- "Disassociate?": "Disassociate?",
- "Divide the work done by this job template
-into the specified number of job slices, each running the
-same tasks against a portion of the inventory.": "Divide the work done by this job template
-into the specified number of job slices, each running the
-same tasks against a portion of the inventory.",
- "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory.": "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory.",
- "Done": "Done",
- "Download Output": "Download Output",
- "E-mail": "E-mail",
- "E-mail options": "E-mail options",
- "Each answer choice must be on a separate line.": "Each answer choice must be on a separate line.",
- "Each time a job runs using this inventory,
-refresh the inventory from the selected source before
-executing job tasks.": "Each time a job runs using this inventory,
-refresh the inventory from the selected source before
-executing job tasks.",
- "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks.": "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks.",
- "Each time a job runs using this project, update the
-revision of the project prior to starting the job.": "Each time a job runs using this project, update the
-revision of the project prior to starting the job.",
- "Each time a job runs using this project, update the revision of the project prior to starting the job.": "Each time a job runs using this project, update the revision of the project prior to starting the job.",
- "Edit": "Edit",
- "Edit Credential": "Edit Credential",
- "Edit Credential Plugin Configuration": "Edit Credential Plugin Configuration",
- "Edit Details": "Edit Details",
- "Edit Execution Environment": "Edit Execution Environment",
- "Edit Group": "Edit Group",
- "Edit Host": "Edit Host",
- "Edit Inventory": "Edit Inventory",
- "Edit Link": "Edit Link",
- "Edit Node": "Edit Node",
- "Edit Notification Template": "Edit Notification Template",
- "Edit Organization": "Edit Organization",
- "Edit Project": "Edit Project",
- "Edit Question": "Edit Question",
- "Edit Schedule": "Edit Schedule",
- "Edit Source": "Edit Source",
- "Edit Team": "Edit Team",
- "Edit Template": "Edit Template",
- "Edit User": "Edit User",
- "Edit application": "Edit application",
- "Edit credential type": "Edit credential type",
- "Edit details": "Edit details",
- "Edit form coming soon :)": "Edit form coming soon :)",
- "Edit instance group": "Edit instance group",
- "Edit this link": "Edit this link",
- "Edit this node": "Edit this node",
- "Elapsed": "Elapsed",
- "Elapsed Time": "Elapsed Time",
- "Elapsed time that the job ran": "Elapsed time that the job ran",
- "Email": "Email",
- "Email Options": "Email Options",
- "Enable Concurrent Jobs": "Enable Concurrent Jobs",
- "Enable Fact Storage": "Enable Fact Storage",
- "Enable HTTPS certificate verification": "Enable HTTPS certificate verification",
- "Enable Privilege Escalation": "Enable Privilege Escalation",
- "Enable Webhook": "Enable Webhook",
- "Enable Webhook for this workflow job template.": "Enable Webhook for this workflow job template.",
- "Enable Webhooks": "Enable Webhooks",
- "Enable external logging": "Enable external logging",
- "Enable log system tracking facts individually": "Enable log system tracking facts individually",
- "Enable privilege escalation": "Enable privilege escalation",
- "Enable simplified login for your {brandName} applications": Array [
- "Enable simplified login for your ",
- Array [
- "brandName",
- ],
- " applications",
- ],
- "Enable webhook for this template.": "Enable webhook for this template.",
- "Enabled": "Enabled",
- "Enabled Value": "Enabled Value",
- "Enabled Variable": "Enabled Variable",
- "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.": "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.",
- "Enables creation of a provisioning
-callback URL. Using the URL a host can contact {brandName}
-and request a configuration update using this job
-template": Array [
- "Enables creation of a provisioning
-callback URL. Using the URL a host can contact ",
- Array [
- "brandName",
- ],
- "
-and request a configuration update using this job
-template",
- ],
- "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.": "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.",
- "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template": Array [
- "Enables creation of a provisioning callback URL. Using the URL a host can contact ",
- Array [
- "brandName",
- ],
- " and request a configuration update using this job template",
- ],
- "Encrypted": "Encrypted",
- "End": "End",
- "End User License Agreement": "End User License Agreement",
- "End date/time": "End date/time",
- "End did not match an expected value": "End did not match an expected value",
- "End user license agreement": "End user license agreement",
- "Enter at least one search filter to create a new Smart Inventory": "Enter at least one search filter to create a new Smart Inventory",
- "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax.": "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax.",
- "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax.": "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax.",
- "Enter inventory variables using either JSON or YAML syntax.
-Use the radio button to toggle between the two. Refer to the
-Ansible Tower documentation for example syntax.": "Enter inventory variables using either JSON or YAML syntax.
-Use the radio button to toggle between the two. Refer to the
-Ansible Tower documentation for example syntax.",
- "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax": "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax",
- "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax.": "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax.",
- "Enter one Annotation Tag per line, without commas.": "Enter one Annotation Tag per line, without commas.",
- "Enter one IRC channel or username per line. The pound
-symbol (#) for channels, and the at (@) symbol for users, are not
-required.": "Enter one IRC channel or username per line. The pound
-symbol (#) for channels, and the at (@) symbol for users, are not
-required.",
- "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required.": "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required.",
- "Enter one Slack channel per line. The pound symbol (#)
-is required for channels.": "Enter one Slack channel per line. The pound symbol (#)
-is required for channels.",
- "Enter one Slack channel per line. The pound symbol (#) is required for channels.": "Enter one Slack channel per line. The pound symbol (#) is required for channels.",
- "Enter one email address per line to create a recipient
-list for this type of notification.": "Enter one email address per line to create a recipient
-list for this type of notification.",
- "Enter one email address per line to create a recipient list for this type of notification.": "Enter one email address per line to create a recipient list for this type of notification.",
- "Enter one phone number per line to specify where to
-route SMS messages.": "Enter one phone number per line to specify where to
-route SMS messages.",
- "Enter one phone number per line to specify where to route SMS messages.": "Enter one phone number per line to specify where to route SMS messages.",
- "Enter the number associated with the \\"Messaging
-Service\\" in Twilio in the format +18005550199.": "Enter the number associated with the \\"Messaging
-Service\\" in Twilio in the format +18005550199.",
- "Enter the number associated with the \\"Messaging Service\\" in Twilio in the format +18005550199.": "Enter the number associated with the \\"Messaging Service\\" in Twilio in the format +18005550199.",
- "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide.",
- "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>aws_ec21> plugin configuration guide.",
- "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>azure_rm1> plugin configuration guide.",
- "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>foreman1> plugin configuration guide.",
- "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>gcp_compute1> plugin configuration guide.",
- "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>openstack1> plugin configuration guide.",
- "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>ovirt1> plugin configuration guide.",
- "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>vmware_vm_inventory1> plugin configuration guide.",
- "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two.": "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two.",
- "Environment": "Environment",
- "Error": "Error",
- "Error message": "Error message",
- "Error message body": "Error message body",
- "Error saving the workflow!": "Error saving the workflow!",
- "Error!": "Error!",
- "Error:": "Error:",
- "Event": "Event",
- "Event detail": "Event detail",
- "Event detail modal": "Event detail modal",
- "Event summary not available": "Event summary not available",
- "Events": "Events",
- "Exact match (default lookup if not specified).": "Exact match (default lookup if not specified).",
- "Example URLs for GIT Source Control include:": "Example URLs for GIT Source Control include:",
- "Example URLs for Remote Archive Source Control include:": "Example URLs for Remote Archive Source Control include:",
- "Example URLs for Subversion Source Control include:": "Example URLs for Subversion Source Control include:",
- "Examples include:": "Examples include:",
- "Execute regardless of the parent node's final state.": "Execute regardless of the parent node's final state.",
- "Execute when the parent node results in a failure state.": "Execute when the parent node results in a failure state.",
- "Execute when the parent node results in a successful state.": "Execute when the parent node results in a successful state.",
- "Execution Environment": "Execution Environment",
- "Execution Environments": "Execution Environments",
- "Execution Node": "Execution Node",
- "Execution environment image": "Execution environment image",
- "Execution environment name": "Execution environment name",
- "Execution environment not found.": "Execution environment not found.",
- "Execution environments": "Execution environments",
- "Exit Without Saving": "Exit Without Saving",
- "Expand": "Expand",
- "Expand input": "Expand input",
- "Expected at least one of client_email, project_id or private_key to be present in the file.": "Expected at least one of client_email, project_id or private_key to be present in the file.",
- "Expiration": "Expiration",
- "Expires": "Expires",
- "Expires on": "Expires on",
- "Expires on UTC": "Expires on UTC",
- "Expires on {0}": Array [
- "Expires on ",
- Array [
- "0",
- ],
- ],
- "Explanation": "Explanation",
- "External Secret Management System": "External Secret Management System",
- "Extra variables": "Extra variables",
- "FINISHED:": "FINISHED:",
- "Facts": "Facts",
- "Failed": "Failed",
- "Failed Host Count": "Failed Host Count",
- "Failed Hosts": "Failed Hosts",
- "Failed hosts": "Failed hosts",
- "Failed to approve one or more workflow approval.": "Failed to approve one or more workflow approval.",
- "Failed to approve workflow approval.": "Failed to approve workflow approval.",
- "Failed to assign roles properly": "Failed to assign roles properly",
- "Failed to associate role": "Failed to associate role",
- "Failed to associate.": "Failed to associate.",
- "Failed to cancel inventory source sync.": "Failed to cancel inventory source sync.",
- "Failed to cancel one or more jobs.": "Failed to cancel one or more jobs.",
- "Failed to copy credential.": "Failed to copy credential.",
- "Failed to copy execution environment": "Failed to copy execution environment",
- "Failed to copy inventory.": "Failed to copy inventory.",
- "Failed to copy project.": "Failed to copy project.",
- "Failed to copy template.": "Failed to copy template.",
- "Failed to delete application.": "Failed to delete application.",
- "Failed to delete credential.": "Failed to delete credential.",
- "Failed to delete group {0}.": Array [
- "Failed to delete group ",
- Array [
- "0",
- ],
- ".",
- ],
- "Failed to delete host.": "Failed to delete host.",
- "Failed to delete inventory source {name}.": Array [
- "Failed to delete inventory source ",
- Array [
- "name",
- ],
- ".",
- ],
- "Failed to delete inventory.": "Failed to delete inventory.",
- "Failed to delete job template.": "Failed to delete job template.",
- "Failed to delete notification.": "Failed to delete notification.",
- "Failed to delete one or more applications.": "Failed to delete one or more applications.",
- "Failed to delete one or more credential types.": "Failed to delete one or more credential types.",
- "Failed to delete one or more credentials.": "Failed to delete one or more credentials.",
- "Failed to delete one or more execution environments": "Failed to delete one or more execution environments",
- "Failed to delete one or more groups.": "Failed to delete one or more groups.",
- "Failed to delete one or more hosts.": "Failed to delete one or more hosts.",
- "Failed to delete one or more instance groups.": "Failed to delete one or more instance groups.",
- "Failed to delete one or more inventories.": "Failed to delete one or more inventories.",
- "Failed to delete one or more inventory sources.": "Failed to delete one or more inventory sources.",
- "Failed to delete one or more job templates.": "Failed to delete one or more job templates.",
- "Failed to delete one or more jobs.": "Failed to delete one or more jobs.",
- "Failed to delete one or more notification template.": "Failed to delete one or more notification template.",
- "Failed to delete one or more organizations.": "Failed to delete one or more organizations.",
- "Failed to delete one or more projects.": "Failed to delete one or more projects.",
- "Failed to delete one or more schedules.": "Failed to delete one or more schedules.",
- "Failed to delete one or more teams.": "Failed to delete one or more teams.",
- "Failed to delete one or more templates.": "Failed to delete one or more templates.",
- "Failed to delete one or more tokens.": "Failed to delete one or more tokens.",
- "Failed to delete one or more user tokens.": "Failed to delete one or more user tokens.",
- "Failed to delete one or more users.": "Failed to delete one or more users.",
- "Failed to delete one or more workflow approval.": "Failed to delete one or more workflow approval.",
- "Failed to delete organization.": "Failed to delete organization.",
- "Failed to delete project.": "Failed to delete project.",
- "Failed to delete role": "Failed to delete role",
- "Failed to delete role.": "Failed to delete role.",
- "Failed to delete schedule.": "Failed to delete schedule.",
- "Failed to delete smart inventory.": "Failed to delete smart inventory.",
- "Failed to delete team.": "Failed to delete team.",
- "Failed to delete user.": "Failed to delete user.",
- "Failed to delete workflow approval.": "Failed to delete workflow approval.",
- "Failed to delete workflow job template.": "Failed to delete workflow job template.",
- "Failed to delete {name}.": Array [
- "Failed to delete ",
- Array [
- "name",
- ],
- ".",
- ],
- "Failed to deny one or more workflow approval.": "Failed to deny one or more workflow approval.",
- "Failed to deny workflow approval.": "Failed to deny workflow approval.",
- "Failed to disassociate one or more groups.": "Failed to disassociate one or more groups.",
- "Failed to disassociate one or more hosts.": "Failed to disassociate one or more hosts.",
- "Failed to disassociate one or more instances.": "Failed to disassociate one or more instances.",
- "Failed to disassociate one or more teams.": "Failed to disassociate one or more teams.",
- "Failed to fetch custom login configuration settings. System defaults will be shown instead.": "Failed to fetch custom login configuration settings. System defaults will be shown instead.",
- "Failed to launch job.": "Failed to launch job.",
- "Failed to retrieve configuration.": "Failed to retrieve configuration.",
- "Failed to retrieve full node resource object.": "Failed to retrieve full node resource object.",
- "Failed to retrieve node credentials.": "Failed to retrieve node credentials.",
- "Failed to send test notification.": "Failed to send test notification.",
- "Failed to sync inventory source.": "Failed to sync inventory source.",
- "Failed to sync project.": "Failed to sync project.",
- "Failed to sync some or all inventory sources.": "Failed to sync some or all inventory sources.",
- "Failed to toggle host.": "Failed to toggle host.",
- "Failed to toggle instance.": "Failed to toggle instance.",
- "Failed to toggle notification.": "Failed to toggle notification.",
- "Failed to toggle schedule.": "Failed to toggle schedule.",
- "Failed to update survey.": "Failed to update survey.",
- "Failed to user token.": "Failed to user token.",
- "Failure": "Failure",
- "False": "False",
- "February": "February",
- "Field contains value.": "Field contains value.",
- "Field ends with value.": "Field ends with value.",
- "Field for passing a custom Kubernetes or OpenShift Pod specification.": "Field for passing a custom Kubernetes or OpenShift Pod specification.",
- "Field matches the given regular expression.": "Field matches the given regular expression.",
- "Field starts with value.": "Field starts with value.",
- "Fifth": "Fifth",
- "File Difference": "File Difference",
- "File upload rejected. Please select a single .json file.": "File upload rejected. Please select a single .json file.",
- "File, directory or script": "File, directory or script",
- "Finish Time": "Finish Time",
- "Finished": "Finished",
- "First": "First",
- "First Name": "First Name",
- "First Run": "First Run",
- "First, select a key": "First, select a key",
- "Fit the graph to the available screen size": "Fit the graph to the available screen size",
- "Float": "Float",
- "For job templates, select run to execute
-the playbook. Select check to only check playbook syntax,
-test environment setup, and report problems without
-executing the playbook.": "For job templates, select run to execute
-the playbook. Select check to only check playbook syntax,
-test environment setup, and report problems without
-executing the playbook.",
- "For job templates, select run to execute the playbook.
-Select check to only check playbook syntax, test environment setup,
-and report problems without executing the playbook.": "For job templates, select run to execute the playbook.
-Select check to only check playbook syntax, test environment setup,
-and report problems without executing the playbook.",
- "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook.": "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook.",
- "For more information, refer to the": "For more information, refer to the",
- "Forks": "Forks",
- "Fourth": "Fourth",
- "Frequency Details": "Frequency Details",
- "Frequency did not match an expected value": "Frequency did not match an expected value",
- "Fri": "Fri",
- "Friday": "Friday",
- "Galaxy Credentials": "Galaxy Credentials",
- "Galaxy credentials must be owned by an Organization.": "Galaxy credentials must be owned by an Organization.",
- "Gathering Facts": "Gathering Facts",
- "Get subscription": "Get subscription",
- "Get subscriptions": "Get subscriptions",
- "Git": "Git",
- "GitHub": "GitHub",
- "GitHub Default": "GitHub Default",
- "GitHub Enterprise": "GitHub Enterprise",
- "GitHub Enterprise Organization": "GitHub Enterprise Organization",
- "GitHub Enterprise Team": "GitHub Enterprise Team",
- "GitHub Organization": "GitHub Organization",
- "GitHub Team": "GitHub Team",
- "GitHub settings": "GitHub settings",
- "GitLab": "GitLab",
- "Global Default Execution Environment": "Global Default Execution Environment",
- "Globally Available": "Globally Available",
- "Globally available execution environment can not be reassigned to a specific Organization": "Globally available execution environment can not be reassigned to a specific Organization",
- "Go to first page": "Go to first page",
- "Go to last page": "Go to last page",
- "Go to next page": "Go to next page",
- "Go to previous page": "Go to previous page",
- "Google Compute Engine": "Google Compute Engine",
- "Google OAuth 2 settings": "Google OAuth 2 settings",
- "Google OAuth2": "Google OAuth2",
- "Grafana": "Grafana",
- "Grafana API key": "Grafana API key",
- "Grafana URL": "Grafana URL",
- "Greater than comparison.": "Greater than comparison.",
- "Greater than or equal to comparison.": "Greater than or equal to comparison.",
- "Group": "Group",
- "Group details": "Group details",
- "Group type": "Group type",
- "Groups": "Groups",
- "HTTP Headers": "HTTP Headers",
- "HTTP Method": "HTTP Method",
- "Help": "Help",
- "Hide": "Hide",
- "Hipchat": "Hipchat",
- "Host": "Host",
- "Host Async Failure": "Host Async Failure",
- "Host Async OK": "Host Async OK",
- "Host Config Key": "Host Config Key",
- "Host Count": "Host Count",
- "Host Details": "Host Details",
- "Host Failed": "Host Failed",
- "Host Failure": "Host Failure",
- "Host Filter": "Host Filter",
- "Host Name": "Host Name",
- "Host OK": "Host OK",
- "Host Polling": "Host Polling",
- "Host Retry": "Host Retry",
- "Host Skipped": "Host Skipped",
- "Host Started": "Host Started",
- "Host Unreachable": "Host Unreachable",
- "Host details": "Host details",
- "Host details modal": "Host details modal",
- "Host not found.": "Host not found.",
- "Host status information for this job is unavailable.": "Host status information for this job is unavailable.",
- "Hosts": "Hosts",
- "Hosts available": "Hosts available",
- "Hosts remaining": "Hosts remaining",
- "Hosts used": "Hosts used",
- "Hour": "Hour",
- "I agree to the End User License Agreement": "I agree to the End User License Agreement",
- "ID": "ID",
- "ID of the Dashboard": "ID of the Dashboard",
- "ID of the Panel": "ID of the Panel",
- "ID of the dashboard (optional)": "ID of the dashboard (optional)",
- "ID of the panel (optional)": "ID of the panel (optional)",
- "IRC": "IRC",
- "IRC Nick": "IRC Nick",
- "IRC Server Address": "IRC Server Address",
- "IRC Server Port": "IRC Server Port",
- "IRC nick": "IRC nick",
- "IRC server address": "IRC server address",
- "IRC server password": "IRC server password",
- "IRC server port": "IRC server port",
- "Icon URL": "Icon URL",
- "If checked, all variables for child groups
-and hosts will be removed and replaced by those found
-on the external source.": "If checked, all variables for child groups
-and hosts will be removed and replaced by those found
-on the external source.",
- "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source.": "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source.",
- "If checked, any hosts and groups that were
-previously present on the external source but are now removed
-will be removed from the Tower inventory. Hosts and groups
-that were not managed by the inventory source will be promoted
-to the next manually created group or if there is no manually
-created group to promote them into, they will be left in the \\"all\\"
-default group for the inventory.": "If checked, any hosts and groups that were
-previously present on the external source but are now removed
-will be removed from the Tower inventory. Hosts and groups
-that were not managed by the inventory source will be promoted
-to the next manually created group or if there is no manually
-created group to promote them into, they will be left in the \\"all\\"
-default group for the inventory.",
- "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \\"all\\" default group for the inventory.": "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \\"all\\" default group for the inventory.",
- "If enabled, run this playbook as an
-administrator.": "If enabled, run this playbook as an
-administrator.",
- "If enabled, run this playbook as an administrator.": "If enabled, run this playbook as an administrator.",
- "If enabled, show the changes made
-by Ansible tasks, where supported. This is equivalent to Ansible’s
---diff mode.": "If enabled, show the changes made
-by Ansible tasks, where supported. This is equivalent to Ansible’s
---diff mode.",
- "If enabled, show the changes made by
-Ansible tasks, where supported. This is equivalent
-to Ansible's --diff mode.": "If enabled, show the changes made by
-Ansible tasks, where supported. This is equivalent
-to Ansible's --diff mode.",
- "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode.": "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode.",
- "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.": "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode.",
- "If enabled, simultaneous runs of this job
-template will be allowed.": "If enabled, simultaneous runs of this job
-template will be allowed.",
- "If enabled, simultaneous runs of this job template will be allowed.": "If enabled, simultaneous runs of this job template will be allowed.",
- "If enabled, simultaneous runs of this workflow job template will be allowed.": "If enabled, simultaneous runs of this workflow job template will be allowed.",
- "If enabled, this will store gathered facts so they can
-be viewed at the host level. Facts are persisted and
-injected into the fact cache at runtime.": "If enabled, this will store gathered facts so they can
-be viewed at the host level. Facts are persisted and
-injected into the fact cache at runtime.",
- "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.": "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime.",
- "If you are ready to upgrade or renew, please <0>contact us.0>": "If you are ready to upgrade or renew, please <0>contact us.0>",
- "If you do not have a subscription, you can visit
-Red Hat to obtain a trial subscription.": "If you do not have a subscription, you can visit
-Red Hat to obtain a trial subscription.",
- "If you only want to remove access for this particular user, please remove them from the team.": "If you only want to remove access for this particular user, please remove them from the team.",
- "If you want the Inventory Source to update on
-launch and on project update, click on Update on launch, and also go to": "If you want the Inventory Source to update on
-launch and on project update, click on Update on launch, and also go to",
- "If you {0} want to remove access for this particular user, please remove them from the team.": Array [
- "If you ",
- Array [
- "0",
- ],
- " want to remove access for this particular user, please remove them from the team.",
- ],
- "Image": "Image",
- "Image name": "Image name",
- "Including File": "Including File",
- "Indicates if a host is available and should be included in running
-jobs. For hosts that are part of an external inventory, this may be
-reset by the inventory sync process.": "Indicates if a host is available and should be included in running
-jobs. For hosts that are part of an external inventory, this may be
-reset by the inventory sync process.",
- "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process.": "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process.",
- "Info": "Info",
- "Initiated By": "Initiated By",
- "Initiated by": "Initiated by",
- "Initiated by (username)": "Initiated by (username)",
- "Injector configuration": "Injector configuration",
- "Input configuration": "Input configuration",
- "Insights Analytics": "Insights Analytics",
- "Insights Analytics dashboard": "Insights Analytics dashboard",
- "Insights Credential": "Insights Credential",
- "Insights analytics": "Insights analytics",
- "Insights system ID": "Insights system ID",
- "Instance": "Instance",
- "Instance Filters": "Instance Filters",
- "Instance Group": "Instance Group",
- "Instance Groups": "Instance Groups",
- "Instance ID": "Instance ID",
- "Instance group": "Instance group",
- "Instance group not found.": "Instance group not found.",
- "Instance groups": "Instance groups",
- "Instances": "Instances",
- "Integer": "Integer",
- "Integrations": "Integrations",
- "Invalid email address": "Invalid email address",
- "Invalid file format. Please upload a valid Red Hat Subscription Manifest.": "Invalid file format. Please upload a valid Red Hat Subscription Manifest.",
- "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported.": "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported.",
- "Invalid username or password. Please try again.": "Invalid username or password. Please try again.",
- "Inventories": "Inventories",
- "Inventories with sources cannot be copied": "Inventories with sources cannot be copied",
- "Inventory": "Inventory",
- "Inventory (Name)": "Inventory (Name)",
- "Inventory File": "Inventory File",
- "Inventory ID": "Inventory ID",
- "Inventory Scripts": "Inventory Scripts",
- "Inventory Source": "Inventory Source",
- "Inventory Source Sync": "Inventory Source Sync",
- "Inventory Sources": "Inventory Sources",
- "Inventory Sync": "Inventory Sync",
- "Inventory Update": "Inventory Update",
- "Inventory file": "Inventory file",
- "Inventory not found.": "Inventory not found.",
- "Inventory sync": "Inventory sync",
- "Inventory sync failures": "Inventory sync failures",
- "Isolated": "Isolated",
- "Item Failed": "Item Failed",
- "Item OK": "Item OK",
- "Item Skipped": "Item Skipped",
- "Items": "Items",
- "Items Per Page": "Items Per Page",
- "Items per page": "Items per page",
- "Items {itemMin} – {itemMax} of {count}": Array [
- "Items ",
- Array [
- "itemMin",
- ],
- " – ",
- Array [
- "itemMax",
- ],
- " of ",
- Array [
- "count",
- ],
- ],
- "JOB ID:": "JOB ID:",
- "JSON": "JSON",
- "JSON tab": "JSON tab",
- "JSON:": "JSON:",
- "January": "January",
- "Job": "Job",
- "Job Cancel Error": "Job Cancel Error",
- "Job Delete Error": "Job Delete Error",
- "Job Slice": "Job Slice",
- "Job Slicing": "Job Slicing",
- "Job Status": "Job Status",
- "Job Tags": "Job Tags",
- "Job Template": "Job Template",
- "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}": Array [
- "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: ",
- Array [
- "0",
- ],
- ],
- "Job Templates": "Job Templates",
- "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed.": "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed.",
- "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes": "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes",
- "Job Type": "Job Type",
- "Job status": "Job status",
- "Job status graph tab": "Job status graph tab",
- "Job templates": "Job templates",
- "Jobs": "Jobs",
- "Jobs Settings": "Jobs Settings",
- "Jobs settings": "Jobs settings",
- "July": "July",
- "June": "June",
- "Key": "Key",
- "Key select": "Key select",
- "Key typeahead": "Key typeahead",
- "Keyword": "Keyword",
- "LDAP": "LDAP",
- "LDAP 1": "LDAP 1",
- "LDAP 2": "LDAP 2",
- "LDAP 3": "LDAP 3",
- "LDAP 4": "LDAP 4",
- "LDAP 5": "LDAP 5",
- "LDAP Default": "LDAP Default",
- "LDAP settings": "LDAP settings",
- "LDAP1": "LDAP1",
- "LDAP2": "LDAP2",
- "LDAP3": "LDAP3",
- "LDAP4": "LDAP4",
- "LDAP5": "LDAP5",
- "Label Name": "Label Name",
- "Labels": "Labels",
- "Last": "Last",
- "Last Login": "Last Login",
- "Last Modified": "Last Modified",
- "Last Name": "Last Name",
- "Last Ran": "Last Ran",
- "Last Run": "Last Run",
- "Last job": "Last job",
- "Last job run": "Last job run",
- "Last modified": "Last modified",
- "Launch": "Launch",
- "Launch Management Job": "Launch Management Job",
- "Launch Template": "Launch Template",
- "Launch management job": "Launch management job",
- "Launch template": "Launch template",
- "Launch workflow": "Launch workflow",
- "Launched By": "Launched By",
- "Launched By (Username)": "Launched By (Username)",
- "Learn more about Insights Analytics": "Learn more about Insights Analytics",
- "Leave this field blank to make the execution environment globally available.": "Leave this field blank to make the execution environment globally available.",
- "Legend": "Legend",
- "Less than comparison.": "Less than comparison.",
- "Less than or equal to comparison.": "Less than or equal to comparison.",
- "License": "License",
- "License settings": "License settings",
- "Limit": "Limit",
- "Link to an available node": "Link to an available node",
- "Loading": "Loading",
- "Loading...": "Loading...",
- "Local Time Zone": "Local Time Zone",
- "Local time zone": "Local time zone",
- "Log In": "Log In",
- "Log aggregator test sent successfully.": "Log aggregator test sent successfully.",
- "Logging": "Logging",
- "Logging settings": "Logging settings",
- "Logout": "Logout",
- "Lookup modal": "Lookup modal",
- "Lookup select": "Lookup select",
- "Lookup type": "Lookup type",
- "Lookup typeahead": "Lookup typeahead",
- "MOST RECENT SYNC": "MOST RECENT SYNC",
- "Machine Credential": "Machine Credential",
- "Machine credential": "Machine credential",
- "Managed by Tower": "Managed by Tower",
- "Managed nodes": "Managed nodes",
- "Management Job": "Management Job",
- "Management Jobs": "Management Jobs",
- "Management job": "Management job",
- "Management job launch error": "Management job launch error",
- "Management job not found.": "Management job not found.",
- "Management jobs": "Management jobs",
- "Manual": "Manual",
- "March": "March",
- "Mattermost": "Mattermost",
- "Max Hosts": "Max Hosts",
- "Maximum": "Maximum",
- "Maximum length": "Maximum length",
- "May": "May",
- "Members": "Members",
- "Metadata": "Metadata",
- "Metric": "Metric",
- "Metrics": "Metrics",
- "Microsoft Azure Resource Manager": "Microsoft Azure Resource Manager",
- "Minimum": "Minimum",
- "Minimum length": "Minimum length",
- "Minimum number of instances that will be automatically
-assigned to this group when new instances come online.": "Minimum number of instances that will be automatically
-assigned to this group when new instances come online.",
- "Minimum number of instances that will be automatically assigned to this group when new instances come online.": "Minimum number of instances that will be automatically assigned to this group when new instances come online.",
- "Minimum percentage of all instances that will be automatically
-assigned to this group when new instances come online.": "Minimum percentage of all instances that will be automatically
-assigned to this group when new instances come online.",
- "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online.": "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online.",
- "Minute": "Minute",
- "Miscellaneous System": "Miscellaneous System",
- "Miscellaneous System settings": "Miscellaneous System settings",
- "Missing": "Missing",
- "Missing resource": "Missing resource",
- "Modified": "Modified",
- "Modified By (Username)": "Modified By (Username)",
- "Modified by (username)": "Modified by (username)",
- "Module": "Module",
- "Mon": "Mon",
- "Monday": "Monday",
- "Month": "Month",
- "More information": "More information",
- "More information for": "More information for",
- "Multi-Select": "Multi-Select",
- "Multiple Choice": "Multiple Choice",
- "Multiple Choice (multiple select)": "Multiple Choice (multiple select)",
- "Multiple Choice (single select)": "Multiple Choice (single select)",
- "Multiple Choice Options": "Multiple Choice Options",
- "My View": "My View",
- "Name": "Name",
- "Navigation": "Navigation",
- "Never": "Never",
- "Never Updated": "Never Updated",
- "Never expires": "Never expires",
- "New": "New",
- "Next": "Next",
- "Next Run": "Next Run",
- "No": "No",
- "No Hosts Matched": "No Hosts Matched",
- "No Hosts Remaining": "No Hosts Remaining",
- "No JSON Available": "No JSON Available",
- "No Jobs": "No Jobs",
- "No Standard Error Available": "No Standard Error Available",
- "No Standard Out Available": "No Standard Out Available",
- "No inventory sync failures.": "No inventory sync failures.",
- "No items found.": "No items found.",
- "No result found": "No result found",
- "No results found": "No results found",
- "No subscriptions found": "No subscriptions found",
- "No survey questions found.": "No survey questions found.",
- "No {0} Found": Array [
- "No ",
- Array [
- "0",
- ],
- " Found",
- ],
- "No {pluralizedItemName} Found": Array [
- "No ",
- Array [
- "pluralizedItemName",
- ],
- " Found",
- ],
- "Node Type": "Node Type",
- "Node type": "Node type",
- "None": "None",
- "None (Run Once)": "None (Run Once)",
- "None (run once)": "None (run once)",
- "Normal User": "Normal User",
- "Not Found": "Not Found",
- "Not configured": "Not configured",
- "Not configured for inventory sync.": "Not configured for inventory sync.",
- "Note that only hosts directly in this group can
-be disassociated. Hosts in sub-groups must be disassociated
-directly from the sub-group level that they belong.": "Note that only hosts directly in this group can
-be disassociated. Hosts in sub-groups must be disassociated
-directly from the sub-group level that they belong.",
- "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong.": "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong.",
- "Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
-with directly and indirectly.": "Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
-with directly and indirectly.",
- "Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
-with directly and indirectly.": "Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
-with directly and indirectly.",
- "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
- "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
- "Note: This field assumes the remote name is \\"origin\\".": "Note: This field assumes the remote name is \\"origin\\".",
- "Note: When using SSH protocol for GitHub or
-Bitbucket, enter an SSH key only, do not enter a username
-(other than git). Additionally, GitHub and Bitbucket do
-not support password authentication when using SSH. GIT
-read only protocol (git://) does not use username or
-password information.": "Note: When using SSH protocol for GitHub or
-Bitbucket, enter an SSH key only, do not enter a username
-(other than git). Additionally, GitHub and Bitbucket do
-not support password authentication when using SSH. GIT
-read only protocol (git://) does not use username or
-password information.",
- "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information.": "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information.",
- "Notifcations": "Notifcations",
- "Notification Color": "Notification Color",
- "Notification Template not found.": "Notification Template not found.",
- "Notification Templates": "Notification Templates",
- "Notification Type": "Notification Type",
- "Notification color": "Notification color",
- "Notification sent successfully": "Notification sent successfully",
- "Notification timed out": "Notification timed out",
- "Notification type": "Notification type",
- "Notifications": "Notifications",
- "November": "November",
- "OK": "OK",
- "Occurrences": "Occurrences",
- "October": "October",
- "Off": "Off",
- "On": "On",
- "On Failure": "On Failure",
- "On Success": "On Success",
- "On date": "On date",
- "On days": "On days",
- "Only Group By": "Only Group By",
- "OpenStack": "OpenStack",
- "Option Details": "Option Details",
- "Optional labels that describe this job template,
-such as 'dev' or 'test'. Labels can be used to group and filter
-job templates and completed jobs.": "Optional labels that describe this job template,
-such as 'dev' or 'test'. Labels can be used to group and filter
-job templates and completed jobs.",
- "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs.": "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs.",
- "Optionally select the credential to use to send status updates back to the webhook service.": "Optionally select the credential to use to send status updates back to the webhook service.",
- "Options": "Options",
- "Organization": "Organization",
- "Organization (Name)": "Organization (Name)",
- "Organization Add": "Organization Add",
- "Organization Name": "Organization Name",
- "Organization detail tabs": "Organization detail tabs",
- "Organization not found.": "Organization not found.",
- "Organizations": "Organizations",
- "Organizations List": "Organizations List",
- "Other prompts": "Other prompts",
- "Out of compliance": "Out of compliance",
- "Output": "Output",
- "Overwrite": "Overwrite",
- "Overwrite Variables": "Overwrite Variables",
- "Overwrite variables": "Overwrite variables",
- "POST": "POST",
- "PUT": "PUT",
- "Page": "Page",
- "Page <0/> of {pageCount}": Array [
- "Page <0/> of ",
- Array [
- "pageCount",
- ],
- ],
- "Page Number": "Page Number",
- "Pagerduty": "Pagerduty",
- "Pagerduty Subdomain": "Pagerduty Subdomain",
- "Pagerduty subdomain": "Pagerduty subdomain",
- "Pagination": "Pagination",
- "Pan Down": "Pan Down",
- "Pan Left": "Pan Left",
- "Pan Right": "Pan Right",
- "Pan Up": "Pan Up",
- "Pass extra command line changes. There are two ansible command line parameters:": "Pass extra command line changes. There are two ansible command line parameters:",
- "Pass extra command line variables to the playbook. This is the
--e or --extra-vars command line parameter for ansible-playbook.
-Provide key/value pairs using either YAML or JSON. Refer to the
-Ansible Tower documentation for example syntax.": "Pass extra command line variables to the playbook. This is the
--e or --extra-vars command line parameter for ansible-playbook.
-Provide key/value pairs using either YAML or JSON. Refer to the
-Ansible Tower documentation for example syntax.",
- "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax.": "Pass extra command line variables to the playbook. This is the -e or --extra-vars command line parameter for ansible-playbook. Provide key/value pairs using either YAML or JSON. Refer to the Ansible Tower documentation for example syntax.",
- "Password": "Password",
- "Past month": "Past month",
- "Past two weeks": "Past two weeks",
- "Past week": "Past week",
- "Pending": "Pending",
- "Pending Workflow Approvals": "Pending Workflow Approvals",
- "Pending delete": "Pending delete",
- "Per Page": "Per Page",
- "Perform a search to define a host filter": "Perform a search to define a host filter",
- "Personal access token": "Personal access token",
- "Play": "Play",
- "Play Count": "Play Count",
- "Play Started": "Play Started",
- "Playbook": "Playbook",
- "Playbook Check": "Playbook Check",
- "Playbook Complete": "Playbook Complete",
- "Playbook Directory": "Playbook Directory",
- "Playbook Run": "Playbook Run",
- "Playbook Started": "Playbook Started",
- "Playbook name": "Playbook name",
- "Playbook run": "Playbook run",
- "Plays": "Plays",
- "Please add survey questions.": "Please add survey questions.",
- "Please add {0} to populate this list": Array [
- "Please add ",
- Array [
- "0",
- ],
- " to populate this list",
- ],
- "Please add {0} {itemName} to populate this list": Array [
- "Please add ",
- Array [
- "0",
- ],
- " ",
- Array [
- "itemName",
- ],
- " to populate this list",
- ],
- "Please add {pluralizedItemName} to populate this list": Array [
- "Please add ",
- Array [
- "pluralizedItemName",
- ],
- " to populate this list",
- ],
- "Please agree to End User License Agreement before proceeding.": "Please agree to End User License Agreement before proceeding.",
- "Please click the Start button to begin.": "Please click the Start button to begin.",
- "Please enter a valid URL": "Please enter a valid URL",
- "Please enter a value.": "Please enter a value.",
- "Please select a day number between 1 and 31.": "Please select a day number between 1 and 31.",
- "Please select an Inventory or check the Prompt on Launch option.": "Please select an Inventory or check the Prompt on Launch option.",
- "Please select an end date/time that comes after the start date/time.": "Please select an end date/time that comes after the start date/time.",
- "Please select an organization before editing the host filter": "Please select an organization before editing the host filter",
- "Pod spec override": "Pod spec override",
- "Policy instance minimum": "Policy instance minimum",
- "Policy instance percentage": "Policy instance percentage",
- "Populate field from an external secret management system": "Populate field from an external secret management system",
- "Populate the hosts for this inventory by using a search
-filter. Example: ansible_facts.ansible_distribution:\\"RedHat\\".
-Refer to the Ansible Tower documentation for further syntax and
-examples.": "Populate the hosts for this inventory by using a search
-filter. Example: ansible_facts.ansible_distribution:\\"RedHat\\".
-Refer to the Ansible Tower documentation for further syntax and
-examples.",
- "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\\"RedHat\\". Refer to the Ansible Tower documentation for further syntax and examples.": "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\\"RedHat\\". Refer to the Ansible Tower documentation for further syntax and examples.",
- "Port": "Port",
- "Portal Mode": "Portal Mode",
- "Preconditions for running this node when there are multiple parents. Refer to the": "Preconditions for running this node when there are multiple parents. Refer to the",
- "Press Enter to edit. Press ESC to stop editing.": "Press Enter to edit. Press ESC to stop editing.",
- "Preview": "Preview",
- "Previous": "Previous",
- "Primary Navigation": "Primary Navigation",
- "Private key passphrase": "Private key passphrase",
- "Privilege Escalation": "Privilege Escalation",
- "Privilege escalation password": "Privilege escalation password",
- "Project": "Project",
- "Project Base Path": "Project Base Path",
- "Project Sync": "Project Sync",
- "Project Update": "Project Update",
- "Project not found.": "Project not found.",
- "Project sync failures": "Project sync failures",
- "Projects": "Projects",
- "Promote Child Groups and Hosts": "Promote Child Groups and Hosts",
- "Prompt": "Prompt",
- "Prompt Overrides": "Prompt Overrides",
- "Prompt on launch": "Prompt on launch",
- "Prompted Values": "Prompted Values",
- "Prompts": "Prompts",
- "Provide a host pattern to further constrain
-the list of hosts that will be managed or affected by the
-playbook. Multiple patterns are allowed. Refer to Ansible
-documentation for more information and examples on patterns.": "Provide a host pattern to further constrain
-the list of hosts that will be managed or affected by the
-playbook. Multiple patterns are allowed. Refer to Ansible
-documentation for more information and examples on patterns.",
- "Provide a host pattern to further constrain the list
-of hosts that will be managed or affected by the playbook. Multiple
-patterns are allowed. Refer to Ansible documentation for more
-information and examples on patterns.": "Provide a host pattern to further constrain the list
-of hosts that will be managed or affected by the playbook. Multiple
-patterns are allowed. Refer to Ansible documentation for more
-information and examples on patterns.",
- "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns.": "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns.",
- "Provide a value for this field or select the Prompt on launch option.": "Provide a value for this field or select the Prompt on launch option.",
- "Provide key/value pairs using either
-YAML or JSON.": "Provide key/value pairs using either
-YAML or JSON.",
- "Provide key/value pairs using either YAML or JSON.": "Provide key/value pairs using either YAML or JSON.",
- "Provide your Red Hat or Red Hat Satellite credentials
-below and you can choose from a list of your available subscriptions.
-The credentials you use will be stored for future use in
-retrieving renewal or expanded subscriptions.": "Provide your Red Hat or Red Hat Satellite credentials
-below and you can choose from a list of your available subscriptions.
-The credentials you use will be stored for future use in
-retrieving renewal or expanded subscriptions.",
- "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics.": "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics.",
- "Provisioning Callback URL": "Provisioning Callback URL",
- "Provisioning Callback details": "Provisioning Callback details",
- "Provisioning Callbacks": "Provisioning Callbacks",
- "Pull": "Pull",
- "Question": "Question",
- "RADIUS": "RADIUS",
- "RADIUS settings": "RADIUS settings",
- "Read": "Read",
- "Recent Jobs": "Recent Jobs",
- "Recent Jobs list tab": "Recent Jobs list tab",
- "Recent Templates": "Recent Templates",
- "Recent Templates list tab": "Recent Templates list tab",
- "Recipient List": "Recipient List",
- "Recipient list": "Recipient list",
- "Red Hat Insights": "Red Hat Insights",
- "Red Hat Satellite 6": "Red Hat Satellite 6",
- "Red Hat Virtualization": "Red Hat Virtualization",
- "Red Hat subscription manifest": "Red Hat subscription manifest",
- "Red Hat, Inc.": "Red Hat, Inc.",
- "Redirect URIs": "Redirect URIs",
- "Redirect uris": "Redirect uris",
- "Redirecting to dashboard": "Redirecting to dashboard",
- "Redirecting to subscription detail": "Redirecting to subscription detail",
- "Refer to the Ansible documentation for details
-about the configuration file.": "Refer to the Ansible documentation for details
-about the configuration file.",
- "Refer to the Ansible documentation for details about the configuration file.": "Refer to the Ansible documentation for details about the configuration file.",
- "Refresh Token": "Refresh Token",
- "Refresh Token Expiration": "Refresh Token Expiration",
- "Regions": "Regions",
- "Registry credential": "Registry credential",
- "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.": "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.",
- "Related Groups": "Related Groups",
- "Relaunch": "Relaunch",
- "Relaunch Job": "Relaunch Job",
- "Relaunch all hosts": "Relaunch all hosts",
- "Relaunch failed hosts": "Relaunch failed hosts",
- "Relaunch on": "Relaunch on",
- "Relaunch using host parameters": "Relaunch using host parameters",
- "Remote Archive": "Remote Archive",
- "Remove": "Remove",
- "Remove All Nodes": "Remove All Nodes",
- "Remove Link": "Remove Link",
- "Remove Node": "Remove Node",
- "Remove any local modifications prior to performing an update.": "Remove any local modifications prior to performing an update.",
- "Remove {0} Access": Array [
- "Remove ",
- Array [
- "0",
- ],
- " Access",
- ],
- "Remove {0} chip": Array [
- "Remove ",
- Array [
- "0",
- ],
- " chip",
- ],
- "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch.": "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch.",
- "Repeat Frequency": "Repeat Frequency",
- "Replace": "Replace",
- "Replace field with new value": "Replace field with new value",
- "Request subscription": "Request subscription",
- "Required": "Required",
- "Resource deleted": "Resource deleted",
- "Resource name": "Resource name",
- "Resource role": "Resource role",
- "Resource type": "Resource type",
- "Resources": "Resources",
- "Resources are missing from this template.": "Resources are missing from this template.",
- "Restore initial value.": "Restore initial value.",
- "Retrieve the enabled state from the given dict of host variables.
-The enabled variable may be specified using dot notation, e.g: 'foo.bar'": "Retrieve the enabled state from the given dict of host variables.
-The enabled variable may be specified using dot notation, e.g: 'foo.bar'",
- "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'": "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'",
- "Return": "Return",
- "Return to subscription management.": "Return to subscription management.",
- "Returns results that have values other than this one as well as other filters.": "Returns results that have values other than this one as well as other filters.",
- "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected.": "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected.",
- "Returns results that satisfy this one or any other filters.": "Returns results that satisfy this one or any other filters.",
- "Revert": "Revert",
- "Revert all": "Revert all",
- "Revert all to default": "Revert all to default",
- "Revert field to previously saved value": "Revert field to previously saved value",
- "Revert settings": "Revert settings",
- "Revert to factory default.": "Revert to factory default.",
- "Revision": "Revision",
- "Revision #": "Revision #",
- "Rocket.Chat": "Rocket.Chat",
- "Role": "Role",
- "Roles": "Roles",
- "Run": "Run",
- "Run Command": "Run Command",
- "Run command": "Run command",
- "Run every": "Run every",
- "Run frequency": "Run frequency",
- "Run on": "Run on",
- "Run type": "Run type",
- "Running": "Running",
- "Running Handlers": "Running Handlers",
- "Running Jobs": "Running Jobs",
- "Running jobs": "Running jobs",
- "SAML": "SAML",
- "SAML settings": "SAML settings",
- "SCM update": "SCM update",
- "SOCIAL": "SOCIAL",
- "SSH password": "SSH password",
- "SSL Connection": "SSL Connection",
- "START": "START",
- "STATUS:": "STATUS:",
- "Sat": "Sat",
- "Saturday": "Saturday",
- "Save": "Save",
- "Save & Exit": "Save & Exit",
- "Save and enable log aggregation before testing the log aggregator.": "Save and enable log aggregation before testing the log aggregator.",
- "Save link changes": "Save link changes",
- "Save successful!": "Save successful!",
- "Schedule Details": "Schedule Details",
- "Schedule details": "Schedule details",
- "Schedule is active": "Schedule is active",
- "Schedule is inactive": "Schedule is inactive",
- "Schedule is missing rrule": "Schedule is missing rrule",
- "Schedules": "Schedules",
- "Scope": "Scope",
- "Scroll first": "Scroll first",
- "Scroll last": "Scroll last",
- "Scroll next": "Scroll next",
- "Scroll previous": "Scroll previous",
- "Search": "Search",
- "Search is disabled while the job is running": "Search is disabled while the job is running",
- "Search submit button": "Search submit button",
- "Search text input": "Search text input",
- "Second": "Second",
- "Seconds": "Seconds",
- "See errors on the left": "See errors on the left",
- "Select": "Select",
- "Select Credential Type": "Select Credential Type",
- "Select Groups": "Select Groups",
- "Select Hosts": "Select Hosts",
- "Select Input": "Select Input",
- "Select Instances": "Select Instances",
- "Select Items": "Select Items",
- "Select Items from List": "Select Items from List",
- "Select Labels": "Select Labels",
- "Select Roles to Apply": "Select Roles to Apply",
- "Select Teams": "Select Teams",
- "Select Users Or Teams": "Select Users Or Teams",
- "Select a JSON formatted service account key to autopopulate the following fields.": "Select a JSON formatted service account key to autopopulate the following fields.",
- "Select a Node Type": "Select a Node Type",
- "Select a Resource Type": "Select a Resource Type",
- "Select a branch for the job template. This branch is applied to
-all job template nodes that prompt for a branch.": "Select a branch for the job template. This branch is applied to
-all job template nodes that prompt for a branch.",
- "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch.": "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch.",
- "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch": "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch",
- "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch.": "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch.",
- "Select a credential Type": "Select a credential Type",
- "Select a instance": "Select a instance",
- "Select a job to cancel": "Select a job to cancel",
- "Select a metric": "Select a metric",
- "Select a module": "Select a module",
- "Select a playbook": "Select a playbook",
- "Select a project before editing the execution environment.": "Select a project before editing the execution environment.",
- "Select a row to approve": "Select a row to approve",
- "Select a row to delete": "Select a row to delete",
- "Select a row to deny": "Select a row to deny",
- "Select a row to disassociate": "Select a row to disassociate",
- "Select a subscription": "Select a subscription",
- "Select a valid date and time for this field": "Select a valid date and time for this field",
- "Select a value for this field": "Select a value for this field",
- "Select a webhook service.": "Select a webhook service.",
- "Select all": "Select all",
- "Select an activity type": "Select an activity type",
- "Select an instance and a metric to show chart": "Select an instance and a metric to show chart",
- "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory.": "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory.",
- "Select an organization before editing the default execution environment.": "Select an organization before editing the default execution environment.",
- "Select credentials that allow Tower to access the nodes this job will be ran
-against. You can only select one credential of each type. For machine credentials (SSH),
-checking \\"Prompt on launch\\" without selecting credentials will require you to select a machine
-credential at run time. If you select credentials and check \\"Prompt on launch\\", the selected
-credential(s) become the defaults that can be updated at run time.": "Select credentials that allow Tower to access the nodes this job will be ran
-against. You can only select one credential of each type. For machine credentials (SSH),
-checking \\"Prompt on launch\\" without selecting credentials will require you to select a machine
-credential at run time. If you select credentials and check \\"Prompt on launch\\", the selected
-credential(s) become the defaults that can be updated at run time.",
- "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \\"Prompt on launch\\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \\"Prompt on launch\\", the selected credential(s) become the defaults that can be updated at run time.": "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \\"Prompt on launch\\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \\"Prompt on launch\\", the selected credential(s) become the defaults that can be updated at run time.",
- "Select from the list of directories found in
-the Project Base Path. Together the base path and the playbook
-directory provide the full path used to locate playbooks.": "Select from the list of directories found in
-the Project Base Path. Together the base path and the playbook
-directory provide the full path used to locate playbooks.",
- "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks.": "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks.",
- "Select items from list": "Select items from list",
- "Select job type": "Select job type",
- "Select period": "Select period",
- "Select roles to apply": "Select roles to apply",
- "Select source path": "Select source path",
- "Select tags": "Select tags",
- "Select the Instance Groups for this Inventory to run on.": "Select the Instance Groups for this Inventory to run on.",
- "Select the Instance Groups for this Organization
-to run on.": "Select the Instance Groups for this Organization
-to run on.",
- "Select the Instance Groups for this Organization to run on.": "Select the Instance Groups for this Organization to run on.",
- "Select the application that this token will belong to.": "Select the application that this token will belong to.",
- "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts.": "Select the credential you want to use when accessing the remote hosts to run the command. Choose the credential containing the username and SSH key or password that Ansible will need to log into the remote hosts.",
- "Select the custom Python virtual environment for this inventory source sync to run on.": "Select the custom Python virtual environment for this inventory source sync to run on.",
- "Select the default execution environment for this organization to run on.": "Select the default execution environment for this organization to run on.",
- "Select the default execution environment for this organization.": "Select the default execution environment for this organization.",
- "Select the default execution environment for this project.": "Select the default execution environment for this project.",
- "Select the execution environment for this job template.": "Select the execution environment for this job template.",
- "Select the inventory containing the hosts
-you want this job to manage.": "Select the inventory containing the hosts
-you want this job to manage.",
- "Select the inventory containing the hosts you want this job to manage.": "Select the inventory containing the hosts you want this job to manage.",
- "Select the inventory file
-to be synced by this source. You can select from
-the dropdown or enter a file within the input.": "Select the inventory file
-to be synced by this source. You can select from
-the dropdown or enter a file within the input.",
- "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input.": "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input.",
- "Select the inventory that this host will belong to.": "Select the inventory that this host will belong to.",
- "Select the playbook to be executed by this job.": "Select the playbook to be executed by this job.",
- "Select the project containing the playbook
-you want this job to execute.": "Select the project containing the playbook
-you want this job to execute.",
- "Select the project containing the playbook you want this job to execute.": "Select the project containing the playbook you want this job to execute.",
- "Select your Ansible Automation Platform subscription to use.": "Select your Ansible Automation Platform subscription to use.",
- "Select {0}": Array [
- "Select ",
- Array [
- "0",
- ],
- ],
- "Select {header}": Array [
- "Select ",
- Array [
- "header",
- ],
- ],
- "Selected": "Selected",
- "Selected Category": "Selected Category",
- "Send a test log message to the configured log aggregator.": "Send a test log message to the configured log aggregator.",
- "Sender Email": "Sender Email",
- "Sender e-mail": "Sender e-mail",
- "September": "September",
- "Service account JSON file": "Service account JSON file",
- "Set a value for this field": "Set a value for this field",
- "Set how many days of data should be retained.": "Set how many days of data should be retained.",
- "Set preferences for data collection, logos, and logins": "Set preferences for data collection, logos, and logins",
- "Set source path to": "Set source path to",
- "Set the instance online or offline. If offline, jobs will not be assigned to this instance.": "Set the instance online or offline. If offline, jobs will not be assigned to this instance.",
- "Set to Public or Confidential depending on how secure the client device is.": "Set to Public or Confidential depending on how secure the client device is.",
- "Set type": "Set type",
- "Set type select": "Set type select",
- "Set type typeahead": "Set type typeahead",
- "Set zoom to 100% and center graph": "Set zoom to 100% and center graph",
- "Setting category": "Setting category",
- "Setting matches factory default.": "Setting matches factory default.",
- "Setting name": "Setting name",
- "Settings": "Settings",
- "Show": "Show",
- "Show Changes": "Show Changes",
- "Show all groups": "Show all groups",
- "Show changes": "Show changes",
- "Show less": "Show less",
- "Show only root groups": "Show only root groups",
- "Sign in with Azure AD": "Sign in with Azure AD",
- "Sign in with GitHub": "Sign in with GitHub",
- "Sign in with GitHub Enterprise": "Sign in with GitHub Enterprise",
- "Sign in with GitHub Enterprise Organizations": "Sign in with GitHub Enterprise Organizations",
- "Sign in with GitHub Enterprise Teams": "Sign in with GitHub Enterprise Teams",
- "Sign in with GitHub Organizations": "Sign in with GitHub Organizations",
- "Sign in with GitHub Teams": "Sign in with GitHub Teams",
- "Sign in with Google": "Sign in with Google",
- "Sign in with SAML": "Sign in with SAML",
- "Sign in with SAML {samlIDP}": Array [
- "Sign in with SAML ",
- Array [
- "samlIDP",
- ],
- ],
- "Simple key select": "Simple key select",
- "Skip Tags": "Skip Tags",
- "Skip tags are useful when you have a
-large playbook, and you want to skip specific parts of a
-play or task. Use commas to separate multiple tags. Refer
-to Ansible Tower documentation for details on the usage
-of tags.": "Skip tags are useful when you have a
-large playbook, and you want to skip specific parts of a
-play or task. Use commas to separate multiple tags. Refer
-to Ansible Tower documentation for details on the usage
-of tags.",
- "Skip tags are useful when you have a large
-playbook, and you want to skip specific parts of a play or task.
-Use commas to separate multiple tags. Refer to Ansible Tower
-documentation for details on the usage of tags.": "Skip tags are useful when you have a large
-playbook, and you want to skip specific parts of a play or task.
-Use commas to separate multiple tags. Refer to Ansible Tower
-documentation for details on the usage of tags.",
- "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags.": "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags.",
- "Skipped": "Skipped",
- "Slack": "Slack",
- "Smart Inventory": "Smart Inventory",
- "Smart Inventory not found.": "Smart Inventory not found.",
- "Smart host filter": "Smart host filter",
- "Smart inventory": "Smart inventory",
- "Some of the previous step(s) have errors": "Some of the previous step(s) have errors",
- "Something went wrong with the request to test this credential and metadata.": "Something went wrong with the request to test this credential and metadata.",
- "Something went wrong...": "Something went wrong...",
- "Sort": "Sort",
- "Sort question order": "Sort question order",
- "Source": "Source",
- "Source Control Branch": "Source Control Branch",
- "Source Control Branch/Tag/Commit": "Source Control Branch/Tag/Commit",
- "Source Control Credential": "Source Control Credential",
- "Source Control Credential Type": "Source Control Credential Type",
- "Source Control Refspec": "Source Control Refspec",
- "Source Control Type": "Source Control Type",
- "Source Control URL": "Source Control URL",
- "Source Control Update": "Source Control Update",
- "Source Phone Number": "Source Phone Number",
- "Source Variables": "Source Variables",
- "Source Workflow Job": "Source Workflow Job",
- "Source control branch": "Source control branch",
- "Source details": "Source details",
- "Source phone number": "Source phone number",
- "Source variables": "Source variables",
- "Sourced from a project": "Sourced from a project",
- "Sources": "Sources",
- "Specify HTTP Headers in JSON format. Refer to
-the Ansible Tower documentation for example syntax.": "Specify HTTP Headers in JSON format. Refer to
-the Ansible Tower documentation for example syntax.",
- "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax.": "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax.",
- "Specify a notification color. Acceptable colors are hex
-color code (example: #3af or #789abc).": "Specify a notification color. Acceptable colors are hex
-color code (example: #3af or #789abc).",
- "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc).": "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc).",
- "Specify a scope for the token's access": "Specify a scope for the token's access",
- "Specify the conditions under which this node should be executed": "Specify the conditions under which this node should be executed",
- "Standard Error": "Standard Error",
- "Standard Out": "Standard Out",
- "Standard error tab": "Standard error tab",
- "Standard out tab": "Standard out tab",
- "Start": "Start",
- "Start Time": "Start Time",
- "Start date/time": "Start date/time",
- "Start message": "Start message",
- "Start message body": "Start message body",
- "Start sync process": "Start sync process",
- "Start sync source": "Start sync source",
- "Started": "Started",
- "Status": "Status",
- "Stdout": "Stdout",
- "Submit": "Submit",
- "Submodules will track the latest commit on
-their master branch (or other branch specified in
-.gitmodules). If no, submodules will be kept at
-the revision specified by the main project.
-This is equivalent to specifying the --remote
-flag to git submodule update.": "Submodules will track the latest commit on
-their master branch (or other branch specified in
-.gitmodules). If no, submodules will be kept at
-the revision specified by the main project.
-This is equivalent to specifying the --remote
-flag to git submodule update.",
- "Subscription": "Subscription",
- "Subscription Details": "Subscription Details",
- "Subscription Management": "Subscription Management",
- "Subscription manifest": "Subscription manifest",
- "Subscription selection modal": "Subscription selection modal",
- "Subscription settings": "Subscription settings",
- "Subscription type": "Subscription type",
- "Subscriptions table": "Subscriptions table",
- "Subversion": "Subversion",
- "Success": "Success",
- "Success message": "Success message",
- "Success message body": "Success message body",
- "Successful": "Successful",
- "Successfully copied to clipboard!": "Successfully copied to clipboard!",
- "Sun": "Sun",
- "Sunday": "Sunday",
- "Survey": "Survey",
- "Survey List": "Survey List",
- "Survey Preview": "Survey Preview",
- "Survey Toggle": "Survey Toggle",
- "Survey preview modal": "Survey preview modal",
- "Survey questions": "Survey questions",
- "Sync": "Sync",
- "Sync Project": "Sync Project",
- "Sync all": "Sync all",
- "Sync all sources": "Sync all sources",
- "Sync error": "Sync error",
- "Sync for revision": "Sync for revision",
- "System": "System",
- "System Administrator": "System Administrator",
- "System Auditor": "System Auditor",
- "System Settings": "System Settings",
- "System Warning": "System Warning",
- "System administrators have unrestricted access to all resources.": "System administrators have unrestricted access to all resources.",
- "TACACS+": "TACACS+",
- "TACACS+ settings": "TACACS+ settings",
- "Tabs": "Tabs",
- "Tags are useful when you have a large
-playbook, and you want to run a specific part of a
-play or task. Use commas to separate multiple tags.
-Refer to Ansible Tower documentation for details on
-the usage of tags.": "Tags are useful when you have a large
-playbook, and you want to run a specific part of a
-play or task. Use commas to separate multiple tags.
-Refer to Ansible Tower documentation for details on
-the usage of tags.",
- "Tags are useful when you have a large
-playbook, and you want to run a specific part of a play or task.
-Use commas to separate multiple tags. Refer to Ansible Tower
-documentation for details on the usage of tags.": "Tags are useful when you have a large
-playbook, and you want to run a specific part of a play or task.
-Use commas to separate multiple tags. Refer to Ansible Tower
-documentation for details on the usage of tags.",
- "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags.": "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags.",
- "Tags for the Annotation": "Tags for the Annotation",
- "Tags for the annotation (optional)": "Tags for the annotation (optional)",
- "Target URL": "Target URL",
- "Task": "Task",
- "Task Count": "Task Count",
- "Task Started": "Task Started",
- "Tasks": "Tasks",
- "Team": "Team",
- "Team Roles": "Team Roles",
- "Team not found.": "Team not found.",
- "Teams": "Teams",
- "Template not found.": "Template not found.",
- "Template type": "Template type",
- "Templates": "Templates",
- "Test": "Test",
- "Test External Credential": "Test External Credential",
- "Test Notification": "Test Notification",
- "Test logging": "Test logging",
- "Test notification": "Test notification",
- "Test passed": "Test passed",
- "Text": "Text",
- "Text Area": "Text Area",
- "Textarea": "Textarea",
- "The": "The",
- "The Execution Environment to be used when one has not been configured for a job template.": "The Execution Environment to be used when one has not been configured for a job template.",
- "The Grant type the user must use for acquire tokens for this application": "The Grant type the user must use for acquire tokens for this application",
- "The amount of time (in seconds) before the email
-notification stops trying to reach the host and times out. Ranges
-from 1 to 120 seconds.": "The amount of time (in seconds) before the email
-notification stops trying to reach the host and times out. Ranges
-from 1 to 120 seconds.",
- "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds.": "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds.",
- "The amount of time (in seconds) to run
-before the job is canceled. Defaults to 0 for no job
-timeout.": "The amount of time (in seconds) to run
-before the job is canceled. Defaults to 0 for no job
-timeout.",
- "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout.": "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout.",
- "The base URL of the Grafana server - the
-/api/annotations endpoint will be added automatically to the base
-Grafana URL.": "The base URL of the Grafana server - the
-/api/annotations endpoint will be added automatically to the base
-Grafana URL.",
- "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL.": "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL.",
- "The first fetches all references. The second
-fetches the Github pull request number 62, in this example
-the branch needs to be \\"pull/62/head\\".": "The first fetches all references. The second
-fetches the Github pull request number 62, in this example
-the branch needs to be \\"pull/62/head\\".",
- "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \\"pull/62/head\\".": "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \\"pull/62/head\\".",
- "The maximum number of hosts allowed to be managed by this organization.
-Value defaults to 0 which means no limit. Refer to the Ansible
-documentation for more details.": "The maximum number of hosts allowed to be managed by this organization.
-Value defaults to 0 which means no limit. Refer to the Ansible
-documentation for more details.",
- "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details.": "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details.",
- "The number of parallel or simultaneous
-processes to use while executing the playbook. An empty value,
-or a value less than 1 will use the Ansible default which is
-usually 5. The default number of forks can be overwritten
-with a change to": "The number of parallel or simultaneous
-processes to use while executing the playbook. An empty value,
-or a value less than 1 will use the Ansible default which is
-usually 5. The default number of forks can be overwritten
-with a change to",
- "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to": "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to",
- "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information": "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information",
- "The page you requested could not be found.": "The page you requested could not be found.",
- "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns": "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns",
- "The registry location where the container is stored.": "The registry location where the container is stored.",
- "The resource associated with this node has been deleted.": "The resource associated with this node has been deleted.",
- "The suggested format for variable names is lowercase and
-underscore-separated (for example, foo_bar, user_id, host_name,
-etc.). Variable names with spaces are not allowed.": "The suggested format for variable names is lowercase and
-underscore-separated (for example, foo_bar, user_id, host_name,
-etc.). Variable names with spaces are not allowed.",
- "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed.": "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed.",
- "The tower instance group cannot be deleted.": "The tower instance group cannot be deleted.",
- "There are no available playbook directories in {project_base_dir}.
-Either that directory is empty, or all of the contents are already
-assigned to other projects. Create a new directory there and make
-sure the playbook files can be read by the \\"awx\\" system user,
-or have {brandName} directly retrieve your playbooks from
-source control using the Source Control Type option above.": Array [
- "There are no available playbook directories in ",
- Array [
- "project_base_dir",
- ],
- ".
-Either that directory is empty, or all of the contents are already
-assigned to other projects. Create a new directory there and make
-sure the playbook files can be read by the \\"awx\\" system user,
-or have ",
- Array [
- "brandName",
- ],
- " directly retrieve your playbooks from
-source control using the Source Control Type option above.",
- ],
- "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \\"awx\\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above.": Array [
- "There are no available playbook directories in ",
- Array [
- "project_base_dir",
- ],
- ". Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \\"awx\\" system user, or have ",
- Array [
- "brandName",
- ],
- " directly retrieve your playbooks from source control using the Source Control Type option above.",
- ],
- "There was a problem signing in. Please try again.": "There was a problem signing in. Please try again.",
- "There was an error loading this content. Please reload the page.": "There was an error loading this content. Please reload the page.",
- "There was an error parsing the file. Please check the file formatting and try again.": "There was an error parsing the file. Please check the file formatting and try again.",
- "There was an error saving the workflow.": "There was an error saving the workflow.",
- "There was an error testing the log aggregator.": "There was an error testing the log aggregator.",
- "These approvals cannot be deleted due to insufficient permissions or a pending job status": "These approvals cannot be deleted due to insufficient permissions or a pending job status",
- "These are the modules that {brandName} supports running commands against.": Array [
- "These are the modules that ",
- Array [
- "brandName",
- ],
- " supports running commands against.",
- ],
- "These are the verbosity levels for standard out of the command run that are supported.": "These are the verbosity levels for standard out of the command run that are supported.",
- "These arguments are used with the specified module.": "These arguments are used with the specified module.",
- "These arguments are used with the specified module. You can find information about {0} by clicking": Array [
- "These arguments are used with the specified module. You can find information about ",
- Array [
- "0",
- ],
- " by clicking",
- ],
- "Third": "Third",
- "This action will delete the following:": "This action will delete the following:",
- "This action will disassociate all roles for this user from the selected teams.": "This action will disassociate all roles for this user from the selected teams.",
- "This action will disassociate the following role from {0}:": Array [
- "This action will disassociate the following role from ",
- Array [
- "0",
- ],
- ":",
- ],
- "This action will disassociate the following:": "This action will disassociate the following:",
- "This container group is currently being by other resources. Are you sure you want to delete it?": "This container group is currently being by other resources. Are you sure you want to delete it?",
- "This credential is currently being used by other resources. Are you sure you want to delete it?": "This credential is currently being used by other resources. Are you sure you want to delete it?",
- "This credential type is currently being used by some credentials and cannot be deleted": "This credential type is currently being used by some credentials and cannot be deleted",
- "This data is used to enhance
-future releases of the Tower Software and help
-streamline customer experience and success.": "This data is used to enhance
-future releases of the Tower Software and help
-streamline customer experience and success.",
- "This data is used to enhance
-future releases of the Tower Software and to provide
-Insights Analytics to Tower subscribers.": "This data is used to enhance
-future releases of the Tower Software and to provide
-Insights Analytics to Tower subscribers.",
- "This execution environment is currently being used by other resources. Are you sure you want to delete it?": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import.": "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import.",
- "This field may not be blank": "This field may not be blank",
- "This field must be a number": "This field must be a number",
- "This field must be a number and have a value between {0} and {1}": Array [
- "This field must be a number and have a value between ",
- Array [
- "0",
- ],
- " and ",
- Array [
- "1",
- ],
- ],
- "This field must be a number and have a value between {min} and {max}": Array [
- "This field must be a number and have a value between ",
- Array [
- "min",
- ],
- " and ",
- Array [
- "max",
- ],
- ],
- "This field must be a regular expression": "This field must be a regular expression",
- "This field must be an integer": "This field must be an integer",
- "This field must be at least {0} characters": Array [
- "This field must be at least ",
- Array [
- "0",
- ],
- " characters",
- ],
- "This field must be at least {min} characters": Array [
- "This field must be at least ",
- Array [
- "min",
- ],
- " characters",
- ],
- "This field must be greater than 0": "This field must be greater than 0",
- "This field must not be blank": "This field must not be blank",
- "This field must not contain spaces": "This field must not contain spaces",
- "This field must not exceed {0} characters": Array [
- "This field must not exceed ",
- Array [
- "0",
- ],
- " characters",
- ],
- "This field must not exceed {max} characters": Array [
- "This field must not exceed ",
- Array [
- "max",
- ],
- " characters",
- ],
- "This field will be retrieved from an external secret management system using the specified credential.": "This field will be retrieved from an external secret management system using the specified credential.",
- "This instance group is currently being by other resources. Are you sure you want to delete it?": "This instance group is currently being by other resources. Are you sure you want to delete it?",
- "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory.": Array [
- "This inventory is applied to all job template nodes within this workflow (",
- Array [
- "0",
- ],
- ") that prompt for an inventory.",
- ],
- "This inventory is currently being used by other resources. Are you sure you want to delete it?": "This inventory is currently being used by other resources. Are you sure you want to delete it?",
- "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?": "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?",
- "This is the only time the client secret will be shown.": "This is the only time the client secret will be shown.",
- "This is the only time the token value and associated refresh token value will be shown.": "This is the only time the token value and associated refresh token value will be shown.",
- "This job template is currently being used by other resources. Are you sure you want to delete it?": "This job template is currently being used by other resources. Are you sure you want to delete it?",
- "This organization is currently being by other resources. Are you sure you want to delete it?": "This organization is currently being by other resources. Are you sure you want to delete it?",
- "This project is currently being used by other resources. Are you sure you want to delete it?": "This project is currently being used by other resources. Are you sure you want to delete it?",
- "This project needs to be updated": "This project needs to be updated",
- "This schedule is missing an Inventory": "This schedule is missing an Inventory",
- "This schedule is missing required survey values": "This schedule is missing required survey values",
- "This step contains errors": "This step contains errors",
- "This value does not match the password you entered previously. Please confirm that password.": "This value does not match the password you entered previously. Please confirm that password.",
- "This will revert all configuration values on this page to
-their factory defaults. Are you sure you want to proceed?": "This will revert all configuration values on this page to
-their factory defaults. Are you sure you want to proceed?",
- "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?": "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?",
- "This workflow does not have any nodes configured.": "This workflow does not have any nodes configured.",
- "This workflow job template is currently being used by other resources. Are you sure you want to delete it?": "This workflow job template is currently being used by other resources. Are you sure you want to delete it?",
- "Thu": "Thu",
- "Thursday": "Thursday",
- "Time": "Time",
- "Time in seconds to consider a project
-to be current. During job runs and callbacks the task
-system will evaluate the timestamp of the latest project
-update. If it is older than Cache Timeout, it is not
-considered current, and a new project update will be
-performed.": "Time in seconds to consider a project
-to be current. During job runs and callbacks the task
-system will evaluate the timestamp of the latest project
-update. If it is older than Cache Timeout, it is not
-considered current, and a new project update will be
-performed.",
- "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed.": "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed.",
- "Time in seconds to consider an inventory sync
-to be current. During job runs and callbacks the task system will
-evaluate the timestamp of the latest sync. If it is older than
-Cache Timeout, it is not considered current, and a new
-inventory sync will be performed.": "Time in seconds to consider an inventory sync
-to be current. During job runs and callbacks the task system will
-evaluate the timestamp of the latest sync. If it is older than
-Cache Timeout, it is not considered current, and a new
-inventory sync will be performed.",
- "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed.": "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed.",
- "Timed out": "Timed out",
- "Timeout": "Timeout",
- "Timeout minutes": "Timeout minutes",
- "Timeout seconds": "Timeout seconds",
- "Toggle Legend": "Toggle Legend",
- "Toggle Password": "Toggle Password",
- "Toggle Tools": "Toggle Tools",
- "Toggle expand/collapse event lines": "Toggle expand/collapse event lines",
- "Toggle host": "Toggle host",
- "Toggle instance": "Toggle instance",
- "Toggle legend": "Toggle legend",
- "Toggle notification approvals": "Toggle notification approvals",
- "Toggle notification failure": "Toggle notification failure",
- "Toggle notification start": "Toggle notification start",
- "Toggle notification success": "Toggle notification success",
- "Toggle schedule": "Toggle schedule",
- "Toggle tools": "Toggle tools",
- "Token": "Token",
- "Token information": "Token information",
- "Token not found.": "Token not found.",
- "Token type": "Token type",
- "Tokens": "Tokens",
- "Tools": "Tools",
- "Top Pagination": "Top Pagination",
- "Total Jobs": "Total Jobs",
- "Total Nodes": "Total Nodes",
- "Total jobs": "Total jobs",
- "Track submodules": "Track submodules",
- "Track submodules latest commit on branch": "Track submodules latest commit on branch",
- "Trial": "Trial",
- "True": "True",
- "Tue": "Tue",
- "Tuesday": "Tuesday",
- "Twilio": "Twilio",
- "Type": "Type",
- "Type Details": "Type Details",
- "Unavailable": "Unavailable",
- "Undo": "Undo",
- "Unlimited": "Unlimited",
- "Unreachable": "Unreachable",
- "Unreachable Host Count": "Unreachable Host Count",
- "Unreachable Hosts": "Unreachable Hosts",
- "Unrecognized day string": "Unrecognized day string",
- "Unsaved changes modal": "Unsaved changes modal",
- "Update Revision on Launch": "Update Revision on Launch",
- "Update on Launch": "Update on Launch",
- "Update on Project Update": "Update on Project Update",
- "Update on launch": "Update on launch",
- "Update on project update": "Update on project update",
- "Update options": "Update options",
- "Update settings pertaining to Jobs within {brandName}": Array [
- "Update settings pertaining to Jobs within ",
- Array [
- "brandName",
- ],
- ],
- "Update webhook key": "Update webhook key",
- "Updating": "Updating",
- "Upload a .zip file": "Upload a .zip file",
- "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations0> on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations0> on the Red Hat Customer Portal.",
- "Use Default Ansible Environment": "Use Default Ansible Environment",
- "Use Default {label}": Array [
- "Use Default ",
- Array [
- "label",
- ],
- ],
- "Use Fact Storage": "Use Fact Storage",
- "Use SSL": "Use SSL",
- "Use TLS": "Use TLS",
- "Use custom messages to change the content of
-notifications sent when a job starts, succeeds, or fails. Use
-curly braces to access information about the job:": "Use custom messages to change the content of
-notifications sent when a job starts, succeeds, or fails. Use
-curly braces to access information about the job:",
- "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:": "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:",
- "Used capacity": "Used capacity",
- "User": "User",
- "User Details": "User Details",
- "User Interface": "User Interface",
- "User Interface Settings": "User Interface Settings",
- "User Interface settings": "User Interface settings",
- "User Roles": "User Roles",
- "User Type": "User Type",
- "User analytics": "User analytics",
- "User and Insights analytics": "User and Insights analytics",
- "User details": "User details",
- "User not found.": "User not found.",
- "User tokens": "User tokens",
- "Username": "Username",
- "Username / password": "Username / password",
- "Users": "Users",
- "VMware vCenter": "VMware vCenter",
- "Variables": "Variables",
- "Variables Prompted": "Variables Prompted",
- "Vault password": "Vault password",
- "Vault password | {credId}": Array [
- "Vault password | ",
- Array [
- "credId",
- ],
- ],
- "Verbose": "Verbose",
- "Verbosity": "Verbosity",
- "Version": "Version",
- "View Activity Stream settings": "View Activity Stream settings",
- "View Azure AD settings": "View Azure AD settings",
- "View Credential Details": "View Credential Details",
- "View Details": "View Details",
- "View GitHub Settings": "View GitHub Settings",
- "View Google OAuth 2.0 settings": "View Google OAuth 2.0 settings",
- "View Host Details": "View Host Details",
- "View Inventory Details": "View Inventory Details",
- "View Inventory Groups": "View Inventory Groups",
- "View Inventory Host Details": "View Inventory Host Details",
- "View JSON examples at <0>www.json.org0>": "View JSON examples at <0>www.json.org0>",
- "View Job Details": "View Job Details",
- "View Jobs settings": "View Jobs settings",
- "View LDAP Settings": "View LDAP Settings",
- "View Logging settings": "View Logging settings",
- "View Miscellaneous System settings": "View Miscellaneous System settings",
- "View Organization Details": "View Organization Details",
- "View Project Details": "View Project Details",
- "View RADIUS settings": "View RADIUS settings",
- "View SAML settings": "View SAML settings",
- "View Schedules": "View Schedules",
- "View Settings": "View Settings",
- "View Survey": "View Survey",
- "View TACACS+ settings": "View TACACS+ settings",
- "View Team Details": "View Team Details",
- "View Template Details": "View Template Details",
- "View Tokens": "View Tokens",
- "View User Details": "View User Details",
- "View User Interface settings": "View User Interface settings",
- "View Workflow Approval Details": "View Workflow Approval Details",
- "View YAML examples at <0>docs.ansible.com0>": "View YAML examples at <0>docs.ansible.com0>",
- "View activity stream": "View activity stream",
- "View all Credentials.": "View all Credentials.",
- "View all Hosts.": "View all Hosts.",
- "View all Inventories.": "View all Inventories.",
- "View all Inventory Hosts.": "View all Inventory Hosts.",
- "View all Jobs": "View all Jobs",
- "View all Jobs.": "View all Jobs.",
- "View all Notification Templates.": "View all Notification Templates.",
- "View all Organizations.": "View all Organizations.",
- "View all Projects.": "View all Projects.",
- "View all Teams.": "View all Teams.",
- "View all Templates.": "View all Templates.",
- "View all Users.": "View all Users.",
- "View all Workflow Approvals.": "View all Workflow Approvals.",
- "View all applications.": "View all applications.",
- "View all credential types": "View all credential types",
- "View all execution environments": "View all execution environments",
- "View all instance groups": "View all instance groups",
- "View all management jobs": "View all management jobs",
- "View all settings": "View all settings",
- "View all tokens.": "View all tokens.",
- "View and edit your license information": "View and edit your license information",
- "View and edit your subscription information": "View and edit your subscription information",
- "View event details": "View event details",
- "View inventory source details": "View inventory source details",
- "View job {0}": Array [
- "View job ",
- Array [
- "0",
- ],
- ],
- "View node details": "View node details",
- "View smart inventory host details": "View smart inventory host details",
- "Views": "Views",
- "Visualizer": "Visualizer",
- "WARNING:": "WARNING:",
- "Waiting": "Waiting",
- "Warning": "Warning",
- "Warning: Unsaved Changes": "Warning: Unsaved Changes",
- "We were unable to locate licenses associated with this account.": "We were unable to locate licenses associated with this account.",
- "We were unable to locate subscriptions associated with this account.": "We were unable to locate subscriptions associated with this account.",
- "Webhook": "Webhook",
- "Webhook Credential": "Webhook Credential",
- "Webhook Credentials": "Webhook Credentials",
- "Webhook Key": "Webhook Key",
- "Webhook Service": "Webhook Service",
- "Webhook URL": "Webhook URL",
- "Webhook details": "Webhook details",
- "Webhook services can launch jobs with this workflow job template by making a POST request to this URL.": "Webhook services can launch jobs with this workflow job template by making a POST request to this URL.",
- "Webhook services can use this as a shared secret.": "Webhook services can use this as a shared secret.",
- "Wed": "Wed",
- "Wednesday": "Wednesday",
- "Week": "Week",
- "Weekday": "Weekday",
- "Weekend day": "Weekend day",
- "Welcome to Ansible {brandName}! Please Sign In.": Array [
- "Welcome to Ansible ",
- Array [
- "brandName",
- ],
- "! Please Sign In.",
- ],
- "Welcome to Red Hat Ansible Automation Platform!
-Please complete the steps below to activate your subscription.": "Welcome to Red Hat Ansible Automation Platform!
-Please complete the steps below to activate your subscription.",
- "When not checked, a merge will be performed,
-combining local variables with those found on the
-external source.": "When not checked, a merge will be performed,
-combining local variables with those found on the
-external source.",
- "When not checked, a merge will be performed, combining local variables with those found on the external source.": "When not checked, a merge will be performed, combining local variables with those found on the external source.",
- "When not checked, local child
-hosts and groups not found on the external source will remain
-untouched by the inventory update process.": "When not checked, local child
-hosts and groups not found on the external source will remain
-untouched by the inventory update process.",
- "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process.": "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process.",
- "Workflow": "Workflow",
- "Workflow Approval": "Workflow Approval",
- "Workflow Approval not found.": "Workflow Approval not found.",
- "Workflow Approvals": "Workflow Approvals",
- "Workflow Job": "Workflow Job",
- "Workflow Job Template": "Workflow Job Template",
- "Workflow Job Template Nodes": "Workflow Job Template Nodes",
- "Workflow Job Templates": "Workflow Job Templates",
- "Workflow Link": "Workflow Link",
- "Workflow Template": "Workflow Template",
- "Workflow approved message": "Workflow approved message",
- "Workflow approved message body": "Workflow approved message body",
- "Workflow denied message": "Workflow denied message",
- "Workflow denied message body": "Workflow denied message body",
- "Workflow documentation": "Workflow documentation",
- "Workflow job templates": "Workflow job templates",
- "Workflow link modal": "Workflow link modal",
- "Workflow node view modal": "Workflow node view modal",
- "Workflow pending message": "Workflow pending message",
- "Workflow pending message body": "Workflow pending message body",
- "Workflow timed out message": "Workflow timed out message",
- "Workflow timed out message body": "Workflow timed out message body",
- "Write": "Write",
- "YAML:": "YAML:",
- "Year": "Year",
- "Yes": "Yes",
- "You are unable to act on the following workflow approvals: {itemsUnableToApprove}": Array [
- "You are unable to act on the following workflow approvals: ",
- Array [
- "itemsUnableToApprove",
- ],
- ],
- "You are unable to act on the following workflow approvals: {itemsUnableToDeny}": Array [
- "You are unable to act on the following workflow approvals: ",
- Array [
- "itemsUnableToDeny",
- ],
- ],
- "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID.": "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID.",
- "You do not have permission to delete the following Groups: {itemsUnableToDelete}": Array [
- "You do not have permission to delete the following Groups: ",
- Array [
- "itemsUnableToDelete",
- ],
- ],
- "You do not have permission to delete the following {0}: {itemsUnableToDelete}": Array [
- "You do not have permission to delete the following ",
- Array [
- "0",
- ],
- ": ",
- Array [
- "itemsUnableToDelete",
- ],
- ],
- "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}": Array [
- "You do not have permission to delete ",
- Array [
- "pluralizedItemName",
- ],
- ": ",
- Array [
- "itemsUnableToDelete",
- ],
- ],
- "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}.": Array [
- "You do not have permission to delete ",
- Array [
- "pluralizedItemName",
- ],
- ": ",
- Array [
- "itemsUnableToDelete",
- ],
- ".",
- ],
- "You do not have permission to disassociate the following: {itemsUnableToDisassociate}": Array [
- "You do not have permission to disassociate the following: ",
- Array [
- "itemsUnableToDisassociate",
- ],
- ],
- "You have been logged out.": "You have been logged out.",
- "You may apply a number of possible variables in the
-message. For more information, refer to the": "You may apply a number of possible variables in the
-message. For more information, refer to the",
- "You may apply a number of possible variables in the message. Refer to the": "You may apply a number of possible variables in the message. Refer to the",
- "You will be logged out in {0} seconds due to inactivity.": Array [
- "You will be logged out in ",
- Array [
- "0",
- ],
- " seconds due to inactivity.",
- ],
- "Your session is about to expire": "Your session is about to expire",
- "Zoom In": "Zoom In",
- "Zoom Out": "Zoom Out",
- "a new webhook key will be generated on save.": "a new webhook key will be generated on save.",
- "a new webhook url will be generated on save.": "a new webhook url will be generated on save.",
- "actions": "actions",
- "add {currentTab}": Array [
- "add ",
- Array [
- "currentTab",
- ],
- ],
- "adding {currentTab}": Array [
- "adding ",
- Array [
- "currentTab",
- ],
- ],
- "and click on Update Revision on Launch": "and click on Update Revision on Launch",
- "approved": "approved",
- "brand logo": "brand logo",
- "cancel delete": "cancel delete",
- "command": "command",
- "confirm delete": "confirm delete",
- "confirm disassociate": "confirm disassociate",
- "confirm removal of {currentTab}/cancel and go back to {currentTab} view.": Array [
- "confirm removal of ",
- Array [
- "currentTab",
- ],
- "/cancel and go back to ",
- Array [
- "currentTab",
- ],
- " view.",
- ],
- "controller instance": "controller instance",
- "copy to clipboard disabled": "copy to clipboard disabled",
- "delete {currentTab}": Array [
- "delete ",
- Array [
- "currentTab",
- ],
- ],
- "deleting {currentTab} association with orgs": Array [
- "deleting ",
- Array [
- "currentTab",
- ],
- " association with orgs",
- ],
- "deletion error": "deletion error",
- "denied": "denied",
- "disassociate": "disassociate",
- "documentation": "documentation",
- "edit": "edit",
- "edit view": "edit view",
- "encrypted": "encrypted",
- "expiration": "expiration",
- "for more details.": "for more details.",
- "for more info.": "for more info.",
- "group": "group",
- "groups": "groups",
- "here": "here",
- "here.": "here.",
- "hosts": "hosts",
- "instance counts": "instance counts",
- "instance group used capacity": "instance group used capacity",
- "instance host name": "instance host name",
- "instance type": "instance type",
- "inventory": "inventory",
- "isolated instance": "isolated instance",
- "items": "items",
- "ldap user": "ldap user",
- "login type": "login type",
- "min": "min",
- "move down": "move down",
- "move up": "move up",
- "name": "name",
- "of": "of",
- "of {pageCount}": Array [
- "of ",
- Array [
- "pageCount",
- ],
- ],
- "option to the": "option to the",
- "or attributes of the job such as": "or attributes of the job such as",
- "page": "page",
- "pages": "pages",
- "per page": "per page",
- "relaunch jobs": "relaunch jobs",
- "resource name": "resource name",
- "resource role": "resource role",
- "resource type": "resource type",
- "save/cancel and go back to view": "save/cancel and go back to view",
- "save/cancel and go back to {currentTab} view": Array [
- "save/cancel and go back to ",
- Array [
- "currentTab",
- ],
- " view",
- ],
- "scope": "scope",
- "sec": "sec",
- "seconds": "seconds",
- "select module": "select module",
- "select organization {itemId}": Array [
- "select organization ",
- Array [
- "itemId",
- ],
- ],
- "select verbosity": "select verbosity",
- "social login": "social login",
- "system": "system",
- "team name": "team name",
- "timed out": "timed out",
- "toggle changes": "toggle changes",
- "token name": "token name",
- "type": "type",
- "updated": "updated",
- "workflow job template webhook key": "workflow job template webhook key",
- "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "Are you sure you want delete the group below?",
- "other": "Are you sure you want delete the groups below?",
- },
- ],
- ],
- "{0, plural, one {Delete Group?} other {Delete Groups?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "Delete Group?",
- "other": "Delete Groups?",
- },
- ],
- ],
- "{0, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "The inventory will be in a pending status until the final delete is processed.",
- "other": "The inventories will be in a pending status until the final delete is processed.",
- },
- ],
- ],
- "{0, plural, one {The selected job cannot be deleted due to insufficient permission or a running job status} other {The selected jobs cannot be deleted due to insufficient permissions or a running job status}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "The selected job cannot be deleted due to insufficient permission or a running job status",
- "other": "The selected jobs cannot be deleted due to insufficient permissions or a running job status",
- },
- ],
- ],
- "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "The template will be in a pending status until the final delete is processed.",
- "other": "The templates will be in a pending status until the final delete is processed.",
- },
- ],
- ],
- "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This approval cannot be deleted due to insufficient permissions or a pending job status",
- "other": "These approvals cannot be deleted due to insufficient permissions or a pending job status",
- },
- ],
- ],
- "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This credential is currently being used by other resources. Are you sure you want to delete it?",
- "other": "Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This credential type is currently being used by some credentials and cannot be deleted.",
- "other": "Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other { Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": " Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": "Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This instance group is currently being by other resources. Are you sure you want to delete it?",
- "other": "Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?",
- "other": "Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway",
- },
- ],
- ],
- "{0, plural, one {This invetory is currently being used by some temeplates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This invetory is currently being used by some temeplates. Are you sure you want to delete it?",
- "other": "Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This organization is currently being by other resources. Are you sure you want to delete it?",
- "other": "Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This project is currently being used by other resources. Are you sure you want to delete it?",
- "other": "Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This template is currently being used by some workflow nodes. Are you sure you want to delete it?",
- "other": "Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "You cannot cancel the following job because it is not running",
- "other": "You cannot cancel the following jobs because they are not running",
- },
- ],
- ],
- "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "You do not have permission to cancel the following job:",
- "other": "You do not have permission to cancel the following jobs:",
- },
- ],
- ],
- "{0}": Array [
- Array [
- "0",
- ],
- ],
- "{0} (deleted)": Array [
- Array [
- "0",
- ],
- " (deleted)",
- ],
- "{0} List": Array [
- Array [
- "0",
- ],
- " List",
- ],
- "{0} more": Array [
- Array [
- "0",
- ],
- " more",
- ],
- "{0} sources with sync failures.": Array [
- Array [
- "0",
- ],
- " sources with sync failures.",
- ],
- "{0}: {1}": Array [
- Array [
- "0",
- ],
- ": ",
- Array [
- "1",
- ],
- ],
- "{brandName} logo": Array [
- Array [
- "brandName",
- ],
- " logo",
- ],
- "{currentTab} detail view": Array [
- Array [
- "currentTab",
- ],
- " detail view",
- ],
- "{dateStr} by <0>{username}0>": Array [
- Array [
- "dateStr",
- ],
- " by <0>",
- Array [
- "username",
- ],
- "0>",
- ],
- "{intervalValue, plural, one {day} other {days}}": Array [
- Array [
- "intervalValue",
- "plural",
- Object {
- "one": "day",
- "other": "days",
- },
- ],
- ],
- "{intervalValue, plural, one {hour} other {hours}}": Array [
- Array [
- "intervalValue",
- "plural",
- Object {
- "one": "hour",
- "other": "hours",
- },
- ],
- ],
- "{intervalValue, plural, one {minute} other {minutes}}": Array [
- Array [
- "intervalValue",
- "plural",
- Object {
- "one": "minute",
- "other": "minutes",
- },
- ],
- ],
- "{intervalValue, plural, one {month} other {months}}": Array [
- Array [
- "intervalValue",
- "plural",
- Object {
- "one": "month",
- "other": "months",
- },
- ],
- ],
- "{intervalValue, plural, one {week} other {weeks}}": Array [
- Array [
- "intervalValue",
- "plural",
- Object {
- "one": "week",
- "other": "weeks",
- },
- ],
- ],
- "{intervalValue, plural, one {year} other {years}}": Array [
- Array [
- "intervalValue",
- "plural",
- Object {
- "one": "year",
- "other": "years",
- },
- ],
- ],
- "{itemMin} - {itemMax} of {count}": Array [
- Array [
- "itemMin",
- ],
- " - ",
- Array [
- "itemMax",
- ],
- " of ",
- Array [
- "count",
- ],
- ],
- "{minutes} min {seconds} sec": Array [
- Array [
- "minutes",
- ],
- " min ",
- Array [
- "seconds",
- ],
- " sec",
- ],
- "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}": Array [
- Array [
- "numItemsToDelete",
- "plural",
- Object {
- "one": "The inventory will be in a pending status until the final delete is processed.",
- "other": "The inventories will be in a pending status until the final delete is processed.",
- },
- ],
- ],
- "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}": Array [
- Array [
- "numJobsToCancel",
- "plural",
- Object {
- "one": "Cancel job",
- "other": "Cancel jobs",
- },
- ],
- ],
- "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}": Array [
- Array [
- "numJobsToCancel",
- "plural",
- Object {
- "one": "Cancel selected job",
- "other": "Cancel selected jobs",
- },
- ],
- ],
- "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}": Array [
- Array [
- "numJobsToCancel",
- "plural",
- Object {
- "one": "This action will cancel the following job:",
- "other": "This action will cancel the following jobs:",
- },
- ],
- ],
- "{numJobsToCancel, plural, one {{0}} other {{1}}}": Array [
- Array [
- "numJobsToCancel",
- "plural",
- Object {
- "one": Array [
- Array [
- "0",
- ],
- ],
- "other": Array [
- Array [
- "1",
- ],
- ],
- },
- ],
- ],
- "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}": Array [
- Array [
- "numJobsUnableToCancel",
- "plural",
- Object {
- "one": "You cannot cancel the following job because it is not running:",
- "other": "You cannot cancel the following jobs because they are not running:",
- },
- ],
- ],
- "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}": Array [
- Array [
- "numJobsUnableToCancel",
- "plural",
- Object {
- "one": "You do not have permission to cancel the following job:",
- "other": "You do not have permission to cancel the following jobs:",
- },
- ],
- ],
- "{pluralizedItemName} List": Array [
- Array [
- "pluralizedItemName",
- ],
- " List",
- ],
- "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}": Array [
- Array [
- "zeroOrOneJobSelected",
- "plural",
- Object {
- "one": "Cancel job",
- "other": "Cancel jobs",
- },
- ],
- ],
- },
- },
- },
- }
- }
itemsToDelete={Array []}
onDelete={[Function]}
pluralizedItemName="Items"
diff --git a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap
index bf2eedec73..ea4bad0dd0 100644
--- a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap
+++ b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap
@@ -636,6 +636,19 @@ callback URL. Using the URL a host can contact BRAND_NAME
and request a configuration update using this job
template.",
"Enables creation of a provisioning
+callback URL. Using the URL a host can contact {BrandName}
+and request a configuration update using this job
+template.": Array [
+ "Enables creation of a provisioning
+callback URL. Using the URL a host can contact ",
+ Array [
+ "BrandName",
+ ],
+ "
+and request a configuration update using this job
+template.",
+ ],
+ "Enables creation of a provisioning
callback URL. Using the URL a host can contact {brandName}
and request a configuration update using this job
template": Array [
@@ -1157,6 +1170,7 @@ reset by the inventory sync process.",
"Last job": "Last job",
"Last job run": "Last job run",
"Last modified": "Last modified",
+ "Last used": "Last used",
"Launch": "Launch",
"Launch Management Job": "Launch Management Job",
"Launch Template": "Launch Template",
@@ -1298,11 +1312,11 @@ disassociating if the host is also a member of that group’s
children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.": "Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
@@ -2705,23 +2719,13 @@ message. For more information, refer to the",
},
],
],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other { Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
+ "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}": Array [
Array [
"0",
"plural",
Object {
"one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": " Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": "Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
+ "other": "These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?",
},
],
],
@@ -2785,6 +2789,16 @@ message. For more information, refer to the",
},
],
],
+ "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}": Array [
+ Array [
+ "0",
+ "plural",
+ Object {
+ "one": "You cannot cancel the following job because it is not running:",
+ "other": "You cannot cancel the following jobs because they are not running:",
+ },
+ ],
+ ],
"{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}": Array [
Array [
"0",
@@ -3740,6 +3754,19 @@ callback URL. Using the URL a host can contact BRAND_NAME
and request a configuration update using this job
template.",
"Enables creation of a provisioning
+callback URL. Using the URL a host can contact {BrandName}
+and request a configuration update using this job
+template.": Array [
+ "Enables creation of a provisioning
+callback URL. Using the URL a host can contact ",
+ Array [
+ "BrandName",
+ ],
+ "
+and request a configuration update using this job
+template.",
+ ],
+ "Enables creation of a provisioning
callback URL. Using the URL a host can contact {brandName}
and request a configuration update using this job
template": Array [
@@ -4261,6 +4288,7 @@ reset by the inventory sync process.",
"Last job": "Last job",
"Last job run": "Last job run",
"Last modified": "Last modified",
+ "Last used": "Last used",
"Launch": "Launch",
"Launch Management Job": "Launch Management Job",
"Launch Template": "Launch Template",
@@ -4402,11 +4430,11 @@ disassociating if the host is also a member of that group’s
children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.": "Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
@@ -5809,23 +5837,13 @@ message. For more information, refer to the",
},
],
],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other { Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
+ "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}": Array [
Array [
"0",
"plural",
Object {
"one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": " Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": "Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
+ "other": "These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?",
},
],
],
@@ -5889,6 +5907,16 @@ message. For more information, refer to the",
},
],
],
+ "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}": Array [
+ Array [
+ "0",
+ "plural",
+ Object {
+ "one": "You cannot cancel the following job because it is not running:",
+ "other": "You cannot cancel the following jobs because they are not running:",
+ },
+ ],
+ ],
"{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}": Array [
Array [
"0",
diff --git a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap
index a3a13cade4..d3cc249fd9 100644
--- a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap
+++ b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap
@@ -663,6 +663,19 @@ callback URL. Using the URL a host can contact BRAND_NAME
and request a configuration update using this job
template.",
"Enables creation of a provisioning
+callback URL. Using the URL a host can contact {BrandName}
+and request a configuration update using this job
+template.": Array [
+ "Enables creation of a provisioning
+callback URL. Using the URL a host can contact ",
+ Array [
+ "BrandName",
+ ],
+ "
+and request a configuration update using this job
+template.",
+ ],
+ "Enables creation of a provisioning
callback URL. Using the URL a host can contact {brandName}
and request a configuration update using this job
template": Array [
@@ -1184,6 +1197,7 @@ reset by the inventory sync process.",
"Last job": "Last job",
"Last job run": "Last job run",
"Last modified": "Last modified",
+ "Last used": "Last used",
"Launch": "Launch",
"Launch Management Job": "Launch Management Job",
"Launch Template": "Launch Template",
@@ -1325,11 +1339,11 @@ disassociating if the host is also a member of that group’s
children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.": "Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
@@ -2732,23 +2746,13 @@ message. For more information, refer to the",
},
],
],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other { Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
+ "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}": Array [
Array [
"0",
"plural",
Object {
"one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": " Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": "Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
+ "other": "These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?",
},
],
],
@@ -2812,6 +2816,16 @@ message. For more information, refer to the",
},
],
],
+ "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}": Array [
+ Array [
+ "0",
+ "plural",
+ Object {
+ "one": "You cannot cancel the following job because it is not running:",
+ "other": "You cannot cancel the following jobs because they are not running:",
+ },
+ ],
+ ],
"{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}": Array [
Array [
"0",
@@ -4504,6 +4518,19 @@ callback URL. Using the URL a host can contact BRAND_NAME
and request a configuration update using this job
template.",
"Enables creation of a provisioning
+callback URL. Using the URL a host can contact {BrandName}
+and request a configuration update using this job
+template.": Array [
+ "Enables creation of a provisioning
+callback URL. Using the URL a host can contact ",
+ Array [
+ "BrandName",
+ ],
+ "
+and request a configuration update using this job
+template.",
+ ],
+ "Enables creation of a provisioning
callback URL. Using the URL a host can contact {brandName}
and request a configuration update using this job
template": Array [
@@ -5025,6 +5052,7 @@ reset by the inventory sync process.",
"Last job": "Last job",
"Last job run": "Last job run",
"Last modified": "Last modified",
+ "Last used": "Last used",
"Launch": "Launch",
"Launch Management Job": "Launch Management Job",
"Launch Template": "Launch Template",
@@ -5166,11 +5194,11 @@ disassociating if the host is also a member of that group’s
children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.": "Note that you may still see the group in the list after
-disassociating if the host is also a member of that group’s
-children. This list shows all groups the host is associated
+disassociating if the host is also a member of that group’s
+children. This list shows all groups the host is associated
with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
"Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.": "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly.",
@@ -6573,23 +6601,13 @@ message. For more information, refer to the",
},
],
],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other { Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
+ "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}": Array [
Array [
"0",
"plural",
Object {
"one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": " Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
- },
- ],
- ],
- "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?}}": Array [
- Array [
- "0",
- "plural",
- Object {
- "one": "This execution environment is currently being used by other resources. Are you sure you want to delete it?",
- "other": "Deleting these execution environemnts could impact other resources that rely on them. Are you sure you want to delete anyway?",
+ "other": "These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?",
},
],
],
@@ -6653,6 +6671,16 @@ message. For more information, refer to the",
},
],
],
+ "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}": Array [
+ Array [
+ "0",
+ "plural",
+ Object {
+ "one": "You cannot cancel the following job because it is not running:",
+ "other": "You cannot cancel the following jobs because they are not running:",
+ },
+ ],
+ ],
"{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}": Array [
Array [
"0",
diff --git a/awx/ui_next/src/locales/en/messages.po b/awx/ui_next/src/locales/en/messages.po
index 5cc942aaec..5ba76eab97 100644
--- a/awx/ui_next/src/locales/en/messages.po
+++ b/awx/ui_next/src/locales/en/messages.po
@@ -39,7 +39,7 @@ msgstr "- Enable Concurrent Jobs"
msgid "- Enable Webhooks"
msgstr "- Enable Webhooks"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228
msgid "/ (project root)"
msgstr "/ (project root)"
@@ -50,16 +50,16 @@ msgstr "/ (project root)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:42
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106
-#: screens/Template/shared/JobTemplateForm.jsx:180
+#: screens/Template/shared/JobTemplateForm.jsx:181
msgid "0 (Normal)"
msgstr "0 (Normal)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:105
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82
msgid "0 (Warning)"
msgstr "0 (Warning)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83
msgid "1 (Info)"
msgstr "1 (Info)"
@@ -71,11 +71,11 @@ msgstr "1 (Info)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:43
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107
-#: screens/Template/shared/JobTemplateForm.jsx:181
+#: screens/Template/shared/JobTemplateForm.jsx:182
msgid "1 (Verbose)"
msgstr "1 (Verbose)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84
msgid "2 (Debug)"
msgstr "2 (Debug)"
@@ -87,7 +87,7 @@ msgstr "2 (Debug)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:44
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108
-#: screens/Template/shared/JobTemplateForm.jsx:182
+#: screens/Template/shared/JobTemplateForm.jsx:183
msgid "2 (More Verbose)"
msgstr "2 (More Verbose)"
@@ -98,7 +98,7 @@ msgstr "2 (More Verbose)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:45
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109
-#: screens/Template/shared/JobTemplateForm.jsx:183
+#: screens/Template/shared/JobTemplateForm.jsx:184
msgid "3 (Debug)"
msgstr "3 (Debug)"
@@ -109,7 +109,7 @@ msgstr "3 (Debug)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:46
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110
-#: screens/Template/shared/JobTemplateForm.jsx:184
+#: screens/Template/shared/JobTemplateForm.jsx:185
msgid "4 (Connection Debug)"
msgstr "4 (Connection Debug)"
@@ -209,11 +209,11 @@ msgstr "Account token"
msgid "Action"
msgstr "Action"
-#: components/JobList/JobList.jsx:225
+#: components/JobList/JobList.jsx:222
#: components/JobList/JobListItem.jsx:90
#: components/Schedule/ScheduleList/ScheduleList.jsx:176
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112
-#: components/TemplateList/TemplateList.jsx:227
+#: components/TemplateList/TemplateList.jsx:224
#: components/TemplateList/TemplateListItem.jsx:157
#: screens/ActivityStream/ActivityStream.jsx:260
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
@@ -223,13 +223,13 @@ msgstr "Action"
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
#: screens/Host/HostList/HostList.jsx:170
#: screens/Host/HostList/HostListItem.jsx:48
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:204
+#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryListItem.jsx:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
@@ -238,7 +238,7 @@ msgstr "Action"
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:152
+#: screens/Project/ProjectList/ProjectListItem.jsx:167
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
#: screens/User/UserList/UserList.jsx:172
@@ -395,7 +395,7 @@ msgstr "Advanced search documentation"
msgid "Advanced search value input"
msgstr "Advanced search value input"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:175
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203
msgid ""
"After every project update where the SCM revision\n"
@@ -429,7 +429,7 @@ msgstr "Agree to the end user license agreement and click submit."
msgid "Alert modal"
msgstr "Alert modal"
-#: components/LaunchButton/ReLaunchDropDown.jsx:46
+#: components/LaunchButton/ReLaunchDropDown.jsx:48
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:250
msgid "All"
msgstr "All"
@@ -559,7 +559,7 @@ msgstr "Application not found."
#: screens/Application/Applications.jsx:35
#: screens/Application/ApplicationsList/ApplicationsList.jsx:116
#: screens/Application/ApplicationsList/ApplicationsList.jsx:154
-#: util/getRelatedResourceDeleteDetails.js:233
+#: util/getRelatedResourceDeleteDetails.js:216
msgid "Applications"
msgstr ""
@@ -872,7 +872,7 @@ msgstr "By default, Tower collects and transmits analytics data on Tower usage t
msgid "Cache Timeout"
msgstr "Cache Timeout"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234
msgid "Cache timeout"
msgstr "Cache timeout"
@@ -893,7 +893,7 @@ msgstr "Cache timeout (seconds)"
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:279
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -1019,7 +1019,7 @@ msgstr ""
#~ msgid "Cannot find route {0}."
#~ msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77
msgid "Capacity"
msgstr "Capacity"
@@ -1070,7 +1070,7 @@ msgid "Channel"
msgstr "Channel"
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104
-#: screens/Template/shared/JobTemplateForm.jsx:175
+#: screens/Template/shared/JobTemplateForm.jsx:176
msgid "Check"
msgstr "Check"
@@ -1103,7 +1103,7 @@ msgid "Choose a Webhook Service"
msgstr "Choose a Webhook Service"
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97
-#: screens/Template/shared/JobTemplateForm.jsx:168
+#: screens/Template/shared/JobTemplateForm.jsx:169
msgid "Choose a job type"
msgstr "Choose a job type"
@@ -1227,7 +1227,7 @@ msgstr "Cloud"
msgid "Collapse"
msgstr ""
-#: components/JobList/JobList.jsx:188
+#: components/JobList/JobList.jsx:187
#: components/JobList/JobListItem.jsx:35
#: screens/Job/JobDetail/JobDetail.jsx:99
#: screens/Job/JobOutput/HostEventModal.jsx:137
@@ -1254,7 +1254,7 @@ msgstr "Command"
msgid "Compliant"
msgstr "Compliant"
-#: screens/Template/shared/JobTemplateForm.jsx:580
+#: screens/Template/shared/JobTemplateForm.jsx:581
msgid "Concurrent Jobs"
msgstr "Concurrent Jobs"
@@ -1338,7 +1338,7 @@ msgstr ""
"Control the level of output ansible\n"
"will produce as the playbook executes."
-#: screens/Template/shared/JobTemplateForm.jsx:444
+#: screens/Template/shared/JobTemplateForm.jsx:445
msgid ""
"Control the level of output ansible will\n"
"produce as the playbook executes."
@@ -1389,7 +1389,7 @@ msgstr "Copy Inventory"
msgid "Copy Notification Template"
msgstr "Copy Notification Template"
-#: screens/Project/ProjectList/ProjectListItem.jsx:175
+#: screens/Project/ProjectList/ProjectListItem.jsx:190
msgid "Copy Project"
msgstr "Copy Project"
@@ -1397,7 +1397,7 @@ msgstr "Copy Project"
msgid "Copy Template"
msgstr "Copy Template"
-#: screens/Project/ProjectList/ProjectListItem.jsx:147
+#: screens/Project/ProjectList/ProjectListItem.jsx:162
msgid "Copy full revision to clipboard."
msgstr "Copy full revision to clipboard."
@@ -1413,7 +1413,7 @@ msgstr "Copyright"
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:383
+#: screens/Template/shared/JobTemplateForm.jsx:384
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231
msgid "Create"
msgstr "Create"
@@ -1559,7 +1559,7 @@ msgstr "Create user token"
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:261
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53
#: screens/Job/JobDetail/JobDetail.jsx:343
@@ -1630,7 +1630,7 @@ msgstr "Created by (username)"
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43
@@ -1640,7 +1640,7 @@ msgstr "Created by (username)"
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43
-#: util/getRelatedResourceDeleteDetails.js:191
+#: util/getRelatedResourceDeleteDetails.js:174
msgid "Credential"
msgstr "Credential"
@@ -1703,12 +1703,12 @@ msgstr "Credential type not found."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:71
#: screens/ActivityStream/ActivityStream.jsx:165
-#: screens/Credential/CredentialList/CredentialList.jsx:176
+#: screens/Credential/CredentialList/CredentialList.jsx:175
#: screens/Credential/Credentials.jsx:13
#: screens/Credential/Credentials.jsx:24
#: screens/Job/JobDetail/JobDetail.jsx:281
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293
-#: screens/Template/shared/JobTemplateForm.jsx:351
+#: screens/Template/shared/JobTemplateForm.jsx:352
#: util/getRelatedResourceDeleteDetails.js:98
msgid "Credentials"
msgstr ""
@@ -1729,7 +1729,7 @@ msgstr "Custom pod spec"
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93
-#: screens/Project/ProjectList/ProjectListItem.jsx:109
+#: screens/Project/ProjectList/ProjectListItem.jsx:124
msgid "Custom virtual environment {0} must be replaced by an execution environment."
msgstr "Custom virtual environment {0} must be replaced by an execution environment."
@@ -1817,11 +1817,11 @@ msgstr "Define system-level features and functions"
#: components/DeleteButton/DeleteButton.jsx:91
#: components/DeleteButton/DeleteButton.jsx:95
#: components/DeleteButton/DeleteButton.jsx:115
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:234
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:244
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:248
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:271
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131
@@ -1832,7 +1832,7 @@ msgstr "Define system-level features and functions"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:126
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69
@@ -1951,7 +1951,7 @@ msgstr "Delete application"
msgid "Delete credential type"
msgstr "Delete credential type"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:245
msgid "Delete error"
msgstr "Delete error"
@@ -1960,7 +1960,7 @@ msgstr "Delete error"
msgid "Delete instance group"
msgstr "Delete instance group"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:287
msgid "Delete inventory source"
msgstr "Delete inventory source"
@@ -2005,7 +2005,7 @@ msgstr "Delete this node"
#~ msgid "Delete {itemName}"
#~ msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163
msgid "Delete {pluralizedItemName}?"
msgstr "Delete {pluralizedItemName}?"
@@ -2057,19 +2057,19 @@ msgstr "Deprecated"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256
#: components/Schedule/ScheduleList/ScheduleList.jsx:197
#: components/Schedule/shared/ScheduleForm.jsx:110
-#: components/TemplateList/TemplateList.jsx:194
+#: components/TemplateList/TemplateList.jsx:193
#: components/TemplateList/TemplateListItem.jsx:230
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68
#: screens/Application/ApplicationsList/ApplicationsList.jsx:126
#: screens/Application/shared/ApplicationForm.jsx:62
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211
-#: screens/Credential/CredentialList/CredentialList.jsx:129
+#: screens/Credential/CredentialList/CredentialList.jsx:128
#: screens/Credential/shared/CredentialForm.jsx:180
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132
#: screens/CredentialType/shared/CredentialTypeForm.jsx:32
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150
#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:133
#: screens/Host/HostDetail/HostDetail.jsx:81
#: screens/Host/HostList/HostList.jsx:152
@@ -2077,7 +2077,7 @@ msgstr "Deprecated"
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:177
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
#: screens/Inventory/shared/InventoryForm.jsx:55
@@ -2093,7 +2093,8 @@ msgstr "Deprecated"
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
-#: screens/Project/ProjectList/ProjectList.jsx:143
+#: screens/Project/ProjectList/ProjectList.jsx:142
+#: screens/Project/ProjectList/ProjectListItem.jsx:209
#: screens/Project/shared/ProjectForm.jsx:176
#: screens/Team/TeamDetail/TeamDetail.jsx:38
#: screens/Team/TeamList/TeamList.jsx:134
@@ -2102,7 +2103,7 @@ msgstr "Deprecated"
#: screens/Template/Survey/SurveyQuestionForm.jsx:124
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166
-#: screens/Template/shared/JobTemplateForm.jsx:215
+#: screens/Template/shared/JobTemplateForm.jsx:216
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:121
#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48
#: screens/User/UserTokenList/UserTokenList.jsx:116
@@ -2219,7 +2220,7 @@ msgstr "Destination channels or users"
#: screens/User/Users.jsx:31
#: screens/User/Users.jsx:41
#: screens/WorkflowApproval/WorkflowApproval.jsx:76
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:21
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:24
msgid "Details"
msgstr ""
@@ -2287,7 +2288,7 @@ msgstr "Disassociate role!"
msgid "Disassociate?"
msgstr "Disassociate?"
-#: screens/Template/shared/JobTemplateForm.jsx:459
+#: screens/Template/shared/JobTemplateForm.jsx:460
msgid ""
"Divide the work done by this job template\n"
"into the specified number of job slices, each running the\n"
@@ -2301,10 +2302,10 @@ msgstr ""
#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
#~ msgstr "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
-#: components/CodeEditor/VariablesDetail.jsx:118
-#: components/CodeEditor/VariablesDetail.jsx:124
-#: components/CodeEditor/VariablesField.jsx:134
-#: components/CodeEditor/VariablesField.jsx:140
+#: components/CodeEditor/VariablesDetail.jsx:121
+#: components/CodeEditor/VariablesDetail.jsx:127
+#: components/CodeEditor/VariablesField.jsx:135
+#: components/CodeEditor/VariablesField.jsx:141
msgid "Done"
msgstr "Done"
@@ -2325,7 +2326,7 @@ msgstr "E-mail options"
msgid "Each answer choice must be on a separate line."
msgstr "Each answer choice must be on a separate line."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:165
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175
msgid ""
"Each time a job runs using this inventory,\n"
@@ -2367,7 +2368,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358
@@ -2503,8 +2504,8 @@ msgstr "Edit Notification Template"
msgid "Edit Organization"
msgstr "Edit Organization"
-#: screens/Project/ProjectList/ProjectListItem.jsx:161
-#: screens/Project/ProjectList/ProjectListItem.jsx:166
+#: screens/Project/ProjectList/ProjectListItem.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:181
msgid "Edit Project"
msgstr "Edit Project"
@@ -2610,7 +2611,7 @@ msgstr "Email Options"
msgid "Enable Concurrent Jobs"
msgstr "Enable Concurrent Jobs"
-#: screens/Template/shared/JobTemplateForm.jsx:587
+#: screens/Template/shared/JobTemplateForm.jsx:588
msgid "Enable Fact Storage"
msgstr "Enable Fact Storage"
@@ -2623,8 +2624,8 @@ msgstr "Enable HTTPS certificate verification"
msgid "Enable Privilege Escalation"
msgstr "Enable Privilege Escalation"
-#: screens/Template/shared/JobTemplateForm.jsx:561
-#: screens/Template/shared/JobTemplateForm.jsx:564
+#: screens/Template/shared/JobTemplateForm.jsx:562
+#: screens/Template/shared/JobTemplateForm.jsx:565
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:249
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:252
msgid "Enable Webhook"
@@ -2655,7 +2656,7 @@ msgstr "Enable privilege escalation"
msgid "Enable simplified login for your {brandName} applications"
msgstr "Enable simplified login for your {brandName} applications"
-#: screens/Template/shared/JobTemplateForm.jsx:567
+#: screens/Template/shared/JobTemplateForm.jsx:568
msgid "Enable webhook for this template."
msgstr "Enable webhook for this template."
@@ -2664,25 +2665,37 @@ msgstr "Enable webhook for this template."
msgid "Enabled"
msgstr "Enabled"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267
msgid "Enabled Value"
msgstr "Enabled Value"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254
msgid "Enabled Variable"
msgstr "Enabled Variable"
#: screens/Template/shared/JobTemplateForm.jsx:547
+#~ msgid ""
+#~ "Enables creation of a provisioning\n"
+#~ "callback URL. Using the URL a host can contact BRAND_NAME\n"
+#~ "and request a configuration update using this job\n"
+#~ "template."
+#~ msgstr ""
+#~ "Enables creation of a provisioning\n"
+#~ "callback URL. Using the URL a host can contact BRAND_NAME\n"
+#~ "and request a configuration update using this job\n"
+#~ "template."
+
+#: screens/Template/shared/JobTemplateForm.jsx:548
msgid ""
"Enables creation of a provisioning\n"
-"callback URL. Using the URL a host can contact BRAND_NAME\n"
+"callback URL. Using the URL a host can contact {BrandName}\n"
"and request a configuration update using this job\n"
"template."
msgstr ""
"Enables creation of a provisioning\n"
-"callback URL. Using the URL a host can contact BRAND_NAME\n"
+"callback URL. Using the URL a host can contact {BrandName}\n"
"and request a configuration update using this job\n"
"template."
@@ -2875,7 +2888,7 @@ msgstr "Enter variables using either JSON or YAML syntax. Use the radio button t
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263
#: screens/Job/JobOutput/JobOutput.jsx:668
#: screens/Setting/shared/LoggingTestAlert.jsx:37
msgid "Error"
@@ -2901,12 +2914,12 @@ msgstr "Error saving the workflow!"
#: components/DeleteButton/DeleteButton.jsx:57
#: components/HostToggle/HostToggle.jsx:73
#: components/InstanceToggle/InstanceToggle.jsx:69
-#: components/JobList/JobList.jsx:278
-#: components/JobList/JobList.jsx:289
+#: components/JobList/JobList.jsx:276
+#: components/JobList/JobList.jsx:287
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:205
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2936,9 +2949,9 @@ msgstr "Error saving the workflow!"
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:301
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:235
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:248
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2949,7 +2962,7 @@ msgstr "Error saving the workflow!"
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:208
+#: screens/Organization/OrganizationList/OrganizationList.jsx:210
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:236
@@ -2979,7 +2992,7 @@ msgstr "Error saving the workflow!"
msgid "Error!"
msgstr "Error!"
-#: components/CodeEditor/VariablesDetail.jsx:107
+#: components/CodeEditor/VariablesDetail.jsx:110
msgid "Error:"
msgstr "Error:"
@@ -3047,15 +3060,15 @@ msgstr "Execution Environment"
#: components/Lookup/ExecutionEnvironmentLookup.jsx:124
#: routeConfig.js:143
#: screens/ActivityStream/ActivityStream.jsx:211
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:184
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23
#: screens/Organization/Organization.jsx:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77
#: screens/Organization/Organizations.jsx:38
#: util/getRelatedResourceDeleteDetails.js:88
-#: util/getRelatedResourceDeleteDetails.js:212
+#: util/getRelatedResourceDeleteDetails.js:195
msgid "Execution Environments"
msgstr "Execution Environments"
@@ -3089,8 +3102,8 @@ msgstr "Exit Without Saving"
msgid "Expand"
msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:211
-#: components/CodeEditor/VariablesField.jsx:229
+#: components/CodeEditor/VariablesDetail.jsx:214
+#: components/CodeEditor/VariablesField.jsx:237
msgid "Expand input"
msgstr "Expand input"
@@ -3143,7 +3156,7 @@ msgstr "Extra variables"
#: components/Sparkline/Sparkline.jsx:35
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49
-#: screens/Project/ProjectList/ProjectListItem.jsx:69
+#: screens/Project/ProjectList/ProjectListItem.jsx:76
msgid "FINISHED:"
msgstr "FINISHED:"
@@ -3172,7 +3185,7 @@ msgstr "Failed Host Count"
msgid "Failed Hosts"
msgstr "Failed Hosts"
-#: components/LaunchButton/ReLaunchDropDown.jsx:58
+#: components/LaunchButton/ReLaunchDropDown.jsx:61
#: screens/Dashboard/Dashboard.jsx:135
msgid "Failed hosts"
msgstr "Failed hosts"
@@ -3222,7 +3235,7 @@ msgstr "Failed to copy execution environment"
msgid "Failed to copy inventory."
msgstr "Failed to copy inventory."
-#: screens/Project/ProjectList/ProjectListItem.jsx:183
+#: screens/Project/ProjectList/ProjectListItem.jsx:198
msgid "Failed to copy project."
msgstr "Failed to copy project."
@@ -3248,7 +3261,7 @@ msgstr "Failed to delete group {0}."
msgid "Failed to delete host."
msgstr "Failed to delete host."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:305
msgid "Failed to delete inventory source {name}."
msgstr "Failed to delete inventory source {name}."
@@ -3297,7 +3310,7 @@ msgstr "Failed to delete one or more instance groups."
msgid "Failed to delete one or more inventories."
msgstr "Failed to delete one or more inventories."
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:251
msgid "Failed to delete one or more inventory sources."
msgstr "Failed to delete one or more inventory sources."
@@ -3455,7 +3468,7 @@ msgstr "Failed to sync inventory source."
msgid "Failed to sync project."
msgstr "Failed to sync project."
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:238
msgid "Failed to sync some or all inventory sources."
msgstr "Failed to sync some or all inventory sources."
@@ -3538,7 +3551,7 @@ msgstr "File upload rejected. Please select a single .json file."
msgid "File, directory or script"
msgstr "File, directory or script"
-#: components/JobList/JobList.jsx:223
+#: components/JobList/JobList.jsx:221
#: components/JobList/JobListItem.jsx:87
msgid "Finish Time"
msgstr "Finish Time"
@@ -3581,7 +3594,7 @@ msgstr "Fit the graph to the available screen size"
msgid "Float"
msgstr "Float"
-#: screens/Template/shared/JobTemplateForm.jsx:223
+#: screens/Template/shared/JobTemplateForm.jsx:224
msgid ""
"For job templates, select run to execute\n"
"the playbook. Select check to only check playbook syntax,\n"
@@ -3616,7 +3629,7 @@ msgstr "For more information, refer to the"
#: components/AdHocCommands/AdHocDetailsStep.jsx:193
#: components/PromptDetail/PromptJobTemplateDetail.jsx:139
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224
-#: screens/Template/shared/JobTemplateForm.jsx:404
+#: screens/Template/shared/JobTemplateForm.jsx:405
msgid "Forks"
msgstr "Forks"
@@ -3800,7 +3813,7 @@ msgstr "Group type"
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232
#: screens/Inventory/InventoryList/InventoryListItem.jsx:108
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224
-#: util/getRelatedResourceDeleteDetails.js:143
+#: util/getRelatedResourceDeleteDetails.js:126
msgid "Groups"
msgstr "Groups"
@@ -3842,7 +3855,7 @@ msgstr "Host Async OK"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:149
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239
-#: screens/Template/shared/JobTemplateForm.jsx:622
+#: screens/Template/shared/JobTemplateForm.jsx:623
msgid "Host Config Key"
msgstr "Host Config Key"
@@ -3862,7 +3875,7 @@ msgstr "Host Failed"
msgid "Host Failure"
msgstr "Host Failure"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:237
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281
msgid "Host Filter"
msgstr "Host Filter"
@@ -3930,7 +3943,7 @@ msgstr "Host status information for this job is unavailable."
#: screens/Inventory/SmartInventory.jsx:71
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102
-#: util/getRelatedResourceDeleteDetails.js:147
+#: util/getRelatedResourceDeleteDetails.js:130
msgid "Hosts"
msgstr "Hosts"
@@ -4018,7 +4031,7 @@ msgstr "IRC server port"
msgid "Icon URL"
msgstr "Icon URL"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:148
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156
msgid ""
"If checked, all variables for child groups\n"
@@ -4034,7 +4047,7 @@ msgstr ""
#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
#~ msgstr "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:125
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135
msgid ""
"If checked, any hosts and groups that were\n"
@@ -4058,7 +4071,7 @@ msgstr ""
#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
#~ msgstr "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
-#: screens/Template/shared/JobTemplateForm.jsx:537
+#: screens/Template/shared/JobTemplateForm.jsx:538
msgid ""
"If enabled, run this playbook as an\n"
"administrator."
@@ -4080,7 +4093,7 @@ msgstr ""
"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
"--diff mode."
-#: screens/Template/shared/JobTemplateForm.jsx:478
+#: screens/Template/shared/JobTemplateForm.jsx:479
msgid ""
"If enabled, show the changes made by\n"
"Ansible tasks, where supported. This is equivalent\n"
@@ -4098,7 +4111,7 @@ msgstr ""
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
-#: screens/Template/shared/JobTemplateForm.jsx:581
+#: screens/Template/shared/JobTemplateForm.jsx:582
msgid ""
"If enabled, simultaneous runs of this job\n"
"template will be allowed."
@@ -4114,7 +4127,7 @@ msgstr ""
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "If enabled, simultaneous runs of this workflow job template will be allowed."
-#: screens/Template/shared/JobTemplateForm.jsx:589
+#: screens/Template/shared/JobTemplateForm.jsx:590
msgid ""
"If enabled, this will store gathered facts so they can\n"
"be viewed at the host level. Facts are persisted and\n"
@@ -4158,9 +4171,9 @@ msgstr ""
#~ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107
@@ -4284,7 +4297,7 @@ msgid "Instance groups"
msgstr "Instance groups"
#: screens/InstanceGroup/InstanceGroup.jsx:69
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76
#: screens/InstanceGroup/InstanceGroups.jsx:37
#: screens/InstanceGroup/Instances/InstanceList.jsx:148
@@ -4324,8 +4337,8 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
-#: util/getRelatedResourceDeleteDetails.js:226
-#: util/getRelatedResourceDeleteDetails.js:294
+#: util/getRelatedResourceDeleteDetails.js:209
+#: util/getRelatedResourceDeleteDetails.js:277
msgid "Inventories"
msgstr ""
@@ -4390,14 +4403,14 @@ msgstr "Inventory Source"
msgid "Inventory Source Sync"
msgstr "Inventory Source Sync"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:161
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:180
#: util/getRelatedResourceDeleteDetails.js:74
-#: util/getRelatedResourceDeleteDetails.js:171
+#: util/getRelatedResourceDeleteDetails.js:154
msgid "Inventory Sources"
msgstr "Inventory Sources"
-#: components/JobList/JobList.jsx:186
+#: components/JobList/JobList.jsx:185
#: components/JobList/JobListItem.jsx:33
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37
#: components/Workflow/WorkflowLegend.jsx:100
@@ -4409,7 +4422,7 @@ msgstr "Inventory Sync"
msgid "Inventory Update"
msgstr "Inventory Update"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:226
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102
msgid "Inventory file"
msgstr "Inventory file"
@@ -4462,7 +4475,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:28
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42
-#: screens/Project/ProjectList/ProjectListItem.jsx:62
+#: screens/Project/ProjectList/ProjectListItem.jsx:69
msgid "JOB ID:"
msgstr "JOB ID:"
@@ -4506,7 +4519,7 @@ msgstr "Job Slice"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:148
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235
-#: screens/Template/shared/JobTemplateForm.jsx:458
+#: screens/Template/shared/JobTemplateForm.jsx:459
msgid "Job Slicing"
msgstr "Job Slicing"
@@ -4521,12 +4534,12 @@ msgstr "Job Status"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350
#: screens/Job/JobDetail/JobDetail.jsx:309
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342
-#: screens/Template/shared/JobTemplateForm.jsx:498
+#: screens/Template/shared/JobTemplateForm.jsx:499
msgid "Job Tags"
msgstr "Job Tags"
#: components/JobList/JobListItem.jsx:137
-#: components/TemplateList/TemplateList.jsx:201
+#: components/TemplateList/TemplateList.jsx:200
#: components/Workflow/WorkflowLegend.jsx:92
#: components/Workflow/WorkflowNodeHelp.jsx:47
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96
@@ -4544,7 +4557,7 @@ msgstr "Job Template default credentials must be replaced with one of the same t
#: screens/Project/Projects.jsx:32
#: util/getRelatedResourceDeleteDetails.js:56
#: util/getRelatedResourceDeleteDetails.js:108
-#: util/getRelatedResourceDeleteDetails.js:157
+#: util/getRelatedResourceDeleteDetails.js:140
msgid "Job Templates"
msgstr "Job Templates"
@@ -4564,7 +4577,7 @@ msgstr "Job Templates with credentials that prompt for passwords cannot be selec
#: screens/Job/JobDetail/JobDetail.jsx:180
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145
-#: screens/Template/shared/JobTemplateForm.jsx:220
+#: screens/Template/shared/JobTemplateForm.jsx:221
msgid "Job Type"
msgstr "Job Type"
@@ -4704,7 +4717,7 @@ msgstr "Label Name"
#: screens/Job/JobDetail/JobDetail.jsx:294
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195
-#: screens/Template/shared/JobTemplateForm.jsx:369
+#: screens/Template/shared/JobTemplateForm.jsx:370
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217
msgid "Labels"
msgstr "Labels"
@@ -4756,7 +4769,7 @@ msgstr ""
msgid "Last Name"
msgstr ""
-#: components/TemplateList/TemplateList.jsx:225
+#: components/TemplateList/TemplateList.jsx:223
#: components/TemplateList/TemplateListItem.jsx:156
msgid "Last Ran"
msgstr "Last Ran"
@@ -4773,12 +4786,17 @@ msgstr "Last job"
msgid "Last job run"
msgstr "Last job run"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58
+#: screens/Project/ProjectList/ProjectListItem.jsx:236
msgid "Last modified"
msgstr "Last modified"
+#: screens/Project/ProjectList/ProjectListItem.jsx:241
+msgid "Last used"
+msgstr "Last used"
+
#: components/AdHocCommands/AdHocCommandsWizard.jsx:92
#: components/LaunchPrompt/steps/usePreviewStep.jsx:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55
@@ -4865,7 +4883,7 @@ msgstr "Less than or equal to comparison."
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326
#: screens/Job/JobDetail/JobDetail.jsx:238
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225
-#: screens/Template/shared/JobTemplateForm.jsx:420
+#: screens/Template/shared/JobTemplateForm.jsx:421
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163
msgid "Limit"
msgstr "Limit"
@@ -4930,7 +4948,7 @@ msgid "Lookup typeahead"
msgstr "Lookup typeahead"
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40
-#: screens/Project/ProjectList/ProjectListItem.jsx:60
+#: screens/Project/ProjectList/ProjectListItem.jsx:67
msgid "MOST RECENT SYNC"
msgstr "MOST RECENT SYNC"
@@ -4954,7 +4972,7 @@ msgstr "Managed by Tower"
msgid "Managed nodes"
msgstr "Managed nodes"
-#: components/JobList/JobList.jsx:189
+#: components/JobList/JobList.jsx:188
#: components/JobList/JobListItem.jsx:36
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40
#: screens/Job/JobDetail/JobDetail.jsx:100
@@ -4989,8 +5007,8 @@ msgstr "Management jobs"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90
#: screens/Project/ProjectDetail/ProjectDetail.jsx:111
-#: screens/Project/ProjectList/ProjectList.jsx:150
-#: screens/Project/ProjectList/ProjectListItem.jsx:134
+#: screens/Project/ProjectList/ProjectList.jsx:149
+#: screens/Project/ProjectList/ProjectListItem.jsx:149
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89
msgid "Manual"
msgstr "Manual"
@@ -5214,8 +5232,8 @@ msgstr "Multiple Choice Options"
#: components/AssociateModal/AssociateModal.jsx:139
#: components/AssociateModal/AssociateModal.jsx:154
#: components/HostForm/HostForm.jsx:87
-#: components/JobList/JobList.jsx:169
-#: components/JobList/JobList.jsx:218
+#: components/JobList/JobList.jsx:168
+#: components/JobList/JobList.jsx:217
#: components/JobList/JobListItem.jsx:69
#: components/LaunchPrompt/steps/CredentialsStep.jsx:174
#: components/LaunchPrompt/steps/CredentialsStep.jsx:189
@@ -5254,8 +5272,8 @@ msgstr "Multiple Choice Options"
#: components/Schedule/ScheduleList/ScheduleList.jsx:192
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78
#: components/Schedule/shared/ScheduleForm.jsx:102
-#: components/TemplateList/TemplateList.jsx:189
-#: components/TemplateList/TemplateList.jsx:222
+#: components/TemplateList/TemplateList.jsx:188
+#: components/TemplateList/TemplateList.jsx:221
#: components/TemplateList/TemplateListItem.jsx:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37
@@ -5292,8 +5310,8 @@ msgstr "Multiple Choice Options"
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111
@@ -5307,7 +5325,7 @@ msgstr "Multiple Choice Options"
#: screens/Host/HostList/HostListItem.jsx:34
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:64
#: screens/InstanceGroup/Instances/InstanceList.jsx:155
#: screens/InstanceGroup/Instances/InstanceList.jsx:162
@@ -5329,7 +5347,7 @@ msgstr "Multiple Choice Options"
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:197
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67
@@ -5360,7 +5378,7 @@ msgstr "Multiple Choice Options"
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
-#: screens/Project/ProjectList/ProjectListItem.jsx:99
+#: screens/Project/ProjectList/ProjectListItem.jsx:114
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
#: screens/Team/TeamDetail/TeamDetail.jsx:34
@@ -5379,7 +5397,7 @@ msgstr "Multiple Choice Options"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115
-#: screens/Template/shared/JobTemplateForm.jsx:207
+#: screens/Template/shared/JobTemplateForm.jsx:208
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
@@ -5621,7 +5639,7 @@ msgstr "Notification Template not found."
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188
#: screens/NotificationTemplate/NotificationTemplates.jsx:13
#: screens/NotificationTemplate/NotificationTemplates.jsx:21
-#: util/getRelatedResourceDeleteDetails.js:205
+#: util/getRelatedResourceDeleteDetails.js:188
msgid "Notification Templates"
msgstr ""
@@ -5695,7 +5713,7 @@ msgstr "October"
#: screens/Setting/shared/SharedFields.jsx:97
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:53
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "Off"
msgstr "Off"
@@ -5713,7 +5731,7 @@ msgstr "Off"
#: screens/Setting/shared/SharedFields.jsx:96
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:52
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "On"
msgstr "On"
@@ -5751,7 +5769,7 @@ msgstr "OpenStack"
msgid "Option Details"
msgstr "Option Details"
-#: screens/Template/shared/JobTemplateForm.jsx:372
+#: screens/Template/shared/JobTemplateForm.jsx:373
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:220
msgid ""
"Optional labels that describe this job template,\n"
@@ -5780,12 +5798,12 @@ msgstr "Optionally select the credential to use to send status updates back to t
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141
#: screens/Credential/shared/TypeInputsSubForm.jsx:49
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:250
#: screens/Project/ProjectDetail/ProjectDetail.jsx:130
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180
-#: screens/Template/shared/JobTemplateForm.jsx:530
+#: screens/Template/shared/JobTemplateForm.jsx:531
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246
msgid "Options"
msgstr "Options"
@@ -5807,17 +5825,19 @@ msgstr "Options"
#: screens/Application/ApplicationsList/ApplicationsList.jsx:163
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:202
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69
#: screens/Project/ProjectDetail/ProjectDetail.jsx:98
+#: screens/Project/ProjectList/ProjectListItem.jsx:215
+#: screens/Project/ProjectList/ProjectListItem.jsx:226
#: screens/Team/TeamDetail/TeamDetail.jsx:40
#: screens/Team/TeamList/TeamList.jsx:155
#: screens/Team/TeamList/TeamListItem.jsx:45
@@ -5852,15 +5872,15 @@ msgstr "Organization not found."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:97
#: screens/ActivityStream/ActivityStream.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:133
-#: screens/Organization/OrganizationList/OrganizationList.jsx:179
+#: screens/Organization/OrganizationList/OrganizationList.jsx:132
+#: screens/Organization/OrganizationList/OrganizationList.jsx:178
#: screens/Organization/Organizations.jsx:16
#: screens/Organization/Organizations.jsx:27
#: screens/User/User.jsx:65
#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55
#: screens/User/Users.jsx:34
-#: util/getRelatedResourceDeleteDetails.js:256
-#: util/getRelatedResourceDeleteDetails.js:290
+#: util/getRelatedResourceDeleteDetails.js:239
+#: util/getRelatedResourceDeleteDetails.js:273
msgid "Organizations"
msgstr ""
@@ -5882,7 +5902,7 @@ msgid "Output"
msgstr "Output"
#: components/PromptDetail/PromptInventorySourceDetail.jsx:48
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:121
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
msgid "Overwrite"
msgstr "Overwrite"
@@ -5891,7 +5911,7 @@ msgstr "Overwrite"
msgid "Overwrite Variables"
msgstr "Overwrite Variables"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:144
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
msgid "Overwrite variables"
msgstr "Overwrite variables"
@@ -5953,7 +5973,7 @@ msgstr "Pan Up"
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "Pass extra command line changes. There are two ansible command line parameters:"
-#: screens/Template/shared/JobTemplateForm.jsx:392
+#: screens/Template/shared/JobTemplateForm.jsx:393
msgid ""
"Pass extra command line variables to the playbook. This is the\n"
"-e or --extra-vars command line parameter for ansible-playbook.\n"
@@ -6030,7 +6050,7 @@ msgstr "Play Started"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:138
#: screens/Job/JobDetail/JobDetail.jsx:237
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223
-#: screens/Template/shared/JobTemplateForm.jsx:330
+#: screens/Template/shared/JobTemplateForm.jsx:331
msgid "Playbook"
msgstr "Playbook"
@@ -6048,7 +6068,7 @@ msgstr "Playbook Complete"
msgid "Playbook Directory"
msgstr "Playbook Directory"
-#: components/JobList/JobList.jsx:187
+#: components/JobList/JobList.jsx:186
#: components/JobList/JobListItem.jsx:34
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38
#: screens/Job/JobDetail/JobDetail.jsx:98
@@ -6112,7 +6132,7 @@ msgstr "Please enter a value."
msgid "Please select a day number between 1 and 31."
msgstr "Please select a day number between 1 and 31."
-#: screens/Template/shared/JobTemplateForm.jsx:755
+#: screens/Template/shared/JobTemplateForm.jsx:756
msgid "Please select an Inventory or check the Prompt on Launch option."
msgstr "Please select an Inventory or check the Prompt on Launch option."
@@ -6194,7 +6214,7 @@ msgstr "Preview"
msgid "Private key passphrase"
msgstr "Private key passphrase"
-#: screens/Template/shared/JobTemplateForm.jsx:536
+#: screens/Template/shared/JobTemplateForm.jsx:537
msgid "Privilege Escalation"
msgstr "Privilege Escalation"
@@ -6210,7 +6230,7 @@ msgstr "Privilege escalation password"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:123
#: components/PromptDetail/PromptJobTemplateDetail.jsx:131
#: components/TemplateList/TemplateListItem.jsx:271
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:216
#: screens/Job/JobDetail/JobDetail.jsx:212
#: screens/Job/JobDetail/JobDetail.jsx:227
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151
@@ -6251,8 +6271,8 @@ msgstr "Project sync failures"
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
-#: util/getRelatedResourceDeleteDetails.js:219
-#: util/getRelatedResourceDeleteDetails.js:249
+#: util/getRelatedResourceDeleteDetails.js:202
+#: util/getRelatedResourceDeleteDetails.js:232
msgid "Projects"
msgstr ""
@@ -6269,7 +6289,7 @@ msgstr "Prompt"
msgid "Prompt Overrides"
msgstr "Prompt Overrides"
-#: components/CodeEditor/VariablesField.jsx:222
+#: components/CodeEditor/VariablesField.jsx:230
#: components/FieldWithPrompt/FieldWithPrompt.jsx:47
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167
msgid "Prompt on launch"
@@ -6285,7 +6305,7 @@ msgstr "Prompted Values"
msgid "Prompts"
msgstr "Prompts"
-#: screens/Template/shared/JobTemplateForm.jsx:423
+#: screens/Template/shared/JobTemplateForm.jsx:424
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:166
msgid ""
"Provide a host pattern to further constrain\n"
@@ -6350,16 +6370,16 @@ msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights
#: components/PromptDetail/PromptJobTemplateDetail.jsx:152
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243
-#: screens/Template/shared/JobTemplateForm.jsx:609
+#: screens/Template/shared/JobTemplateForm.jsx:610
msgid "Provisioning Callback URL"
msgstr "Provisioning Callback URL"
-#: screens/Template/shared/JobTemplateForm.jsx:604
+#: screens/Template/shared/JobTemplateForm.jsx:605
msgid "Provisioning Callback details"
msgstr "Provisioning Callback details"
-#: screens/Template/shared/JobTemplateForm.jsx:541
-#: screens/Template/shared/JobTemplateForm.jsx:544
+#: screens/Template/shared/JobTemplateForm.jsx:542
+#: screens/Template/shared/JobTemplateForm.jsx:545
msgid "Provisioning Callbacks"
msgstr "Provisioning Callbacks"
@@ -6448,7 +6468,7 @@ msgstr "Redirecting to dashboard"
msgid "Redirecting to subscription detail"
msgstr "Redirecting to subscription detail"
-#: screens/Template/shared/JobTemplateForm.jsx:413
+#: screens/Template/shared/JobTemplateForm.jsx:414
msgid ""
"Refer to the Ansible documentation for details\n"
"about the configuration file."
@@ -6488,7 +6508,7 @@ msgid "Related Groups"
msgstr "Related Groups"
#: components/JobList/JobListItem.jsx:118
-#: components/LaunchButton/ReLaunchDropDown.jsx:78
+#: components/LaunchButton/ReLaunchDropDown.jsx:81
#: screens/Job/JobDetail/JobDetail.jsx:384
#: screens/Job/JobDetail/JobDetail.jsx:392
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:162
@@ -6500,16 +6520,16 @@ msgstr "Relaunch"
msgid "Relaunch Job"
msgstr "Relaunch Job"
-#: components/LaunchButton/ReLaunchDropDown.jsx:39
+#: components/LaunchButton/ReLaunchDropDown.jsx:41
msgid "Relaunch all hosts"
msgstr "Relaunch all hosts"
-#: components/LaunchButton/ReLaunchDropDown.jsx:51
+#: components/LaunchButton/ReLaunchDropDown.jsx:54
msgid "Relaunch failed hosts"
msgstr "Relaunch failed hosts"
-#: components/LaunchButton/ReLaunchDropDown.jsx:29
-#: components/LaunchButton/ReLaunchDropDown.jsx:34
+#: components/LaunchButton/ReLaunchDropDown.jsx:30
+#: components/LaunchButton/ReLaunchDropDown.jsx:35
msgid "Relaunch on"
msgstr "Relaunch on"
@@ -6677,8 +6697,8 @@ msgid "Revert to factory default."
msgstr "Revert to factory default."
#: screens/Job/JobDetail/JobDetail.jsx:236
-#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:137
+#: screens/Project/ProjectList/ProjectList.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:152
msgid "Revision"
msgstr "Revision"
@@ -6714,7 +6734,7 @@ msgstr "Roles"
#: screens/Credential/shared/ExternalTestModal.jsx:90
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24
-#: screens/Template/shared/JobTemplateForm.jsx:171
+#: screens/Template/shared/JobTemplateForm.jsx:172
msgid "Run"
msgstr "Run"
@@ -6745,7 +6765,7 @@ msgstr "Run on"
msgid "Run type"
msgstr "Run type"
-#: components/JobList/JobList.jsx:204
+#: components/JobList/JobList.jsx:203
#: components/TemplateList/TemplateListItem.jsx:106
#: components/Workflow/WorkflowNodeHelp.jsx:83
msgid "Running"
@@ -6796,7 +6816,7 @@ msgstr "START"
#: components/Sparkline/Sparkline.jsx:31
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45
-#: screens/Project/ProjectList/ProjectListItem.jsx:65
+#: screens/Project/ProjectList/ProjectListItem.jsx:72
msgid "STATUS:"
msgstr "STATUS:"
@@ -6979,7 +6999,7 @@ msgstr "Select Items"
msgid "Select Items from List"
msgstr "Select Items from List"
-#: screens/Template/shared/LabelSelect.jsx:88
+#: screens/Template/shared/LabelSelect.jsx:92
msgid "Select Labels"
msgstr "Select Labels"
@@ -7007,7 +7027,7 @@ msgstr "Select a Node Type"
msgid "Select a Resource Type"
msgstr "Select a Resource Type"
-#: screens/Template/shared/JobTemplateForm.jsx:310
+#: screens/Template/shared/JobTemplateForm.jsx:311
msgid ""
"Select a branch for the job template. This branch is applied to\n"
"all job template nodes that prompt for a branch."
@@ -7052,7 +7072,7 @@ msgstr "Select a module"
msgid "Select a playbook"
msgstr "Select a playbook"
-#: screens/Template/shared/JobTemplateForm.jsx:296
+#: screens/Template/shared/JobTemplateForm.jsx:297
msgid "Select a project before editing the execution environment."
msgstr "Select a project before editing the execution environment."
@@ -7060,7 +7080,7 @@ msgstr "Select a project before editing the execution environment."
msgid "Select a row to approve"
msgstr "Select a row to approve"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr ""
@@ -7110,8 +7130,8 @@ msgstr "Select a valid date and time for this field"
#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41
#: screens/Team/shared/TeamForm.jsx:20
#: screens/Template/Survey/SurveyQuestionForm.jsx:28
-#: screens/Template/shared/JobTemplateForm.jsx:83
-#: screens/Template/shared/JobTemplateForm.jsx:147
+#: screens/Template/shared/JobTemplateForm.jsx:84
+#: screens/Template/shared/JobTemplateForm.jsx:148
#: screens/User/shared/UserForm.jsx:49
msgid "Select a value for this field"
msgstr "Select a value for this field"
@@ -7141,7 +7161,7 @@ msgstr "Select an inventory for the workflow. This inventory is applied to all j
msgid "Select an organization before editing the default execution environment."
msgstr "Select an organization before editing the default execution environment."
-#: screens/Template/shared/JobTemplateForm.jsx:354
+#: screens/Template/shared/JobTemplateForm.jsx:355
msgid ""
"Select credentials that allow Tower to access the nodes this job will be ran\n"
"against. You can only select one credential of each type. For machine credentials (SSH),\n"
@@ -7198,7 +7218,7 @@ msgstr "Select roles to apply"
msgid "Select source path"
msgstr "Select source path"
-#: components/MultiSelect/TagMultiSelect.jsx:55
+#: components/MultiSelect/TagMultiSelect.jsx:60
msgid "Select tags"
msgstr "Select tags"
@@ -7206,7 +7226,7 @@ msgstr "Select tags"
msgid "Select the Instance Groups for this Inventory to run on."
msgstr "Select the Instance Groups for this Inventory to run on."
-#: screens/Template/shared/JobTemplateForm.jsx:493
+#: screens/Template/shared/JobTemplateForm.jsx:494
msgid ""
"Select the Instance Groups for this Organization\n"
"to run on."
@@ -7242,12 +7262,12 @@ msgstr "Select the default execution environment for this organization."
msgid "Select the default execution environment for this project."
msgstr "Select the default execution environment for this project."
-#: screens/Template/shared/JobTemplateForm.jsx:293
+#: screens/Template/shared/JobTemplateForm.jsx:294
msgid "Select the execution environment for this job template."
msgstr "Select the execution environment for this job template."
#: components/Lookup/InventoryLookup.jsx:89
-#: screens/Template/shared/JobTemplateForm.jsx:255
+#: screens/Template/shared/JobTemplateForm.jsx:256
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
@@ -7279,11 +7299,11 @@ msgstr ""
msgid "Select the inventory that this host will belong to."
msgstr "Select the inventory that this host will belong to."
-#: screens/Template/shared/JobTemplateForm.jsx:334
+#: screens/Template/shared/JobTemplateForm.jsx:335
msgid "Select the playbook to be executed by this job."
msgstr "Select the playbook to be executed by this job."
-#: screens/Template/shared/JobTemplateForm.jsx:272
+#: screens/Template/shared/JobTemplateForm.jsx:273
msgid ""
"Select the project containing the playbook\n"
"you want this job to execute."
@@ -7325,7 +7345,7 @@ msgstr "Select {0}"
#: screens/Inventory/InventoryList/InventoryListItem.jsx:79
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43
-#: screens/Project/ProjectList/ProjectListItem.jsx:97
+#: screens/Project/ProjectList/ProjectListItem.jsx:112
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:259
#: screens/Team/TeamList/TeamListItem.jsx:38
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60
@@ -7429,7 +7449,7 @@ msgstr "Show"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:144
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232
-#: screens/Template/shared/JobTemplateForm.jsx:475
+#: screens/Template/shared/JobTemplateForm.jsx:476
msgid "Show Changes"
msgstr "Show Changes"
@@ -7502,11 +7522,11 @@ msgstr "Simple key select"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368
#: screens/Job/JobDetail/JobDetail.jsx:327
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357
-#: screens/Template/shared/JobTemplateForm.jsx:514
+#: screens/Template/shared/JobTemplateForm.jsx:515
msgid "Skip Tags"
msgstr "Skip Tags"
-#: screens/Template/shared/JobTemplateForm.jsx:517
+#: screens/Template/shared/JobTemplateForm.jsx:518
msgid ""
"Skip tags are useful when you have a\n"
"large playbook, and you want to skip specific parts of a\n"
@@ -7588,7 +7608,7 @@ msgid "Sort question order"
msgstr "Sort question order"
#: components/PromptDetail/PromptInventorySourceDetail.jsx:86
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/shared/InventorySourceForm.jsx:135
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86
msgid "Source"
@@ -7602,7 +7622,7 @@ msgstr "Source"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321
#: screens/Project/ProjectDetail/ProjectDetail.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220
-#: screens/Template/shared/JobTemplateForm.jsx:306
+#: screens/Template/shared/JobTemplateForm.jsx:307
msgid "Source Control Branch"
msgstr "Source Control Branch"
@@ -7636,13 +7656,13 @@ msgstr "Source Control Type"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
#: screens/Project/ProjectDetail/ProjectDetail.jsx:114
-#: screens/Project/ProjectList/ProjectList.jsx:158
+#: screens/Project/ProjectList/ProjectList.jsx:157
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97
msgid "Source Control URL"
msgstr "Source Control URL"
-#: components/JobList/JobList.jsx:185
+#: components/JobList/JobList.jsx:184
#: components/JobList/JobListItem.jsx:32
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39
#: screens/Job/JobDetail/JobDetail.jsx:93
@@ -7674,7 +7694,7 @@ msgstr "Source details"
msgid "Source phone number"
msgstr "Source phone number"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34
msgid "Source variables"
msgstr "Source variables"
@@ -7743,7 +7763,7 @@ msgstr "Standard out tab"
msgid "Start"
msgstr "Start"
-#: components/JobList/JobList.jsx:221
+#: components/JobList/JobList.jsx:220
#: components/JobList/JobListItem.jsx:84
msgid "Start Time"
msgstr "Start Time"
@@ -7771,21 +7791,21 @@ msgid "Start sync source"
msgstr "Start sync source"
#: screens/Job/JobDetail/JobDetail.jsx:141
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79
msgid "Started"
msgstr "Started"
-#: components/JobList/JobList.jsx:198
-#: components/JobList/JobList.jsx:219
+#: components/JobList/JobList.jsx:197
+#: components/JobList/JobList.jsx:218
#: components/JobList/JobListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:201
+#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryListItem.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:174
-#: screens/Project/ProjectList/ProjectListItem.jsx:119
+#: screens/Project/ProjectList/ProjectListItem.jsx:134
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
@@ -7884,7 +7904,7 @@ msgstr "Success message body"
msgid "Successful"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:148
+#: screens/Project/ProjectList/ProjectListItem.jsx:163
msgid "Successfully copied to clipboard!"
msgstr "Successfully copied to clipboard!"
@@ -7929,25 +7949,25 @@ msgstr "Survey questions"
msgid "Sync"
msgstr "Sync"
-#: screens/Project/ProjectList/ProjectListItem.jsx:155
+#: screens/Project/ProjectList/ProjectListItem.jsx:170
#: screens/Project/shared/ProjectSyncButton.jsx:31
msgid "Sync Project"
msgstr "Sync Project"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:200
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:203
msgid "Sync all"
msgstr "Sync all"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:194
msgid "Sync all sources"
msgstr "Sync all sources"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:232
msgid "Sync error"
msgstr "Sync error"
-#: screens/Project/ProjectList/ProjectListItem.jsx:141
+#: screens/Project/ProjectList/ProjectListItem.jsx:156
msgid "Sync for revision"
msgstr "Sync for revision"
@@ -7996,7 +8016,7 @@ msgstr "TACACS+ settings"
msgid "Tabs"
msgstr "Tabs"
-#: screens/Template/shared/JobTemplateForm.jsx:501
+#: screens/Template/shared/JobTemplateForm.jsx:502
msgid ""
"Tags are useful when you have a large\n"
"playbook, and you want to run a specific part of a\n"
@@ -8090,7 +8110,7 @@ msgstr "Team not found."
#: screens/User/UserTeams/UserTeamList.jsx:176
#: screens/User/UserTeams/UserTeamList.jsx:244
#: screens/User/Users.jsx:33
-#: util/getRelatedResourceDeleteDetails.js:198
+#: util/getRelatedResourceDeleteDetails.js:181
msgid "Teams"
msgstr ""
@@ -8110,8 +8130,8 @@ msgstr "Template type"
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82
#: screens/Template/Templates.jsx:16
-#: util/getRelatedResourceDeleteDetails.js:242
-#: util/getRelatedResourceDeleteDetails.js:299
+#: util/getRelatedResourceDeleteDetails.js:225
+#: util/getRelatedResourceDeleteDetails.js:282
msgid "Templates"
msgstr ""
@@ -8181,7 +8201,7 @@ msgstr ""
#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
#~ msgstr "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
-#: screens/Template/shared/JobTemplateForm.jsx:469
+#: screens/Template/shared/JobTemplateForm.jsx:470
msgid ""
"The amount of time (in seconds) to run\n"
"before the job is canceled. Defaults to 0 for no job\n"
@@ -8237,7 +8257,7 @@ msgstr ""
#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
#~ msgstr "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
-#: screens/Template/shared/JobTemplateForm.jsx:407
+#: screens/Template/shared/JobTemplateForm.jsx:408
msgid ""
"The number of parallel or simultaneous\n"
"processes to use while executing the playbook. An empty value,\n"
@@ -8359,7 +8379,7 @@ msgstr "These arguments are used with the specified module. You can find informa
msgid "Third"
msgstr "Third"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr "This action will delete the following:"
@@ -8490,7 +8510,7 @@ msgstr "This inventory is applied to all job template nodes within this workflow
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr "This inventory is currently being used by other resources. Are you sure you want to delete it?"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
@@ -8514,7 +8534,7 @@ msgstr "This organization is currently being by other resources. Are you sure yo
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr "This project is currently being used by other resources. Are you sure you want to delete it?"
-#: screens/Template/shared/JobTemplateForm.jsx:150
+#: screens/Template/shared/JobTemplateForm.jsx:151
msgid "This project needs to be updated"
msgstr "This project needs to be updated"
@@ -8618,7 +8638,7 @@ msgstr "Timed out"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169
-#: screens/Template/shared/JobTemplateForm.jsx:468
+#: screens/Template/shared/JobTemplateForm.jsx:469
msgid "Timeout"
msgstr "Timeout"
@@ -8720,7 +8740,7 @@ msgstr "Tools"
msgid "Top Pagination"
msgstr "Top Pagination"
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
msgid "Total Jobs"
msgstr "Total Jobs"
@@ -8772,7 +8792,7 @@ msgstr "Tuesday"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.jsx:220
+#: components/JobList/JobList.jsx:219
#: components/JobList/JobListItem.jsx:82
#: components/Lookup/ProjectLookup.jsx:110
#: components/NotificationList/NotificationList.jsx:220
@@ -8780,8 +8800,8 @@ msgstr "Twilio"
#: components/PromptDetail/PromptDetail.jsx:112
#: components/Schedule/ScheduleList/ScheduleList.jsx:174
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95
-#: components/TemplateList/TemplateList.jsx:198
-#: components/TemplateList/TemplateList.jsx:223
+#: components/TemplateList/TemplateList.jsx:197
+#: components/TemplateList/TemplateList.jsx:222
#: components/TemplateList/TemplateListItem.jsx:155
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
@@ -8792,7 +8812,7 @@ msgstr "Twilio"
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
@@ -8805,7 +8825,7 @@ msgstr "Twilio"
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
-#: screens/Project/ProjectList/ProjectListItem.jsx:132
+#: screens/Project/ProjectList/ProjectListItem.jsx:147
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86
@@ -8870,12 +8890,12 @@ msgstr "Update on Launch"
msgid "Update on Project Update"
msgstr "Update on Project Update"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:163
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171
msgid "Update on launch"
msgstr "Update on launch"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:173
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199
msgid "Update on project update"
msgstr "Update on project update"
@@ -9065,7 +9085,7 @@ msgstr "VMware vCenter"
#: screens/Job/JobDetail/JobDetail.jsx:356
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211
-#: screens/Template/shared/JobTemplateForm.jsx:389
+#: screens/Template/shared/JobTemplateForm.jsx:390
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:239
msgid "Variables"
msgstr "Variables"
@@ -9092,11 +9112,11 @@ msgstr "Verbose"
#: components/PromptDetail/PromptInventorySourceDetail.jsx:102
#: components/PromptDetail/PromptJobTemplateDetail.jsx:141
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:239
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227
-#: screens/Template/shared/JobTemplateForm.jsx:441
+#: screens/Template/shared/JobTemplateForm.jsx:442
msgid "Verbosity"
msgstr "Verbosity"
@@ -9429,7 +9449,7 @@ msgstr "Webhook Service"
msgid "Webhook URL"
msgstr "Webhook URL"
-#: screens/Template/shared/JobTemplateForm.jsx:637
+#: screens/Template/shared/JobTemplateForm.jsx:638
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:281
msgid "Webhook details"
msgstr "Webhook details"
@@ -9475,7 +9495,7 @@ msgstr ""
"Welcome to Red Hat Ansible Automation Platform!\n"
"Please complete the steps below to activate your subscription."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:153
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161
msgid ""
"When not checked, a merge will be performed,\n"
@@ -9491,7 +9511,7 @@ msgstr ""
#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
#~ msgstr "When not checked, a merge will be performed, combining local variables with those found on the external source."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:134
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144
msgid ""
"When not checked, local child\n"
@@ -9521,14 +9541,14 @@ msgstr "Workflow Approval not found."
#: routeConfig.js:55
#: screens/ActivityStream/ActivityStream.jsx:154
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209
#: screens/WorkflowApproval/WorkflowApprovals.jsx:12
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:19
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:22
msgid "Workflow Approvals"
msgstr "Workflow Approvals"
-#: components/JobList/JobList.jsx:190
+#: components/JobList/JobList.jsx:189
#: components/JobList/JobListItem.jsx:37
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41
#: screens/Job/JobDetail/JobDetail.jsx:101
@@ -9546,13 +9566,13 @@ msgstr "Workflow Job"
msgid "Workflow Job Template"
msgstr "Workflow Job Template"
-#: util/getRelatedResourceDeleteDetails.js:139
-#: util/getRelatedResourceDeleteDetails.js:181
-#: util/getRelatedResourceDeleteDetails.js:284
+#: util/getRelatedResourceDeleteDetails.js:122
+#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:267
msgid "Workflow Job Template Nodes"
msgstr "Workflow Job Template Nodes"
-#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:147
msgid "Workflow Job Templates"
msgstr "Workflow Job Templates"
@@ -9658,7 +9678,7 @@ msgstr "You do not have permission to delete the following Groups: {itemsUnableT
#~ msgid "You do not have permission to delete the following {0}: {itemsUnableToDelete}"
#~ msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
@@ -9702,12 +9722,12 @@ msgstr "Zoom In"
msgid "Zoom Out"
msgstr "Zoom Out"
-#: screens/Template/shared/JobTemplateForm.jsx:734
+#: screens/Template/shared/JobTemplateForm.jsx:735
#: screens/Template/shared/WebhookSubForm.jsx:155
msgid "a new webhook key will be generated on save."
msgstr "a new webhook key will be generated on save."
-#: screens/Template/shared/JobTemplateForm.jsx:731
+#: screens/Template/shared/JobTemplateForm.jsx:732
#: screens/Template/shared/WebhookSubForm.jsx:143
msgid "a new webhook url will be generated on save."
msgstr "a new webhook url will be generated on save."
@@ -9746,7 +9766,7 @@ msgstr "approved"
msgid "brand logo"
msgstr "brand logo"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:276
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr ""
@@ -9755,7 +9775,7 @@ msgstr ""
msgid "command"
msgstr "command"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:265
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr ""
@@ -9774,7 +9794,7 @@ msgstr "confirm disassociate"
#~ msgid "controller instance"
#~ msgstr "controller instance"
-#: screens/Project/ProjectList/ProjectListItem.jsx:140
+#: screens/Project/ProjectList/ProjectListItem.jsx:155
msgid "copy to clipboard disabled"
msgstr "copy to clipboard disabled"
@@ -9808,7 +9828,7 @@ msgstr "documentation"
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:275
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156
#: screens/Project/ProjectDetail/ProjectDetail.jsx:166
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154
@@ -9940,8 +9960,8 @@ msgstr ""
msgid "per page"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:74
-#: components/LaunchButton/ReLaunchDropDown.jsx:96
+#: components/LaunchButton/ReLaunchDropDown.jsx:77
+#: components/LaunchButton/ReLaunchDropDown.jsx:99
msgid "relaunch jobs"
msgstr "relaunch jobs"
@@ -9973,7 +9993,7 @@ msgstr "scope"
msgid "sec"
msgstr "sec"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
msgid "seconds"
msgstr "seconds"
@@ -10045,6 +10065,46 @@ msgstr "{0, plural, one {The selected job cannot be deleted due to insufficient
#~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}"
#~ msgstr "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}"
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215
+msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
+msgstr "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
+
+#: screens/Credential/CredentialList/CredentialList.jsx:178
+msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+
+#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171
+msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
+msgstr "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187
+msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
+msgstr "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
+
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:223
+msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:183
+msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
+msgstr "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
+
+#: screens/Inventory/InventoryList/InventoryList.jsx:222
+msgid "{0, plural, one {This invetory is currently being used by some temeplates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
+msgstr "{0, plural, one {This invetory is currently being used by some temeplates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
+
+#: screens/Organization/OrganizationList/OrganizationList.jsx:181
+msgid "{0, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr "{0, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+
+#: screens/Project/ProjectList/ProjectList.jsx:203
+msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+
+#: components/TemplateList/TemplateList.jsx:243
+msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
+msgstr "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
+
#: components/JobList/JobListCancelButton.jsx:72
msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}"
msgstr "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}"
diff --git a/awx/ui_next/src/locales/es/messages.po b/awx/ui_next/src/locales/es/messages.po
index 67b727fba3..4af9238708 100644
--- a/awx/ui_next/src/locales/es/messages.po
+++ b/awx/ui_next/src/locales/es/messages.po
@@ -5,7 +5,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: @lingui/cli\n"
-"Language: es \n"
+"Language: es\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: \n"
@@ -35,7 +35,7 @@ msgstr ""
msgid "- Enable Webhooks"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228
msgid "/ (project root)"
msgstr ""
@@ -46,16 +46,16 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:42
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106
-#: screens/Template/shared/JobTemplateForm.jsx:180
+#: screens/Template/shared/JobTemplateForm.jsx:181
msgid "0 (Normal)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:105
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82
msgid "0 (Warning)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83
msgid "1 (Info)"
msgstr ""
@@ -67,11 +67,11 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:43
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107
-#: screens/Template/shared/JobTemplateForm.jsx:181
+#: screens/Template/shared/JobTemplateForm.jsx:182
msgid "1 (Verbose)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84
msgid "2 (Debug)"
msgstr ""
@@ -83,7 +83,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:44
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108
-#: screens/Template/shared/JobTemplateForm.jsx:182
+#: screens/Template/shared/JobTemplateForm.jsx:183
msgid "2 (More Verbose)"
msgstr ""
@@ -94,7 +94,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:45
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109
-#: screens/Template/shared/JobTemplateForm.jsx:183
+#: screens/Template/shared/JobTemplateForm.jsx:184
msgid "3 (Debug)"
msgstr ""
@@ -105,7 +105,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:46
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110
-#: screens/Template/shared/JobTemplateForm.jsx:184
+#: screens/Template/shared/JobTemplateForm.jsx:185
msgid "4 (Connection Debug)"
msgstr ""
@@ -186,11 +186,11 @@ msgstr ""
msgid "Action"
msgstr ""
-#: components/JobList/JobList.jsx:225
+#: components/JobList/JobList.jsx:222
#: components/JobList/JobListItem.jsx:90
#: components/Schedule/ScheduleList/ScheduleList.jsx:176
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112
-#: components/TemplateList/TemplateList.jsx:227
+#: components/TemplateList/TemplateList.jsx:224
#: components/TemplateList/TemplateListItem.jsx:157
#: screens/ActivityStream/ActivityStream.jsx:260
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
@@ -200,13 +200,13 @@ msgstr ""
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
#: screens/Host/HostList/HostList.jsx:170
#: screens/Host/HostList/HostListItem.jsx:48
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:204
+#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryListItem.jsx:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
@@ -215,7 +215,7 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:152
+#: screens/Project/ProjectList/ProjectListItem.jsx:167
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
#: screens/User/UserList/UserList.jsx:172
@@ -368,7 +368,7 @@ msgstr ""
msgid "Advanced search value input"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:175
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203
msgid ""
"After every project update where the SCM revision\n"
@@ -398,7 +398,7 @@ msgstr ""
msgid "Alert modal"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:46
+#: components/LaunchButton/ReLaunchDropDown.jsx:48
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:250
msgid "All"
msgstr ""
@@ -526,7 +526,7 @@ msgstr ""
#: screens/Application/Applications.jsx:35
#: screens/Application/ApplicationsList/ApplicationsList.jsx:116
#: screens/Application/ApplicationsList/ApplicationsList.jsx:154
-#: util/getRelatedResourceDeleteDetails.js:233
+#: util/getRelatedResourceDeleteDetails.js:216
msgid "Applications"
msgstr ""
@@ -823,7 +823,7 @@ msgstr ""
msgid "Cache Timeout"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234
msgid "Cache timeout"
msgstr ""
@@ -844,7 +844,7 @@ msgstr ""
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:279
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -956,7 +956,7 @@ msgstr ""
#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type."
#~ msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77
msgid "Capacity"
msgstr ""
@@ -1005,7 +1005,7 @@ msgid "Channel"
msgstr ""
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104
-#: screens/Template/shared/JobTemplateForm.jsx:175
+#: screens/Template/shared/JobTemplateForm.jsx:176
msgid "Check"
msgstr ""
@@ -1038,7 +1038,7 @@ msgid "Choose a Webhook Service"
msgstr ""
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97
-#: screens/Template/shared/JobTemplateForm.jsx:168
+#: screens/Template/shared/JobTemplateForm.jsx:169
msgid "Choose a job type"
msgstr ""
@@ -1159,7 +1159,7 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: components/JobList/JobList.jsx:188
+#: components/JobList/JobList.jsx:187
#: components/JobList/JobListItem.jsx:35
#: screens/Job/JobDetail/JobDetail.jsx:99
#: screens/Job/JobOutput/HostEventModal.jsx:137
@@ -1186,7 +1186,7 @@ msgstr ""
msgid "Compliant"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:580
+#: screens/Template/shared/JobTemplateForm.jsx:581
msgid "Concurrent Jobs"
msgstr ""
@@ -1266,7 +1266,7 @@ msgid ""
"will produce as the playbook executes."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:444
+#: screens/Template/shared/JobTemplateForm.jsx:445
msgid ""
"Control the level of output ansible will\n"
"produce as the playbook executes."
@@ -1315,7 +1315,7 @@ msgstr ""
msgid "Copy Notification Template"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:175
+#: screens/Project/ProjectList/ProjectListItem.jsx:190
msgid "Copy Project"
msgstr ""
@@ -1323,7 +1323,7 @@ msgstr ""
msgid "Copy Template"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:147
+#: screens/Project/ProjectList/ProjectListItem.jsx:162
msgid "Copy full revision to clipboard."
msgstr ""
@@ -1335,7 +1335,7 @@ msgstr ""
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:383
+#: screens/Template/shared/JobTemplateForm.jsx:384
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231
msgid "Create"
msgstr ""
@@ -1481,7 +1481,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:261
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53
#: screens/Job/JobDetail/JobDetail.jsx:343
@@ -1552,7 +1552,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43
@@ -1562,7 +1562,7 @@ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43
-#: util/getRelatedResourceDeleteDetails.js:191
+#: util/getRelatedResourceDeleteDetails.js:174
msgid "Credential"
msgstr ""
@@ -1625,12 +1625,12 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:71
#: screens/ActivityStream/ActivityStream.jsx:165
-#: screens/Credential/CredentialList/CredentialList.jsx:176
+#: screens/Credential/CredentialList/CredentialList.jsx:175
#: screens/Credential/Credentials.jsx:13
#: screens/Credential/Credentials.jsx:24
#: screens/Job/JobDetail/JobDetail.jsx:281
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293
-#: screens/Template/shared/JobTemplateForm.jsx:351
+#: screens/Template/shared/JobTemplateForm.jsx:352
#: util/getRelatedResourceDeleteDetails.js:98
msgid "Credentials"
msgstr ""
@@ -1651,7 +1651,7 @@ msgstr ""
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93
-#: screens/Project/ProjectList/ProjectListItem.jsx:109
+#: screens/Project/ProjectList/ProjectListItem.jsx:124
msgid "Custom virtual environment {0} must be replaced by an execution environment."
msgstr ""
@@ -1739,11 +1739,11 @@ msgstr ""
#: components/DeleteButton/DeleteButton.jsx:91
#: components/DeleteButton/DeleteButton.jsx:95
#: components/DeleteButton/DeleteButton.jsx:115
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:234
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:244
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:248
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:271
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131
@@ -1754,7 +1754,7 @@ msgstr ""
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:126
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69
@@ -1873,7 +1873,7 @@ msgstr ""
msgid "Delete credential type"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:245
msgid "Delete error"
msgstr ""
@@ -1882,7 +1882,7 @@ msgstr ""
msgid "Delete instance group"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:287
msgid "Delete inventory source"
msgstr ""
@@ -1915,7 +1915,7 @@ msgstr ""
msgid "Delete this node"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163
msgid "Delete {pluralizedItemName}?"
msgstr ""
@@ -1967,19 +1967,19 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256
#: components/Schedule/ScheduleList/ScheduleList.jsx:197
#: components/Schedule/shared/ScheduleForm.jsx:110
-#: components/TemplateList/TemplateList.jsx:194
+#: components/TemplateList/TemplateList.jsx:193
#: components/TemplateList/TemplateListItem.jsx:230
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68
#: screens/Application/ApplicationsList/ApplicationsList.jsx:126
#: screens/Application/shared/ApplicationForm.jsx:62
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211
-#: screens/Credential/CredentialList/CredentialList.jsx:129
+#: screens/Credential/CredentialList/CredentialList.jsx:128
#: screens/Credential/shared/CredentialForm.jsx:180
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132
#: screens/CredentialType/shared/CredentialTypeForm.jsx:32
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150
#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:133
#: screens/Host/HostDetail/HostDetail.jsx:81
#: screens/Host/HostList/HostList.jsx:152
@@ -1987,7 +1987,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:177
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
#: screens/Inventory/shared/InventoryForm.jsx:55
@@ -2003,7 +2003,8 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
-#: screens/Project/ProjectList/ProjectList.jsx:143
+#: screens/Project/ProjectList/ProjectList.jsx:142
+#: screens/Project/ProjectList/ProjectListItem.jsx:209
#: screens/Project/shared/ProjectForm.jsx:176
#: screens/Team/TeamDetail/TeamDetail.jsx:38
#: screens/Team/TeamList/TeamList.jsx:134
@@ -2012,7 +2013,7 @@ msgstr ""
#: screens/Template/Survey/SurveyQuestionForm.jsx:124
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166
-#: screens/Template/shared/JobTemplateForm.jsx:215
+#: screens/Template/shared/JobTemplateForm.jsx:216
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:121
#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48
#: screens/User/UserTokenList/UserTokenList.jsx:116
@@ -2129,7 +2130,7 @@ msgstr ""
#: screens/User/Users.jsx:31
#: screens/User/Users.jsx:41
#: screens/WorkflowApproval/WorkflowApproval.jsx:76
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:21
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:24
msgid "Details"
msgstr ""
@@ -2197,7 +2198,7 @@ msgstr ""
msgid "Disassociate?"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:459
+#: screens/Template/shared/JobTemplateForm.jsx:460
msgid ""
"Divide the work done by this job template\n"
"into the specified number of job slices, each running the\n"
@@ -2208,10 +2209,10 @@ msgstr ""
#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
#~ msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:118
-#: components/CodeEditor/VariablesDetail.jsx:124
-#: components/CodeEditor/VariablesField.jsx:134
-#: components/CodeEditor/VariablesField.jsx:140
+#: components/CodeEditor/VariablesDetail.jsx:121
+#: components/CodeEditor/VariablesDetail.jsx:127
+#: components/CodeEditor/VariablesField.jsx:135
+#: components/CodeEditor/VariablesField.jsx:141
msgid "Done"
msgstr ""
@@ -2232,7 +2233,7 @@ msgstr ""
msgid "Each answer choice must be on a separate line."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:165
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175
msgid ""
"Each time a job runs using this inventory,\n"
@@ -2269,7 +2270,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358
@@ -2405,8 +2406,8 @@ msgstr ""
msgid "Edit Organization"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:161
-#: screens/Project/ProjectList/ProjectListItem.jsx:166
+#: screens/Project/ProjectList/ProjectListItem.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:181
msgid "Edit Project"
msgstr ""
@@ -2512,7 +2513,7 @@ msgstr ""
msgid "Enable Concurrent Jobs"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:587
+#: screens/Template/shared/JobTemplateForm.jsx:588
msgid "Enable Fact Storage"
msgstr ""
@@ -2525,8 +2526,8 @@ msgstr ""
msgid "Enable Privilege Escalation"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:561
-#: screens/Template/shared/JobTemplateForm.jsx:564
+#: screens/Template/shared/JobTemplateForm.jsx:562
+#: screens/Template/shared/JobTemplateForm.jsx:565
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:249
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:252
msgid "Enable Webhook"
@@ -2557,7 +2558,7 @@ msgstr ""
msgid "Enable simplified login for your {brandName} applications"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:567
+#: screens/Template/shared/JobTemplateForm.jsx:568
msgid "Enable webhook for this template."
msgstr ""
@@ -2566,20 +2567,28 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267
msgid "Enabled Value"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254
msgid "Enabled Variable"
msgstr ""
#: screens/Template/shared/JobTemplateForm.jsx:547
+#~ msgid ""
+#~ "Enables creation of a provisioning\n"
+#~ "callback URL. Using the URL a host can contact BRAND_NAME\n"
+#~ "and request a configuration update using this job\n"
+#~ "template."
+#~ msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:548
msgid ""
"Enables creation of a provisioning\n"
-"callback URL. Using the URL a host can contact BRAND_NAME\n"
+"callback URL. Using the URL a host can contact {BrandName}\n"
"and request a configuration update using this job\n"
"template."
msgstr ""
@@ -2755,7 +2764,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263
#: screens/Job/JobOutput/JobOutput.jsx:668
#: screens/Setting/shared/LoggingTestAlert.jsx:37
msgid "Error"
@@ -2781,12 +2790,12 @@ msgstr ""
#: components/DeleteButton/DeleteButton.jsx:57
#: components/HostToggle/HostToggle.jsx:73
#: components/InstanceToggle/InstanceToggle.jsx:69
-#: components/JobList/JobList.jsx:278
-#: components/JobList/JobList.jsx:289
+#: components/JobList/JobList.jsx:276
+#: components/JobList/JobList.jsx:287
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:205
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2816,9 +2825,9 @@ msgstr ""
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:301
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:235
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:248
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2829,7 +2838,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:208
+#: screens/Organization/OrganizationList/OrganizationList.jsx:210
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:236
@@ -2859,7 +2868,7 @@ msgstr ""
msgid "Error!"
msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:107
+#: components/CodeEditor/VariablesDetail.jsx:110
msgid "Error:"
msgstr ""
@@ -2927,15 +2936,15 @@ msgstr ""
#: components/Lookup/ExecutionEnvironmentLookup.jsx:124
#: routeConfig.js:143
#: screens/ActivityStream/ActivityStream.jsx:211
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:184
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23
#: screens/Organization/Organization.jsx:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77
#: screens/Organization/Organizations.jsx:38
#: util/getRelatedResourceDeleteDetails.js:88
-#: util/getRelatedResourceDeleteDetails.js:212
+#: util/getRelatedResourceDeleteDetails.js:195
msgid "Execution Environments"
msgstr ""
@@ -2969,8 +2978,8 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:211
-#: components/CodeEditor/VariablesField.jsx:229
+#: components/CodeEditor/VariablesDetail.jsx:214
+#: components/CodeEditor/VariablesField.jsx:237
msgid "Expand input"
msgstr ""
@@ -3023,7 +3032,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:35
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49
-#: screens/Project/ProjectList/ProjectListItem.jsx:69
+#: screens/Project/ProjectList/ProjectListItem.jsx:76
msgid "FINISHED:"
msgstr ""
@@ -3052,7 +3061,7 @@ msgstr ""
msgid "Failed Hosts"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:58
+#: components/LaunchButton/ReLaunchDropDown.jsx:61
#: screens/Dashboard/Dashboard.jsx:135
msgid "Failed hosts"
msgstr ""
@@ -3102,7 +3111,7 @@ msgstr ""
msgid "Failed to copy inventory."
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:183
+#: screens/Project/ProjectList/ProjectListItem.jsx:198
msgid "Failed to copy project."
msgstr ""
@@ -3128,7 +3137,7 @@ msgstr ""
msgid "Failed to delete host."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:305
msgid "Failed to delete inventory source {name}."
msgstr ""
@@ -3177,7 +3186,7 @@ msgstr ""
msgid "Failed to delete one or more inventories."
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:251
msgid "Failed to delete one or more inventory sources."
msgstr ""
@@ -3335,7 +3344,7 @@ msgstr ""
msgid "Failed to sync project."
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:238
msgid "Failed to sync some or all inventory sources."
msgstr ""
@@ -3418,7 +3427,7 @@ msgstr ""
msgid "File, directory or script"
msgstr ""
-#: components/JobList/JobList.jsx:223
+#: components/JobList/JobList.jsx:221
#: components/JobList/JobListItem.jsx:87
msgid "Finish Time"
msgstr ""
@@ -3461,7 +3470,7 @@ msgstr ""
msgid "Float"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:223
+#: screens/Template/shared/JobTemplateForm.jsx:224
msgid ""
"For job templates, select run to execute\n"
"the playbook. Select check to only check playbook syntax,\n"
@@ -3489,7 +3498,7 @@ msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.jsx:193
#: components/PromptDetail/PromptJobTemplateDetail.jsx:139
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224
-#: screens/Template/shared/JobTemplateForm.jsx:404
+#: screens/Template/shared/JobTemplateForm.jsx:405
msgid "Forks"
msgstr ""
@@ -3673,7 +3682,7 @@ msgstr ""
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232
#: screens/Inventory/InventoryList/InventoryListItem.jsx:108
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224
-#: util/getRelatedResourceDeleteDetails.js:143
+#: util/getRelatedResourceDeleteDetails.js:126
msgid "Groups"
msgstr ""
@@ -3715,7 +3724,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:149
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239
-#: screens/Template/shared/JobTemplateForm.jsx:622
+#: screens/Template/shared/JobTemplateForm.jsx:623
msgid "Host Config Key"
msgstr ""
@@ -3735,7 +3744,7 @@ msgstr ""
msgid "Host Failure"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:237
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281
msgid "Host Filter"
msgstr ""
@@ -3803,7 +3812,7 @@ msgstr ""
#: screens/Inventory/SmartInventory.jsx:71
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102
-#: util/getRelatedResourceDeleteDetails.js:147
+#: util/getRelatedResourceDeleteDetails.js:130
msgid "Hosts"
msgstr ""
@@ -3891,7 +3900,7 @@ msgstr ""
msgid "Icon URL"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:148
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156
msgid ""
"If checked, all variables for child groups\n"
@@ -3904,7 +3913,7 @@ msgstr ""
#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
#~ msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:125
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135
msgid ""
"If checked, any hosts and groups that were\n"
@@ -3921,7 +3930,7 @@ msgstr ""
#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:537
+#: screens/Template/shared/JobTemplateForm.jsx:538
msgid ""
"If enabled, run this playbook as an\n"
"administrator."
@@ -3938,7 +3947,7 @@ msgid ""
"--diff mode."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:478
+#: screens/Template/shared/JobTemplateForm.jsx:479
msgid ""
"If enabled, show the changes made by\n"
"Ansible tasks, where supported. This is equivalent\n"
@@ -3953,7 +3962,7 @@ msgstr ""
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:581
+#: screens/Template/shared/JobTemplateForm.jsx:582
msgid ""
"If enabled, simultaneous runs of this job\n"
"template will be allowed."
@@ -3967,7 +3976,7 @@ msgstr ""
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:589
+#: screens/Template/shared/JobTemplateForm.jsx:590
msgid ""
"If enabled, this will store gathered facts so they can\n"
"be viewed at the host level. Facts are persisted and\n"
@@ -4000,9 +4009,9 @@ msgid ""
msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107
@@ -4123,7 +4132,7 @@ msgid "Instance groups"
msgstr ""
#: screens/InstanceGroup/InstanceGroup.jsx:69
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76
#: screens/InstanceGroup/InstanceGroups.jsx:37
#: screens/InstanceGroup/Instances/InstanceList.jsx:148
@@ -4159,8 +4168,8 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
-#: util/getRelatedResourceDeleteDetails.js:226
-#: util/getRelatedResourceDeleteDetails.js:294
+#: util/getRelatedResourceDeleteDetails.js:209
+#: util/getRelatedResourceDeleteDetails.js:277
msgid "Inventories"
msgstr ""
@@ -4220,14 +4229,14 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:161
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:180
#: util/getRelatedResourceDeleteDetails.js:74
-#: util/getRelatedResourceDeleteDetails.js:171
+#: util/getRelatedResourceDeleteDetails.js:154
msgid "Inventory Sources"
msgstr ""
-#: components/JobList/JobList.jsx:186
+#: components/JobList/JobList.jsx:185
#: components/JobList/JobListItem.jsx:33
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37
#: components/Workflow/WorkflowLegend.jsx:100
@@ -4239,7 +4248,7 @@ msgstr ""
msgid "Inventory Update"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:226
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102
msgid "Inventory file"
msgstr ""
@@ -4284,7 +4293,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:28
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42
-#: screens/Project/ProjectList/ProjectListItem.jsx:62
+#: screens/Project/ProjectList/ProjectListItem.jsx:69
msgid "JOB ID:"
msgstr ""
@@ -4328,7 +4337,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:148
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235
-#: screens/Template/shared/JobTemplateForm.jsx:458
+#: screens/Template/shared/JobTemplateForm.jsx:459
msgid "Job Slicing"
msgstr ""
@@ -4343,12 +4352,12 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350
#: screens/Job/JobDetail/JobDetail.jsx:309
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342
-#: screens/Template/shared/JobTemplateForm.jsx:498
+#: screens/Template/shared/JobTemplateForm.jsx:499
msgid "Job Tags"
msgstr ""
#: components/JobList/JobListItem.jsx:137
-#: components/TemplateList/TemplateList.jsx:201
+#: components/TemplateList/TemplateList.jsx:200
#: components/Workflow/WorkflowLegend.jsx:92
#: components/Workflow/WorkflowNodeHelp.jsx:47
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96
@@ -4366,7 +4375,7 @@ msgstr ""
#: screens/Project/Projects.jsx:32
#: util/getRelatedResourceDeleteDetails.js:56
#: util/getRelatedResourceDeleteDetails.js:108
-#: util/getRelatedResourceDeleteDetails.js:157
+#: util/getRelatedResourceDeleteDetails.js:140
msgid "Job Templates"
msgstr ""
@@ -4386,7 +4395,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:180
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145
-#: screens/Template/shared/JobTemplateForm.jsx:220
+#: screens/Template/shared/JobTemplateForm.jsx:221
msgid "Job Type"
msgstr ""
@@ -4522,7 +4531,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:294
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195
-#: screens/Template/shared/JobTemplateForm.jsx:369
+#: screens/Template/shared/JobTemplateForm.jsx:370
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217
msgid "Labels"
msgstr ""
@@ -4574,7 +4583,7 @@ msgstr ""
msgid "Last Name"
msgstr ""
-#: components/TemplateList/TemplateList.jsx:225
+#: components/TemplateList/TemplateList.jsx:223
#: components/TemplateList/TemplateListItem.jsx:156
msgid "Last Ran"
msgstr ""
@@ -4591,12 +4600,17 @@ msgstr ""
msgid "Last job run"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58
+#: screens/Project/ProjectList/ProjectListItem.jsx:236
msgid "Last modified"
msgstr ""
+#: screens/Project/ProjectList/ProjectListItem.jsx:241
+msgid "Last used"
+msgstr ""
+
#: components/AdHocCommands/AdHocCommandsWizard.jsx:92
#: components/LaunchPrompt/steps/usePreviewStep.jsx:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55
@@ -4683,7 +4697,7 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326
#: screens/Job/JobDetail/JobDetail.jsx:238
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225
-#: screens/Template/shared/JobTemplateForm.jsx:420
+#: screens/Template/shared/JobTemplateForm.jsx:421
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163
msgid "Limit"
msgstr ""
@@ -4744,7 +4758,7 @@ msgid "Lookup typeahead"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40
-#: screens/Project/ProjectList/ProjectListItem.jsx:60
+#: screens/Project/ProjectList/ProjectListItem.jsx:67
msgid "MOST RECENT SYNC"
msgstr ""
@@ -4768,7 +4782,7 @@ msgstr ""
msgid "Managed nodes"
msgstr ""
-#: components/JobList/JobList.jsx:189
+#: components/JobList/JobList.jsx:188
#: components/JobList/JobListItem.jsx:36
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40
#: screens/Job/JobDetail/JobDetail.jsx:100
@@ -4803,8 +4817,8 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90
#: screens/Project/ProjectDetail/ProjectDetail.jsx:111
-#: screens/Project/ProjectList/ProjectList.jsx:150
-#: screens/Project/ProjectList/ProjectListItem.jsx:134
+#: screens/Project/ProjectList/ProjectList.jsx:149
+#: screens/Project/ProjectList/ProjectListItem.jsx:149
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89
msgid "Manual"
msgstr ""
@@ -5019,8 +5033,8 @@ msgstr ""
#: components/AssociateModal/AssociateModal.jsx:139
#: components/AssociateModal/AssociateModal.jsx:154
#: components/HostForm/HostForm.jsx:87
-#: components/JobList/JobList.jsx:169
-#: components/JobList/JobList.jsx:218
+#: components/JobList/JobList.jsx:168
+#: components/JobList/JobList.jsx:217
#: components/JobList/JobListItem.jsx:69
#: components/LaunchPrompt/steps/CredentialsStep.jsx:174
#: components/LaunchPrompt/steps/CredentialsStep.jsx:189
@@ -5059,8 +5073,8 @@ msgstr ""
#: components/Schedule/ScheduleList/ScheduleList.jsx:192
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78
#: components/Schedule/shared/ScheduleForm.jsx:102
-#: components/TemplateList/TemplateList.jsx:189
-#: components/TemplateList/TemplateList.jsx:222
+#: components/TemplateList/TemplateList.jsx:188
+#: components/TemplateList/TemplateList.jsx:221
#: components/TemplateList/TemplateListItem.jsx:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37
@@ -5097,8 +5111,8 @@ msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111
@@ -5112,7 +5126,7 @@ msgstr ""
#: screens/Host/HostList/HostListItem.jsx:34
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:64
#: screens/InstanceGroup/Instances/InstanceList.jsx:155
#: screens/InstanceGroup/Instances/InstanceList.jsx:162
@@ -5134,7 +5148,7 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:197
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67
@@ -5165,7 +5179,7 @@ msgstr ""
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
-#: screens/Project/ProjectList/ProjectListItem.jsx:99
+#: screens/Project/ProjectList/ProjectListItem.jsx:114
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
#: screens/Team/TeamDetail/TeamDetail.jsx:34
@@ -5184,7 +5198,7 @@ msgstr ""
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115
-#: screens/Template/shared/JobTemplateForm.jsx:207
+#: screens/Template/shared/JobTemplateForm.jsx:208
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
@@ -5405,7 +5419,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188
#: screens/NotificationTemplate/NotificationTemplates.jsx:13
#: screens/NotificationTemplate/NotificationTemplates.jsx:21
-#: util/getRelatedResourceDeleteDetails.js:205
+#: util/getRelatedResourceDeleteDetails.js:188
msgid "Notification Templates"
msgstr ""
@@ -5479,7 +5493,7 @@ msgstr ""
#: screens/Setting/shared/SharedFields.jsx:97
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:53
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "Off"
msgstr ""
@@ -5497,7 +5511,7 @@ msgstr ""
#: screens/Setting/shared/SharedFields.jsx:96
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:52
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "On"
msgstr ""
@@ -5535,7 +5549,7 @@ msgstr ""
msgid "Option Details"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:372
+#: screens/Template/shared/JobTemplateForm.jsx:373
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:220
msgid ""
"Optional labels that describe this job template,\n"
@@ -5561,12 +5575,12 @@ msgstr ""
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141
#: screens/Credential/shared/TypeInputsSubForm.jsx:49
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:250
#: screens/Project/ProjectDetail/ProjectDetail.jsx:130
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180
-#: screens/Template/shared/JobTemplateForm.jsx:530
+#: screens/Template/shared/JobTemplateForm.jsx:531
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246
msgid "Options"
msgstr ""
@@ -5588,17 +5602,19 @@ msgstr ""
#: screens/Application/ApplicationsList/ApplicationsList.jsx:163
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:202
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69
#: screens/Project/ProjectDetail/ProjectDetail.jsx:98
+#: screens/Project/ProjectList/ProjectListItem.jsx:215
+#: screens/Project/ProjectList/ProjectListItem.jsx:226
#: screens/Team/TeamDetail/TeamDetail.jsx:40
#: screens/Team/TeamList/TeamList.jsx:155
#: screens/Team/TeamList/TeamListItem.jsx:45
@@ -5625,15 +5641,15 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:97
#: screens/ActivityStream/ActivityStream.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:133
-#: screens/Organization/OrganizationList/OrganizationList.jsx:179
+#: screens/Organization/OrganizationList/OrganizationList.jsx:132
+#: screens/Organization/OrganizationList/OrganizationList.jsx:178
#: screens/Organization/Organizations.jsx:16
#: screens/Organization/Organizations.jsx:27
#: screens/User/User.jsx:65
#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55
#: screens/User/Users.jsx:34
-#: util/getRelatedResourceDeleteDetails.js:256
-#: util/getRelatedResourceDeleteDetails.js:290
+#: util/getRelatedResourceDeleteDetails.js:239
+#: util/getRelatedResourceDeleteDetails.js:273
msgid "Organizations"
msgstr ""
@@ -5651,7 +5667,7 @@ msgid "Output"
msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:48
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:121
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
msgid "Overwrite"
msgstr ""
@@ -5660,7 +5676,7 @@ msgstr ""
msgid "Overwrite Variables"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:144
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
msgid "Overwrite variables"
msgstr ""
@@ -5710,7 +5726,7 @@ msgstr ""
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:392
+#: screens/Template/shared/JobTemplateForm.jsx:393
msgid ""
"Pass extra command line variables to the playbook. This is the\n"
"-e or --extra-vars command line parameter for ansible-playbook.\n"
@@ -5779,7 +5795,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:138
#: screens/Job/JobDetail/JobDetail.jsx:237
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223
-#: screens/Template/shared/JobTemplateForm.jsx:330
+#: screens/Template/shared/JobTemplateForm.jsx:331
msgid "Playbook"
msgstr ""
@@ -5797,7 +5813,7 @@ msgstr ""
msgid "Playbook Directory"
msgstr ""
-#: components/JobList/JobList.jsx:187
+#: components/JobList/JobList.jsx:186
#: components/JobList/JobListItem.jsx:34
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38
#: screens/Job/JobDetail/JobDetail.jsx:98
@@ -5852,7 +5868,7 @@ msgstr ""
msgid "Please select a day number between 1 and 31."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:755
+#: screens/Template/shared/JobTemplateForm.jsx:756
msgid "Please select an Inventory or check the Prompt on Launch option."
msgstr ""
@@ -5918,7 +5934,7 @@ msgstr ""
msgid "Private key passphrase"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:536
+#: screens/Template/shared/JobTemplateForm.jsx:537
msgid "Privilege Escalation"
msgstr ""
@@ -5934,7 +5950,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:123
#: components/PromptDetail/PromptJobTemplateDetail.jsx:131
#: components/TemplateList/TemplateListItem.jsx:271
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:216
#: screens/Job/JobDetail/JobDetail.jsx:212
#: screens/Job/JobDetail/JobDetail.jsx:227
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151
@@ -5975,8 +5991,8 @@ msgstr ""
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
-#: util/getRelatedResourceDeleteDetails.js:219
-#: util/getRelatedResourceDeleteDetails.js:249
+#: util/getRelatedResourceDeleteDetails.js:202
+#: util/getRelatedResourceDeleteDetails.js:232
msgid "Projects"
msgstr ""
@@ -5993,7 +6009,7 @@ msgstr ""
msgid "Prompt Overrides"
msgstr ""
-#: components/CodeEditor/VariablesField.jsx:222
+#: components/CodeEditor/VariablesField.jsx:230
#: components/FieldWithPrompt/FieldWithPrompt.jsx:47
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167
msgid "Prompt on launch"
@@ -6009,7 +6025,7 @@ msgstr ""
msgid "Prompts"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:423
+#: screens/Template/shared/JobTemplateForm.jsx:424
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:166
msgid ""
"Provide a host pattern to further constrain\n"
@@ -6060,16 +6076,16 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:152
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243
-#: screens/Template/shared/JobTemplateForm.jsx:609
+#: screens/Template/shared/JobTemplateForm.jsx:610
msgid "Provisioning Callback URL"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:604
+#: screens/Template/shared/JobTemplateForm.jsx:605
msgid "Provisioning Callback details"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:541
-#: screens/Template/shared/JobTemplateForm.jsx:544
+#: screens/Template/shared/JobTemplateForm.jsx:542
+#: screens/Template/shared/JobTemplateForm.jsx:545
msgid "Provisioning Callbacks"
msgstr ""
@@ -6158,7 +6174,7 @@ msgstr ""
msgid "Redirecting to subscription detail"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:413
+#: screens/Template/shared/JobTemplateForm.jsx:414
msgid ""
"Refer to the Ansible documentation for details\n"
"about the configuration file."
@@ -6196,7 +6212,7 @@ msgid "Related Groups"
msgstr ""
#: components/JobList/JobListItem.jsx:118
-#: components/LaunchButton/ReLaunchDropDown.jsx:78
+#: components/LaunchButton/ReLaunchDropDown.jsx:81
#: screens/Job/JobDetail/JobDetail.jsx:384
#: screens/Job/JobDetail/JobDetail.jsx:392
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:162
@@ -6208,16 +6224,16 @@ msgstr ""
msgid "Relaunch Job"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:39
+#: components/LaunchButton/ReLaunchDropDown.jsx:41
msgid "Relaunch all hosts"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:51
+#: components/LaunchButton/ReLaunchDropDown.jsx:54
msgid "Relaunch failed hosts"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:29
-#: components/LaunchButton/ReLaunchDropDown.jsx:34
+#: components/LaunchButton/ReLaunchDropDown.jsx:30
+#: components/LaunchButton/ReLaunchDropDown.jsx:35
msgid "Relaunch on"
msgstr ""
@@ -6383,8 +6399,8 @@ msgid "Revert to factory default."
msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:236
-#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:137
+#: screens/Project/ProjectList/ProjectList.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:152
msgid "Revision"
msgstr ""
@@ -6420,7 +6436,7 @@ msgstr ""
#: screens/Credential/shared/ExternalTestModal.jsx:90
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24
-#: screens/Template/shared/JobTemplateForm.jsx:171
+#: screens/Template/shared/JobTemplateForm.jsx:172
msgid "Run"
msgstr ""
@@ -6451,7 +6467,7 @@ msgstr ""
msgid "Run type"
msgstr ""
-#: components/JobList/JobList.jsx:204
+#: components/JobList/JobList.jsx:203
#: components/TemplateList/TemplateListItem.jsx:106
#: components/Workflow/WorkflowNodeHelp.jsx:83
msgid "Running"
@@ -6502,7 +6518,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:31
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45
-#: screens/Project/ProjectList/ProjectListItem.jsx:65
+#: screens/Project/ProjectList/ProjectListItem.jsx:72
msgid "STATUS:"
msgstr ""
@@ -6685,7 +6701,7 @@ msgstr ""
msgid "Select Items from List"
msgstr ""
-#: screens/Template/shared/LabelSelect.jsx:88
+#: screens/Template/shared/LabelSelect.jsx:92
msgid "Select Labels"
msgstr ""
@@ -6709,7 +6725,7 @@ msgstr ""
msgid "Select a Resource Type"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:310
+#: screens/Template/shared/JobTemplateForm.jsx:311
msgid ""
"Select a branch for the job template. This branch is applied to\n"
"all job template nodes that prompt for a branch."
@@ -6752,7 +6768,7 @@ msgstr ""
msgid "Select a playbook"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:296
+#: screens/Template/shared/JobTemplateForm.jsx:297
msgid "Select a project before editing the execution environment."
msgstr ""
@@ -6760,7 +6776,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr ""
@@ -6810,8 +6826,8 @@ msgstr ""
#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41
#: screens/Team/shared/TeamForm.jsx:20
#: screens/Template/Survey/SurveyQuestionForm.jsx:28
-#: screens/Template/shared/JobTemplateForm.jsx:83
-#: screens/Template/shared/JobTemplateForm.jsx:147
+#: screens/Template/shared/JobTemplateForm.jsx:84
+#: screens/Template/shared/JobTemplateForm.jsx:148
#: screens/User/shared/UserForm.jsx:49
msgid "Select a value for this field"
msgstr ""
@@ -6841,7 +6857,7 @@ msgstr ""
msgid "Select an organization before editing the default execution environment."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:354
+#: screens/Template/shared/JobTemplateForm.jsx:355
msgid ""
"Select credentials that allow Tower to access the nodes this job will be ran\n"
"against. You can only select one credential of each type. For machine credentials (SSH),\n"
@@ -6890,7 +6906,7 @@ msgstr ""
msgid "Select source path"
msgstr ""
-#: components/MultiSelect/TagMultiSelect.jsx:55
+#: components/MultiSelect/TagMultiSelect.jsx:60
msgid "Select tags"
msgstr ""
@@ -6898,7 +6914,7 @@ msgstr ""
msgid "Select the Instance Groups for this Inventory to run on."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:493
+#: screens/Template/shared/JobTemplateForm.jsx:494
msgid ""
"Select the Instance Groups for this Organization\n"
"to run on."
@@ -6932,12 +6948,12 @@ msgstr ""
msgid "Select the default execution environment for this project."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:293
+#: screens/Template/shared/JobTemplateForm.jsx:294
msgid "Select the execution environment for this job template."
msgstr ""
#: components/Lookup/InventoryLookup.jsx:89
-#: screens/Template/shared/JobTemplateForm.jsx:255
+#: screens/Template/shared/JobTemplateForm.jsx:256
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
@@ -6964,11 +6980,11 @@ msgstr ""
msgid "Select the inventory that this host will belong to."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:334
+#: screens/Template/shared/JobTemplateForm.jsx:335
msgid "Select the playbook to be executed by this job."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:272
+#: screens/Template/shared/JobTemplateForm.jsx:273
msgid ""
"Select the project containing the playbook\n"
"you want this job to execute."
@@ -7004,7 +7020,7 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryListItem.jsx:79
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43
-#: screens/Project/ProjectList/ProjectListItem.jsx:97
+#: screens/Project/ProjectList/ProjectListItem.jsx:112
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:259
#: screens/Team/TeamList/TeamListItem.jsx:38
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60
@@ -7108,7 +7124,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:144
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232
-#: screens/Template/shared/JobTemplateForm.jsx:475
+#: screens/Template/shared/JobTemplateForm.jsx:476
msgid "Show Changes"
msgstr ""
@@ -7181,11 +7197,11 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368
#: screens/Job/JobDetail/JobDetail.jsx:327
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357
-#: screens/Template/shared/JobTemplateForm.jsx:514
+#: screens/Template/shared/JobTemplateForm.jsx:515
msgid "Skip Tags"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:517
+#: screens/Template/shared/JobTemplateForm.jsx:518
msgid ""
"Skip tags are useful when you have a\n"
"large playbook, and you want to skip specific parts of a\n"
@@ -7258,7 +7274,7 @@ msgid "Sort question order"
msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:86
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/shared/InventorySourceForm.jsx:135
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86
msgid "Source"
@@ -7272,7 +7288,7 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321
#: screens/Project/ProjectDetail/ProjectDetail.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220
-#: screens/Template/shared/JobTemplateForm.jsx:306
+#: screens/Template/shared/JobTemplateForm.jsx:307
msgid "Source Control Branch"
msgstr ""
@@ -7306,13 +7322,13 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
#: screens/Project/ProjectDetail/ProjectDetail.jsx:114
-#: screens/Project/ProjectList/ProjectList.jsx:158
+#: screens/Project/ProjectList/ProjectList.jsx:157
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97
msgid "Source Control URL"
msgstr ""
-#: components/JobList/JobList.jsx:185
+#: components/JobList/JobList.jsx:184
#: components/JobList/JobListItem.jsx:32
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39
#: screens/Job/JobDetail/JobDetail.jsx:93
@@ -7344,7 +7360,7 @@ msgstr ""
msgid "Source phone number"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34
msgid "Source variables"
msgstr ""
@@ -7409,7 +7425,7 @@ msgstr ""
msgid "Start"
msgstr ""
-#: components/JobList/JobList.jsx:221
+#: components/JobList/JobList.jsx:220
#: components/JobList/JobListItem.jsx:84
msgid "Start Time"
msgstr ""
@@ -7437,21 +7453,21 @@ msgid "Start sync source"
msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:141
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79
msgid "Started"
msgstr ""
-#: components/JobList/JobList.jsx:198
-#: components/JobList/JobList.jsx:219
+#: components/JobList/JobList.jsx:197
+#: components/JobList/JobList.jsx:218
#: components/JobList/JobListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:201
+#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryListItem.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:174
-#: screens/Project/ProjectList/ProjectListItem.jsx:119
+#: screens/Project/ProjectList/ProjectListItem.jsx:134
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
@@ -7544,7 +7560,7 @@ msgstr ""
msgid "Successful"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:148
+#: screens/Project/ProjectList/ProjectListItem.jsx:163
msgid "Successfully copied to clipboard!"
msgstr ""
@@ -7589,25 +7605,25 @@ msgstr ""
msgid "Sync"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:155
+#: screens/Project/ProjectList/ProjectListItem.jsx:170
#: screens/Project/shared/ProjectSyncButton.jsx:31
msgid "Sync Project"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:200
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:203
msgid "Sync all"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:194
msgid "Sync all sources"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:232
msgid "Sync error"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:141
+#: screens/Project/ProjectList/ProjectListItem.jsx:156
msgid "Sync for revision"
msgstr ""
@@ -7652,7 +7668,7 @@ msgstr ""
msgid "Tabs"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:501
+#: screens/Template/shared/JobTemplateForm.jsx:502
msgid ""
"Tags are useful when you have a large\n"
"playbook, and you want to run a specific part of a\n"
@@ -7737,7 +7753,7 @@ msgstr ""
#: screens/User/UserTeams/UserTeamList.jsx:176
#: screens/User/UserTeams/UserTeamList.jsx:244
#: screens/User/Users.jsx:33
-#: util/getRelatedResourceDeleteDetails.js:198
+#: util/getRelatedResourceDeleteDetails.js:181
msgid "Teams"
msgstr ""
@@ -7757,8 +7773,8 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82
#: screens/Template/Templates.jsx:16
-#: util/getRelatedResourceDeleteDetails.js:242
-#: util/getRelatedResourceDeleteDetails.js:299
+#: util/getRelatedResourceDeleteDetails.js:225
+#: util/getRelatedResourceDeleteDetails.js:282
msgid "Templates"
msgstr ""
@@ -7825,7 +7841,7 @@ msgstr ""
#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:469
+#: screens/Template/shared/JobTemplateForm.jsx:470
msgid ""
"The amount of time (in seconds) to run\n"
"before the job is canceled. Defaults to 0 for no job\n"
@@ -7869,7 +7885,7 @@ msgstr ""
#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:407
+#: screens/Template/shared/JobTemplateForm.jsx:408
msgid ""
"The number of parallel or simultaneous\n"
"processes to use while executing the playbook. An empty value,\n"
@@ -7977,7 +7993,7 @@ msgstr ""
msgid "Third"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr ""
@@ -8102,7 +8118,7 @@ msgstr ""
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr ""
@@ -8126,7 +8142,7 @@ msgstr ""
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:150
+#: screens/Template/shared/JobTemplateForm.jsx:151
msgid "This project needs to be updated"
msgstr ""
@@ -8217,7 +8233,7 @@ msgstr ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169
-#: screens/Template/shared/JobTemplateForm.jsx:468
+#: screens/Template/shared/JobTemplateForm.jsx:469
msgid "Timeout"
msgstr ""
@@ -8319,7 +8335,7 @@ msgstr ""
msgid "Top Pagination"
msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
msgid "Total Jobs"
msgstr ""
@@ -8371,7 +8387,7 @@ msgstr ""
msgid "Twilio"
msgstr ""
-#: components/JobList/JobList.jsx:220
+#: components/JobList/JobList.jsx:219
#: components/JobList/JobListItem.jsx:82
#: components/Lookup/ProjectLookup.jsx:110
#: components/NotificationList/NotificationList.jsx:220
@@ -8379,8 +8395,8 @@ msgstr ""
#: components/PromptDetail/PromptDetail.jsx:112
#: components/Schedule/ScheduleList/ScheduleList.jsx:174
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95
-#: components/TemplateList/TemplateList.jsx:198
-#: components/TemplateList/TemplateList.jsx:223
+#: components/TemplateList/TemplateList.jsx:197
+#: components/TemplateList/TemplateList.jsx:222
#: components/TemplateList/TemplateListItem.jsx:155
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
@@ -8391,7 +8407,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
@@ -8404,7 +8420,7 @@ msgstr ""
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
-#: screens/Project/ProjectList/ProjectListItem.jsx:132
+#: screens/Project/ProjectList/ProjectListItem.jsx:147
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86
@@ -8469,12 +8485,12 @@ msgstr ""
msgid "Update on Project Update"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:163
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171
msgid "Update on launch"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:173
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199
msgid "Update on project update"
msgstr ""
@@ -8653,7 +8669,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:356
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211
-#: screens/Template/shared/JobTemplateForm.jsx:389
+#: screens/Template/shared/JobTemplateForm.jsx:390
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:239
msgid "Variables"
msgstr ""
@@ -8680,11 +8696,11 @@ msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:102
#: components/PromptDetail/PromptJobTemplateDetail.jsx:141
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:239
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227
-#: screens/Template/shared/JobTemplateForm.jsx:441
+#: screens/Template/shared/JobTemplateForm.jsx:442
msgid "Verbosity"
msgstr ""
@@ -9017,7 +9033,7 @@ msgstr ""
msgid "Webhook URL"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:637
+#: screens/Template/shared/JobTemplateForm.jsx:638
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:281
msgid "Webhook details"
msgstr ""
@@ -9061,7 +9077,7 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:153
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161
msgid ""
"When not checked, a merge will be performed,\n"
@@ -9074,7 +9090,7 @@ msgstr ""
#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
#~ msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:134
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144
msgid ""
"When not checked, local child\n"
@@ -9101,14 +9117,14 @@ msgstr ""
#: routeConfig.js:55
#: screens/ActivityStream/ActivityStream.jsx:154
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209
#: screens/WorkflowApproval/WorkflowApprovals.jsx:12
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:19
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:22
msgid "Workflow Approvals"
msgstr ""
-#: components/JobList/JobList.jsx:190
+#: components/JobList/JobList.jsx:189
#: components/JobList/JobListItem.jsx:37
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41
#: screens/Job/JobDetail/JobDetail.jsx:101
@@ -9126,13 +9142,13 @@ msgstr ""
msgid "Workflow Job Template"
msgstr ""
-#: util/getRelatedResourceDeleteDetails.js:139
-#: util/getRelatedResourceDeleteDetails.js:181
-#: util/getRelatedResourceDeleteDetails.js:284
+#: util/getRelatedResourceDeleteDetails.js:122
+#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:267
msgid "Workflow Job Template Nodes"
msgstr ""
-#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:147
msgid "Workflow Job Templates"
msgstr ""
@@ -9234,7 +9250,7 @@ msgstr ""
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr ""
@@ -9272,12 +9288,12 @@ msgstr ""
msgid "Zoom Out"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:734
+#: screens/Template/shared/JobTemplateForm.jsx:735
#: screens/Template/shared/WebhookSubForm.jsx:155
msgid "a new webhook key will be generated on save."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:731
+#: screens/Template/shared/JobTemplateForm.jsx:732
#: screens/Template/shared/WebhookSubForm.jsx:143
msgid "a new webhook url will be generated on save."
msgstr ""
@@ -9308,7 +9324,7 @@ msgstr ""
msgid "brand logo"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:276
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr ""
@@ -9317,7 +9333,7 @@ msgstr ""
msgid "command"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:265
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr ""
@@ -9332,7 +9348,7 @@ msgstr ""
#~ msgid "controller instance"
#~ msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:140
+#: screens/Project/ProjectList/ProjectListItem.jsx:155
msgid "copy to clipboard disabled"
msgstr ""
@@ -9358,7 +9374,7 @@ msgstr ""
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:275
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156
#: screens/Project/ProjectDetail/ProjectDetail.jsx:166
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154
@@ -9482,8 +9498,8 @@ msgstr ""
msgid "per page"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:74
-#: components/LaunchButton/ReLaunchDropDown.jsx:96
+#: components/LaunchButton/ReLaunchDropDown.jsx:77
+#: components/LaunchButton/ReLaunchDropDown.jsx:99
msgid "relaunch jobs"
msgstr ""
@@ -9507,7 +9523,7 @@ msgstr ""
msgid "sec"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
msgid "seconds"
msgstr ""
@@ -9575,6 +9591,46 @@ msgstr ""
#~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}"
#~ msgstr ""
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215
+msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
+msgstr ""
+
+#: screens/Credential/CredentialList/CredentialList.jsx:178
+msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171
+msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187
+msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:223
+msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:183
+msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
+msgstr ""
+
+#: screens/Inventory/InventoryList/InventoryList.jsx:222
+msgid "{0, plural, one {This invetory is currently being used by some temeplates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Organization/OrganizationList/OrganizationList.jsx:181
+msgid "{0, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Project/ProjectList/ProjectList.jsx:203
+msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: components/TemplateList/TemplateList.jsx:243
+msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
#: components/JobList/JobListCancelButton.jsx:72
msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}"
msgstr ""
diff --git a/awx/ui_next/src/locales/fr/messages.po b/awx/ui_next/src/locales/fr/messages.po
index b91bf553aa..26e6196aef 100644
--- a/awx/ui_next/src/locales/fr/messages.po
+++ b/awx/ui_next/src/locales/fr/messages.po
@@ -1,12 +1,16 @@
+msgid ""
+msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: @lingui/cli\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
-"Language: fr \n"
+"Language: fr\n"
"Language-Team: \n"
"Plural-Forms: \n"
+"POT-Creation-Date: \n"
+"Content-Type: \n"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43
msgid "(Limited to first 10)"
@@ -30,7 +34,7 @@ msgstr "Activer les tâches parallèles"
msgid "- Enable Webhooks"
msgstr "Activer Webhooks"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228
msgid "/ (project root)"
msgstr "/ (project root)"
@@ -41,16 +45,16 @@ msgstr "/ (project root)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:42
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106
-#: screens/Template/shared/JobTemplateForm.jsx:180
+#: screens/Template/shared/JobTemplateForm.jsx:181
msgid "0 (Normal)"
msgstr "0 (Normal)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:105
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82
msgid "0 (Warning)"
msgstr "0 (Avertissement)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83
msgid "1 (Info)"
msgstr "1 (info)"
@@ -62,11 +66,11 @@ msgstr "1 (info)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:43
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107
-#: screens/Template/shared/JobTemplateForm.jsx:181
+#: screens/Template/shared/JobTemplateForm.jsx:182
msgid "1 (Verbose)"
msgstr "1 (Verbeux)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84
msgid "2 (Debug)"
msgstr "2 (Déboguer)"
@@ -78,7 +82,7 @@ msgstr "2 (Déboguer)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:44
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108
-#: screens/Template/shared/JobTemplateForm.jsx:182
+#: screens/Template/shared/JobTemplateForm.jsx:183
msgid "2 (More Verbose)"
msgstr "2 (Verbeux +)"
@@ -89,7 +93,7 @@ msgstr "2 (Verbeux +)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:45
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109
-#: screens/Template/shared/JobTemplateForm.jsx:183
+#: screens/Template/shared/JobTemplateForm.jsx:184
msgid "3 (Debug)"
msgstr "3 (Déboguer)"
@@ -100,7 +104,7 @@ msgstr "3 (Déboguer)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:46
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110
-#: screens/Template/shared/JobTemplateForm.jsx:184
+#: screens/Template/shared/JobTemplateForm.jsx:185
msgid "4 (Connection Debug)"
msgstr "4 (Débogage de la connexion)"
@@ -116,8 +120,12 @@ msgid ""
msgstr ""
#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57
-msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available."
-msgstr "Refspec à récupérer (passé au module git Ansible). Ce paramètre permet d'accéder aux références via le champ de branche non disponible par ailleurs."
+#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available."
+#~ msgstr "Refspec à récupérer (passé au module git Ansible). Ce paramètre permet d'accéder aux références via le champ de branche non disponible par ailleurs."
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:138
+msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com0>. For more information, see the <1>User Guide1>."
+msgstr ""
#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281
@@ -177,11 +185,11 @@ msgstr "Token de compte"
msgid "Action"
msgstr "Action"
-#: components/JobList/JobList.jsx:225
+#: components/JobList/JobList.jsx:222
#: components/JobList/JobListItem.jsx:90
#: components/Schedule/ScheduleList/ScheduleList.jsx:176
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112
-#: components/TemplateList/TemplateList.jsx:227
+#: components/TemplateList/TemplateList.jsx:224
#: components/TemplateList/TemplateListItem.jsx:157
#: screens/ActivityStream/ActivityStream.jsx:260
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
@@ -191,13 +199,13 @@ msgstr "Action"
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
#: screens/Host/HostList/HostList.jsx:170
#: screens/Host/HostList/HostListItem.jsx:48
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:204
+#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryListItem.jsx:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
@@ -206,7 +214,7 @@ msgstr "Action"
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:152
+#: screens/Project/ProjectList/ProjectListItem.jsx:167
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
#: screens/User/UserList/UserList.jsx:172
@@ -338,8 +346,8 @@ msgid "Add workflow template"
msgstr "Ajouter un modèle de flux de travail"
#: src/screens/ActivityStream/ActivityStream.jsx:187
-msgid "Adminisration"
-msgstr "Administration"
+#~ msgid "Adminisration"
+#~ msgstr "Administration"
#: routeConfig.js:114
#: screens/ActivityStream/ActivityStream.jsx:188
@@ -359,7 +367,7 @@ msgstr ""
msgid "Advanced search value input"
msgstr "Saisie de la valeur de la recherche avancée"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:175
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203
msgid ""
"After every project update where the SCM revision\n"
@@ -370,8 +378,8 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177
-msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format."
-msgstr "Chaque fois qu’un projet est mis à jour et que la révision SCM est modifiée, réalisez une mise à jour de la source sélectionnée avant de lancer les tâches liées un à job. Le but est le contenu statique, comme le format .ini de fichier d'inventaire Ansible."
+#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format."
+#~ msgstr "Chaque fois qu’un projet est mis à jour et que la révision SCM est modifiée, réalisez une mise à jour de la source sélectionnée avant de lancer les tâches liées un à job. Le but est le contenu statique, comme le format .ini de fichier d'inventaire Ansible."
#: components/Schedule/shared/FrequencyDetailSubform.jsx:508
msgid "After number of occurrences"
@@ -389,7 +397,7 @@ msgstr ""
msgid "Alert modal"
msgstr "Modal d'alerte"
-#: components/LaunchButton/ReLaunchDropDown.jsx:46
+#: components/LaunchButton/ReLaunchDropDown.jsx:48
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:250
msgid "All"
msgstr "Tous"
@@ -409,9 +417,11 @@ msgstr "Autoriser le remplacement de la branche"
msgid "Allow Provisioning Callbacks"
msgstr "Autoriser les rappels d’exécution"
-#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102
-msgid "Allow changing the Source Control branch or revision in a job template that uses this project."
-msgstr "Permet de modifier la branche de contrôle des sources ou la révision dans un modèle de job qui utilise ce projet."
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:115
+msgid ""
+"Allow changing the Source Control branch or revision in a job\n"
+"template that uses this project."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102
#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project."
@@ -447,8 +457,8 @@ msgstr "Un inventaire doit être sélectionné"
#: src/screens/Organization/shared/OrganizationForm.jsx:82
#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128
#: src/screens/Project/shared/ProjectForm.jsx:274
-msgid "Ansible Environment"
-msgstr "Environnement Ansible"
+#~ msgid "Ansible Environment"
+#~ msgstr "Environnement Ansible"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98
msgid "Ansible Tower"
@@ -460,12 +470,12 @@ msgid "Ansible Tower Documentation."
msgstr "Documentation Ansible Tower"
#: src/components/About/About.jsx:58
-msgid "Ansible Version"
-msgstr "Version Ansible"
+#~ msgid "Ansible Version"
+#~ msgstr "Version Ansible"
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204
-msgid "Ansible environment"
-msgstr "Environnement Ansible"
+#~ msgid "Ansible environment"
+#~ msgstr "Environnement Ansible"
#: screens/Template/Survey/SurveyQuestionForm.jsx:33
msgid "Answer type"
@@ -515,7 +525,7 @@ msgstr "Application non trouvée."
#: screens/Application/Applications.jsx:35
#: screens/Application/ApplicationsList/ApplicationsList.jsx:116
#: screens/Application/ApplicationsList/ApplicationsList.jsx:154
-#: util/getRelatedResourceDeleteDetails.js:233
+#: util/getRelatedResourceDeleteDetails.js:216
msgid "Applications"
msgstr "Applications"
@@ -552,8 +562,8 @@ msgid "April"
msgstr "Avril"
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116
-msgid "Are you sure you want to delete the {0} below?"
-msgstr "Voulez-vous vraiment supprimer la tâche {0} ci-dessous ?"
+#~ msgid "Are you sure you want to delete the {0} below?"
+#~ msgstr "Voulez-vous vraiment supprimer la tâche {0} ci-dessous ?"
#: components/DeleteButton/DeleteButton.jsx:128
msgid "Are you sure you want to delete:"
@@ -765,9 +775,13 @@ msgstr "Retour aux groupes d'instances"
msgid "Back to management jobs"
msgstr "Retour aux Jobs de gestion"
-#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70
-msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks."
-msgstr "Chemin de base utilisé pour localiser les playbooks. Les répertoires localisés dans ce chemin sont répertoriés dans la liste déroulante des répertoires de playbooks. Le chemin de base et le répertoire de playbook sélectionnés fournissent ensemble le chemin complet servant à localiser les playbooks."
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70
+msgid ""
+"Base path used for locating playbooks. Directories\n"
+"found inside this path will be listed in the playbook directory drop-down.\n"
+"Together the base path and selected playbook directory provide the full\n"
+"path used to locate playbooks."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70
#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks."
@@ -777,9 +791,13 @@ msgstr "Chemin de base utilisé pour localiser les playbooks. Les répertoires l
msgid "Basic auth password"
msgstr "Mot de passe d'auth de base"
-#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33
-msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec."
-msgstr "Branche à extraire. En plus des branches, vous pouvez saisir des balises, des hachages de validation et des références arbitraires. Certains hachages et références de validation peuvent ne pas être disponibles à moins que vous ne fournissiez également une refspec personnalisée."
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33
+msgid ""
+"Branch to checkout. In addition to branches,\n"
+"you can input tags, commit hashes, and arbitrary refs. Some\n"
+"commit hashes and refs may not be available unless you also\n"
+"provide a custom refspec."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33
#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec."
@@ -804,7 +822,7 @@ msgstr ""
msgid "Cache Timeout"
msgstr "Expiration Délai d’attente du cache"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234
msgid "Cache timeout"
msgstr "Expiration du délai d’attente du cache"
@@ -825,7 +843,7 @@ msgstr "Expiration du délai d’attente du cache (secondes)"
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:279
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -927,15 +945,17 @@ msgstr "Annuler la source de synchronisation"
msgid "Canceled"
msgstr "Annulé"
-#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153
-msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type."
-msgstr "Impossible d'activer l'agrégateur de logs sans fournir l'hôte de l'agrégateur de logs et le type d'agrégateur de logs."
+#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153
+msgid ""
+"Cannot enable log aggregator without providing\n"
+"logging aggregator host and logging aggregator type."
+msgstr ""
#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153
#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type."
#~ msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77
msgid "Capacity"
msgstr "Capacité"
@@ -960,9 +980,11 @@ msgstr "Version non sensible à la casse de regex"
msgid "Case-insensitive version of startswith."
msgstr "Version non sensible à la casse de startswith."
-#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76
-msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location."
-msgstr "Modifiez PROJECTS_ROOT lorsque vous déployez {brandName} pour changer cet emplacement."
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76
+msgid ""
+"Change PROJECTS_ROOT when deploying\n"
+"{brandName} to change this location."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76
#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location."
@@ -982,7 +1004,7 @@ msgid "Channel"
msgstr "Canal"
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104
-#: screens/Template/shared/JobTemplateForm.jsx:175
+#: screens/Template/shared/JobTemplateForm.jsx:176
msgid "Check"
msgstr "Vérifier"
@@ -1015,7 +1037,7 @@ msgid "Choose a Webhook Service"
msgstr "Choisir un service de webhook"
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97
-#: screens/Template/shared/JobTemplateForm.jsx:168
+#: screens/Template/shared/JobTemplateForm.jsx:169
msgid "Choose a job type"
msgstr "Choisir un type de job"
@@ -1031,9 +1053,12 @@ msgstr "Choisissez une source"
msgid "Choose an HTTP method"
msgstr "Choisissez une méthode HTTP"
-#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37
-msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option."
-msgstr "Spécifiez le type de format ou de type de réponse que vous souhaitez pour interroger l'utilisateur. Consultez la documentation d’Ansible Tower pour en savoir plus sur chaque option."
+#: screens/Template/Survey/SurveyQuestionForm.jsx:37
+msgid ""
+"Choose an answer type or format you want as the prompt for the user.\n"
+"Refer to the Ansible Tower Documentation for more additional\n"
+"information about each option."
+msgstr ""
#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37
#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option."
@@ -1133,7 +1158,7 @@ msgstr "Cloud"
msgid "Collapse"
msgstr "Effondrement"
-#: components/JobList/JobList.jsx:188
+#: components/JobList/JobList.jsx:187
#: components/JobList/JobListItem.jsx:35
#: screens/Job/JobDetail/JobDetail.jsx:99
#: screens/Job/JobOutput/HostEventModal.jsx:137
@@ -1147,16 +1172,20 @@ msgstr "Commande"
#: src/screens/Template/Template.jsx:151
#: src/screens/Template/Templates.jsx:48
#: src/screens/Template/WorkflowJobTemplate.jsx:145
-msgid "Completed Jobs"
-msgstr "Jobs terminés"
+#~ msgid "Completed Jobs"
+#~ msgstr "Jobs terminés"
#: src/screens/Inventory/Inventories.jsx:59
#: src/screens/Inventory/Inventories.jsx:73
#: src/screens/Inventory/SmartInventory.jsx:73
-msgid "Completed jobs"
-msgstr "Jobs terminés"
+#~ msgid "Completed jobs"
+#~ msgstr "Jobs terminés"
-#: screens/Template/shared/JobTemplateForm.jsx:580
+#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53
+msgid "Compliant"
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:581
msgid "Concurrent Jobs"
msgstr "Jobs parallèles"
@@ -1227,18 +1256,30 @@ msgid ""
msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92
-msgid "Control the level of output Ansible will produce for inventory source update jobs."
-msgstr "Contrôlez le niveau de sortie produit par Ansible pour les tâches d'actualisation de source d'inventaire."
+#~ msgid "Control the level of output Ansible will produce for inventory source update jobs."
+#~ msgstr "Contrôlez le niveau de sortie produit par Ansible pour les tâches d'actualisation de source d'inventaire."
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:152
+msgid ""
+"Control the level of output ansible\n"
+"will produce as the playbook executes."
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:445
+msgid ""
+"Control the level of output ansible will\n"
+"produce as the playbook executes."
+msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152
#: src/screens/Template/shared/JobTemplateForm.jsx:414
-msgid "Control the level of output ansible will produce as the playbook executes."
-msgstr "Contrôlez le niveau de sortie qu’Ansible génère lors de l’exécution du playbook."
+#~ msgid "Control the level of output ansible will produce as the playbook executes."
+#~ msgstr "Contrôlez le niveau de sortie qu’Ansible génère lors de l’exécution du playbook."
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
-msgid "Controller"
-msgstr "Contrôleur"
+#~ msgid "Controller"
+#~ msgstr "Contrôleur"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208
msgid "Convergence"
@@ -1273,7 +1314,7 @@ msgstr "Copier l'inventaire"
msgid "Copy Notification Template"
msgstr "Copie du modèle de notification"
-#: screens/Project/ProjectList/ProjectListItem.jsx:175
+#: screens/Project/ProjectList/ProjectListItem.jsx:190
msgid "Copy Project"
msgstr "Copier le projet"
@@ -1281,23 +1322,19 @@ msgstr "Copier le projet"
msgid "Copy Template"
msgstr "Copier le modèle"
-#: screens/Project/ProjectList/ProjectListItem.jsx:147
+#: screens/Project/ProjectList/ProjectListItem.jsx:162
msgid "Copy full revision to clipboard."
msgstr "Copier la révision complète dans le Presse-papiers."
-#: components/About/About.jsx:35
-msgid "Copyright 2019 Red Hat, Inc."
-msgstr "Copyright 2019 Red Hat, Inc."
+#: components/About/About.jsx:28
+msgid "Copyright"
+msgstr ""
#: components/About/About.jsx:35
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
-#: components/About/About.jsx:35
-#~ msgid "Copyright 2019 Red Hat, Inc."
-#~ msgstr ""
-
-#: screens/Template/shared/JobTemplateForm.jsx:383
+#: screens/Template/shared/JobTemplateForm.jsx:384
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231
msgid "Create"
msgstr "Créer"
@@ -1368,13 +1405,18 @@ msgstr "Créer un nouvel inventaire smart avec le filtre appliqué"
#: src/screens/InstanceGroup/InstanceGroups.jsx:18
#: src/screens/InstanceGroup/InstanceGroups.jsx:30
-msgid "Create container group"
-msgstr "Créer un groupe de conteneurs"
+#~ msgid "Create container group"
+#~ msgstr "Créer un groupe de conteneurs"
#: src/screens/InstanceGroup/InstanceGroups.jsx:17
#: src/screens/InstanceGroup/InstanceGroups.jsx:28
-msgid "Create instance group"
-msgstr "Créer un groupe d'instances"
+#~ msgid "Create instance group"
+#~ msgstr "Créer un groupe d'instances"
+
+#: screens/InstanceGroup/InstanceGroups.jsx:19
+#: screens/InstanceGroup/InstanceGroups.jsx:32
+msgid "Create new container group"
+msgstr ""
#: screens/CredentialType/CredentialTypes.jsx:24
msgid "Create new credential Type"
@@ -1438,7 +1480,7 @@ msgstr "Créer un jeton d'utilisateur"
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:261
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53
#: screens/Job/JobDetail/JobDetail.jsx:343
@@ -1509,7 +1551,7 @@ msgstr "Créé par (nom d'utilisateur)"
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43
@@ -1519,7 +1561,7 @@ msgstr "Créé par (nom d'utilisateur)"
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43
-#: util/getRelatedResourceDeleteDetails.js:191
+#: util/getRelatedResourceDeleteDetails.js:174
msgid "Credential"
msgstr "Information d’identification"
@@ -1554,6 +1596,10 @@ msgstr "Informations d'identification introuvables."
msgid "Credential passwords"
msgstr "Mots de passes d’identification"
+#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60
+#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”."
+#~ msgstr "Informations d’identification pour s'authentifier auprès de Kubernetes ou OpenShift. Doit être de type \"Kubernetes/OpenShift API Bearer Token\"."
+
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58
msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used."
msgstr ""
@@ -1562,10 +1608,6 @@ msgstr ""
msgid "Credential to authenticate with a protected container registry."
msgstr ""
-#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60
-msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”."
-msgstr "Informations d’identification pour s'authentifier auprès de Kubernetes ou OpenShift. Doit être de type \"Kubernetes/OpenShift API Bearer Token\"."
-
#: screens/CredentialType/CredentialType.jsx:75
msgid "Credential type not found."
msgstr "Type d'informations d’identification non trouvé."
@@ -1582,12 +1624,12 @@ msgstr "Type d'informations d’identification non trouvé."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:71
#: screens/ActivityStream/ActivityStream.jsx:165
-#: screens/Credential/CredentialList/CredentialList.jsx:176
+#: screens/Credential/CredentialList/CredentialList.jsx:175
#: screens/Credential/Credentials.jsx:13
#: screens/Credential/Credentials.jsx:24
#: screens/Job/JobDetail/JobDetail.jsx:281
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293
-#: screens/Template/shared/JobTemplateForm.jsx:351
+#: screens/Template/shared/JobTemplateForm.jsx:352
#: util/getRelatedResourceDeleteDetails.js:98
msgid "Credentials"
msgstr "Informations d’identification"
@@ -1608,7 +1650,7 @@ msgstr "Spécifications des pods personnalisés"
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93
-#: screens/Project/ProjectList/ProjectListItem.jsx:109
+#: screens/Project/ProjectList/ProjectListItem.jsx:124
msgid "Custom virtual environment {0} must be replaced by an execution environment."
msgstr ""
@@ -1696,11 +1738,11 @@ msgstr "Définir les fonctions et fonctionnalités niveau système"
#: components/DeleteButton/DeleteButton.jsx:91
#: components/DeleteButton/DeleteButton.jsx:95
#: components/DeleteButton/DeleteButton.jsx:115
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:234
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:244
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:248
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:271
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131
@@ -1711,7 +1753,7 @@ msgstr "Définir les fonctions et fonctionnalités niveau système"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:126
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69
@@ -1742,17 +1784,17 @@ msgstr "Supprimer les groupes et les hôtes"
msgid "Delete Credential"
msgstr "Supprimer les informations d’identification"
-#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92
-msgid "Delete Group?"
-msgstr "Supprimer le groupe"
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131
+msgid "Delete Execution Environment"
+msgstr ""
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92
#~ msgid "Delete Group?"
#~ msgstr ""
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91
-msgid "Delete Groups?"
-msgstr "Supprimer les groupes"
+#~ msgid "Delete Groups?"
+#~ msgstr "Supprimer les groupes"
#: screens/Host/HostDetail/HostDetail.jsx:123
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113
@@ -1830,7 +1872,7 @@ msgstr "Supprimer l’application"
msgid "Delete credential type"
msgstr "Supprimer le type d'informations d’identification"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:245
msgid "Delete error"
msgstr "Supprimer l'erreur"
@@ -1839,7 +1881,7 @@ msgstr "Supprimer l'erreur"
msgid "Delete instance group"
msgstr "Supprimer un groupe d'instances"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:287
msgid "Delete inventory source"
msgstr "Supprimer la source de l'inventaire"
@@ -1852,9 +1894,13 @@ msgstr "Supprimer lors de la mise à jour"
msgid "Delete smart inventory"
msgstr "Supprimer l'inventaire smart"
-#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81
-msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update."
-msgstr "Supprimez le dépôt local dans son intégralité avant d'effectuer une mise à jour. En fonction de la taille du dépôt, cela peut augmenter considérablement le temps nécessaire pour effectuer une mise à jour."
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81
+msgid ""
+"Delete the local repository in its entirety prior to\n"
+"performing an update. Depending on the size of the\n"
+"repository this may significantly increase the amount\n"
+"of time required to complete an update."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81
#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update."
@@ -1868,7 +1914,7 @@ msgstr "Supprimer ce lien"
msgid "Delete this node"
msgstr "Supprimer ce nœud"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163
msgid "Delete {pluralizedItemName}?"
msgstr "Supprimer {pluralizedItemName} ?"
@@ -1920,19 +1966,19 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256
#: components/Schedule/ScheduleList/ScheduleList.jsx:197
#: components/Schedule/shared/ScheduleForm.jsx:110
-#: components/TemplateList/TemplateList.jsx:194
+#: components/TemplateList/TemplateList.jsx:193
#: components/TemplateList/TemplateListItem.jsx:230
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68
#: screens/Application/ApplicationsList/ApplicationsList.jsx:126
#: screens/Application/shared/ApplicationForm.jsx:62
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211
-#: screens/Credential/CredentialList/CredentialList.jsx:129
+#: screens/Credential/CredentialList/CredentialList.jsx:128
#: screens/Credential/shared/CredentialForm.jsx:180
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132
#: screens/CredentialType/shared/CredentialTypeForm.jsx:32
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150
#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:133
#: screens/Host/HostDetail/HostDetail.jsx:81
#: screens/Host/HostList/HostList.jsx:152
@@ -1940,7 +1986,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:177
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
#: screens/Inventory/shared/InventoryForm.jsx:55
@@ -1956,7 +2002,8 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
-#: screens/Project/ProjectList/ProjectList.jsx:143
+#: screens/Project/ProjectList/ProjectList.jsx:142
+#: screens/Project/ProjectList/ProjectListItem.jsx:209
#: screens/Project/shared/ProjectForm.jsx:176
#: screens/Team/TeamDetail/TeamDetail.jsx:38
#: screens/Team/TeamList/TeamList.jsx:134
@@ -1965,7 +2012,7 @@ msgstr ""
#: screens/Template/Survey/SurveyQuestionForm.jsx:124
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166
-#: screens/Template/shared/JobTemplateForm.jsx:215
+#: screens/Template/shared/JobTemplateForm.jsx:216
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:121
#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48
#: screens/User/UserTokenList/UserTokenList.jsx:116
@@ -2000,86 +2047,89 @@ msgid "Destination channels or users"
msgstr "Canaux ou utilisateurs de destination"
#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11
-msgid "Detail coming soon :)"
-msgstr "Détail à venir :)"
+#~ msgid "Detail coming soon :)"
+#~ msgstr "Détail à venir :)"
-#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:60
-#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:70
-#: src/components/ErrorDetail/ErrorDetail.jsx:73
-#: src/components/Schedule/Schedule.jsx:67
-#: src/screens/Application/Application/Application.jsx:77
-#: src/screens/Application/Applications.jsx:39
-#: src/screens/Credential/Credential.jsx:58
-#: src/screens/Credential/Credentials.jsx:28
-#: src/screens/CredentialType/CredentialType.jsx:62
-#: src/screens/CredentialType/CredentialTypes.jsx:29
-#: src/screens/Host/Host.jsx:52
-#: src/screens/Host/Hosts.jsx:29
-#: src/screens/InstanceGroup/ContainerGroup.jsx:63
-#: src/screens/InstanceGroup/InstanceGroup.jsx:64
-#: src/screens/InstanceGroup/InstanceGroups.jsx:33
-#: src/screens/InstanceGroup/InstanceGroups.jsx:42
-#: src/screens/Inventory/Inventories.jsx:60
-#: src/screens/Inventory/Inventories.jsx:104
-#: src/screens/Inventory/Inventory.jsx:62
-#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:59
-#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:73
-#: src/screens/Inventory/InventorySource/InventorySource.jsx:88
-#: src/screens/Inventory/SmartInventory.jsx:69
-#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55
-#: src/screens/Job/Job.jsx:63
-#: src/screens/Job/JobOutput/HostEventModal.jsx:113
-#: src/screens/Job/Jobs.jsx:29
-#: src/screens/ManagementJob/ManagementJobs.jsx:29
-#: src/screens/NotificationTemplate/NotificationTemplate.jsx:83
-#: src/screens/NotificationTemplate/NotificationTemplates.jsx:27
-#: src/screens/Organization/Organization.jsx:122
-#: src/screens/Organization/Organizations.jsx:31
-#: src/screens/Project/Project.jsx:105
-#: src/screens/Project/Projects.jsx:29
-#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54
-#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46
-#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46
-#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64
-#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70
-#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111
-#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46
-#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47
-#: src/screens/Setting/Settings.jsx:45
-#: src/screens/Setting/Settings.jsx:48
-#: src/screens/Setting/Settings.jsx:52
-#: src/screens/Setting/Settings.jsx:55
-#: src/screens/Setting/Settings.jsx:58
-#: src/screens/Setting/Settings.jsx:61
-#: src/screens/Setting/Settings.jsx:66
-#: src/screens/Setting/Settings.jsx:69
-#: src/screens/Setting/Settings.jsx:72
-#: src/screens/Setting/Settings.jsx:75
-#: src/screens/Setting/Settings.jsx:84
-#: src/screens/Setting/Settings.jsx:85
-#: src/screens/Setting/Settings.jsx:86
-#: src/screens/Setting/Settings.jsx:87
-#: src/screens/Setting/Settings.jsx:88
-#: src/screens/Setting/Settings.jsx:89
-#: src/screens/Setting/Settings.jsx:98
-#: src/screens/Setting/Settings.jsx:101
-#: src/screens/Setting/Settings.jsx:104
-#: src/screens/Setting/Settings.jsx:107
-#: src/screens/Setting/Settings.jsx:110
-#: src/screens/Setting/Settings.jsx:113
-#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46
-#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:55
-#: src/screens/Team/Team.jsx:55
-#: src/screens/Team/Teams.jsx:29
-#: src/screens/Template/Template.jsx:131
-#: src/screens/Template/Templates.jsx:44
-#: src/screens/Template/WorkflowJobTemplate.jsx:121
-#: src/screens/User/User.jsx:63
-#: src/screens/User/UserToken/UserToken.jsx:54
-#: src/screens/User/Users.jsx:31
-#: src/screens/User/Users.jsx:41
-#: src/screens/WorkflowApproval/WorkflowApproval.jsx:76
-#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:21
+#: components/AdHocCommands/AdHocCommandsWizard.jsx:60
+#: components/AdHocCommands/AdHocCommandsWizard.jsx:70
+#: components/ErrorDetail/ErrorDetail.jsx:73
+#: components/Schedule/Schedule.jsx:68
+#: screens/Application/Application/Application.jsx:77
+#: screens/Application/Applications.jsx:39
+#: screens/Credential/Credential.jsx:58
+#: screens/Credential/Credentials.jsx:28
+#: screens/CredentialType/CredentialType.jsx:62
+#: screens/CredentialType/CredentialTypes.jsx:29
+#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64
+#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:32
+#: screens/Host/Host.jsx:52
+#: screens/Host/Hosts.jsx:29
+#: screens/InstanceGroup/ContainerGroup.jsx:63
+#: screens/InstanceGroup/InstanceGroup.jsx:64
+#: screens/InstanceGroup/InstanceGroups.jsx:35
+#: screens/InstanceGroup/InstanceGroups.jsx:44
+#: screens/Inventory/Inventories.jsx:60
+#: screens/Inventory/Inventories.jsx:102
+#: screens/Inventory/Inventory.jsx:62
+#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59
+#: screens/Inventory/InventoryHost/InventoryHost.jsx:73
+#: screens/Inventory/InventorySource/InventorySource.jsx:88
+#: screens/Inventory/SmartInventory.jsx:69
+#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55
+#: screens/Job/Job.jsx:103
+#: screens/Job/JobOutput/HostEventModal.jsx:113
+#: screens/Job/Jobs.jsx:29
+#: screens/ManagementJob/ManagementJobs.jsx:29
+#: screens/NotificationTemplate/NotificationTemplate.jsx:83
+#: screens/NotificationTemplate/NotificationTemplates.jsx:27
+#: screens/Organization/Organization.jsx:123
+#: screens/Organization/Organizations.jsx:31
+#: screens/Project/Project.jsx:105
+#: screens/Project/Projects.jsx:29
+#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54
+#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46
+#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46
+#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64
+#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70
+#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:117
+#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46
+#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47
+#: screens/Setting/Settings.jsx:45
+#: screens/Setting/Settings.jsx:48
+#: screens/Setting/Settings.jsx:52
+#: screens/Setting/Settings.jsx:55
+#: screens/Setting/Settings.jsx:58
+#: screens/Setting/Settings.jsx:61
+#: screens/Setting/Settings.jsx:66
+#: screens/Setting/Settings.jsx:69
+#: screens/Setting/Settings.jsx:72
+#: screens/Setting/Settings.jsx:75
+#: screens/Setting/Settings.jsx:84
+#: screens/Setting/Settings.jsx:85
+#: screens/Setting/Settings.jsx:86
+#: screens/Setting/Settings.jsx:87
+#: screens/Setting/Settings.jsx:88
+#: screens/Setting/Settings.jsx:89
+#: screens/Setting/Settings.jsx:97
+#: screens/Setting/Settings.jsx:100
+#: screens/Setting/Settings.jsx:103
+#: screens/Setting/Settings.jsx:106
+#: screens/Setting/Settings.jsx:109
+#: screens/Setting/Settings.jsx:112
+#: screens/Setting/Settings.jsx:115
+#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46
+#: screens/Setting/UI/UIDetail/UIDetail.jsx:55
+#: screens/Team/Team.jsx:55
+#: screens/Team/Teams.jsx:29
+#: screens/Template/Template.jsx:144
+#: screens/Template/Templates.jsx:44
+#: screens/Template/WorkflowJobTemplate.jsx:121
+#: screens/User/User.jsx:63
+#: screens/User/UserToken/UserToken.jsx:54
+#: screens/User/Users.jsx:31
+#: screens/User/Users.jsx:41
+#: screens/WorkflowApproval/WorkflowApproval.jsx:76
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:24
msgid "Details"
msgstr "Détails"
@@ -2147,7 +2197,7 @@ msgstr "Dissocier le rôle !"
msgid "Disassociate?"
msgstr "Dissocier ?"
-#: screens/Template/shared/JobTemplateForm.jsx:459
+#: screens/Template/shared/JobTemplateForm.jsx:460
msgid ""
"Divide the work done by this job template\n"
"into the specified number of job slices, each running the\n"
@@ -2155,8 +2205,15 @@ msgid ""
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:429
-msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
-msgstr "Diviser le travail effectué à l'aide de ce modèle de travail en un nombre spécifié de tranches de travail (job), chacune exécutant les mêmes tâches sur une partie de l'inventaire."
+#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
+#~ msgstr "Diviser le travail effectué à l'aide de ce modèle de travail en un nombre spécifié de tranches de travail (job), chacune exécutant les mêmes tâches sur une partie de l'inventaire."
+
+#: components/CodeEditor/VariablesDetail.jsx:121
+#: components/CodeEditor/VariablesDetail.jsx:127
+#: components/CodeEditor/VariablesField.jsx:135
+#: components/CodeEditor/VariablesField.jsx:141
+msgid "Done"
+msgstr ""
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:174
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:179
@@ -2175,7 +2232,7 @@ msgstr "Options d'email"
msgid "Each answer choice must be on a separate line."
msgstr "Chaque choix de réponse doit figurer sur une ligne distincte."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:165
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175
msgid ""
"Each time a job runs using this inventory,\n"
@@ -2185,68 +2242,74 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168
-msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks."
-msgstr "Chaque fois qu’une tâche s’exécute avec cet inventaire, réalisez une mise à jour de la source sélectionnée avant de lancer le job."
+#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks."
+#~ msgstr "Chaque fois qu’une tâche s’exécute avec cet inventaire, réalisez une mise à jour de la source sélectionnée avant de lancer le job."
+
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105
+msgid ""
+"Each time a job runs using this project, update the\n"
+"revision of the project prior to starting the job."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92
-msgid "Each time a job runs using this project, update the revision of the project prior to starting the job."
-msgstr "Chaque fois qu’un job s’exécute avec ce projet, réalisez une mise à jour du projet avant de démarrer le job."
+#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job."
+#~ msgstr "Chaque fois qu’un job s’exécute avec ce projet, réalisez une mise à jour du projet avant de démarrer le job."
-#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396
-#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:400
-#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:117
-#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:119
-#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:251
-#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:75
-#: src/screens/Host/HostDetail/HostDetail.jsx:116
-#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
-#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133
-#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:120
-#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60
-#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:67
-#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:106
-#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270
-#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:158
-#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:355
-#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:357
-#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:125
-#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:143
-#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:147
-#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:158
-#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:87
-#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92
-#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:79
-#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84
-#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:142
-#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147
-#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:79
-#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84
-#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:96
-#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101
-#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:160
-#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165
-#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:14
-#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19
-#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:100
-#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105
-#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:141
-#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146
-#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:79
-#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84
-#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:80
-#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85
-#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79
-#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84
-#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:94
-#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:99
-#: src/screens/Team/TeamDetail/TeamDetail.jsx:57
-#: src/screens/Team/TeamDetail/TeamDetail.jsx:61
-#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371
-#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:373
-#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205
-#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:207
-#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:207
-#: src/screens/User/UserDetail/UserDetail.jsx:92
+#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397
+#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401
+#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118
+#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120
+#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125
+#: screens/Host/HostDetail/HostDetail.jsx:117
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110
+#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126
+#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61
+#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68
+#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133
+#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151
+#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155
+#: screens/Project/ProjectDetail/ProjectDetail.jsx:170
+#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88
+#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92
+#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80
+#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84
+#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143
+#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147
+#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80
+#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84
+#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97
+#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101
+#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161
+#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165
+#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101
+#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105
+#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:148
+#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:152
+#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80
+#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84
+#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81
+#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85
+#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158
+#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79
+#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84
+#: screens/Setting/UI/UIDetail/UIDetail.jsx:94
+#: screens/Setting/UI/UIDetail/UIDetail.jsx:99
+#: screens/Team/TeamDetail/TeamDetail.jsx:58
+#: screens/Team/TeamDetail/TeamDetail.jsx:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208
+#: screens/User/UserDetail/UserDetail.jsx:93
msgid "Edit"
msgstr "Modifier"
@@ -2342,8 +2405,8 @@ msgstr "Modèle de notification de modification"
msgid "Edit Organization"
msgstr "Modifier l'organisation"
-#: screens/Project/ProjectList/ProjectListItem.jsx:161
-#: screens/Project/ProjectList/ProjectListItem.jsx:166
+#: screens/Project/ProjectList/ProjectListItem.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:181
msgid "Edit Project"
msgstr "Modifier le projet"
@@ -2401,8 +2464,8 @@ msgid "Edit details"
msgstr "Modifier les détails"
#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11
-msgid "Edit form coming soon :)"
-msgstr "Modifier Formulaire d'édition à venir :)"
+#~ msgid "Edit form coming soon :)"
+#~ msgstr "Modifier Formulaire d'édition à venir :)"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:81
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85
@@ -2449,7 +2512,7 @@ msgstr "Options d'email"
msgid "Enable Concurrent Jobs"
msgstr "Activer les tâches parallèles"
-#: screens/Template/shared/JobTemplateForm.jsx:587
+#: screens/Template/shared/JobTemplateForm.jsx:588
msgid "Enable Fact Storage"
msgstr "Utiliser le cache des faits"
@@ -2462,8 +2525,8 @@ msgstr "Activer/désactiver la vérification de certificat HTTPS"
msgid "Enable Privilege Escalation"
msgstr "Activer l’élévation des privilèges"
-#: screens/Template/shared/JobTemplateForm.jsx:561
-#: screens/Template/shared/JobTemplateForm.jsx:564
+#: screens/Template/shared/JobTemplateForm.jsx:562
+#: screens/Template/shared/JobTemplateForm.jsx:565
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:249
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:252
msgid "Enable Webhook"
@@ -2494,7 +2557,7 @@ msgstr "Activer l’élévation des privilèges"
msgid "Enable simplified login for your {brandName} applications"
msgstr "Activer la connexion simplifiée pour vos applications Tower"
-#: screens/Template/shared/JobTemplateForm.jsx:567
+#: screens/Template/shared/JobTemplateForm.jsx:568
msgid "Enable webhook for this template."
msgstr "Activez le webhook pour ce modèle de tâche."
@@ -2503,23 +2566,31 @@ msgstr "Activez le webhook pour ce modèle de tâche."
msgid "Enabled"
msgstr "Activé"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267
msgid "Enabled Value"
msgstr "Valeur activée"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254
msgid "Enabled Variable"
msgstr "Variable activée"
-#: src/screens/Template/shared/JobTemplateForm.jsx:517
-msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template."
-msgstr "Active la création d'une URL de rappel d’exécution. Avec cette URL, un hôte peut contacter {brandName} et demander une mise à jour de la configuration à l'aide de ce modèle de job."
+#: screens/Template/shared/JobTemplateForm.jsx:548
+msgid ""
+"Enables creation of a provisioning\n"
+"callback URL. Using the URL a host can contact {BrandName}\n"
+"and request a configuration update using this job\n"
+"template."
+msgstr ""
-#: src/components/AdHocCommands/AdHocDetailsStep.jsx:244
-msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template"
-msgstr "Active la création d’une URL de rappels d’exécution. Avec cette URL, un hôte peut contacter {brandName} et demander une mise à jour de la configuration à l’aide de ce modèle de tâche."
+#: components/AdHocCommands/AdHocDetailsStep.jsx:244
+msgid ""
+"Enables creation of a provisioning\n"
+"callback URL. Using the URL a host can contact {brandName}\n"
+"and request a configuration update using this job\n"
+"template"
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:517
#~ msgid "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."
@@ -2529,6 +2600,10 @@ msgstr "Active la création d’une URL de rappels d’exécution. Avec cette UR
#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template"
#~ msgstr ""
+#: src/screens/Template/shared/JobTemplateForm.jsx:517
+#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template."
+#~ msgstr "Active la création d'une URL de rappel d’exécution. Avec cette URL, un hôte peut contacter {brandName} et demander une mise à jour de la configuration à l'aide de ce modèle de job."
+
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:154
#: screens/Setting/shared/SettingDetail.jsx:75
msgid "Encrypted"
@@ -2578,8 +2653,8 @@ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio
msgstr "Entrez les variables d’inventaire avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe."
#: src/screens/Inventory/shared/SmartInventoryForm.jsx:100
-msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
-msgstr "Entrez les variables d’inventaire avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe."
+#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
+#~ msgstr "Entrez les variables d’inventaire avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux. Consultez la documentation d’Ansible Tower pour avoir un exemple de syntaxe."
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193
msgid "Enter one Annotation Tag per line, without commas."
@@ -2593,24 +2668,48 @@ msgid ""
msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244
-msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required."
-msgstr "Saisir un canal IRC ou un nom d'utilisateur par ligne. Le symbole dièse (#) pour les canaux et (@) pour le utilisateurs, ne sont pas nécessaires."
+#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required."
+#~ msgstr "Saisir un canal IRC ou un nom d'utilisateur par ligne. Le symbole dièse (#) pour les canaux et (@) pour le utilisateurs, ne sont pas nécessaires."
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377
+msgid ""
+"Enter one Slack channel per line. The pound symbol (#)\n"
+"is required for channels."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377
-msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels."
-msgstr "Saisir un canal Slack par ligne. Le symbole dièse (#) est exigé pour les canaux."
+#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels."
+#~ msgstr "Saisir un canal Slack par ligne. Le symbole dièse (#) est exigé pour les canaux."
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92
+msgid ""
+"Enter one email address per line to create a recipient\n"
+"list for this type of notification."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92
-msgid "Enter one email address per line to create a recipient list for this type of notification."
-msgstr "Saisir une adresse email par ligne pour créer une liste des destinataires pour ce type de notification."
+#~ msgid "Enter one email address per line to create a recipient list for this type of notification."
+#~ msgstr "Saisir une adresse email par ligne pour créer une liste des destinataires pour ce type de notification."
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426
+msgid ""
+"Enter one phone number per line to specify where to\n"
+"route SMS messages."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426
-msgid "Enter one phone number per line to specify where to route SMS messages."
-msgstr "Saisir un numéro de téléphone par ligne pour spécifier où envoyer les messages SMS."
+#~ msgid "Enter one phone number per line to specify where to route SMS messages."
+#~ msgstr "Saisir un numéro de téléphone par ligne pour spécifier où envoyer les messages SMS."
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416
+msgid ""
+"Enter the number associated with the \"Messaging\n"
+"Service\" in Twilio in the format +18005550199."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416
-msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199."
-msgstr "Numéro associé au \"Service de messagerie\" de Twilio sous le format +18005550199."
+#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199."
+#~ msgstr "Numéro associé au \"Service de messagerie\" de Twilio sous le format +18005550199."
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60
msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
@@ -2649,17 +2748,20 @@ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to
msgstr "Entrez les variables avec la syntaxe JSON ou YAML. Utilisez le bouton radio pour basculer entre les deux."
#: src/screens/Job/JobDetail/JobDetail.jsx:224
-msgid "Environment"
-msgstr "Environnement"
+#~ msgid "Environment"
+#~ msgstr "Environnement"
-#: src/components/JobList/JobList.jsx:227
-#: src/components/Workflow/WorkflowNodeHelp.jsx:92
-#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95
-#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:198
-#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112
-#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153
-#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:255
-#: src/screens/Setting/shared/LoggingTestAlert.jsx:37
+#: components/JobList/JobList.jsx:206
+#: components/Workflow/WorkflowNodeHelp.jsx:92
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135
+#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263
+#: screens/Job/JobOutput/JobOutput.jsx:668
+#: screens/Setting/shared/LoggingTestAlert.jsx:37
msgid "Error"
msgstr "Erreur"
@@ -2683,12 +2785,12 @@ msgstr ""
#: components/DeleteButton/DeleteButton.jsx:57
#: components/HostToggle/HostToggle.jsx:73
#: components/InstanceToggle/InstanceToggle.jsx:69
-#: components/JobList/JobList.jsx:278
-#: components/JobList/JobList.jsx:289
+#: components/JobList/JobList.jsx:276
+#: components/JobList/JobList.jsx:287
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:205
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2718,9 +2820,9 @@ msgstr ""
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:301
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:235
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:248
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2731,7 +2833,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:208
+#: screens/Organization/OrganizationList/OrganizationList.jsx:210
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:236
@@ -2761,6 +2863,10 @@ msgstr ""
msgid "Error!"
msgstr "Erreur !"
+#: components/CodeEditor/VariablesDetail.jsx:110
+msgid "Error:"
+msgstr ""
+
#: screens/ActivityStream/ActivityStream.jsx:259
#: screens/ActivityStream/ActivityStreamListItem.jsx:46
#: screens/Job/JobOutput/JobOutput.jsx:635
@@ -2825,15 +2931,15 @@ msgstr ""
#: components/Lookup/ExecutionEnvironmentLookup.jsx:124
#: routeConfig.js:143
#: screens/ActivityStream/ActivityStream.jsx:211
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:184
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23
#: screens/Organization/Organization.jsx:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77
#: screens/Organization/Organizations.jsx:38
#: util/getRelatedResourceDeleteDetails.js:88
-#: util/getRelatedResourceDeleteDetails.js:212
+#: util/getRelatedResourceDeleteDetails.js:195
msgid "Execution Environments"
msgstr ""
@@ -2867,8 +2973,8 @@ msgstr "Sortir sans sauvegarder"
msgid "Expand"
msgstr "Développer"
-#: components/CodeEditor/VariablesDetail.jsx:211
-#: components/CodeEditor/VariablesField.jsx:229
+#: components/CodeEditor/VariablesDetail.jsx:214
+#: components/CodeEditor/VariablesField.jsx:237
msgid "Expand input"
msgstr ""
@@ -2921,7 +3027,7 @@ msgstr "Variables supplémentaires"
#: components/Sparkline/Sparkline.jsx:35
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49
-#: screens/Project/ProjectList/ProjectListItem.jsx:69
+#: screens/Project/ProjectList/ProjectListItem.jsx:76
msgid "FINISHED:"
msgstr "TERMINÉ :"
@@ -2950,7 +3056,7 @@ msgstr "Échec du comptage des hôtes"
msgid "Failed Hosts"
msgstr "Échec Hôtes"
-#: components/LaunchButton/ReLaunchDropDown.jsx:58
+#: components/LaunchButton/ReLaunchDropDown.jsx:61
#: screens/Dashboard/Dashboard.jsx:135
msgid "Failed hosts"
msgstr "Échec des hôtes"
@@ -3000,7 +3106,7 @@ msgstr ""
msgid "Failed to copy inventory."
msgstr "N'a pas réussi à copier l'inventaire."
-#: screens/Project/ProjectList/ProjectListItem.jsx:183
+#: screens/Project/ProjectList/ProjectListItem.jsx:198
msgid "Failed to copy project."
msgstr "Le projet n'a pas été copié."
@@ -3026,7 +3132,7 @@ msgstr "Echec de la suppression du groupe {0}."
msgid "Failed to delete host."
msgstr "N'a pas réussi à supprimer l'hôte."
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:305
msgid "Failed to delete inventory source {name}."
msgstr "Impossible de supprimer la source d'inventaire {0}."
@@ -3075,7 +3181,7 @@ msgstr "N'a pas réussi à supprimer un ou plusieurs groupes d'instances."
msgid "Failed to delete one or more inventories."
msgstr "N'a pas réussi à supprimer un ou plusieurs inventaires."
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:251
msgid "Failed to delete one or more inventory sources."
msgstr "N'a pas réussi à supprimer une ou plusieurs sources d'inventaire."
@@ -3233,7 +3339,7 @@ msgstr "Impossible de synchroniser la source de l'inventaire."
msgid "Failed to sync project."
msgstr "Échec de la synchronisation du projet."
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:238
msgid "Failed to sync some or all inventory sources."
msgstr "N'a pas réussi à synchroniser une partie ou la totalité des sources d'inventaire."
@@ -3316,7 +3422,7 @@ msgstr "Téléchargement de fichier rejeté. Veuillez sélectionner un seul fich
msgid "File, directory or script"
msgstr "Fichier, répertoire ou script"
-#: components/JobList/JobList.jsx:223
+#: components/JobList/JobList.jsx:221
#: components/JobList/JobListItem.jsx:87
msgid "Finish Time"
msgstr "Heure de Fin"
@@ -3359,7 +3465,7 @@ msgstr "Adapter le graphique à la taille de l'écran disponible"
msgid "Float"
msgstr "Flottement"
-#: screens/Template/shared/JobTemplateForm.jsx:223
+#: screens/Template/shared/JobTemplateForm.jsx:224
msgid ""
"For job templates, select run to execute\n"
"the playbook. Select check to only check playbook syntax,\n"
@@ -3376,8 +3482,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115
#: src/screens/Template/shared/JobTemplateForm.jsx:216
-msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook."
-msgstr "Pour les modèles de job, sélectionner «run» (exécuter) pour exécuter le playbook. Sélectionner «check» (vérifier) uniquement pour vérifier la syntaxe du playbook, tester la configuration de l’environnement et signaler les problèmes."
+#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook."
+#~ msgstr "Pour les modèles de job, sélectionner «run» (exécuter) pour exécuter le playbook. Sélectionner «check» (vérifier) uniquement pour vérifier la syntaxe du playbook, tester la configuration de l’environnement et signaler les problèmes."
#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:83
msgid "For more information, refer to the"
@@ -3387,7 +3493,7 @@ msgstr "Pour plus d'informations, reportez-vous à"
#: components/AdHocCommands/AdHocDetailsStep.jsx:193
#: components/PromptDetail/PromptJobTemplateDetail.jsx:139
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224
-#: screens/Template/shared/JobTemplateForm.jsx:404
+#: screens/Template/shared/JobTemplateForm.jsx:405
msgid "Forks"
msgstr "Forks"
@@ -3571,7 +3677,7 @@ msgstr "Type de groupe"
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232
#: screens/Inventory/InventoryList/InventoryListItem.jsx:108
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224
-#: util/getRelatedResourceDeleteDetails.js:143
+#: util/getRelatedResourceDeleteDetails.js:126
msgid "Groups"
msgstr "Groupes"
@@ -3613,7 +3719,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:149
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239
-#: screens/Template/shared/JobTemplateForm.jsx:622
+#: screens/Template/shared/JobTemplateForm.jsx:623
msgid "Host Config Key"
msgstr "Clé de configuration de l’hôte"
@@ -3633,7 +3739,7 @@ msgstr ""
msgid "Host Failure"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:237
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281
msgid "Host Filter"
msgstr "Filtre d'hôte"
@@ -3701,7 +3807,7 @@ msgstr "Les informations relatives au statut d'hôte pour ce Job ne sont pas dis
#: screens/Inventory/SmartInventory.jsx:71
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102
-#: util/getRelatedResourceDeleteDetails.js:147
+#: util/getRelatedResourceDeleteDetails.js:130
msgid "Hosts"
msgstr "Hôtes"
@@ -3789,7 +3895,7 @@ msgstr "Port du serveur IRC"
msgid "Icon URL"
msgstr "Icône URL"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:148
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156
msgid ""
"If checked, all variables for child groups\n"
@@ -3799,21 +3905,49 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
-msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
-msgstr "Si cochées, toutes les variables des groupes et hôtes dépendants seront supprimées et remplacées par celles qui se trouvent dans la source externe."
+#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
+#~ msgstr "Si cochées, toutes les variables des groupes et hôtes dépendants seront supprimées et remplacées par celles qui se trouvent dans la source externe."
+
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:125
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135
+msgid ""
+"If checked, any hosts and groups that were\n"
+"previously present on the external source but are now removed\n"
+"will be removed from the Tower inventory. Hosts and groups\n"
+"that were not managed by the inventory source will be promoted\n"
+"to the next manually created group or if there is no manually\n"
+"created group to promote them into, they will be left in the \"all\"\n"
+"default group for the inventory."
+msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
-msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
-msgstr "Si cochés, tous les hôtes et groupes qui étaient présent auparavant sur la source externe, mais qui sont maintenant supprimés, seront supprimés de l'inventaire de Tower. Les hôtes et les groupes qui n'étaient pas gérés par la source de l'inventaire seront promus au prochain groupe créé manuellement ou s'il n'y a pas de groupe créé manuellement dans lequel les promouvoir, ils devront rester dans le groupe \"all\" par défaut de cet inventaire."
+#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
+#~ msgstr "Si cochés, tous les hôtes et groupes qui étaient présent auparavant sur la source externe, mais qui sont maintenant supprimés, seront supprimés de l'inventaire de Tower. Les hôtes et les groupes qui n'étaient pas gérés par la source de l'inventaire seront promus au prochain groupe créé manuellement ou s'il n'y a pas de groupe créé manuellement dans lequel les promouvoir, ils devront rester dans le groupe \"all\" par défaut de cet inventaire."
+
+#: screens/Template/shared/JobTemplateForm.jsx:538
+msgid ""
+"If enabled, run this playbook as an\n"
+"administrator."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:507
-msgid "If enabled, run this playbook as an administrator."
-msgstr "Si activé, exécuter ce playbook en tant qu'administrateur."
+#~ msgid "If enabled, run this playbook as an administrator."
+#~ msgstr "Si activé, exécuter ce playbook en tant qu'administrateur."
-#: src/screens/Template/shared/JobTemplateForm.jsx:448
-msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
-msgstr "Si activé, afficher les changements faits par les tâches Ansible, si supporté. C'est équivalent au mode --diff d’Ansible."
+#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177
+msgid ""
+"If enabled, show the changes made\n"
+"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
+"--diff mode."
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:479
+msgid ""
+"If enabled, show the changes made by\n"
+"Ansible tasks, where supported. This is equivalent\n"
+"to Ansible's --diff mode."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:448
#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
@@ -3823,9 +3957,11 @@ msgstr "Si activé, afficher les changements faits par les tâches Ansible, si s
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "Si activé, afficher les changements faits par les tâches Ansible, si supporté. C'est équivalent au mode --diff d’Ansible."
-#: src/screens/Template/shared/JobTemplateForm.jsx:551
-msgid "If enabled, simultaneous runs of this job template will be allowed."
-msgstr "Si activé, il sera possible d’avoir des exécutions de ce modèle de tâche en simultané."
+#: screens/Template/shared/JobTemplateForm.jsx:582
+msgid ""
+"If enabled, simultaneous runs of this job\n"
+"template will be allowed."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:551
#~ msgid "If enabled, simultaneous runs of this job template will be allowed."
@@ -3835,23 +3971,31 @@ msgstr "Si activé, il sera possible d’avoir des exécutions de ce modèle de
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "Si activé, il sera possible d’avoir des exécutions de ce modèle de job de flux de travail en simultané."
-#: src/screens/Template/shared/JobTemplateForm.jsx:559
-msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
-msgstr "Si cette option est activée, les données recueillies seront stockées afin de pouvoir être consultées au niveau de l'hôte. Les faits sont persistants et injectés dans le cache des faits au moment de l'exécution."
+#: screens/Template/shared/JobTemplateForm.jsx:590
+msgid ""
+"If enabled, this will store gathered facts so they can\n"
+"be viewed at the host level. Facts are persisted and\n"
+"injected into the fact cache at runtime."
+msgstr ""
-#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:52
+#: src/screens/Template/shared/JobTemplateForm.jsx:559
+#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
+#~ msgstr "Si cette option est activée, les données recueillies seront stockées afin de pouvoir être consultées au niveau de l'hôte. Les faits sont persistants et injectés dans le cache des faits au moment de l'exécution."
+
+#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140
+msgid "If you are ready to upgrade or renew, please <0>contact us.0>"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72
+msgid ""
+"If you do not have a subscription, you can visit\n"
+"Red Hat to obtain a trial subscription."
+msgstr ""
+
+#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr "Si vous souhaitez uniquement supprimer l'accès de cet utilisateur particulier, veuillez le supprimer de l'équipe."
-#: src/components/HostToggle/HostToggle.jsx:18
-msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process."
-msgstr "Indique si un hôte est disponible et doit être inclus dans les Jobs en cours. Pour les hôtes qui font partie d'un inventaire externe, cela peut être réinitialisé par le processus de synchronisation de l'inventaire."
-
-#: src/components/AppContainer/PageHeaderToolbar.jsx:104
-#: src/components/AppContainer/PageHeaderToolbar.jsx:114
-msgid "Info"
-msgstr "Info"
-
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211
msgid ""
@@ -3860,9 +4004,9 @@ msgid ""
msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107
@@ -3983,7 +4127,7 @@ msgid "Instance groups"
msgstr "Groupes d'instances"
#: screens/InstanceGroup/InstanceGroup.jsx:69
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76
#: screens/InstanceGroup/InstanceGroups.jsx:37
#: screens/InstanceGroup/Instances/InstanceList.jsx:148
@@ -4019,8 +4163,8 @@ msgstr "Nom d’utilisateur et/ou mot de passe non valide. Veuillez réessayer."
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
-#: util/getRelatedResourceDeleteDetails.js:226
-#: util/getRelatedResourceDeleteDetails.js:294
+#: util/getRelatedResourceDeleteDetails.js:209
+#: util/getRelatedResourceDeleteDetails.js:277
msgid "Inventories"
msgstr "Inventaires"
@@ -4080,14 +4224,14 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr "Sync Source d’inventaire"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:161
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:180
#: util/getRelatedResourceDeleteDetails.js:74
-#: util/getRelatedResourceDeleteDetails.js:171
+#: util/getRelatedResourceDeleteDetails.js:154
msgid "Inventory Sources"
msgstr "Sources d'inventaire"
-#: components/JobList/JobList.jsx:186
+#: components/JobList/JobList.jsx:185
#: components/JobList/JobListItem.jsx:33
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37
#: components/Workflow/WorkflowLegend.jsx:100
@@ -4099,7 +4243,7 @@ msgstr "Sync Inventaires"
msgid "Inventory Update"
msgstr "Mise à jour de l'inventaire"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:226
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102
msgid "Inventory file"
msgstr "Fichier d'inventaire"
@@ -4119,8 +4263,8 @@ msgstr "Erreurs de synchronisation des inventaires"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60
#: screens/Job/JobDetail/JobDetail.jsx:120
-msgid "Isolated"
-msgstr "Isolé"
+#~ msgid "Isolated"
+#~ msgstr "Isolé"
#: screens/Job/JobOutput/JobOutput.jsx:649
msgid "Item Failed"
@@ -4144,7 +4288,7 @@ msgstr "Éléments par page"
#: components/Sparkline/Sparkline.jsx:28
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42
-#: screens/Project/ProjectList/ProjectListItem.jsx:62
+#: screens/Project/ProjectList/ProjectListItem.jsx:69
msgid "JOB ID:"
msgstr "ID JOB :"
@@ -4188,7 +4332,7 @@ msgstr "Découpage de job"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:148
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235
-#: screens/Template/shared/JobTemplateForm.jsx:458
+#: screens/Template/shared/JobTemplateForm.jsx:459
msgid "Job Slicing"
msgstr "Découpage de job"
@@ -4203,12 +4347,12 @@ msgstr "Statut Job"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350
#: screens/Job/JobDetail/JobDetail.jsx:309
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342
-#: screens/Template/shared/JobTemplateForm.jsx:498
+#: screens/Template/shared/JobTemplateForm.jsx:499
msgid "Job Tags"
msgstr "Balises Job"
#: components/JobList/JobListItem.jsx:137
-#: components/TemplateList/TemplateList.jsx:201
+#: components/TemplateList/TemplateList.jsx:200
#: components/Workflow/WorkflowLegend.jsx:92
#: components/Workflow/WorkflowNodeHelp.jsx:47
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96
@@ -4226,7 +4370,7 @@ msgstr ""
#: screens/Project/Projects.jsx:32
#: util/getRelatedResourceDeleteDetails.js:56
#: util/getRelatedResourceDeleteDetails.js:108
-#: util/getRelatedResourceDeleteDetails.js:157
+#: util/getRelatedResourceDeleteDetails.js:140
msgid "Job Templates"
msgstr "Modèles de Jobs"
@@ -4246,7 +4390,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:180
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145
-#: screens/Template/shared/JobTemplateForm.jsx:220
+#: screens/Template/shared/JobTemplateForm.jsx:221
msgid "Job Type"
msgstr "Type de Job"
@@ -4382,7 +4526,7 @@ msgstr "Nom du label"
#: screens/Job/JobDetail/JobDetail.jsx:294
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195
-#: screens/Template/shared/JobTemplateForm.jsx:369
+#: screens/Template/shared/JobTemplateForm.jsx:370
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217
msgid "Labels"
msgstr "Libellés"
@@ -4434,7 +4578,7 @@ msgstr "Dernière modification"
msgid "Last Name"
msgstr "Nom"
-#: components/TemplateList/TemplateList.jsx:225
+#: components/TemplateList/TemplateList.jsx:223
#: components/TemplateList/TemplateListItem.jsx:156
msgid "Last Ran"
msgstr "Dernière exécution"
@@ -4451,12 +4595,17 @@ msgstr "Dernier Job"
msgid "Last job run"
msgstr "Dernière exécution du Job"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58
+#: screens/Project/ProjectList/ProjectListItem.jsx:236
msgid "Last modified"
msgstr "Dernière modification"
+#: screens/Project/ProjectList/ProjectListItem.jsx:241
+msgid "Last used"
+msgstr ""
+
#: components/AdHocCommands/AdHocCommandsWizard.jsx:92
#: components/LaunchPrompt/steps/usePreviewStep.jsx:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55
@@ -4503,28 +4652,26 @@ msgstr "Lancé par"
msgid "Launched By (Username)"
msgstr "Lancé par (Nom d'utilisateur)"
-#: src/components/Workflow/WorkflowLegend.jsx:86
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131
+msgid "Learn more about Insights Analytics"
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:81
+msgid "Leave this field blank to make the execution environment globally available."
+msgstr ""
+
+#: components/Workflow/WorkflowLegend.jsx:86
msgid "Legend"
msgstr "Légende"
-#: src/components/Search/AdvancedSearch.jsx:220
+#: components/Search/AdvancedSearch.jsx:225
msgid "Less than comparison."
msgstr "Moins que la comparaison."
-#: src/components/Search/AdvancedSearch.jsx:225
+#: components/Search/AdvancedSearch.jsx:230
msgid "Less than or equal to comparison."
msgstr "Moins ou égal à la comparaison."
-#: src/screens/Setting/SettingList.jsx:137
-#: src/screens/Setting/Settings.jsx:96
-msgid "License"
-msgstr "Licence"
-
-#: src/screens/Setting/License/License.jsx:15
-#: src/screens/Setting/SettingList.jsx:142
-msgid "License settings"
-msgstr "Paramètres de la licence"
-
#: screens/Setting/SettingList.jsx:137
#: screens/Setting/Settings.jsx:96
#~ msgid "License"
@@ -4545,7 +4692,7 @@ msgstr "Paramètres de la licence"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326
#: screens/Job/JobDetail/JobDetail.jsx:238
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225
-#: screens/Template/shared/JobTemplateForm.jsx:420
+#: screens/Template/shared/JobTemplateForm.jsx:421
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163
msgid "Limit"
msgstr "Limite"
@@ -4606,7 +4753,7 @@ msgid "Lookup typeahead"
msgstr "Recherche par type"
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40
-#: screens/Project/ProjectList/ProjectListItem.jsx:60
+#: screens/Project/ProjectList/ProjectListItem.jsx:67
msgid "MOST RECENT SYNC"
msgstr "DERNIÈRE SYNCHRONISATION"
@@ -4630,7 +4777,7 @@ msgstr ""
msgid "Managed nodes"
msgstr ""
-#: components/JobList/JobList.jsx:189
+#: components/JobList/JobList.jsx:188
#: components/JobList/JobListItem.jsx:36
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40
#: screens/Job/JobDetail/JobDetail.jsx:100
@@ -4665,8 +4812,8 @@ msgstr "Jobs de gestion"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90
#: screens/Project/ProjectDetail/ProjectDetail.jsx:111
-#: screens/Project/ProjectList/ProjectList.jsx:150
-#: screens/Project/ProjectList/ProjectListItem.jsx:134
+#: screens/Project/ProjectList/ProjectList.jsx:149
+#: screens/Project/ProjectList/ProjectListItem.jsx:149
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89
msgid "Manual"
msgstr "Manuel"
@@ -4733,12 +4880,18 @@ msgid ""
msgstr ""
#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34
-msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online."
-msgstr "Nombre minimum statique d'instances qui seront automatiquement assignées à ce groupe lors de la mise en ligne de nouvelles instances."
+#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online."
+#~ msgstr "Nombre minimum statique d'instances qui seront automatiquement assignées à ce groupe lors de la mise en ligne de nouvelles instances."
+
+#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46
+msgid ""
+"Minimum percentage of all instances that will be automatically\n"
+"assigned to this group when new instances come online."
+msgstr ""
#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46
-msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online."
-msgstr "Le pourcentage minimum de toutes les instances qui seront automatiquement assignées à ce groupe lorsque de nouvelles instances seront mises en ligne."
+#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online."
+#~ msgstr "Le pourcentage minimum de toutes les instances qui seront automatiquement assignées à ce groupe lorsque de nouvelles instances seront mises en ligne."
#: components/Schedule/shared/ScheduleForm.jsx:163
msgid "Minute"
@@ -4875,8 +5028,8 @@ msgstr "Options à choix multiples."
#: components/AssociateModal/AssociateModal.jsx:139
#: components/AssociateModal/AssociateModal.jsx:154
#: components/HostForm/HostForm.jsx:87
-#: components/JobList/JobList.jsx:169
-#: components/JobList/JobList.jsx:218
+#: components/JobList/JobList.jsx:168
+#: components/JobList/JobList.jsx:217
#: components/JobList/JobListItem.jsx:69
#: components/LaunchPrompt/steps/CredentialsStep.jsx:174
#: components/LaunchPrompt/steps/CredentialsStep.jsx:189
@@ -4915,8 +5068,8 @@ msgstr "Options à choix multiples."
#: components/Schedule/ScheduleList/ScheduleList.jsx:192
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78
#: components/Schedule/shared/ScheduleForm.jsx:102
-#: components/TemplateList/TemplateList.jsx:189
-#: components/TemplateList/TemplateList.jsx:222
+#: components/TemplateList/TemplateList.jsx:188
+#: components/TemplateList/TemplateList.jsx:221
#: components/TemplateList/TemplateListItem.jsx:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37
@@ -4953,8 +5106,8 @@ msgstr "Options à choix multiples."
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111
@@ -4968,7 +5121,7 @@ msgstr "Options à choix multiples."
#: screens/Host/HostList/HostListItem.jsx:34
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:64
#: screens/InstanceGroup/Instances/InstanceList.jsx:155
#: screens/InstanceGroup/Instances/InstanceList.jsx:162
@@ -4990,7 +5143,7 @@ msgstr "Options à choix multiples."
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:197
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67
@@ -5021,7 +5174,7 @@ msgstr "Options à choix multiples."
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
-#: screens/Project/ProjectList/ProjectListItem.jsx:99
+#: screens/Project/ProjectList/ProjectListItem.jsx:114
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
#: screens/Team/TeamDetail/TeamDetail.jsx:34
@@ -5040,7 +5193,7 @@ msgstr "Options à choix multiples."
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115
-#: screens/Template/shared/JobTemplateForm.jsx:207
+#: screens/Template/shared/JobTemplateForm.jsx:208
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
@@ -5198,36 +5351,54 @@ msgid ""
msgstr ""
#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224
-msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong."
-msgstr "Notez que seuls les hôtes qui sont directement dans ce groupe peuvent être dissociés. Les hôtes qui se trouvent dans les sous-groupes doivent être dissociés directement au niveau du sous-groupe auquel ils appartiennent."
+#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong."
+#~ msgstr "Notez que seuls les hôtes qui sont directement dans ce groupe peuvent être dissociés. Les hôtes qui se trouvent dans les sous-groupes doivent être dissociés directement au niveau du sous-groupe auquel ils appartiennent."
-#: src/screens/Host/HostGroups/HostGroupsList.jsx:212
-msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
-msgstr "Notez que vous pouvez toujours voir le groupe dans la liste après l'avoir dissocié si l'hôte est également membre des dépendants de ce groupe. Cette liste montre tous les groupes auxquels l'hôte est associé directement et indirectement."
+#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214
+msgid ""
+"Note that you may still see the group in the list after\n"
+"disassociating if the host is also a member of that group’s\n"
+"children. This list shows all groups the host is associated\n"
+"with directly and indirectly."
+msgstr ""
+
+#: screens/Host/HostGroups/HostGroupsList.jsx:212
+msgid ""
+"Note that you may still see the group in the list after\n"
+"disassociating if the host is also a member of that group’s \n"
+"children. This list shows all groups the host is associated \n"
+"with directly and indirectly."
+msgstr ""
#: src/screens/Host/HostGroups/HostGroupsList.jsx:212
#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
#~ msgstr ""
#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214
-msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
-msgstr "Notez que vous pouvez toujours voir le groupe dans la liste après l'avoir dissocié si l'hôte est également membre des dépendants de ce groupe. Cette liste montre tous les groupes auxquels l'hôte est associé directement et indirectement."
+#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
+#~ msgstr "Notez que vous pouvez toujours voir le groupe dans la liste après l'avoir dissocié si l'hôte est également membre des dépendants de ce groupe. Cette liste montre tous les groupes auxquels l'hôte est associé directement et indirectement."
#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:66
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr "REMARQUE : ce champ suppose que le nom distant est \"origin\"."
-#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36
-msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information."
-msgstr "Remarque : si vous utilisez le protocole SSH pour GitHub ou Bitbucket, entrez uniquement une clé SSH sans nom d’utilisateur (autre que git). De plus, GitHub et Bitbucket ne prennent pas en charge l’authentification par mot de passe lorsque SSH est utilisé. Le protocole GIT en lecture seule (git://) n’utilise pas les informations de nom d’utilisateur ou de mot de passe."
+#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:40
+msgid ""
+"Note: When using SSH protocol for GitHub or\n"
+"Bitbucket, enter an SSH key only, do not enter a username\n"
+"(other than git). Additionally, GitHub and Bitbucket do\n"
+"not support password authentication when using SSH. GIT\n"
+"read only protocol (git://) does not use username or\n"
+"password information."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36
#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information."
#~ msgstr ""
#: src/screens/Inventory/Inventories.jsx:120
-msgid "Notifcations"
-msgstr "Notifcations"
+#~ msgid "Notifcations"
+#~ msgstr "Notifcations"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270
msgid "Notification Color"
@@ -5243,7 +5414,7 @@ msgstr "Modèle de notification introuvable."
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188
#: screens/NotificationTemplate/NotificationTemplates.jsx:13
#: screens/NotificationTemplate/NotificationTemplates.jsx:21
-#: util/getRelatedResourceDeleteDetails.js:205
+#: util/getRelatedResourceDeleteDetails.js:188
msgid "Notification Templates"
msgstr "Modèles de notification"
@@ -5317,7 +5488,7 @@ msgstr "Octobre"
#: screens/Setting/shared/SharedFields.jsx:97
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:53
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "Off"
msgstr "Désactivé"
@@ -5335,7 +5506,7 @@ msgstr "Désactivé"
#: screens/Setting/shared/SharedFields.jsx:96
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:52
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "On"
msgstr "Le"
@@ -5373,7 +5544,7 @@ msgstr "OpenStack"
msgid "Option Details"
msgstr "Détails de l'option"
-#: screens/Template/shared/JobTemplateForm.jsx:372
+#: screens/Template/shared/JobTemplateForm.jsx:373
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:220
msgid ""
"Optional labels that describe this job template,\n"
@@ -5383,8 +5554,8 @@ msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:342
#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187
-msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs."
-msgstr "Libellés facultatifs décrivant ce modèle de job, par exemple 'dev' ou 'test'. Les libellés peuvent être utilisés pour regrouper et filtrer les modèles de job et les jobs terminés."
+#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs."
+#~ msgstr "Libellés facultatifs décrivant ce modèle de job, par exemple 'dev' ou 'test'. Les libellés peuvent être utilisés pour regrouper et filtrer les modèles de job et les jobs terminés."
#: screens/Template/shared/WebhookSubForm.jsx:219
msgid "Optionally select the credential to use to send status updates back to the webhook service."
@@ -5399,12 +5570,12 @@ msgstr "En option, sélectionnez les informations d'identification à utiliser p
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141
#: screens/Credential/shared/TypeInputsSubForm.jsx:49
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:250
#: screens/Project/ProjectDetail/ProjectDetail.jsx:130
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180
-#: screens/Template/shared/JobTemplateForm.jsx:530
+#: screens/Template/shared/JobTemplateForm.jsx:531
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246
msgid "Options"
msgstr "Options"
@@ -5426,17 +5597,19 @@ msgstr "Options"
#: screens/Application/ApplicationsList/ApplicationsList.jsx:163
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:202
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69
#: screens/Project/ProjectDetail/ProjectDetail.jsx:98
+#: screens/Project/ProjectList/ProjectListItem.jsx:215
+#: screens/Project/ProjectList/ProjectListItem.jsx:226
#: screens/Team/TeamDetail/TeamDetail.jsx:40
#: screens/Team/TeamList/TeamList.jsx:155
#: screens/Team/TeamList/TeamListItem.jsx:45
@@ -5463,15 +5636,15 @@ msgstr "Organisation non trouvée."
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:97
#: screens/ActivityStream/ActivityStream.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:133
-#: screens/Organization/OrganizationList/OrganizationList.jsx:179
+#: screens/Organization/OrganizationList/OrganizationList.jsx:132
+#: screens/Organization/OrganizationList/OrganizationList.jsx:178
#: screens/Organization/Organizations.jsx:16
#: screens/Organization/Organizations.jsx:27
#: screens/User/User.jsx:65
#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55
#: screens/User/Users.jsx:34
-#: util/getRelatedResourceDeleteDetails.js:256
-#: util/getRelatedResourceDeleteDetails.js:290
+#: util/getRelatedResourceDeleteDetails.js:239
+#: util/getRelatedResourceDeleteDetails.js:273
msgid "Organizations"
msgstr "Organisations"
@@ -5489,7 +5662,7 @@ msgid "Output"
msgstr "Sortie"
#: components/PromptDetail/PromptInventorySourceDetail.jsx:48
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:121
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
msgid "Overwrite"
msgstr "Remplacer"
@@ -5498,7 +5671,7 @@ msgstr "Remplacer"
msgid "Overwrite Variables"
msgstr "Remplacer les variables"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:144
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
msgid "Overwrite variables"
msgstr "Remplacer les variables"
@@ -5548,7 +5721,7 @@ msgstr "Pan En haut"
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "Passez des changements supplémentaires en ligne de commande. Il y a deux paramètres de ligne de commande possibles :"
-#: screens/Template/shared/JobTemplateForm.jsx:392
+#: screens/Template/shared/JobTemplateForm.jsx:393
msgid ""
"Pass extra command line variables to the playbook. This is the\n"
"-e or --extra-vars command line parameter for ansible-playbook.\n"
@@ -5617,7 +5790,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:138
#: screens/Job/JobDetail/JobDetail.jsx:237
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223
-#: screens/Template/shared/JobTemplateForm.jsx:330
+#: screens/Template/shared/JobTemplateForm.jsx:331
msgid "Playbook"
msgstr "Playbook"
@@ -5635,7 +5808,7 @@ msgstr ""
msgid "Playbook Directory"
msgstr "Répertoire de playbook"
-#: components/JobList/JobList.jsx:187
+#: components/JobList/JobList.jsx:186
#: components/JobList/JobListItem.jsx:34
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38
#: screens/Job/JobDetail/JobDetail.jsx:98
@@ -5690,7 +5863,7 @@ msgstr "Entrez une valeur."
msgid "Please select a day number between 1 and 31."
msgstr "Veuillez choisir un numéro de jour entre 1 et 31."
-#: screens/Template/shared/JobTemplateForm.jsx:755
+#: screens/Template/shared/JobTemplateForm.jsx:756
msgid "Please select an Inventory or check the Prompt on Launch option."
msgstr "Sélectionnez un inventaire ou cochez l’option Me le demander au lancement."
@@ -5721,9 +5894,13 @@ msgstr "Pourcentage d'instances de stratégie"
msgid "Populate field from an external secret management system"
msgstr "Remplir le champ à partir d'un système de gestion des secrets externes"
-#: src/components/Lookup/HostFilterLookup.jsx:287
-msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples."
-msgstr "Remplissez les hôtes pour cet inventaire en utilisant un filtre de recherche. Exemple : ansible_facts.ansible_distribution : \"RedHat\". Reportez-vous à la documentation Ansible Tower pour plus de syntaxe et d'exemples."
+#: components/Lookup/HostFilterLookup.jsx:288
+msgid ""
+"Populate the hosts for this inventory by using a search\n"
+"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n"
+"Refer to the Ansible Tower documentation for further syntax and\n"
+"examples."
+msgstr ""
#: src/components/Lookup/HostFilterLookup.jsx:287
#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples."
@@ -5752,7 +5929,7 @@ msgstr "Prévisualisation"
msgid "Private key passphrase"
msgstr "Phrase de passe pour la clé privée"
-#: screens/Template/shared/JobTemplateForm.jsx:536
+#: screens/Template/shared/JobTemplateForm.jsx:537
msgid "Privilege Escalation"
msgstr "Élévation des privilèges"
@@ -5768,7 +5945,7 @@ msgstr "Mot de passe pour l’élévation des privilèges"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:123
#: components/PromptDetail/PromptJobTemplateDetail.jsx:131
#: components/TemplateList/TemplateListItem.jsx:271
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:216
#: screens/Job/JobDetail/JobDetail.jsx:212
#: screens/Job/JobDetail/JobDetail.jsx:227
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151
@@ -5809,8 +5986,8 @@ msgstr "Erreurs de synchronisation du projet"
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
-#: util/getRelatedResourceDeleteDetails.js:219
-#: util/getRelatedResourceDeleteDetails.js:249
+#: util/getRelatedResourceDeleteDetails.js:202
+#: util/getRelatedResourceDeleteDetails.js:232
msgid "Projects"
msgstr "Projets"
@@ -5827,7 +6004,7 @@ msgstr "Invite"
msgid "Prompt Overrides"
msgstr "Invite Remplacements"
-#: components/CodeEditor/VariablesField.jsx:222
+#: components/CodeEditor/VariablesField.jsx:230
#: components/FieldWithPrompt/FieldWithPrompt.jsx:47
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167
msgid "Prompt on launch"
@@ -5843,7 +6020,7 @@ msgstr "Valeurs incitatrices"
msgid "Prompts"
msgstr "Invites"
-#: screens/Template/shared/JobTemplateForm.jsx:423
+#: screens/Template/shared/JobTemplateForm.jsx:424
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:166
msgid ""
"Provide a host pattern to further constrain\n"
@@ -5863,8 +6040,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36
#: src/screens/Template/shared/JobTemplateForm.jsx:393
#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147
-msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns."
-msgstr "Entrez un modèle d’hôte pour limiter davantage la liste des hôtes qui seront gérés ou attribués par le playbook. Plusieurs modèles sont autorisés. Voir la documentation Ansible pour plus d'informations et pour obtenir des exemples de modèles."
+#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns."
+#~ msgstr "Entrez un modèle d’hôte pour limiter davantage la liste des hôtes qui seront gérés ou attribués par le playbook. Plusieurs modèles sont autorisés. Voir la documentation Ansible pour plus d'informations et pour obtenir des exemples de modèles."
#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164
msgid "Provide a value for this field or select the Prompt on launch option."
@@ -5877,21 +6054,33 @@ msgid ""
msgstr ""
#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284
-msgid "Provide key/value pairs using either YAML or JSON."
-msgstr "Fournir les paires clé/valeur en utilisant soit YAML soit JSON."
+#~ msgid "Provide key/value pairs using either YAML or JSON."
+#~ msgstr "Fournir les paires clé/valeur en utilisant soit YAML soit JSON."
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:208
+msgid ""
+"Provide your Red Hat or Red Hat Satellite credentials\n"
+"below and you can choose from a list of your available subscriptions.\n"
+"The credentials you use will be stored for future use in\n"
+"retrieving renewal or expanded subscriptions."
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics."
+msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:152
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243
-#: screens/Template/shared/JobTemplateForm.jsx:609
+#: screens/Template/shared/JobTemplateForm.jsx:610
msgid "Provisioning Callback URL"
msgstr "URL de rappel d’exécution "
-#: screens/Template/shared/JobTemplateForm.jsx:604
+#: screens/Template/shared/JobTemplateForm.jsx:605
msgid "Provisioning Callback details"
msgstr "Détails de rappel d’exécution"
-#: screens/Template/shared/JobTemplateForm.jsx:541
-#: screens/Template/shared/JobTemplateForm.jsx:544
+#: screens/Template/shared/JobTemplateForm.jsx:542
+#: screens/Template/shared/JobTemplateForm.jsx:545
msgid "Provisioning Callbacks"
msgstr "Rappels d’exécution "
@@ -5972,9 +6161,19 @@ msgstr "Redirection d'URIs."
msgid "Redirect uris"
msgstr "Redirection d'urs."
-#: src/screens/Template/shared/JobTemplateForm.jsx:383
-msgid "Refer to the Ansible documentation for details about the configuration file."
-msgstr "Reportez-vous à la documentation Ansible pour plus de détails sur le fichier de configuration."
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278
+msgid "Redirecting to dashboard"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282
+msgid "Redirecting to subscription detail"
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:414
+msgid ""
+"Refer to the Ansible documentation for details\n"
+"about the configuration file."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:383
#~ msgid "Refer to the Ansible documentation for details about the configuration file."
@@ -6008,7 +6207,7 @@ msgid "Related Groups"
msgstr "Groupes liés"
#: components/JobList/JobListItem.jsx:118
-#: components/LaunchButton/ReLaunchDropDown.jsx:78
+#: components/LaunchButton/ReLaunchDropDown.jsx:81
#: screens/Job/JobDetail/JobDetail.jsx:384
#: screens/Job/JobDetail/JobDetail.jsx:392
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:162
@@ -6020,16 +6219,16 @@ msgstr "Relancer"
msgid "Relaunch Job"
msgstr "Relancer le Job"
-#: components/LaunchButton/ReLaunchDropDown.jsx:39
+#: components/LaunchButton/ReLaunchDropDown.jsx:41
msgid "Relaunch all hosts"
msgstr "Relancer tous les hôtes"
-#: components/LaunchButton/ReLaunchDropDown.jsx:51
+#: components/LaunchButton/ReLaunchDropDown.jsx:54
msgid "Relaunch failed hosts"
msgstr "Relancer les hôtes défaillants"
-#: components/LaunchButton/ReLaunchDropDown.jsx:29
-#: components/LaunchButton/ReLaunchDropDown.jsx:34
+#: components/LaunchButton/ReLaunchDropDown.jsx:30
+#: components/LaunchButton/ReLaunchDropDown.jsx:35
msgid "Relaunch on"
msgstr "Relancer sur"
@@ -6132,9 +6331,11 @@ msgstr "Ressources manquantes dans ce modèle."
msgid "Restore initial value."
msgstr "Rétablir la valeur initiale."
-#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212
-msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'"
-msgstr "Récupérez l'état activé à partir des variables dict donnée de l'hôte. La variable activée peut être spécifiée en utilisant la notation par points, par exemple : \"foo.bar\""
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255
+msgid ""
+"Retrieve the enabled state from the given dict of host variables.\n"
+"The enabled variable may be specified using dot notation, e.g: 'foo.bar'"
+msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212
#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'"
@@ -6193,8 +6394,8 @@ msgid "Revert to factory default."
msgstr "Revenir à la valeur usine par défaut."
#: screens/Job/JobDetail/JobDetail.jsx:236
-#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:137
+#: screens/Project/ProjectList/ProjectList.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:152
msgid "Revision"
msgstr "Révision"
@@ -6230,7 +6431,7 @@ msgstr "Rôles"
#: screens/Credential/shared/ExternalTestModal.jsx:90
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24
-#: screens/Template/shared/JobTemplateForm.jsx:171
+#: screens/Template/shared/JobTemplateForm.jsx:172
msgid "Run"
msgstr "Exécuter"
@@ -6261,7 +6462,7 @@ msgstr "Continuer"
msgid "Run type"
msgstr "Type d’exécution"
-#: components/JobList/JobList.jsx:204
+#: components/JobList/JobList.jsx:203
#: components/TemplateList/TemplateListItem.jsx:106
#: components/Workflow/WorkflowNodeHelp.jsx:83
msgid "Running"
@@ -6312,7 +6513,7 @@ msgstr "DÉMARRER"
#: components/Sparkline/Sparkline.jsx:31
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45
-#: screens/Project/ProjectList/ProjectListItem.jsx:65
+#: screens/Project/ProjectList/ProjectListItem.jsx:72
msgid "STATUS:"
msgstr "ÉTAT :"
@@ -6495,7 +6696,7 @@ msgstr "Sélectionnez les éléments"
msgid "Select Items from List"
msgstr "Sélectionnez les éléments de la liste"
-#: screens/Template/shared/LabelSelect.jsx:88
+#: screens/Template/shared/LabelSelect.jsx:92
msgid "Select Labels"
msgstr ""
@@ -6519,9 +6720,11 @@ msgstr "Sélectionnez un type de nœud"
msgid "Select a Resource Type"
msgstr "Sélectionnez un type de ressource"
-#: src/screens/Template/shared/JobTemplateForm.jsx:280
-msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch."
-msgstr "Sélectionnez une branche pour le flux de travail du job. Cette branche est appliquée à tous les nœuds de modèle de tâche qui demandent une branche."
+#: screens/Template/shared/JobTemplateForm.jsx:311
+msgid ""
+"Select a branch for the job template. This branch is applied to\n"
+"all job template nodes that prompt for a branch."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:280
#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch."
@@ -6560,7 +6763,7 @@ msgstr "Sélectionnez un module"
msgid "Select a playbook"
msgstr "Choisir un playbook"
-#: screens/Template/shared/JobTemplateForm.jsx:296
+#: screens/Template/shared/JobTemplateForm.jsx:297
msgid "Select a project before editing the execution environment."
msgstr ""
@@ -6568,7 +6771,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr "Sélectionnez une ligne à approuver"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr "Sélectionnez une ligne à supprimer"
@@ -6618,8 +6821,8 @@ msgstr "Sélectionnez une date et une heure valables pour ce champ"
#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41
#: screens/Team/shared/TeamForm.jsx:20
#: screens/Template/Survey/SurveyQuestionForm.jsx:28
-#: screens/Template/shared/JobTemplateForm.jsx:83
-#: screens/Template/shared/JobTemplateForm.jsx:147
+#: screens/Template/shared/JobTemplateForm.jsx:84
+#: screens/Template/shared/JobTemplateForm.jsx:148
#: screens/User/shared/UserForm.jsx:49
msgid "Select a value for this field"
msgstr "Sélectionnez une valeur pour ce champ"
@@ -6649,7 +6852,7 @@ msgstr "Sélectionnez un inventaire pour le flux de travail. Cet inventaire est
msgid "Select an organization before editing the default execution environment."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:354
+#: screens/Template/shared/JobTemplateForm.jsx:355
msgid ""
"Select credentials that allow Tower to access the nodes this job will be ran\n"
"against. You can only select one credential of each type. For machine credentials (SSH),\n"
@@ -6659,12 +6862,19 @@ msgid ""
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:324
-msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time."
-msgstr "Sélectionnez les informations d'identification permettant à Tower d'accéder aux nœuds selon qui déterminent l'exécution de cette tâche. Vous pouvez uniquement sélectionner une information d'identification de chaque type. Pour les informations d'identification machine (SSH), cocher la case \"Me demander au lancement\" requiert la sélection des informations d'identification de la machine lors de l'exécution. Si vous sélectionnez des informations d'identification ET que vous cochez la case \"Me demander au lancement\", les informations d'identification sélectionnées deviennent les informations d'identification par défaut qui peuvent être mises à jour au moment de l'exécution."
+#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time."
+#~ msgstr "Sélectionnez les informations d'identification permettant à Tower d'accéder aux nœuds selon qui déterminent l'exécution de cette tâche. Vous pouvez uniquement sélectionner une information d'identification de chaque type. Pour les informations d'identification machine (SSH), cocher la case \"Me demander au lancement\" requiert la sélection des informations d'identification de la machine lors de l'exécution. Si vous sélectionnez des informations d'identification ET que vous cochez la case \"Me demander au lancement\", les informations d'identification sélectionnées deviennent les informations d'identification par défaut qui peuvent être mises à jour au moment de l'exécution."
+
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89
+msgid ""
+"Select from the list of directories found in\n"
+"the Project Base Path. Together the base path and the playbook\n"
+"directory provide the full path used to locate playbooks."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89
-msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks."
-msgstr "Faites une sélection à partir de la liste des répertoires trouvés dans le chemin de base du projet. Le chemin de base et le répertoire de playbook fournissent ensemble le chemin complet servant à localiser les playbooks."
+#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks."
+#~ msgstr "Faites une sélection à partir de la liste des répertoires trouvés dans le chemin de base du projet. Le chemin de base et le répertoire de playbook fournissent ensemble le chemin complet servant à localiser les playbooks."
#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94
msgid "Select items from list"
@@ -6691,7 +6901,7 @@ msgstr "Sélectionner les rôles à pourvoir"
msgid "Select source path"
msgstr "Sélectionner le chemin d'accès de la source"
-#: components/MultiSelect/TagMultiSelect.jsx:55
+#: components/MultiSelect/TagMultiSelect.jsx:60
msgid "Select tags"
msgstr ""
@@ -6699,7 +6909,7 @@ msgstr ""
msgid "Select the Instance Groups for this Inventory to run on."
msgstr "Sélectionnez les groupes d'instances sur lesquels exécuter cet inventaire."
-#: screens/Template/shared/JobTemplateForm.jsx:493
+#: screens/Template/shared/JobTemplateForm.jsx:494
msgid ""
"Select the Instance Groups for this Organization\n"
"to run on."
@@ -6718,36 +6928,70 @@ msgid "Select the credential you want to use when accessing the remote hosts to
msgstr "Sélectionnez les informations d’identification qu’il vous faut utiliser lors de l’accès à des hôtes distants pour exécuter la commande. Choisissez les informations d’identification contenant le nom d’utilisateur et la clé SSH ou le mot de passe dont Ansible aura besoin pour se connecter aux hôtes distants."
#: src/screens/Inventory/shared/InventorySourceForm.jsx:146
-msgid "Select the custom Python virtual environment for this inventory source sync to run on."
-msgstr "Sélectionnez l'environnement virtuel Python personnalisé sur lequel exécuter cette source d'inventaire."
+#~ msgid "Select the custom Python virtual environment for this inventory source sync to run on."
+#~ msgstr "Sélectionnez l'environnement virtuel Python personnalisé sur lequel exécuter cette source d'inventaire."
+
+#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209
+msgid "Select the default execution environment for this organization to run on."
+msgstr ""
+
+#: screens/Organization/shared/OrganizationForm.jsx:102
+msgid "Select the default execution environment for this organization."
+msgstr ""
+
+#: screens/Project/shared/ProjectForm.jsx:198
+msgid "Select the default execution environment for this project."
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:294
+msgid "Select the execution environment for this job template."
+msgstr ""
+
+#: components/Lookup/InventoryLookup.jsx:89
+#: screens/Template/shared/JobTemplateForm.jsx:256
+msgid ""
+"Select the inventory containing the hosts\n"
+"you want this job to manage."
+msgstr ""
#: src/components/Lookup/InventoryLookup.jsx:89
#: src/screens/Template/shared/JobTemplateForm.jsx:248
-msgid "Select the inventory containing the hosts you want this job to manage."
-msgstr "Sélectionnez l’inventaire contenant les hôtes que vous souhaitez gérer."
+#~ msgid "Select the inventory containing the hosts you want this job to manage."
+#~ msgstr "Sélectionnez l’inventaire contenant les hôtes que vous souhaitez gérer."
+
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105
+msgid ""
+"Select the inventory file\n"
+"to be synced by this source. You can select from\n"
+"the dropdown or enter a file within the input."
+msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105
-msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input."
-msgstr "Sélectionnez le fichier d'inventaire à synchroniser par cette source. Vous pouvez le choisir dans le menu déroulant ou saisir un fichier dans l'entrée."
+#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input."
+#~ msgstr "Sélectionnez le fichier d'inventaire à synchroniser par cette source. Vous pouvez le choisir dans le menu déroulant ou saisir un fichier dans l'entrée."
#: components/HostForm/HostForm.jsx:32
#: components/HostForm/HostForm.jsx:47
msgid "Select the inventory that this host will belong to."
msgstr "Sélectionnez l'inventaire auquel cet hôte appartiendra."
-#: screens/Template/shared/JobTemplateForm.jsx:334
+#: screens/Template/shared/JobTemplateForm.jsx:335
msgid "Select the playbook to be executed by this job."
msgstr "Sélectionnez le playbook qui devra être exécuté par cette tâche."
-#: screens/Template/shared/JobTemplateForm.jsx:272
+#: screens/Template/shared/JobTemplateForm.jsx:273
msgid ""
"Select the project containing the playbook\n"
"you want this job to execute."
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:264
-msgid "Select the project containing the playbook you want this job to execute."
-msgstr "Sélectionnez le projet contenant le playbook que ce job devra exécuter."
+#~ msgid "Select the project containing the playbook you want this job to execute."
+#~ msgstr "Sélectionnez le projet contenant le playbook que ce job devra exécuter."
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:90
+msgid "Select your Ansible Automation Platform subscription to use."
+msgstr ""
#: components/Lookup/Lookup.jsx:129
msgid "Select {0}"
@@ -6771,7 +7015,7 @@ msgstr "Sélectionnez {0}"
#: screens/Inventory/InventoryList/InventoryListItem.jsx:79
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43
-#: screens/Project/ProjectList/ProjectListItem.jsx:97
+#: screens/Project/ProjectList/ProjectListItem.jsx:112
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:259
#: screens/Team/TeamList/TeamListItem.jsx:38
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60
@@ -6875,7 +7119,7 @@ msgstr "Afficher"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:144
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232
-#: screens/Template/shared/JobTemplateForm.jsx:475
+#: screens/Template/shared/JobTemplateForm.jsx:476
msgid "Show Changes"
msgstr "Afficher les modifications"
@@ -6948,11 +7192,11 @@ msgstr "Sélection par simple pression d'une touche"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368
#: screens/Job/JobDetail/JobDetail.jsx:327
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357
-#: screens/Template/shared/JobTemplateForm.jsx:514
+#: screens/Template/shared/JobTemplateForm.jsx:515
msgid "Skip Tags"
msgstr "Balises de saut"
-#: screens/Template/shared/JobTemplateForm.jsx:517
+#: screens/Template/shared/JobTemplateForm.jsx:518
msgid ""
"Skip tags are useful when you have a\n"
"large playbook, and you want to skip specific parts of a\n"
@@ -6971,8 +7215,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74
#: src/screens/Template/shared/JobTemplateForm.jsx:487
-msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
-msgstr "Les balises de saut sont utiles si votre playbook est important et que vous souhaitez ignorer certaines parties d’une scène ou d’une tâche. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises."
+#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
+#~ msgstr "Les balises de saut sont utiles si votre playbook est important et que vous souhaitez ignorer certaines parties d’une scène ou d’une tâche. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises."
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39
msgid "Skipped"
@@ -7025,7 +7269,7 @@ msgid "Sort question order"
msgstr "Trier l'ordre des questions"
#: components/PromptDetail/PromptInventorySourceDetail.jsx:86
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/shared/InventorySourceForm.jsx:135
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86
msgid "Source"
@@ -7039,7 +7283,7 @@ msgstr "Source"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321
#: screens/Project/ProjectDetail/ProjectDetail.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220
-#: screens/Template/shared/JobTemplateForm.jsx:306
+#: screens/Template/shared/JobTemplateForm.jsx:307
msgid "Source Control Branch"
msgstr "Branche Contrôle de la source"
@@ -7073,13 +7317,13 @@ msgstr "Type de Contrôle de la source"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
#: screens/Project/ProjectDetail/ProjectDetail.jsx:114
-#: screens/Project/ProjectList/ProjectList.jsx:158
+#: screens/Project/ProjectList/ProjectList.jsx:157
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97
msgid "Source Control URL"
msgstr "URL Contrôle de la source"
-#: components/JobList/JobList.jsx:185
+#: components/JobList/JobList.jsx:184
#: components/JobList/JobListItem.jsx:32
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39
#: screens/Job/JobDetail/JobDetail.jsx:93
@@ -7111,7 +7355,7 @@ msgstr "Détails de la source"
msgid "Source phone number"
msgstr "Numéro de téléphone de la source"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34
msgid "Source variables"
msgstr "Variables sources"
@@ -7132,12 +7376,18 @@ msgid ""
msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478
-msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax."
-msgstr "Spécifier les En-têtes HTTP en format JSON. Voir la documentation Ansible Tower pour obtenir des exemples de syntaxe."
+#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax."
+#~ msgstr "Spécifier les En-têtes HTTP en format JSON. Voir la documentation Ansible Tower pour obtenir des exemples de syntaxe."
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392
+msgid ""
+"Specify a notification color. Acceptable colors are hex\n"
+"color code (example: #3af or #789abc)."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392
-msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)."
-msgstr "Spécifier une couleur de notification. Les couleurs acceptées sont d'un code de couleur hex (exemple : #3af or #789abc) ."
+#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)."
+#~ msgstr "Spécifier une couleur de notification. Les couleurs acceptées sont d'un code de couleur hex (exemple : #3af or #789abc) ."
#: screens/User/shared/UserTokenForm.jsx:71
msgid "Specify a scope for the token's access"
@@ -7170,7 +7420,7 @@ msgstr "Onglet Standard Out"
msgid "Start"
msgstr "Démarrer"
-#: components/JobList/JobList.jsx:221
+#: components/JobList/JobList.jsx:220
#: components/JobList/JobListItem.jsx:84
msgid "Start Time"
msgstr "Heure Début"
@@ -7198,21 +7448,21 @@ msgid "Start sync source"
msgstr "Démarrer la source de synchronisation"
#: screens/Job/JobDetail/JobDetail.jsx:141
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79
msgid "Started"
msgstr "Démarré"
-#: components/JobList/JobList.jsx:198
-#: components/JobList/JobList.jsx:219
+#: components/JobList/JobList.jsx:197
+#: components/JobList/JobList.jsx:218
#: components/JobList/JobListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:201
+#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryListItem.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:174
-#: screens/Project/ProjectList/ProjectListItem.jsx:119
+#: screens/Project/ProjectList/ProjectListItem.jsx:134
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
@@ -7305,7 +7555,7 @@ msgstr "Corps du message de réussite"
msgid "Successful"
msgstr "Réussi"
-#: screens/Project/ProjectList/ProjectListItem.jsx:148
+#: screens/Project/ProjectList/ProjectListItem.jsx:163
msgid "Successfully copied to clipboard!"
msgstr "Copie réussie dans le presse-papiers !"
@@ -7350,25 +7600,25 @@ msgstr "Questions de l'enquête"
msgid "Sync"
msgstr "Sync"
-#: screens/Project/ProjectList/ProjectListItem.jsx:155
+#: screens/Project/ProjectList/ProjectListItem.jsx:170
#: screens/Project/shared/ProjectSyncButton.jsx:31
msgid "Sync Project"
msgstr "Projet Sync"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:200
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:203
msgid "Sync all"
msgstr "Tout sync"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:194
msgid "Sync all sources"
msgstr "Synchroniser toutes les sources"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:232
msgid "Sync error"
msgstr "Erreur de synchronisation"
-#: screens/Project/ProjectList/ProjectListItem.jsx:141
+#: screens/Project/ProjectList/ProjectListItem.jsx:156
msgid "Sync for revision"
msgstr "Synchronisation pour la révision"
@@ -7413,7 +7663,7 @@ msgstr "Paramètres de la TACACS"
msgid "Tabs"
msgstr "Onglets"
-#: screens/Template/shared/JobTemplateForm.jsx:501
+#: screens/Template/shared/JobTemplateForm.jsx:502
msgid ""
"Tags are useful when you have a large\n"
"playbook, and you want to run a specific part of a\n"
@@ -7432,8 +7682,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62
#: src/screens/Template/shared/JobTemplateForm.jsx:471
-msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
-msgstr "Les balises sont utiles si votre playbook est important et que vous souhaitez faire jouer certaines parties ou exécuter une tâche. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises."
+#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
+#~ msgstr "Les balises sont utiles si votre playbook est important et que vous souhaitez faire jouer certaines parties ou exécuter une tâche. Utiliser des virgules pour séparer plusieurs balises. Consulter la documentation Ansible Tower pour obtenir des détails sur l'utilisation des balises."
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138
msgid "Tags for the Annotation"
@@ -7498,7 +7748,7 @@ msgstr "Équipe non trouvée."
#: screens/User/UserTeams/UserTeamList.jsx:176
#: screens/User/UserTeams/UserTeamList.jsx:244
#: screens/User/Users.jsx:33
-#: util/getRelatedResourceDeleteDetails.js:198
+#: util/getRelatedResourceDeleteDetails.js:181
msgid "Teams"
msgstr "Équipes"
@@ -7518,8 +7768,8 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82
#: screens/Template/Templates.jsx:16
-#: util/getRelatedResourceDeleteDetails.js:242
-#: util/getRelatedResourceDeleteDetails.js:299
+#: util/getRelatedResourceDeleteDetails.js:225
+#: util/getRelatedResourceDeleteDetails.js:282
msgid "Templates"
msgstr "Modèles"
@@ -7583,28 +7833,65 @@ msgid ""
msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122
-msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
-msgstr "Délai (en secondes) avant que la notification par e-mail cesse d'essayer de joindre l'hôte et expire. Compris entre 1 et 120 secondes."
+#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
+#~ msgstr "Délai (en secondes) avant que la notification par e-mail cesse d'essayer de joindre l'hôte et expire. Compris entre 1 et 120 secondes."
+
+#: screens/Template/shared/JobTemplateForm.jsx:470
+msgid ""
+"The amount of time (in seconds) to run\n"
+"before the job is canceled. Defaults to 0 for no job\n"
+"timeout."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:439
-msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
-msgstr "Délai (en secondes) avant l'annulation de la tâche. La valeur par défaut est 0 pour aucun délai d'expiration du job."
+#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
+#~ msgstr "Délai (en secondes) avant l'annulation de la tâche. La valeur par défaut est 0 pour aucun délai d'expiration du job."
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164
+msgid ""
+"The base URL of the Grafana server - the\n"
+"/api/annotations endpoint will be added automatically to the base\n"
+"Grafana URL."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164
-msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL."
-msgstr "URL de base du serveur Grafana - le point de terminaison /api/annotations sera ajouté automatiquement à l'URL Grafana de base."
+#~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL."
+#~ msgstr "URL de base du serveur Grafana - le point de terminaison /api/annotations sera ajouté automatiquement à l'URL Grafana de base."
+
+#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78
+msgid ""
+"The first fetches all references. The second\n"
+"fetches the Github pull request number 62, in this example\n"
+"the branch needs to be \"pull/62/head\"."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74
-msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"."
-msgstr "Le premier extrait toutes les références. Le second extrait la requête Github pull numéro 62, dans cet exemple la branche doit être `pull/62/head`."
+#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"."
+#~ msgstr "Le premier extrait toutes les références. Le second extrait la requête Github pull numéro 62, dans cet exemple la branche doit être `pull/62/head`."
+
+#: screens/Organization/shared/OrganizationForm.jsx:77
+msgid ""
+"The maximum number of hosts allowed to be managed by this organization.\n"
+"Value defaults to 0 which means no limit. Refer to the Ansible\n"
+"documentation for more details."
+msgstr ""
#: src/screens/Organization/shared/OrganizationForm.jsx:69
-msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
-msgstr "Nombre maximal d'hôtes pouvant être gérés par cette organisation. La valeur par défaut est 0, ce qui signifie aucune limite. Reportez-vous à la documentation Ansible pour plus de détails."
+#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
+#~ msgstr "Nombre maximal d'hôtes pouvant être gérés par cette organisation. La valeur par défaut est 0, ce qui signifie aucune limite. Reportez-vous à la documentation Ansible pour plus de détails."
+
+#: screens/Template/shared/JobTemplateForm.jsx:408
+msgid ""
+"The number of parallel or simultaneous\n"
+"processes to use while executing the playbook. An empty value,\n"
+"or a value less than 1 will use the Ansible default which is\n"
+"usually 5. The default number of forks can be overwritten\n"
+"with a change to"
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:377
-msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to"
-msgstr "Le nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. Une valeur vide, ou une valeur inférieure à 1 utilisera la valeur par défaut Ansible qui est généralement 5. Le nombre de fourches par défaut peut être remplacé par un changement vers"
+#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to"
+#~ msgstr "Le nombre de processus parallèles ou simultanés à utiliser lors de l'exécution du playbook. Une valeur vide, ou une valeur inférieure à 1 utilisera la valeur par défaut Ansible qui est généralement 5. Le nombre de fourches par défaut peut être remplacé par un changement vers"
#: components/AdHocCommands/AdHocDetailsStep.jsx:197
msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information"
@@ -7628,9 +7915,12 @@ msgstr ""
msgid "The resource associated with this node has been deleted."
msgstr "La ressource associée à ce nœud a été supprimée."
-#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134
-msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
-msgstr "Le format suggéré pour les noms de variables est en minuscules avec des tirets de séparation (exemple, foo_bar, user_id, host_name, etc.). Les noms de variables contenant des espaces ne sont pas autorisés."
+#: screens/Template/Survey/SurveyQuestionForm.jsx:134
+msgid ""
+"The suggested format for variable names is lowercase and\n"
+"underscore-separated (for example, foo_bar, user_id, host_name,\n"
+"etc.). Variable names with spaces are not allowed."
+msgstr ""
#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134
#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
@@ -7640,9 +7930,15 @@ msgstr "Le format suggéré pour les noms de variables est en minuscules avec de
msgid "The tower instance group cannot be deleted."
msgstr "Le groupe d'instances de Tower ne peut pas être supprimé."
-#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53
-msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above."
-msgstr "Il n'y a pas d'annuaires de playbooks disponibles dans {project_base_dir}. Soit ce répertoire est vide, soit tout le contenu est déjà affecté à d'autres projets. Créez-y un nouveau répertoire et assurez-vous que les fichiers du playbook peuvent être lus par l'utilisateur du système \"awx\", ou bien il faut que {brandName} récupére directement vos playbooks à partir du contrôle des sources en utilisant l'option Type de contrôle des sources ci-dessus."
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53
+msgid ""
+"There are no available playbook directories in {project_base_dir}.\n"
+"Either that directory is empty, or all of the contents are already\n"
+"assigned to other projects. Create a new directory there and make\n"
+"sure the playbook files can be read by the \"awx\" system user,\n"
+"or have {brandName} directly retrieve your playbooks from\n"
+"source control using the Source Control Type option above."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53
#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above."
@@ -7669,8 +7965,8 @@ msgid "There was an error testing the log aggregator."
msgstr "Une erreur s’est produite lors du test de l'agrégateur de journalisation."
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216
-msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
-msgstr "Ces agréments ne peuvent pas être supprimés en raison d'autorisations insuffisantes ou d'un statut de Job en attente"
+#~ msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
+#~ msgstr "Ces agréments ne peuvent pas être supprimés en raison d'autorisations insuffisantes ou d'un statut de Job en attente"
#: components/AdHocCommands/AdHocDetailsStep.jsx:74
msgid "These are the modules that {brandName} supports running commands against."
@@ -7692,7 +7988,7 @@ msgstr "Ces arguments sont utilisés avec le module spécifié. Vous pouvez trou
msgid "Third"
msgstr "Troisième"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr "Cette action supprimera les éléments suivants :"
@@ -7817,7 +8113,7 @@ msgstr ""
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr ""
@@ -7841,7 +8137,7 @@ msgstr ""
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:150
+#: screens/Template/shared/JobTemplateForm.jsx:151
msgid "This project needs to be updated"
msgstr "Ce projet doit être mis à jour"
@@ -7862,9 +8158,11 @@ msgstr "Cette étape contient des erreurs"
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr "Cette valeur ne correspond pas au mot de passe que vous avez entré précédemment. Veuillez confirmer ce mot de passe."
-#: src/screens/Setting/shared/RevertAllAlert.jsx:36
-msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?"
-msgstr "Cette opération rétablit toutes les valeurs de configuration sur leurs valeurs par défaut. Voulez-vous vraiment continuer ?"
+#: screens/Setting/shared/RevertAllAlert.jsx:36
+msgid ""
+"This will revert all configuration values on this page to\n"
+"their factory defaults. Are you sure you want to proceed?"
+msgstr ""
#: src/screens/Setting/shared/RevertAllAlert.jsx:36
#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?"
@@ -7905,12 +8203,21 @@ msgid ""
msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121
-msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed."
-msgstr "Délai en secondes à prévoir pour qu’un projet soit actualisé. Durant l’exécution des tâches et les rappels, le système de tâches évalue l’horodatage de la dernière mise à jour du projet. Si elle est plus ancienne que le délai d’expiration du cache, elle n’est pas considérée comme actualisée, et une nouvelle mise à jour du projet sera effectuée."
+#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed."
+#~ msgstr "Délai en secondes à prévoir pour qu’un projet soit actualisé. Durant l’exécution des tâches et les rappels, le système de tâches évalue l’horodatage de la dernière mise à jour du projet. Si elle est plus ancienne que le délai d’expiration du cache, elle n’est pas considérée comme actualisée, et une nouvelle mise à jour du projet sera effectuée."
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238
+msgid ""
+"Time in seconds to consider an inventory sync\n"
+"to be current. During job runs and callbacks the task system will\n"
+"evaluate the timestamp of the latest sync. If it is older than\n"
+"Cache Timeout, it is not considered current, and a new\n"
+"inventory sync will be performed."
+msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195
-msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed."
-msgstr "Délai en secondes à prévoir pour qu'une synchronisation d'inventaire soit actualisée. Durant l’exécution du Job et les rappels, le système de tâches évalue l’horodatage de la dernière mise à jour du projet. Si elle est plus ancienne que le délai d’expiration du cache, elle n’est pas considérée comme actualisée, et une nouvelle synchronisation de l'inventaire sera effectuée."
+#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed."
+#~ msgstr "Délai en secondes à prévoir pour qu'une synchronisation d'inventaire soit actualisée. Durant l’exécution du Job et les rappels, le système de tâches évalue l’horodatage de la dernière mise à jour du projet. Si elle est plus ancienne que le délai d’expiration du cache, elle n’est pas considérée comme actualisée, et une nouvelle synchronisation de l'inventaire sera effectuée."
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21
msgid "Timed out"
@@ -7921,7 +8228,7 @@ msgstr "Expiré"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169
-#: screens/Template/shared/JobTemplateForm.jsx:468
+#: screens/Template/shared/JobTemplateForm.jsx:469
msgid "Timeout"
msgstr "Délai d'attente"
@@ -8075,7 +8382,7 @@ msgstr "Mardi"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.jsx:220
+#: components/JobList/JobList.jsx:219
#: components/JobList/JobListItem.jsx:82
#: components/Lookup/ProjectLookup.jsx:110
#: components/NotificationList/NotificationList.jsx:220
@@ -8083,8 +8390,8 @@ msgstr "Twilio"
#: components/PromptDetail/PromptDetail.jsx:112
#: components/Schedule/ScheduleList/ScheduleList.jsx:174
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95
-#: components/TemplateList/TemplateList.jsx:198
-#: components/TemplateList/TemplateList.jsx:223
+#: components/TemplateList/TemplateList.jsx:197
+#: components/TemplateList/TemplateList.jsx:222
#: components/TemplateList/TemplateListItem.jsx:155
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
@@ -8095,7 +8402,7 @@ msgstr "Twilio"
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
@@ -8108,7 +8415,7 @@ msgstr "Twilio"
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
-#: screens/Project/ProjectList/ProjectListItem.jsx:132
+#: screens/Project/ProjectList/ProjectListItem.jsx:147
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86
@@ -8173,12 +8480,12 @@ msgstr "Mettre à jour au lancement"
msgid "Update on Project Update"
msgstr "Mettre à jour lorsque le projet est actualisé"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:163
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171
msgid "Update on launch"
msgstr "Mettre à jour au lancement"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:173
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199
msgid "Update on project update"
msgstr "Mettre à jour lorsque le projet est actualisé"
@@ -8210,8 +8517,8 @@ msgstr ""
#: src/screens/Inventory/shared/InventorySourceForm.jsx:57
#: src/screens/Organization/shared/OrganizationForm.jsx:33
#: src/screens/Project/shared/ProjectForm.jsx:286
-msgid "Use Default Ansible Environment"
-msgstr "Utiliser l’environnement Ansible par défaut"
+#~ msgid "Use Default Ansible Environment"
+#~ msgstr "Utiliser l’environnement Ansible par défaut"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:67
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139
@@ -8228,6 +8535,13 @@ msgstr "Utiliser SSL"
msgid "Use TLS"
msgstr "Utiliser TLS"
+#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75
+msgid ""
+"Use custom messages to change the content of\n"
+"notifications sent when a job starts, succeeds, or fails. Use\n"
+"curly braces to access information about the job:"
+msgstr ""
+
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72
#~ msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:"
#~ msgstr ""
@@ -8350,7 +8664,7 @@ msgstr "VMware vCenter"
#: screens/Job/JobDetail/JobDetail.jsx:356
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211
-#: screens/Template/shared/JobTemplateForm.jsx:389
+#: screens/Template/shared/JobTemplateForm.jsx:390
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:239
msgid "Variables"
msgstr "Variables"
@@ -8377,11 +8691,11 @@ msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:102
#: components/PromptDetail/PromptJobTemplateDetail.jsx:141
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:239
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227
-#: screens/Template/shared/JobTemplateForm.jsx:441
+#: screens/Template/shared/JobTemplateForm.jsx:442
msgid "Verbosity"
msgstr "Verbosité"
@@ -8608,8 +8922,12 @@ msgid "View all tokens."
msgstr "Voir tous les jetons."
#: src/screens/Setting/SettingList.jsx:138
-msgid "View and edit your license information"
-msgstr "Affichez et modifiez vos informations de licence."
+#~ msgid "View and edit your license information"
+#~ msgstr "Affichez et modifiez vos informations de licence."
+
+#: screens/Setting/SettingList.jsx:138
+msgid "View and edit your subscription information"
+msgstr ""
#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25
#: screens/ActivityStream/ActivityStreamListItem.jsx:50
@@ -8710,7 +9028,7 @@ msgstr "Service webhook"
msgid "Webhook URL"
msgstr "URL du webhook"
-#: screens/Template/shared/JobTemplateForm.jsx:637
+#: screens/Template/shared/JobTemplateForm.jsx:638
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:281
msgid "Webhook details"
msgstr "Détails de webhook"
@@ -8754,7 +9072,7 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:153
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161
msgid ""
"When not checked, a merge will be performed,\n"
@@ -8764,13 +9082,21 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158
-msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
-msgstr "Si non coché, une fusion aura lieu, combinant les variables locales à celles qui se trouvent dans la source externe."
+#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
+#~ msgstr "Si non coché, une fusion aura lieu, combinant les variables locales à celles qui se trouvent dans la source externe."
+
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:134
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144
+msgid ""
+"When not checked, local child\n"
+"hosts and groups not found on the external source will remain\n"
+"untouched by the inventory update process."
+msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141
-msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process."
-msgstr "Si non coché, les hôtes et groupes locaux dépendants non trouvés dans la source externe ne seront pas touchés par le processus de mise à jour de l'inventaire."
+#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process."
+#~ msgstr "Si non coché, les hôtes et groupes locaux dépendants non trouvés dans la source externe ne seront pas touchés par le processus de mise à jour de l'inventaire."
#: components/Workflow/WorkflowLegend.jsx:96
msgid "Workflow"
@@ -8786,14 +9112,14 @@ msgstr "Approbation du flux de travail non trouvée."
#: routeConfig.js:55
#: screens/ActivityStream/ActivityStream.jsx:154
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209
#: screens/WorkflowApproval/WorkflowApprovals.jsx:12
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:19
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:22
msgid "Workflow Approvals"
msgstr "Approbations des flux de travail"
-#: components/JobList/JobList.jsx:190
+#: components/JobList/JobList.jsx:189
#: components/JobList/JobListItem.jsx:37
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41
#: screens/Job/JobDetail/JobDetail.jsx:101
@@ -8811,13 +9137,13 @@ msgstr "Job de flux de travail"
msgid "Workflow Job Template"
msgstr "Modèle de Job de flux de travail"
-#: util/getRelatedResourceDeleteDetails.js:139
-#: util/getRelatedResourceDeleteDetails.js:181
-#: util/getRelatedResourceDeleteDetails.js:284
+#: util/getRelatedResourceDeleteDetails.js:122
+#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:267
msgid "Workflow Job Template Nodes"
msgstr ""
-#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:147
msgid "Workflow Job Templates"
msgstr ""
@@ -8919,7 +9245,7 @@ msgstr "Vous ne pouvez pas sélectionner plusieurs identifiants d’archivage s
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr "Vous n'avez pas la permission de supprimer les groupes suivants : {itemsUnableToDelete}"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "Vous n'avez pas l'autorisation de supprimer : {brandName}: {itemsUnableToDelete}"
@@ -8931,6 +9257,12 @@ msgstr "Vous n'avez pas l'autorisation de supprimer : {brandName}: {itemsUnableT
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "Vous n'avez pas la permission de dissocier les éléments suivants : {itemsUnableToDisassociate}"
+#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90
+msgid ""
+"You may apply a number of possible variables in the\n"
+"message. For more information, refer to the"
+msgstr ""
+
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89
#~ msgid "You may apply a number of possible variables in the message. Refer to the"
#~ msgstr ""
@@ -8951,12 +9283,12 @@ msgstr "Zoom avant"
msgid "Zoom Out"
msgstr "Zoom arrière"
-#: screens/Template/shared/JobTemplateForm.jsx:734
+#: screens/Template/shared/JobTemplateForm.jsx:735
#: screens/Template/shared/WebhookSubForm.jsx:155
msgid "a new webhook key will be generated on save."
msgstr "une nouvelle clé webhook sera générée lors de la sauvegarde."
-#: screens/Template/shared/JobTemplateForm.jsx:731
+#: screens/Template/shared/JobTemplateForm.jsx:732
#: screens/Template/shared/WebhookSubForm.jsx:143
msgid "a new webhook url will be generated on save."
msgstr "une nouvelle url de webhook sera générée lors de la sauvegarde."
@@ -8987,7 +9319,7 @@ msgstr "approuvé"
msgid "brand logo"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:280
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:276
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr "annuler supprimer"
@@ -8996,7 +9328,7 @@ msgstr "annuler supprimer"
msgid "command"
msgstr "commande"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:265
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr "confirmer supprimer"
@@ -9008,10 +9340,10 @@ msgstr "confirmer dissocier"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68
-msgid "controller instance"
-msgstr "instance de contrôleur"
+#~ msgid "controller instance"
+#~ msgstr "instance de contrôleur"
-#: screens/Project/ProjectList/ProjectListItem.jsx:140
+#: screens/Project/ProjectList/ProjectListItem.jsx:155
msgid "copy to clipboard disabled"
msgstr "copie dans le presse-papiers désactivée"
@@ -9037,7 +9369,7 @@ msgstr ""
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:275
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156
#: screens/Project/ProjectDetail/ProjectDetail.jsx:166
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154
@@ -9053,13 +9385,17 @@ msgstr "crypté"
msgid "expiration"
msgstr "expiration"
-#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117
-msgid "group"
-msgstr "groupe"
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:226
+msgid "for more info."
+msgstr ""
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117
-msgid "groups"
-msgstr "groupes"
+#~ msgid "group"
+#~ msgstr "groupe"
+
+#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117
+#~ msgid "groups"
+#~ msgstr "groupes"
#: components/AdHocCommands/AdHocDetailsStep.jsx:182
msgid "here"
@@ -9097,8 +9433,8 @@ msgstr "inventaire"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59
#: screens/Job/JobDetail/JobDetail.jsx:119
-msgid "isolated instance"
-msgstr "cas isolé"
+#~ msgid "isolated instance"
+#~ msgstr "cas isolé"
#: components/Pagination/Pagination.jsx:24
msgid "items"
@@ -9149,8 +9485,8 @@ msgstr "pages"
msgid "per page"
msgstr "par page"
-#: components/LaunchButton/ReLaunchDropDown.jsx:74
-#: components/LaunchButton/ReLaunchDropDown.jsx:96
+#: components/LaunchButton/ReLaunchDropDown.jsx:77
+#: components/LaunchButton/ReLaunchDropDown.jsx:99
msgid "relaunch jobs"
msgstr ""
@@ -9174,7 +9510,7 @@ msgstr "champ d'application"
msgid "sec"
msgstr "sec"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
msgid "seconds"
msgstr "secondes"
@@ -9242,6 +9578,46 @@ msgstr ""
#~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}"
#~ msgstr ""
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215
+msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
+msgstr ""
+
+#: screens/Credential/CredentialList/CredentialList.jsx:178
+msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171
+msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187
+msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:223
+msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:183
+msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
+msgstr ""
+
+#: screens/Inventory/InventoryList/InventoryList.jsx:222
+msgid "{0, plural, one {This invetory is currently being used by some temeplates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Organization/OrganizationList/OrganizationList.jsx:181
+msgid "{0, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Project/ProjectList/ProjectList.jsx:203
+msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: components/TemplateList/TemplateList.jsx:243
+msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
#: components/JobList/JobListCancelButton.jsx:72
msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}"
msgstr ""
@@ -9282,10 +9658,47 @@ msgstr ""
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr} par <0>{username}0>"
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:192
+msgid "{intervalValue, plural, one {day} other {days}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:190
+msgid "{intervalValue, plural, one {hour} other {hours}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:188
+msgid "{intervalValue, plural, one {minute} other {minutes}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:196
+msgid "{intervalValue, plural, one {month} other {months}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:194
+msgid "{intervalValue, plural, one {week} other {weeks}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:198
+msgid "{intervalValue, plural, one {year} other {years}}"
+msgstr ""
+
#: components/PromptDetail/PromptDetail.jsx:43
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} min {seconds} sec"
+#: components/JobList/JobListCancelButton.jsx:106
+msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}"
+msgstr ""
+
+#: components/JobList/JobListCancelButton.jsx:167
+msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}"
+msgstr ""
+
+#: components/JobList/JobListCancelButton.jsx:91
+msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}"
+msgstr ""
+
#: components/PaginatedDataList/PaginatedDataList.jsx:92
#: components/PaginatedTable/PaginatedTable.jsx:77
msgid "{pluralizedItemName} List"
+msgstr ""
diff --git a/awx/ui_next/src/locales/ja/messages.po b/awx/ui_next/src/locales/ja/messages.po
index e3b97771c8..3855338d5e 100644
--- a/awx/ui_next/src/locales/ja/messages.po
+++ b/awx/ui_next/src/locales/ja/messages.po
@@ -1,14 +1,18 @@
+msgid ""
+msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: @lingui/cli\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
-"Language: ja \n"
+"Language: ja\n"
"Language-Team: \n"
"Plural-Forms: \n"
+"POT-Creation-Date: \n"
+"Content-Type: \n"
-#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43
+#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43
msgid "(Limited to first 10)"
msgstr "(最初の 10 件に制限)"
@@ -30,7 +34,7 @@ msgstr "- 同時実行ジョブの有効化"
msgid "- Enable Webhooks"
msgstr "- Webhook の有効化"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228
msgid "/ (project root)"
msgstr "/ (プロジェクト root)"
@@ -41,16 +45,16 @@ msgstr "/ (プロジェクト root)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:42
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106
-#: screens/Template/shared/JobTemplateForm.jsx:180
+#: screens/Template/shared/JobTemplateForm.jsx:181
msgid "0 (Normal)"
msgstr "0 (正常)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:105
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82
msgid "0 (Warning)"
msgstr "0 (警告)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83
msgid "1 (Info)"
msgstr "1 (情報)"
@@ -62,11 +66,11 @@ msgstr "1 (情報)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:43
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107
-#: screens/Template/shared/JobTemplateForm.jsx:181
+#: screens/Template/shared/JobTemplateForm.jsx:182
msgid "1 (Verbose)"
msgstr "1 (詳細)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84
msgid "2 (Debug)"
msgstr "2 (デバッグ)"
@@ -78,7 +82,7 @@ msgstr "2 (デバッグ)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:44
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108
-#: screens/Template/shared/JobTemplateForm.jsx:182
+#: screens/Template/shared/JobTemplateForm.jsx:183
msgid "2 (More Verbose)"
msgstr "2 (より詳細)"
@@ -89,7 +93,7 @@ msgstr "2 (より詳細)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:45
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109
-#: screens/Template/shared/JobTemplateForm.jsx:183
+#: screens/Template/shared/JobTemplateForm.jsx:184
msgid "3 (Debug)"
msgstr "3 (デバッグ)"
@@ -100,7 +104,7 @@ msgstr "3 (デバッグ)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:46
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110
-#: screens/Template/shared/JobTemplateForm.jsx:184
+#: screens/Template/shared/JobTemplateForm.jsx:185
msgid "4 (Connection Debug)"
msgstr "4 (接続デバッグ)"
@@ -116,8 +120,17 @@ msgid ""
msgstr ""
#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57
-msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available."
-msgstr "取得する refspec (Ansible git モジュールに渡します)。このパラメーターを使用すると、(パラメーターなしでは利用できない) ブランチのフィールド経由で参照にアクセスできるようになります。"
+#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available."
+#~ msgstr "取得する refspec (Ansible git モジュールに渡します)。このパラメーターを使用すると、(パラメーターなしでは利用できない) ブランチのフィールド経由で参照にアクセスできるようになります。"
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:138
+msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com0>. For more information, see the <1>User Guide1>."
+msgstr ""
+
+#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128
+#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281
+msgid "ALL"
+msgstr ""
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223
msgid "API Service/Integration Key"
@@ -172,11 +185,11 @@ msgstr "アカウントトークン"
msgid "Action"
msgstr "アクション"
-#: components/JobList/JobList.jsx:225
+#: components/JobList/JobList.jsx:222
#: components/JobList/JobListItem.jsx:90
#: components/Schedule/ScheduleList/ScheduleList.jsx:176
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112
-#: components/TemplateList/TemplateList.jsx:227
+#: components/TemplateList/TemplateList.jsx:224
#: components/TemplateList/TemplateListItem.jsx:157
#: screens/ActivityStream/ActivityStream.jsx:260
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
@@ -186,13 +199,13 @@ msgstr "アクション"
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
#: screens/Host/HostList/HostList.jsx:170
#: screens/Host/HostList/HostListItem.jsx:48
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:204
+#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryListItem.jsx:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
@@ -201,7 +214,7 @@ msgstr "アクション"
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:152
+#: screens/Project/ProjectList/ProjectListItem.jsx:167
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
#: screens/User/UserList/UserList.jsx:172
@@ -333,8 +346,8 @@ msgid "Add workflow template"
msgstr "ワークフローテンプレートの追加"
#: src/screens/ActivityStream/ActivityStream.jsx:187
-msgid "Adminisration"
-msgstr "管理"
+#~ msgid "Adminisration"
+#~ msgstr "管理"
#: routeConfig.js:114
#: screens/ActivityStream/ActivityStream.jsx:188
@@ -354,7 +367,7 @@ msgstr ""
msgid "Advanced search value input"
msgstr "詳細な検索値の入力"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:175
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203
msgid ""
"After every project update where the SCM revision\n"
@@ -365,8 +378,8 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177
-msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format."
-msgstr "SCM リビジョンが変更されるプロジェクトの毎回の更新後に、選択されたソースのインベントリーを更新してからジョブのタスクを実行します。これは、Ansible インベントリーの .ini ファイル形式のような静的コンテンツが対象であることが意図されています。"
+#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format."
+#~ msgstr "SCM リビジョンが変更されるプロジェクトの毎回の更新後に、選択されたソースのインベントリーを更新してからジョブのタスクを実行します。これは、Ansible インベントリーの .ini ファイル形式のような静的コンテンツが対象であることが意図されています。"
#: components/Schedule/shared/FrequencyDetailSubform.jsx:508
msgid "After number of occurrences"
@@ -384,7 +397,7 @@ msgstr ""
msgid "Alert modal"
msgstr "アラートモーダル"
-#: components/LaunchButton/ReLaunchDropDown.jsx:46
+#: components/LaunchButton/ReLaunchDropDown.jsx:48
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:250
msgid "All"
msgstr "すべて"
@@ -404,9 +417,11 @@ msgstr "ブランチの上書き許可"
msgid "Allow Provisioning Callbacks"
msgstr "プロビジョニングコールバックの許可"
-#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102
-msgid "Allow changing the Source Control branch or revision in a job template that uses this project."
-msgstr "このプロジェクトを使用するジョブテンプレートで Source Control ブランチまたはリビジョンを変更できるようにします。"
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:115
+msgid ""
+"Allow changing the Source Control branch or revision in a job\n"
+"template that uses this project."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102
#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project."
@@ -442,8 +457,8 @@ msgstr "インベントリーを選択する必要があります"
#: src/screens/Organization/shared/OrganizationForm.jsx:82
#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128
#: src/screens/Project/shared/ProjectForm.jsx:274
-msgid "Ansible Environment"
-msgstr "Ansible 環境"
+#~ msgid "Ansible Environment"
+#~ msgstr "Ansible 環境"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98
msgid "Ansible Tower"
@@ -455,12 +470,12 @@ msgid "Ansible Tower Documentation."
msgstr "Ansible Tower ドキュメント。"
#: src/components/About/About.jsx:58
-msgid "Ansible Version"
-msgstr "Ansible バージョン"
+#~ msgid "Ansible Version"
+#~ msgstr "Ansible バージョン"
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204
-msgid "Ansible environment"
-msgstr "Ansible 環境"
+#~ msgid "Ansible environment"
+#~ msgstr "Ansible 環境"
#: screens/Template/Survey/SurveyQuestionForm.jsx:33
msgid "Answer type"
@@ -510,7 +525,7 @@ msgstr "アプリケーションが見つかりません。"
#: screens/Application/Applications.jsx:35
#: screens/Application/ApplicationsList/ApplicationsList.jsx:116
#: screens/Application/ApplicationsList/ApplicationsList.jsx:154
-#: util/getRelatedResourceDeleteDetails.js:233
+#: util/getRelatedResourceDeleteDetails.js:216
msgid "Applications"
msgstr "アプリケーション"
@@ -547,8 +562,8 @@ msgid "April"
msgstr "4 月"
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116
-msgid "Are you sure you want to delete the {0} below?"
-msgstr "以下の {0} を削除してもよろしいですか?"
+#~ msgid "Are you sure you want to delete the {0} below?"
+#~ msgstr "以下の {0} を削除してもよろしいですか?"
#: components/DeleteButton/DeleteButton.jsx:128
msgid "Are you sure you want to delete:"
@@ -760,9 +775,13 @@ msgstr "インスタンスグループに戻る"
msgid "Back to management jobs"
msgstr "管理ジョブに戻る"
-#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70
-msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks."
-msgstr "Playbook を見つけるために使用されるベースパスです。このパス内にあるディレクトリーは Playbook ディレクトリーのドロップダウンに一覧表示されます。ベースパスと選択された Playbook ディレクトリーは、Playbook を見つけるために使用される完全なパスを提供します。"
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70
+msgid ""
+"Base path used for locating playbooks. Directories\n"
+"found inside this path will be listed in the playbook directory drop-down.\n"
+"Together the base path and selected playbook directory provide the full\n"
+"path used to locate playbooks."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70
#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks."
@@ -772,9 +791,13 @@ msgstr "Playbook を見つけるために使用されるベースパスです。
msgid "Basic auth password"
msgstr "Basic 認証パスワード"
-#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33
-msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec."
-msgstr "チェックアウトするブランチです。ブランチ以外に、タグ、コミットハッシュ値、任意の参照 (refs) を入力できます。カスタムの refspec も指定しない限り、コミットハッシュ値や参照で利用できないものもあります。"
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33
+msgid ""
+"Branch to checkout. In addition to branches,\n"
+"you can input tags, commit hashes, and arbitrary refs. Some\n"
+"commit hashes and refs may not be available unless you also\n"
+"provide a custom refspec."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33
#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec."
@@ -799,7 +822,7 @@ msgstr ""
msgid "Cache Timeout"
msgstr "キャッシュタイムアウト"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234
msgid "Cache timeout"
msgstr "キャッシュタイムアウト"
@@ -820,7 +843,7 @@ msgstr "キャッシュのタイムアウト (秒)"
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:279
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -922,11 +945,17 @@ msgstr "同期プロセスの取り消し"
msgid "Canceled"
msgstr "取り消されました"
-#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153
-msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type."
-msgstr "ログアグリゲーターホストとログアグリゲータータイプを指定せずにログアグリゲーターを有効にすることはできません。"
+#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153
+msgid ""
+"Cannot enable log aggregator without providing\n"
+"logging aggregator host and logging aggregator type."
+msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
+#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153
+#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type."
+#~ msgstr "ログアグリゲーターホストとログアグリゲータータイプを指定せずにログアグリゲーターを有効にすることはできません。"
+
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77
msgid "Capacity"
msgstr "容量"
@@ -951,9 +980,11 @@ msgstr "regex で大文字小文字の区別なし。"
msgid "Case-insensitive version of startswith."
msgstr "startswith で大文字小文字の区別なし。"
-#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76
-msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location."
-msgstr "この場所を変更するには {brandName} のデプロイ時に PROJECTS_ROOT を変更します。"
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76
+msgid ""
+"Change PROJECTS_ROOT when deploying\n"
+"{brandName} to change this location."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76
#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location."
@@ -973,7 +1004,7 @@ msgid "Channel"
msgstr "チャネル"
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104
-#: screens/Template/shared/JobTemplateForm.jsx:175
+#: screens/Template/shared/JobTemplateForm.jsx:176
msgid "Check"
msgstr "チェック"
@@ -1006,7 +1037,7 @@ msgid "Choose a Webhook Service"
msgstr "Webhook サービスの選択"
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97
-#: screens/Template/shared/JobTemplateForm.jsx:168
+#: screens/Template/shared/JobTemplateForm.jsx:169
msgid "Choose a job type"
msgstr "ジョブタイプの選択"
@@ -1022,9 +1053,12 @@ msgstr "ソースの選択"
msgid "Choose an HTTP method"
msgstr "HTTP メソッドの選択"
-#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37
-msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option."
-msgstr "ユーザーのプロンプトが表示される際に、必要な回答タイプまたは形式を選択します。それぞれのオプションの詳細については、Ansible Tower ドキュメントを参照してください。"
+#: screens/Template/Survey/SurveyQuestionForm.jsx:37
+msgid ""
+"Choose an answer type or format you want as the prompt for the user.\n"
+"Refer to the Ansible Tower Documentation for more additional\n"
+"information about each option."
+msgstr ""
#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37
#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option."
@@ -1124,7 +1158,7 @@ msgstr "クラウド"
msgid "Collapse"
msgstr "折りたたむ"
-#: components/JobList/JobList.jsx:188
+#: components/JobList/JobList.jsx:187
#: components/JobList/JobListItem.jsx:35
#: screens/Job/JobDetail/JobDetail.jsx:99
#: screens/Job/JobOutput/HostEventModal.jsx:137
@@ -1138,16 +1172,20 @@ msgstr "コマンド"
#: src/screens/Template/Template.jsx:151
#: src/screens/Template/Templates.jsx:48
#: src/screens/Template/WorkflowJobTemplate.jsx:145
-msgid "Completed Jobs"
-msgstr "完了したジョブ"
+#~ msgid "Completed Jobs"
+#~ msgstr "完了したジョブ"
#: src/screens/Inventory/Inventories.jsx:59
#: src/screens/Inventory/Inventories.jsx:73
#: src/screens/Inventory/SmartInventory.jsx:73
-msgid "Completed jobs"
-msgstr "完了したジョブ"
+#~ msgid "Completed jobs"
+#~ msgstr "完了したジョブ"
-#: screens/Template/shared/JobTemplateForm.jsx:580
+#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53
+msgid "Compliant"
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:581
msgid "Concurrent Jobs"
msgstr "同時実行ジョブ"
@@ -1218,18 +1256,30 @@ msgid ""
msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92
-msgid "Control the level of output Ansible will produce for inventory source update jobs."
-msgstr "インベントリーソースの更新ジョブ用に Ansible が生成する出力のレベルを制御します。"
+#~ msgid "Control the level of output Ansible will produce for inventory source update jobs."
+#~ msgstr "インベントリーソースの更新ジョブ用に Ansible が生成する出力のレベルを制御します。"
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:152
+msgid ""
+"Control the level of output ansible\n"
+"will produce as the playbook executes."
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:445
+msgid ""
+"Control the level of output ansible will\n"
+"produce as the playbook executes."
+msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152
#: src/screens/Template/shared/JobTemplateForm.jsx:414
-msgid "Control the level of output ansible will produce as the playbook executes."
-msgstr "Playbook の実行時に Ansible が生成する出力のレベルを制御します。"
+#~ msgid "Control the level of output ansible will produce as the playbook executes."
+#~ msgstr "Playbook の実行時に Ansible が生成する出力のレベルを制御します。"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
-msgid "Controller"
-msgstr "コントローラー"
+#~ msgid "Controller"
+#~ msgstr "コントローラー"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208
msgid "Convergence"
@@ -1264,7 +1314,7 @@ msgstr "インベントリーのコピー"
msgid "Copy Notification Template"
msgstr "通知テンプレートのコピー"
-#: screens/Project/ProjectList/ProjectListItem.jsx:175
+#: screens/Project/ProjectList/ProjectListItem.jsx:190
msgid "Copy Project"
msgstr "プロジェクトのコピー"
@@ -1272,15 +1322,19 @@ msgstr "プロジェクトのコピー"
msgid "Copy Template"
msgstr "テンプレートのコピー"
-#: screens/Project/ProjectList/ProjectListItem.jsx:147
+#: screens/Project/ProjectList/ProjectListItem.jsx:162
msgid "Copy full revision to clipboard."
msgstr "完全なリビジョンをクリップボードにコピーします。"
-#: components/About/About.jsx:35
-msgid "Copyright 2019 Red Hat, Inc."
-msgstr "Copyright 2019 Red Hat, Inc."
+#: components/About/About.jsx:28
+msgid "Copyright"
+msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:383
+#: components/About/About.jsx:35
+#~ msgid "Copyright 2019 Red Hat, Inc."
+#~ msgstr "Copyright 2019 Red Hat, Inc."
+
+#: screens/Template/shared/JobTemplateForm.jsx:384
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231
msgid "Create"
msgstr "作成"
@@ -1351,13 +1405,18 @@ msgstr "フィルターを適用して新しいスマートインベントリー
#: src/screens/InstanceGroup/InstanceGroups.jsx:18
#: src/screens/InstanceGroup/InstanceGroups.jsx:30
-msgid "Create container group"
-msgstr "コンテナーグループの作成"
+#~ msgid "Create container group"
+#~ msgstr "コンテナーグループの作成"
#: src/screens/InstanceGroup/InstanceGroups.jsx:17
#: src/screens/InstanceGroup/InstanceGroups.jsx:28
-msgid "Create instance group"
-msgstr "インスタンスグループの作成"
+#~ msgid "Create instance group"
+#~ msgstr "インスタンスグループの作成"
+
+#: screens/InstanceGroup/InstanceGroups.jsx:19
+#: screens/InstanceGroup/InstanceGroups.jsx:32
+msgid "Create new container group"
+msgstr ""
#: screens/CredentialType/CredentialTypes.jsx:24
msgid "Create new credential Type"
@@ -1421,7 +1480,7 @@ msgstr "ユーザートークンの作成"
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:261
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53
#: screens/Job/JobDetail/JobDetail.jsx:343
@@ -1492,7 +1551,7 @@ msgstr "作成者 (ユーザー名)"
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43
@@ -1502,7 +1561,7 @@ msgstr "作成者 (ユーザー名)"
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43
-#: util/getRelatedResourceDeleteDetails.js:191
+#: util/getRelatedResourceDeleteDetails.js:174
msgid "Credential"
msgstr "認証情報"
@@ -1538,8 +1597,16 @@ msgid "Credential passwords"
msgstr "認証情報のパスワード"
#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60
-msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”."
-msgstr "Kubernetes または OpenShift での認証に使用する認証情報。\"Kubernetes/OpenShift API ベアラートークン” のタイプでなければなりません。"
+#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”."
+#~ msgstr "Kubernetes または OpenShift での認証に使用する認証情報。\"Kubernetes/OpenShift API ベアラートークン” のタイプでなければなりません。"
+
+#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58
+msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used."
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:158
+msgid "Credential to authenticate with a protected container registry."
+msgstr ""
#: screens/CredentialType/CredentialType.jsx:75
msgid "Credential type not found."
@@ -1557,12 +1624,12 @@ msgstr "認証情報タイプが見つかりません。"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:71
#: screens/ActivityStream/ActivityStream.jsx:165
-#: screens/Credential/CredentialList/CredentialList.jsx:176
+#: screens/Credential/CredentialList/CredentialList.jsx:175
#: screens/Credential/Credentials.jsx:13
#: screens/Credential/Credentials.jsx:24
#: screens/Job/JobDetail/JobDetail.jsx:281
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293
-#: screens/Template/shared/JobTemplateForm.jsx:351
+#: screens/Template/shared/JobTemplateForm.jsx:352
#: util/getRelatedResourceDeleteDetails.js:98
msgid "Credentials"
msgstr "認証情報"
@@ -1583,7 +1650,7 @@ msgstr "カスタム Pod 仕様"
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93
-#: screens/Project/ProjectList/ProjectListItem.jsx:109
+#: screens/Project/ProjectList/ProjectListItem.jsx:124
msgid "Custom virtual environment {0} must be replaced by an execution environment."
msgstr ""
@@ -1671,11 +1738,11 @@ msgstr "システムレベルの機能および関数の定義"
#: components/DeleteButton/DeleteButton.jsx:91
#: components/DeleteButton/DeleteButton.jsx:95
#: components/DeleteButton/DeleteButton.jsx:115
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:234
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:244
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:248
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:271
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131
@@ -1686,7 +1753,7 @@ msgstr "システムレベルの機能および関数の定義"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:126
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69
@@ -1717,17 +1784,17 @@ msgstr "すべてのグループおよびホストの削除"
msgid "Delete Credential"
msgstr "認証情報の削除"
-#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92
-msgid "Delete Group?"
-msgstr "グループを削除しますか?"
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131
+msgid "Delete Execution Environment"
+msgstr ""
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92
#~ msgid "Delete Group?"
#~ msgstr ""
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91
-msgid "Delete Groups?"
-msgstr "グループを削除しますか?"
+#~ msgid "Delete Groups?"
+#~ msgstr "グループを削除しますか?"
#: screens/Host/HostDetail/HostDetail.jsx:123
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113
@@ -1805,7 +1872,7 @@ msgstr "アプリケーションの削除"
msgid "Delete credential type"
msgstr "認証情報タイプの削除"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:245
msgid "Delete error"
msgstr "エラーの削除"
@@ -1814,7 +1881,7 @@ msgstr "エラーの削除"
msgid "Delete instance group"
msgstr "インスタンスグループの削除"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:287
msgid "Delete inventory source"
msgstr "インベントリーソースの削除"
@@ -1827,9 +1894,13 @@ msgstr "更新時のデプロイ"
msgid "Delete smart inventory"
msgstr "スマートインベントリーの削除"
-#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81
-msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update."
-msgstr "更新の実行前にローカルリポジトリーを完全に削除します。リポジトリーのサイズによっては、更新の完了までにかかる時間が大幅に増大します。"
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81
+msgid ""
+"Delete the local repository in its entirety prior to\n"
+"performing an update. Depending on the size of the\n"
+"repository this may significantly increase the amount\n"
+"of time required to complete an update."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81
#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update."
@@ -1843,7 +1914,7 @@ msgstr "このリンクの削除"
msgid "Delete this node"
msgstr "このノードの削除"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163
msgid "Delete {pluralizedItemName}?"
msgstr "{pluralizedItemName} を削除しますか?"
@@ -1895,19 +1966,19 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256
#: components/Schedule/ScheduleList/ScheduleList.jsx:197
#: components/Schedule/shared/ScheduleForm.jsx:110
-#: components/TemplateList/TemplateList.jsx:194
+#: components/TemplateList/TemplateList.jsx:193
#: components/TemplateList/TemplateListItem.jsx:230
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68
#: screens/Application/ApplicationsList/ApplicationsList.jsx:126
#: screens/Application/shared/ApplicationForm.jsx:62
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211
-#: screens/Credential/CredentialList/CredentialList.jsx:129
+#: screens/Credential/CredentialList/CredentialList.jsx:128
#: screens/Credential/shared/CredentialForm.jsx:180
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132
#: screens/CredentialType/shared/CredentialTypeForm.jsx:32
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150
#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:133
#: screens/Host/HostDetail/HostDetail.jsx:81
#: screens/Host/HostList/HostList.jsx:152
@@ -1915,7 +1986,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:177
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
#: screens/Inventory/shared/InventoryForm.jsx:55
@@ -1931,7 +2002,8 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
-#: screens/Project/ProjectList/ProjectList.jsx:143
+#: screens/Project/ProjectList/ProjectList.jsx:142
+#: screens/Project/ProjectList/ProjectListItem.jsx:209
#: screens/Project/shared/ProjectForm.jsx:176
#: screens/Team/TeamDetail/TeamDetail.jsx:38
#: screens/Team/TeamList/TeamList.jsx:134
@@ -1940,7 +2012,7 @@ msgstr ""
#: screens/Template/Survey/SurveyQuestionForm.jsx:124
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166
-#: screens/Template/shared/JobTemplateForm.jsx:215
+#: screens/Template/shared/JobTemplateForm.jsx:216
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:121
#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48
#: screens/User/UserTokenList/UserTokenList.jsx:116
@@ -1975,86 +2047,89 @@ msgid "Destination channels or users"
msgstr "送信先チャネルまたはユーザー"
#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11
-msgid "Detail coming soon :)"
-msgstr "詳細は後日 :)"
+#~ msgid "Detail coming soon :)"
+#~ msgstr "詳細は後日 :)"
-#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:60
-#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:70
-#: src/components/ErrorDetail/ErrorDetail.jsx:73
-#: src/components/Schedule/Schedule.jsx:67
-#: src/screens/Application/Application/Application.jsx:77
-#: src/screens/Application/Applications.jsx:39
-#: src/screens/Credential/Credential.jsx:58
-#: src/screens/Credential/Credentials.jsx:28
-#: src/screens/CredentialType/CredentialType.jsx:62
-#: src/screens/CredentialType/CredentialTypes.jsx:29
-#: src/screens/Host/Host.jsx:52
-#: src/screens/Host/Hosts.jsx:29
-#: src/screens/InstanceGroup/ContainerGroup.jsx:63
-#: src/screens/InstanceGroup/InstanceGroup.jsx:64
-#: src/screens/InstanceGroup/InstanceGroups.jsx:33
-#: src/screens/InstanceGroup/InstanceGroups.jsx:42
-#: src/screens/Inventory/Inventories.jsx:60
-#: src/screens/Inventory/Inventories.jsx:104
-#: src/screens/Inventory/Inventory.jsx:62
-#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:59
-#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:73
-#: src/screens/Inventory/InventorySource/InventorySource.jsx:88
-#: src/screens/Inventory/SmartInventory.jsx:69
-#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55
-#: src/screens/Job/Job.jsx:63
-#: src/screens/Job/JobOutput/HostEventModal.jsx:113
-#: src/screens/Job/Jobs.jsx:29
-#: src/screens/ManagementJob/ManagementJobs.jsx:29
-#: src/screens/NotificationTemplate/NotificationTemplate.jsx:83
-#: src/screens/NotificationTemplate/NotificationTemplates.jsx:27
-#: src/screens/Organization/Organization.jsx:122
-#: src/screens/Organization/Organizations.jsx:31
-#: src/screens/Project/Project.jsx:105
-#: src/screens/Project/Projects.jsx:29
-#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54
-#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46
-#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46
-#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64
-#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70
-#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111
-#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46
-#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47
-#: src/screens/Setting/Settings.jsx:45
-#: src/screens/Setting/Settings.jsx:48
-#: src/screens/Setting/Settings.jsx:52
-#: src/screens/Setting/Settings.jsx:55
-#: src/screens/Setting/Settings.jsx:58
-#: src/screens/Setting/Settings.jsx:61
-#: src/screens/Setting/Settings.jsx:66
-#: src/screens/Setting/Settings.jsx:69
-#: src/screens/Setting/Settings.jsx:72
-#: src/screens/Setting/Settings.jsx:75
-#: src/screens/Setting/Settings.jsx:84
-#: src/screens/Setting/Settings.jsx:85
-#: src/screens/Setting/Settings.jsx:86
-#: src/screens/Setting/Settings.jsx:87
-#: src/screens/Setting/Settings.jsx:88
-#: src/screens/Setting/Settings.jsx:89
-#: src/screens/Setting/Settings.jsx:98
-#: src/screens/Setting/Settings.jsx:101
-#: src/screens/Setting/Settings.jsx:104
-#: src/screens/Setting/Settings.jsx:107
-#: src/screens/Setting/Settings.jsx:110
-#: src/screens/Setting/Settings.jsx:113
-#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46
-#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:55
-#: src/screens/Team/Team.jsx:55
-#: src/screens/Team/Teams.jsx:29
-#: src/screens/Template/Template.jsx:131
-#: src/screens/Template/Templates.jsx:44
-#: src/screens/Template/WorkflowJobTemplate.jsx:121
-#: src/screens/User/User.jsx:63
-#: src/screens/User/UserToken/UserToken.jsx:54
-#: src/screens/User/Users.jsx:31
-#: src/screens/User/Users.jsx:41
-#: src/screens/WorkflowApproval/WorkflowApproval.jsx:76
-#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:21
+#: components/AdHocCommands/AdHocCommandsWizard.jsx:60
+#: components/AdHocCommands/AdHocCommandsWizard.jsx:70
+#: components/ErrorDetail/ErrorDetail.jsx:73
+#: components/Schedule/Schedule.jsx:68
+#: screens/Application/Application/Application.jsx:77
+#: screens/Application/Applications.jsx:39
+#: screens/Credential/Credential.jsx:58
+#: screens/Credential/Credentials.jsx:28
+#: screens/CredentialType/CredentialType.jsx:62
+#: screens/CredentialType/CredentialTypes.jsx:29
+#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64
+#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:32
+#: screens/Host/Host.jsx:52
+#: screens/Host/Hosts.jsx:29
+#: screens/InstanceGroup/ContainerGroup.jsx:63
+#: screens/InstanceGroup/InstanceGroup.jsx:64
+#: screens/InstanceGroup/InstanceGroups.jsx:35
+#: screens/InstanceGroup/InstanceGroups.jsx:44
+#: screens/Inventory/Inventories.jsx:60
+#: screens/Inventory/Inventories.jsx:102
+#: screens/Inventory/Inventory.jsx:62
+#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59
+#: screens/Inventory/InventoryHost/InventoryHost.jsx:73
+#: screens/Inventory/InventorySource/InventorySource.jsx:88
+#: screens/Inventory/SmartInventory.jsx:69
+#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55
+#: screens/Job/Job.jsx:103
+#: screens/Job/JobOutput/HostEventModal.jsx:113
+#: screens/Job/Jobs.jsx:29
+#: screens/ManagementJob/ManagementJobs.jsx:29
+#: screens/NotificationTemplate/NotificationTemplate.jsx:83
+#: screens/NotificationTemplate/NotificationTemplates.jsx:27
+#: screens/Organization/Organization.jsx:123
+#: screens/Organization/Organizations.jsx:31
+#: screens/Project/Project.jsx:105
+#: screens/Project/Projects.jsx:29
+#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54
+#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46
+#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46
+#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64
+#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70
+#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:117
+#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46
+#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47
+#: screens/Setting/Settings.jsx:45
+#: screens/Setting/Settings.jsx:48
+#: screens/Setting/Settings.jsx:52
+#: screens/Setting/Settings.jsx:55
+#: screens/Setting/Settings.jsx:58
+#: screens/Setting/Settings.jsx:61
+#: screens/Setting/Settings.jsx:66
+#: screens/Setting/Settings.jsx:69
+#: screens/Setting/Settings.jsx:72
+#: screens/Setting/Settings.jsx:75
+#: screens/Setting/Settings.jsx:84
+#: screens/Setting/Settings.jsx:85
+#: screens/Setting/Settings.jsx:86
+#: screens/Setting/Settings.jsx:87
+#: screens/Setting/Settings.jsx:88
+#: screens/Setting/Settings.jsx:89
+#: screens/Setting/Settings.jsx:97
+#: screens/Setting/Settings.jsx:100
+#: screens/Setting/Settings.jsx:103
+#: screens/Setting/Settings.jsx:106
+#: screens/Setting/Settings.jsx:109
+#: screens/Setting/Settings.jsx:112
+#: screens/Setting/Settings.jsx:115
+#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46
+#: screens/Setting/UI/UIDetail/UIDetail.jsx:55
+#: screens/Team/Team.jsx:55
+#: screens/Team/Teams.jsx:29
+#: screens/Template/Template.jsx:144
+#: screens/Template/Templates.jsx:44
+#: screens/Template/WorkflowJobTemplate.jsx:121
+#: screens/User/User.jsx:63
+#: screens/User/UserToken/UserToken.jsx:54
+#: screens/User/Users.jsx:31
+#: screens/User/Users.jsx:41
+#: screens/WorkflowApproval/WorkflowApproval.jsx:76
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:24
msgid "Details"
msgstr "詳細"
@@ -2122,7 +2197,7 @@ msgstr "ロールの関連付けの解除!"
msgid "Disassociate?"
msgstr "関連付けを解除しますか?"
-#: screens/Template/shared/JobTemplateForm.jsx:459
+#: screens/Template/shared/JobTemplateForm.jsx:460
msgid ""
"Divide the work done by this job template\n"
"into the specified number of job slices, each running the\n"
@@ -2130,8 +2205,15 @@ msgid ""
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:429
-msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
-msgstr "このジョブテンプレートで実施される作業を指定した数のジョブスライスに分割し、それぞれインベントリーの部分に対して同じタスクを実行します。"
+#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
+#~ msgstr "このジョブテンプレートで実施される作業を指定した数のジョブスライスに分割し、それぞれインベントリーの部分に対して同じタスクを実行します。"
+
+#: components/CodeEditor/VariablesDetail.jsx:121
+#: components/CodeEditor/VariablesDetail.jsx:127
+#: components/CodeEditor/VariablesField.jsx:135
+#: components/CodeEditor/VariablesField.jsx:141
+msgid "Done"
+msgstr ""
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:174
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:179
@@ -2150,7 +2232,7 @@ msgstr "メールオプション"
msgid "Each answer choice must be on a separate line."
msgstr "各回答の選択肢は別々の行にある必要があります。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:165
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175
msgid ""
"Each time a job runs using this inventory,\n"
@@ -2160,68 +2242,74 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168
-msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks."
-msgstr "このインベントリーでジョブを実行する際は常に、選択されたソースのインベントリーを更新してからジョブのタスクを実行します。"
+#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks."
+#~ msgstr "このインベントリーでジョブを実行する際は常に、選択されたソースのインベントリーを更新してからジョブのタスクを実行します。"
+
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105
+msgid ""
+"Each time a job runs using this project, update the\n"
+"revision of the project prior to starting the job."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92
-msgid "Each time a job runs using this project, update the revision of the project prior to starting the job."
-msgstr "このプロジェクトでジョブを実行する際は常に、ジョブの開始前にプロジェクトのリビジョンを更新します。"
+#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job."
+#~ msgstr "このプロジェクトでジョブを実行する際は常に、ジョブの開始前にプロジェクトのリビジョンを更新します。"
-#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396
-#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:400
-#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:117
-#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:119
-#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:251
-#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:75
-#: src/screens/Host/HostDetail/HostDetail.jsx:116
-#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
-#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133
-#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:120
-#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60
-#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:67
-#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:106
-#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270
-#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:158
-#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:355
-#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:357
-#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:125
-#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:143
-#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:147
-#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:158
-#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:87
-#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92
-#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:79
-#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84
-#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:142
-#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147
-#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:79
-#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84
-#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:96
-#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101
-#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:160
-#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165
-#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:14
-#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19
-#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:100
-#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105
-#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:141
-#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146
-#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:79
-#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84
-#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:80
-#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85
-#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79
-#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84
-#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:94
-#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:99
-#: src/screens/Team/TeamDetail/TeamDetail.jsx:57
-#: src/screens/Team/TeamDetail/TeamDetail.jsx:61
-#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371
-#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:373
-#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205
-#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:207
-#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:207
-#: src/screens/User/UserDetail/UserDetail.jsx:92
+#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397
+#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401
+#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118
+#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120
+#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125
+#: screens/Host/HostDetail/HostDetail.jsx:117
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110
+#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126
+#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61
+#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68
+#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133
+#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151
+#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155
+#: screens/Project/ProjectDetail/ProjectDetail.jsx:170
+#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88
+#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92
+#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80
+#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84
+#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143
+#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147
+#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80
+#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84
+#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97
+#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101
+#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161
+#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165
+#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101
+#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105
+#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:148
+#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:152
+#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80
+#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84
+#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81
+#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85
+#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158
+#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79
+#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84
+#: screens/Setting/UI/UIDetail/UIDetail.jsx:94
+#: screens/Setting/UI/UIDetail/UIDetail.jsx:99
+#: screens/Team/TeamDetail/TeamDetail.jsx:58
+#: screens/Team/TeamDetail/TeamDetail.jsx:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208
+#: screens/User/UserDetail/UserDetail.jsx:93
msgid "Edit"
msgstr "編集"
@@ -2317,8 +2405,8 @@ msgstr "通知テンプレートの編集"
msgid "Edit Organization"
msgstr "組織の編集"
-#: screens/Project/ProjectList/ProjectListItem.jsx:161
-#: screens/Project/ProjectList/ProjectListItem.jsx:166
+#: screens/Project/ProjectList/ProjectListItem.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:181
msgid "Edit Project"
msgstr "プロジェクトの編集"
@@ -2376,8 +2464,8 @@ msgid "Edit details"
msgstr "詳細の編集"
#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11
-msgid "Edit form coming soon :)"
-msgstr "フォームは後日 :)"
+#~ msgid "Edit form coming soon :)"
+#~ msgstr "フォームは後日 :)"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:81
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85
@@ -2424,7 +2512,7 @@ msgstr "メールオプション"
msgid "Enable Concurrent Jobs"
msgstr "同時実行ジョブの有効化"
-#: screens/Template/shared/JobTemplateForm.jsx:587
+#: screens/Template/shared/JobTemplateForm.jsx:588
msgid "Enable Fact Storage"
msgstr "ファクトストレージの有効化"
@@ -2437,8 +2525,8 @@ msgstr "HTTPS 証明書の検証を有効化"
msgid "Enable Privilege Escalation"
msgstr "権限昇格の有効化"
-#: screens/Template/shared/JobTemplateForm.jsx:561
-#: screens/Template/shared/JobTemplateForm.jsx:564
+#: screens/Template/shared/JobTemplateForm.jsx:562
+#: screens/Template/shared/JobTemplateForm.jsx:565
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:249
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:252
msgid "Enable Webhook"
@@ -2469,7 +2557,7 @@ msgstr "権限昇格の有効化"
msgid "Enable simplified login for your {brandName} applications"
msgstr "{brandName} アプリケーションのログインの簡素化の有効化"
-#: screens/Template/shared/JobTemplateForm.jsx:567
+#: screens/Template/shared/JobTemplateForm.jsx:568
msgid "Enable webhook for this template."
msgstr "このテンプレートの Webhook を有効にします。"
@@ -2478,23 +2566,31 @@ msgstr "このテンプレートの Webhook を有効にします。"
msgid "Enabled"
msgstr "有効化"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267
msgid "Enabled Value"
msgstr "有効な値"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254
msgid "Enabled Variable"
msgstr "有効な変数"
-#: src/screens/Template/shared/JobTemplateForm.jsx:517
-msgid "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."
-msgstr "プロビジョニングコールバック URL の作成を有効にします。ホストは、この URL を使用して BRAND_NAME に接続でき、このジョブテンプレートを使用して設定の更新を要求できます。"
+#: screens/Template/shared/JobTemplateForm.jsx:548
+msgid ""
+"Enables creation of a provisioning\n"
+"callback URL. Using the URL a host can contact {BrandName}\n"
+"and request a configuration update using this job\n"
+"template."
+msgstr ""
-#: src/components/AdHocCommands/AdHocDetailsStep.jsx:244
-msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template"
-msgstr "プロビジョニングコールバック URL の作成を有効にします。ホストは、この URL を使用して {brandName} に接続でき、このジョブテンプレートを使用して接続の更新を要求できます。"
+#: components/AdHocCommands/AdHocDetailsStep.jsx:244
+msgid ""
+"Enables creation of a provisioning\n"
+"callback URL. Using the URL a host can contact {brandName}\n"
+"and request a configuration update using this job\n"
+"template"
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:517
#~ msgid "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."
@@ -2553,8 +2649,8 @@ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio
msgstr "JSON または YAML 構文のいずれかを使用してインベントリー変数を入力します。ラジオボタンを使用して構文で切り替えを行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
#: src/screens/Inventory/shared/SmartInventoryForm.jsx:100
-msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
-msgstr "JSON または YAML 構文のいずれかを使用してインベントリー変数を入力します。ラジオボタンを使用して構文間で切り替えを行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
+#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
+#~ msgstr "JSON または YAML 構文のいずれかを使用してインベントリー変数を入力します。ラジオボタンを使用して構文間で切り替えを行います。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193
msgid "Enter one Annotation Tag per line, without commas."
@@ -2568,24 +2664,48 @@ msgid ""
msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244
-msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required."
-msgstr "各行に 1 つの IRC チャンネルまたはユーザー名を入力します。チャンネルのシャープ記号 (#) およびユーザーのアットマーク (@) 記号は不要です。"
+#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required."
+#~ msgstr "各行に 1 つの IRC チャンネルまたはユーザー名を入力します。チャンネルのシャープ記号 (#) およびユーザーのアットマーク (@) 記号は不要です。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377
+msgid ""
+"Enter one Slack channel per line. The pound symbol (#)\n"
+"is required for channels."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377
-msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels."
-msgstr "各行に 1 つの Slack チャンネルを入力します。チャンネルにはシャープ記号 (#) が必要です。"
+#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels."
+#~ msgstr "各行に 1 つの Slack チャンネルを入力します。チャンネルにはシャープ記号 (#) が必要です。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92
+msgid ""
+"Enter one email address per line to create a recipient\n"
+"list for this type of notification."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92
-msgid "Enter one email address per line to create a recipient list for this type of notification."
-msgstr "各行に 1 つのメールアドレスを入力し、この通知タイプの受信者リストを作成します。"
+#~ msgid "Enter one email address per line to create a recipient list for this type of notification."
+#~ msgstr "各行に 1 つのメールアドレスを入力し、この通知タイプの受信者リストを作成します。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426
+msgid ""
+"Enter one phone number per line to specify where to\n"
+"route SMS messages."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426
-msgid "Enter one phone number per line to specify where to route SMS messages."
-msgstr "各行に 1 つの電話番号を入力し、SMS メッセージのルート先を指定します。"
+#~ msgid "Enter one phone number per line to specify where to route SMS messages."
+#~ msgstr "各行に 1 つの電話番号を入力し、SMS メッセージのルート先を指定します。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416
+msgid ""
+"Enter the number associated with the \"Messaging\n"
+"Service\" in Twilio in the format +18005550199."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416
-msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199."
-msgstr "Twilio の \"メッセージングサービス\" に関連付けられた番号を入力します (形式: +18005550199)。"
+#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199."
+#~ msgstr "Twilio の \"メッセージングサービス\" に関連付けられた番号を入力します (形式: +18005550199)。"
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60
msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
@@ -2624,8 +2744,8 @@ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to
msgstr "JSON または YAML 構文のいずれかを使用して変数を入力します。ラジオボタンを使用してこの構文を切り替えます。"
#: src/screens/Job/JobDetail/JobDetail.jsx:224
-msgid "Environment"
-msgstr "環境"
+#~ msgid "Environment"
+#~ msgstr "環境"
#: components/JobList/JobList.jsx:206
#: components/Workflow/WorkflowNodeHelp.jsx:92
@@ -2635,7 +2755,7 @@ msgstr "環境"
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263
#: screens/Job/JobOutput/JobOutput.jsx:668
#: screens/Setting/shared/LoggingTestAlert.jsx:37
msgid "Error"
@@ -2661,12 +2781,12 @@ msgstr ""
#: components/DeleteButton/DeleteButton.jsx:57
#: components/HostToggle/HostToggle.jsx:73
#: components/InstanceToggle/InstanceToggle.jsx:69
-#: components/JobList/JobList.jsx:278
-#: components/JobList/JobList.jsx:289
+#: components/JobList/JobList.jsx:276
+#: components/JobList/JobList.jsx:287
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:205
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2696,9 +2816,9 @@ msgstr ""
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:301
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:235
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:248
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2709,7 +2829,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:208
+#: screens/Organization/OrganizationList/OrganizationList.jsx:210
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:236
@@ -2739,6 +2859,10 @@ msgstr ""
msgid "Error!"
msgstr "エラー!"
+#: components/CodeEditor/VariablesDetail.jsx:110
+msgid "Error:"
+msgstr ""
+
#: screens/ActivityStream/ActivityStream.jsx:259
#: screens/ActivityStream/ActivityStreamListItem.jsx:46
#: screens/Job/JobOutput/JobOutput.jsx:635
@@ -2803,15 +2927,15 @@ msgstr ""
#: components/Lookup/ExecutionEnvironmentLookup.jsx:124
#: routeConfig.js:143
#: screens/ActivityStream/ActivityStream.jsx:211
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:184
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23
#: screens/Organization/Organization.jsx:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77
#: screens/Organization/Organizations.jsx:38
#: util/getRelatedResourceDeleteDetails.js:88
-#: util/getRelatedResourceDeleteDetails.js:212
+#: util/getRelatedResourceDeleteDetails.js:195
msgid "Execution Environments"
msgstr ""
@@ -2845,8 +2969,8 @@ msgstr "保存せずに終了"
msgid "Expand"
msgstr "展開"
-#: components/CodeEditor/VariablesDetail.jsx:211
-#: components/CodeEditor/VariablesField.jsx:229
+#: components/CodeEditor/VariablesDetail.jsx:214
+#: components/CodeEditor/VariablesField.jsx:237
msgid "Expand input"
msgstr ""
@@ -2899,7 +3023,7 @@ msgstr "追加変数"
#: components/Sparkline/Sparkline.jsx:35
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49
-#: screens/Project/ProjectList/ProjectListItem.jsx:69
+#: screens/Project/ProjectList/ProjectListItem.jsx:76
msgid "FINISHED:"
msgstr "終了日時:"
@@ -2928,7 +3052,7 @@ msgstr "失敗したホスト数"
msgid "Failed Hosts"
msgstr "失敗したホスト"
-#: components/LaunchButton/ReLaunchDropDown.jsx:58
+#: components/LaunchButton/ReLaunchDropDown.jsx:61
#: screens/Dashboard/Dashboard.jsx:135
msgid "Failed hosts"
msgstr "失敗したホスト"
@@ -2978,7 +3102,7 @@ msgstr ""
msgid "Failed to copy inventory."
msgstr "インベントリーをコピーできませんでした。"
-#: screens/Project/ProjectList/ProjectListItem.jsx:183
+#: screens/Project/ProjectList/ProjectListItem.jsx:198
msgid "Failed to copy project."
msgstr "プロジェクトをコピーできませんでした。"
@@ -3004,7 +3128,7 @@ msgstr "グループ {0} を削除できませんでした。"
msgid "Failed to delete host."
msgstr "ホストを削除できませんでした。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:305
msgid "Failed to delete inventory source {name}."
msgstr "インベントリーソース {name} を削除できませんでした。"
@@ -3053,7 +3177,7 @@ msgstr "1 つ以上のインスタンスグループを削除できませんで
msgid "Failed to delete one or more inventories."
msgstr "1 つ以上のインベントリーを削除できませんでした。"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:251
msgid "Failed to delete one or more inventory sources."
msgstr "1 つ以上のインベントリーリソースを削除できませんでした。"
@@ -3211,7 +3335,7 @@ msgstr "インベントリーソースを同期できませんでした。"
msgid "Failed to sync project."
msgstr "プロジェクトを同期できませんでした。"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:238
msgid "Failed to sync some or all inventory sources."
msgstr "一部またはすべてのインベントリーソースを同期できませんでした。"
@@ -3294,7 +3418,7 @@ msgstr "ファイルのアップロードが拒否されました。単一の .j
msgid "File, directory or script"
msgstr "ファイル、ディレクトリー、またはスクリプト"
-#: components/JobList/JobList.jsx:223
+#: components/JobList/JobList.jsx:221
#: components/JobList/JobListItem.jsx:87
msgid "Finish Time"
msgstr "終了時間"
@@ -3337,7 +3461,7 @@ msgstr "グラフを利用可能な画面サイズに合わせます"
msgid "Float"
msgstr "浮動"
-#: screens/Template/shared/JobTemplateForm.jsx:223
+#: screens/Template/shared/JobTemplateForm.jsx:224
msgid ""
"For job templates, select run to execute\n"
"the playbook. Select check to only check playbook syntax,\n"
@@ -3354,8 +3478,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115
#: src/screens/Template/shared/JobTemplateForm.jsx:216
-msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook."
-msgstr "ジョブテンプレートについて、Playbook を実行するために実行を選択します。Playbook を実行せずに、Playbook 構文、テスト環境セットアップ、およびレポートの問題のみを検査するチェックを選択します。"
+#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook."
+#~ msgstr "ジョブテンプレートについて、Playbook を実行するために実行を選択します。Playbook を実行せずに、Playbook 構文、テスト環境セットアップ、およびレポートの問題のみを検査するチェックを選択します。"
#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:83
msgid "For more information, refer to the"
@@ -3365,7 +3489,7 @@ msgstr "詳しい情報は以下の情報を参照してください:"
#: components/AdHocCommands/AdHocDetailsStep.jsx:193
#: components/PromptDetail/PromptJobTemplateDetail.jsx:139
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224
-#: screens/Template/shared/JobTemplateForm.jsx:404
+#: screens/Template/shared/JobTemplateForm.jsx:405
msgid "Forks"
msgstr "フォーク"
@@ -3549,7 +3673,7 @@ msgstr "グループタイプ"
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232
#: screens/Inventory/InventoryList/InventoryListItem.jsx:108
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224
-#: util/getRelatedResourceDeleteDetails.js:143
+#: util/getRelatedResourceDeleteDetails.js:126
msgid "Groups"
msgstr "グループ"
@@ -3591,7 +3715,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:149
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239
-#: screens/Template/shared/JobTemplateForm.jsx:622
+#: screens/Template/shared/JobTemplateForm.jsx:623
msgid "Host Config Key"
msgstr "ホスト設定キー"
@@ -3611,7 +3735,7 @@ msgstr ""
msgid "Host Failure"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:237
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281
msgid "Host Filter"
msgstr "ホストフィルター"
@@ -3620,43 +3744,25 @@ msgstr "ホストフィルター"
msgid "Host Name"
msgstr "ホスト名"
-#: src/screens/Inventory/Inventories.jsx:70
-msgid "Host details"
-msgstr "ホストの詳細"
+#: screens/Job/JobOutput/JobOutput.jsx:640
+msgid "Host OK"
+msgstr ""
-#: src/screens/Job/JobOutput/HostEventModal.jsx:102
-msgid "Host details modal"
-msgstr "ホストの詳細モーダル"
+#: screens/Job/JobOutput/JobOutput.jsx:645
+msgid "Host Polling"
+msgstr ""
-#: src/screens/Host/Host.jsx:90
-#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:100
-msgid "Host not found."
-msgstr "ホストが見つかりませんでした。"
+#: screens/Job/JobOutput/JobOutput.jsx:651
+msgid "Host Retry"
+msgstr ""
-#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:77
-msgid "Host status information for this job is unavailable."
-msgstr "このジョブのホストのステータス情報は利用できません。"
+#: screens/Job/JobOutput/JobOutput.jsx:642
+msgid "Host Skipped"
+msgstr ""
-#: src/routeConfig.js:85
-#: src/screens/ActivityStream/ActivityStream.jsx:173
-#: src/screens/Dashboard/Dashboard.jsx:129
-#: src/screens/Host/HostList/HostList.jsx:142
-#: src/screens/Host/HostList/HostList.jsx:188
-#: src/screens/Host/Hosts.jsx:15
-#: src/screens/Host/Hosts.jsx:25
-#: src/screens/Inventory/Inventories.jsx:63
-#: src/screens/Inventory/Inventories.jsx:88
-#: src/screens/Inventory/Inventory.jsx:65
-#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:69
-#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178
-#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247
-#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:112
-#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:160
-#: src/screens/Inventory/SmartInventory.jsx:71
-#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62
-#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:95
-msgid "Hosts"
-msgstr "ホスト"
+#: screens/Job/JobOutput/JobOutput.jsx:639
+msgid "Host Started"
+msgstr ""
#: screens/Job/JobOutput/JobOutput.jsx:643
msgid "Host Unreachable"
@@ -3697,7 +3803,7 @@ msgstr ""
#: screens/Inventory/SmartInventory.jsx:71
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102
-#: util/getRelatedResourceDeleteDetails.js:147
+#: util/getRelatedResourceDeleteDetails.js:130
msgid "Hosts"
msgstr ""
@@ -3785,7 +3891,7 @@ msgstr "IRC サーバーポート"
msgid "Icon URL"
msgstr "アイコン URL"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:148
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156
msgid ""
"If checked, all variables for child groups\n"
@@ -3795,21 +3901,49 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
-msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
-msgstr "チェックが付けられている場合、子グループおよびホストのすべての変数が削除され、外部ソースにあるものによって置き換えられます。"
+#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
+#~ msgstr "チェックが付けられている場合、子グループおよびホストのすべての変数が削除され、外部ソースにあるものによって置き換えられます。"
+
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:125
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135
+msgid ""
+"If checked, any hosts and groups that were\n"
+"previously present on the external source but are now removed\n"
+"will be removed from the Tower inventory. Hosts and groups\n"
+"that were not managed by the inventory source will be promoted\n"
+"to the next manually created group or if there is no manually\n"
+"created group to promote them into, they will be left in the \"all\"\n"
+"default group for the inventory."
+msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
-msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
-msgstr "チェックを付けると、以前は外部ソースにあり、現在は削除されているホストおよびグループが Tower インベントリーから削除されます。インベントリーソースで管理されていなかったホストおよびグループは、次に手動で作成したグループにプロモートされます。プロモート先となる、手動で作成したグループがない場合、ホストおよびグループは、インベントリーの「すべて」のデフォルトグループに残ります。"
+#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
+#~ msgstr "チェックを付けると、以前は外部ソースにあり、現在は削除されているホストおよびグループが Tower インベントリーから削除されます。インベントリーソースで管理されていなかったホストおよびグループは、次に手動で作成したグループにプロモートされます。プロモート先となる、手動で作成したグループがない場合、ホストおよびグループは、インベントリーの「すべて」のデフォルトグループに残ります。"
+
+#: screens/Template/shared/JobTemplateForm.jsx:538
+msgid ""
+"If enabled, run this playbook as an\n"
+"administrator."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:507
-msgid "If enabled, run this playbook as an administrator."
-msgstr "有効な場合は、この Playbook を管理者として実行します。"
+#~ msgid "If enabled, run this playbook as an administrator."
+#~ msgstr "有効な場合は、この Playbook を管理者として実行します。"
-#: src/screens/Template/shared/JobTemplateForm.jsx:448
-msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
-msgstr "有効で、サポートされている場合は、Ansible タスクで加えられた変更を表示します。これは Ansible の --diff モードに相当します。"
+#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177
+msgid ""
+"If enabled, show the changes made\n"
+"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
+"--diff mode."
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:479
+msgid ""
+"If enabled, show the changes made by\n"
+"Ansible tasks, where supported. This is equivalent\n"
+"to Ansible's --diff mode."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:448
#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
@@ -3819,9 +3953,11 @@ msgstr "有効で、サポートされている場合は、Ansible タスクで
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "有効で、サポートされている場合は、Ansible タスクで加えられた変更を表示します。これは Ansible の --diff モードに相当します。"
-#: src/screens/Template/shared/JobTemplateForm.jsx:551
-msgid "If enabled, simultaneous runs of this job template will be allowed."
-msgstr "有効な場合は、このジョブテンプレートの同時実行が許可されます。"
+#: screens/Template/shared/JobTemplateForm.jsx:582
+msgid ""
+"If enabled, simultaneous runs of this job\n"
+"template will be allowed."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:551
#~ msgid "If enabled, simultaneous runs of this job template will be allowed."
@@ -3831,7 +3967,7 @@ msgstr "有効な場合は、このジョブテンプレートの同時実行が
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "有効な場合は、このワークフロージョブテンプレートの同時実行が許可されます。"
-#: screens/Template/shared/JobTemplateForm.jsx:589
+#: screens/Template/shared/JobTemplateForm.jsx:590
msgid ""
"If enabled, this will store gathered facts so they can\n"
"be viewed at the host level. Facts are persisted and\n"
@@ -3839,16 +3975,39 @@ msgid ""
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:559
-msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
-msgstr "有効にすると、収集されたファクトが保存されるため、ホストレベルで表示できます。ファクトは永続化され、実行時にファクトキャッシュに挿入されます。"
+#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
+#~ msgstr "有効にすると、収集されたファクトが保存されるため、ホストレベルで表示できます。ファクトは永続化され、実行時にファクトキャッシュに挿入されます。"
+
+#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140
+msgid "If you are ready to upgrade or renew, please <0>contact us.0>"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72
+msgid ""
+"If you do not have a subscription, you can visit\n"
+"Red Hat to obtain a trial subscription."
+msgstr ""
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr "この特定のユーザーのアクセスのみを削除する場合は、チームから削除してください。"
-#: src/components/HostToggle/HostToggle.jsx:18
-msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process."
-msgstr "ホストが利用可能かどうか、またホストを実行中のジョブに組み込む必要があるかどうかを示します。外部インベントリーの一部となっているホストについては、これはインベントリー同期プロセスでリセットされる場合があります。"
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211
+msgid ""
+"If you want the Inventory Source to update on\n"
+"launch and on project update, click on Update on launch, and also go to"
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88
+#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107
+msgid "Image"
+msgstr ""
#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:103
msgid "Image name"
@@ -3964,7 +4123,7 @@ msgid "Instance groups"
msgstr "インスタンスグループ"
#: screens/InstanceGroup/InstanceGroup.jsx:69
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76
#: screens/InstanceGroup/InstanceGroups.jsx:37
#: screens/InstanceGroup/Instances/InstanceList.jsx:148
@@ -4000,8 +4159,8 @@ msgstr "無効なユーザー名またはパスワードです。やり直して
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
-#: util/getRelatedResourceDeleteDetails.js:226
-#: util/getRelatedResourceDeleteDetails.js:294
+#: util/getRelatedResourceDeleteDetails.js:209
+#: util/getRelatedResourceDeleteDetails.js:277
msgid "Inventories"
msgstr "インベントリー"
@@ -4061,14 +4220,14 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr "インベントリーソース同期"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:161
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:180
#: util/getRelatedResourceDeleteDetails.js:74
-#: util/getRelatedResourceDeleteDetails.js:171
+#: util/getRelatedResourceDeleteDetails.js:154
msgid "Inventory Sources"
msgstr "インベントリーソース"
-#: components/JobList/JobList.jsx:186
+#: components/JobList/JobList.jsx:185
#: components/JobList/JobListItem.jsx:33
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37
#: components/Workflow/WorkflowLegend.jsx:100
@@ -4080,7 +4239,7 @@ msgstr "インベントリー同期"
msgid "Inventory Update"
msgstr "インベントリー更新"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:226
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102
msgid "Inventory file"
msgstr "インベントリーファイル"
@@ -4100,8 +4259,8 @@ msgstr "インベントリーの同期の失敗"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60
#: screens/Job/JobDetail/JobDetail.jsx:120
-msgid "Isolated"
-msgstr "分離"
+#~ msgid "Isolated"
+#~ msgstr "分離"
#: screens/Job/JobOutput/JobOutput.jsx:649
msgid "Item Failed"
@@ -4125,7 +4284,7 @@ msgstr "ページ別の項目"
#: components/Sparkline/Sparkline.jsx:28
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42
-#: screens/Project/ProjectList/ProjectListItem.jsx:62
+#: screens/Project/ProjectList/ProjectListItem.jsx:69
msgid "JOB ID:"
msgstr "ジョブ ID:"
@@ -4169,7 +4328,7 @@ msgstr "ジョブスライス"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:148
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235
-#: screens/Template/shared/JobTemplateForm.jsx:458
+#: screens/Template/shared/JobTemplateForm.jsx:459
msgid "Job Slicing"
msgstr "ジョブスライス"
@@ -4184,12 +4343,12 @@ msgstr "ジョブステータス"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350
#: screens/Job/JobDetail/JobDetail.jsx:309
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342
-#: screens/Template/shared/JobTemplateForm.jsx:498
+#: screens/Template/shared/JobTemplateForm.jsx:499
msgid "Job Tags"
msgstr "ジョブタグ"
#: components/JobList/JobListItem.jsx:137
-#: components/TemplateList/TemplateList.jsx:201
+#: components/TemplateList/TemplateList.jsx:200
#: components/Workflow/WorkflowLegend.jsx:92
#: components/Workflow/WorkflowNodeHelp.jsx:47
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96
@@ -4207,7 +4366,7 @@ msgstr ""
#: screens/Project/Projects.jsx:32
#: util/getRelatedResourceDeleteDetails.js:56
#: util/getRelatedResourceDeleteDetails.js:108
-#: util/getRelatedResourceDeleteDetails.js:157
+#: util/getRelatedResourceDeleteDetails.js:140
msgid "Job Templates"
msgstr "ジョブテンプレート"
@@ -4227,7 +4386,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:180
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145
-#: screens/Template/shared/JobTemplateForm.jsx:220
+#: screens/Template/shared/JobTemplateForm.jsx:221
msgid "Job Type"
msgstr "ジョブタイプ"
@@ -4363,7 +4522,7 @@ msgstr "ラベル名"
#: screens/Job/JobDetail/JobDetail.jsx:294
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195
-#: screens/Template/shared/JobTemplateForm.jsx:369
+#: screens/Template/shared/JobTemplateForm.jsx:370
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217
msgid "Labels"
msgstr "ラベル"
@@ -4415,7 +4574,7 @@ msgstr "最終更新日"
msgid "Last Name"
msgstr "姓"
-#: components/TemplateList/TemplateList.jsx:225
+#: components/TemplateList/TemplateList.jsx:223
#: components/TemplateList/TemplateListItem.jsx:156
msgid "Last Ran"
msgstr "最終実行日時"
@@ -4432,12 +4591,17 @@ msgstr "最後のジョブ"
msgid "Last job run"
msgstr "最後のジョブ実行"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58
+#: screens/Project/ProjectList/ProjectListItem.jsx:236
msgid "Last modified"
msgstr "最終更新日"
+#: screens/Project/ProjectList/ProjectListItem.jsx:241
+msgid "Last used"
+msgstr ""
+
#: components/AdHocCommands/AdHocCommandsWizard.jsx:92
#: components/LaunchPrompt/steps/usePreviewStep.jsx:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55
@@ -4506,13 +4670,13 @@ msgstr "Less than or equal to の比較条件"
#: src/screens/Setting/SettingList.jsx:137
#: src/screens/Setting/Settings.jsx:96
-msgid "License"
-msgstr "ライセンス"
+#~ msgid "License"
+#~ msgstr "ライセンス"
#: src/screens/Setting/License/License.jsx:15
#: src/screens/Setting/SettingList.jsx:142
-msgid "License settings"
-msgstr "ライセンス設定"
+#~ msgid "License settings"
+#~ msgstr "ライセンス設定"
#: components/AdHocCommands/AdHocDetailsStep.jsx:170
#: components/AdHocCommands/AdHocDetailsStep.jsx:171
@@ -4524,7 +4688,7 @@ msgstr "ライセンス設定"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326
#: screens/Job/JobDetail/JobDetail.jsx:238
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225
-#: screens/Template/shared/JobTemplateForm.jsx:420
+#: screens/Template/shared/JobTemplateForm.jsx:421
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163
msgid "Limit"
msgstr "制限"
@@ -4585,7 +4749,7 @@ msgid "Lookup typeahead"
msgstr "ルックアップの先行入力"
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40
-#: screens/Project/ProjectList/ProjectListItem.jsx:60
+#: screens/Project/ProjectList/ProjectListItem.jsx:67
msgid "MOST RECENT SYNC"
msgstr "直近の同期"
@@ -4609,7 +4773,7 @@ msgstr ""
msgid "Managed nodes"
msgstr ""
-#: components/JobList/JobList.jsx:189
+#: components/JobList/JobList.jsx:188
#: components/JobList/JobListItem.jsx:36
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40
#: screens/Job/JobDetail/JobDetail.jsx:100
@@ -4644,8 +4808,8 @@ msgstr "管理ジョブ"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90
#: screens/Project/ProjectDetail/ProjectDetail.jsx:111
-#: screens/Project/ProjectList/ProjectList.jsx:150
-#: screens/Project/ProjectList/ProjectListItem.jsx:134
+#: screens/Project/ProjectList/ProjectList.jsx:149
+#: screens/Project/ProjectList/ProjectListItem.jsx:149
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89
msgid "Manual"
msgstr "手動"
@@ -4712,12 +4876,18 @@ msgid ""
msgstr ""
#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34
-msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online."
-msgstr "新規インスタンスがオンラインになると、このグループに自動的に最小限割り当てられるインスタンス数"
+#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online."
+#~ msgstr "新規インスタンスがオンラインになると、このグループに自動的に最小限割り当てられるインスタンス数"
+
+#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46
+msgid ""
+"Minimum percentage of all instances that will be automatically\n"
+"assigned to this group when new instances come online."
+msgstr ""
#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46
-msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online."
-msgstr "新規インスタンスがオンラインになると、このグループに自動的に最小限割り当てられるインスタンスの割合"
+#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online."
+#~ msgstr "新規インスタンスがオンラインになると、このグループに自動的に最小限割り当てられるインスタンスの割合"
#: components/Schedule/shared/ScheduleForm.jsx:163
msgid "Minute"
@@ -4854,8 +5024,8 @@ msgstr "複数の選択オプション"
#: components/AssociateModal/AssociateModal.jsx:139
#: components/AssociateModal/AssociateModal.jsx:154
#: components/HostForm/HostForm.jsx:87
-#: components/JobList/JobList.jsx:169
-#: components/JobList/JobList.jsx:218
+#: components/JobList/JobList.jsx:168
+#: components/JobList/JobList.jsx:217
#: components/JobList/JobListItem.jsx:69
#: components/LaunchPrompt/steps/CredentialsStep.jsx:174
#: components/LaunchPrompt/steps/CredentialsStep.jsx:189
@@ -4894,8 +5064,8 @@ msgstr "複数の選択オプション"
#: components/Schedule/ScheduleList/ScheduleList.jsx:192
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78
#: components/Schedule/shared/ScheduleForm.jsx:102
-#: components/TemplateList/TemplateList.jsx:189
-#: components/TemplateList/TemplateList.jsx:222
+#: components/TemplateList/TemplateList.jsx:188
+#: components/TemplateList/TemplateList.jsx:221
#: components/TemplateList/TemplateListItem.jsx:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37
@@ -4932,8 +5102,8 @@ msgstr "複数の選択オプション"
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111
@@ -4947,7 +5117,7 @@ msgstr "複数の選択オプション"
#: screens/Host/HostList/HostListItem.jsx:34
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:64
#: screens/InstanceGroup/Instances/InstanceList.jsx:155
#: screens/InstanceGroup/Instances/InstanceList.jsx:162
@@ -4969,7 +5139,7 @@ msgstr "複数の選択オプション"
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:197
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67
@@ -5000,7 +5170,7 @@ msgstr "複数の選択オプション"
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
-#: screens/Project/ProjectList/ProjectListItem.jsx:99
+#: screens/Project/ProjectList/ProjectListItem.jsx:114
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
#: screens/Team/TeamDetail/TeamDetail.jsx:34
@@ -5019,7 +5189,7 @@ msgstr "複数の選択オプション"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115
-#: screens/Template/shared/JobTemplateForm.jsx:207
+#: screens/Template/shared/JobTemplateForm.jsx:208
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
@@ -5177,36 +5347,54 @@ msgid ""
msgstr ""
#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224
-msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong."
-msgstr "このグループに直接含まれるホストのみの関連付けを解除できることに注意してください。サブグループのホストの関連付けの解除については、それらのホストが属するサブグループのレベルで直接実行する必要があります。"
+#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong."
+#~ msgstr "このグループに直接含まれるホストのみの関連付けを解除できることに注意してください。サブグループのホストの関連付けの解除については、それらのホストが属するサブグループのレベルで直接実行する必要があります。"
-#: src/screens/Host/HostGroups/HostGroupsList.jsx:212
-msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
-msgstr "ホストがそのグループの子のメンバーでもある場合は、関連付けを解除した後も一覧にグループが表示される場合があることに注意してください。この一覧には、ホストが直接的および間接的に関連付けられているすべてのグループが表示されます。"
+#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214
+msgid ""
+"Note that you may still see the group in the list after\n"
+"disassociating if the host is also a member of that group’s\n"
+"children. This list shows all groups the host is associated\n"
+"with directly and indirectly."
+msgstr ""
+
+#: screens/Host/HostGroups/HostGroupsList.jsx:212
+msgid ""
+"Note that you may still see the group in the list after\n"
+"disassociating if the host is also a member of that group’s \n"
+"children. This list shows all groups the host is associated \n"
+"with directly and indirectly."
+msgstr ""
#: src/screens/Host/HostGroups/HostGroupsList.jsx:212
#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
#~ msgstr ""
#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214
-msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
-msgstr "ホストがそのグループの子のメンバーでもある場合は、関連付けを解除した後も一覧にグループが表示される場合があることに注意してください。この一覧には、ホストが直接的および間接的に関連付けられているすべてのグループが表示されます。"
+#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
+#~ msgstr "ホストがそのグループの子のメンバーでもある場合は、関連付けを解除した後も一覧にグループが表示される場合があることに注意してください。この一覧には、ホストが直接的および間接的に関連付けられているすべてのグループが表示されます。"
#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:66
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr "注: このフィールドは、リモート名が \"origin\" であることが前提です。"
-#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36
-msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information."
-msgstr "GitHub または Bitbucket の SSH プロトコルを使用している場合は、SSH キーのみを入力し、ユーザー名 (git 以外) を入力しないでください。また、GitHub および Bitbucket は、SSH の使用時のパスワード認証をサポートしません。GIT の読み取り専用プロトコル (git://) はユーザー名またはパスワード情報を使用しません。"
+#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:40
+msgid ""
+"Note: When using SSH protocol for GitHub or\n"
+"Bitbucket, enter an SSH key only, do not enter a username\n"
+"(other than git). Additionally, GitHub and Bitbucket do\n"
+"not support password authentication when using SSH. GIT\n"
+"read only protocol (git://) does not use username or\n"
+"password information."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36
#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information."
#~ msgstr ""
#: src/screens/Inventory/Inventories.jsx:120
-msgid "Notifcations"
-msgstr "通知"
+#~ msgid "Notifcations"
+#~ msgstr "通知"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270
msgid "Notification Color"
@@ -5222,7 +5410,7 @@ msgstr "通知テンプレートテストは見つかりません。"
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188
#: screens/NotificationTemplate/NotificationTemplates.jsx:13
#: screens/NotificationTemplate/NotificationTemplates.jsx:21
-#: util/getRelatedResourceDeleteDetails.js:205
+#: util/getRelatedResourceDeleteDetails.js:188
msgid "Notification Templates"
msgstr "通知テンプレート"
@@ -5296,7 +5484,7 @@ msgstr "10 月"
#: screens/Setting/shared/SharedFields.jsx:97
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:53
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "Off"
msgstr "オフ"
@@ -5314,7 +5502,7 @@ msgstr "オフ"
#: screens/Setting/shared/SharedFields.jsx:96
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:52
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "On"
msgstr "オン"
@@ -5352,7 +5540,7 @@ msgstr "OpenStack"
msgid "Option Details"
msgstr "オプションの詳細"
-#: screens/Template/shared/JobTemplateForm.jsx:372
+#: screens/Template/shared/JobTemplateForm.jsx:373
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:220
msgid ""
"Optional labels that describe this job template,\n"
@@ -5362,8 +5550,8 @@ msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:342
#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187
-msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs."
-msgstr "「dev」、「test」などのこのジョブテンプレートを説明するオプションラベルです。ラベルを使用し、ジョブテンプレートおよび完了したジョブの分類およびフィルターを実行できます。"
+#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs."
+#~ msgstr "「dev」、「test」などのこのジョブテンプレートを説明するオプションラベルです。ラベルを使用し、ジョブテンプレートおよび完了したジョブの分類およびフィルターを実行できます。"
#: screens/Template/shared/WebhookSubForm.jsx:219
msgid "Optionally select the credential to use to send status updates back to the webhook service."
@@ -5378,12 +5566,12 @@ msgstr "必要に応じて、ステータスの更新を Webhook サービスに
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141
#: screens/Credential/shared/TypeInputsSubForm.jsx:49
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:250
#: screens/Project/ProjectDetail/ProjectDetail.jsx:130
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180
-#: screens/Template/shared/JobTemplateForm.jsx:530
+#: screens/Template/shared/JobTemplateForm.jsx:531
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246
msgid "Options"
msgstr "オプション"
@@ -5405,17 +5593,19 @@ msgstr "オプション"
#: screens/Application/ApplicationsList/ApplicationsList.jsx:163
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:202
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69
#: screens/Project/ProjectDetail/ProjectDetail.jsx:98
+#: screens/Project/ProjectList/ProjectListItem.jsx:215
+#: screens/Project/ProjectList/ProjectListItem.jsx:226
#: screens/Team/TeamDetail/TeamDetail.jsx:40
#: screens/Team/TeamList/TeamList.jsx:155
#: screens/Team/TeamList/TeamListItem.jsx:45
@@ -5442,15 +5632,15 @@ msgstr "組織が見つかりません。"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:97
#: screens/ActivityStream/ActivityStream.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:133
-#: screens/Organization/OrganizationList/OrganizationList.jsx:179
+#: screens/Organization/OrganizationList/OrganizationList.jsx:132
+#: screens/Organization/OrganizationList/OrganizationList.jsx:178
#: screens/Organization/Organizations.jsx:16
#: screens/Organization/Organizations.jsx:27
#: screens/User/User.jsx:65
#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55
#: screens/User/Users.jsx:34
-#: util/getRelatedResourceDeleteDetails.js:256
-#: util/getRelatedResourceDeleteDetails.js:290
+#: util/getRelatedResourceDeleteDetails.js:239
+#: util/getRelatedResourceDeleteDetails.js:273
msgid "Organizations"
msgstr "組織"
@@ -5468,7 +5658,7 @@ msgid "Output"
msgstr "出力"
#: components/PromptDetail/PromptInventorySourceDetail.jsx:48
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:121
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
msgid "Overwrite"
msgstr "上書き"
@@ -5477,7 +5667,7 @@ msgstr "上書き"
msgid "Overwrite Variables"
msgstr "変数の上書き"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:144
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
msgid "Overwrite variables"
msgstr "変数の上書き"
@@ -5527,7 +5717,7 @@ msgstr "パンアップ"
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "追加のコマンドライン変更を渡します。2 つの Ansible コマンドラインパラメーターがあります。"
-#: screens/Template/shared/JobTemplateForm.jsx:392
+#: screens/Template/shared/JobTemplateForm.jsx:393
msgid ""
"Pass extra command line variables to the playbook. This is the\n"
"-e or --extra-vars command line parameter for ansible-playbook.\n"
@@ -5596,7 +5786,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:138
#: screens/Job/JobDetail/JobDetail.jsx:237
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223
-#: screens/Template/shared/JobTemplateForm.jsx:330
+#: screens/Template/shared/JobTemplateForm.jsx:331
msgid "Playbook"
msgstr "Playbook"
@@ -5614,7 +5804,7 @@ msgstr ""
msgid "Playbook Directory"
msgstr "Playbook ディレクトリー"
-#: components/JobList/JobList.jsx:187
+#: components/JobList/JobList.jsx:186
#: components/JobList/JobListItem.jsx:34
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38
#: screens/Job/JobDetail/JobDetail.jsx:98
@@ -5669,7 +5859,7 @@ msgstr "値を入力してください。"
msgid "Please select a day number between 1 and 31."
msgstr "1 から 31 までの日付を選択してください。"
-#: screens/Template/shared/JobTemplateForm.jsx:755
+#: screens/Template/shared/JobTemplateForm.jsx:756
msgid "Please select an Inventory or check the Prompt on Launch option."
msgstr "インベントリーを選択するか、または起動プロンプトオプションにチェックを付けてください。"
@@ -5700,9 +5890,13 @@ msgstr "ポリシーインスタンスの割合"
msgid "Populate field from an external secret management system"
msgstr "外部のシークレット管理システムからフィールドにデータを入力します"
-#: src/components/Lookup/HostFilterLookup.jsx:287
-msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples."
-msgstr "検索フィルターを使用して、このインベントリーのホストにデータを入力します (例: ansible_facts.ansible_distribution:\"RedHat\")。構文と例の詳細については、Ansible Tower のドキュメントを参照してください。"
+#: components/Lookup/HostFilterLookup.jsx:288
+msgid ""
+"Populate the hosts for this inventory by using a search\n"
+"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n"
+"Refer to the Ansible Tower documentation for further syntax and\n"
+"examples."
+msgstr ""
#: src/components/Lookup/HostFilterLookup.jsx:287
#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples."
@@ -5731,7 +5925,7 @@ msgstr "プレビュー"
msgid "Private key passphrase"
msgstr "秘密鍵のパスフレーズ"
-#: screens/Template/shared/JobTemplateForm.jsx:536
+#: screens/Template/shared/JobTemplateForm.jsx:537
msgid "Privilege Escalation"
msgstr "権限昇格"
@@ -5747,7 +5941,7 @@ msgstr "権限昇格のパスワード"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:123
#: components/PromptDetail/PromptJobTemplateDetail.jsx:131
#: components/TemplateList/TemplateListItem.jsx:271
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:216
#: screens/Job/JobDetail/JobDetail.jsx:212
#: screens/Job/JobDetail/JobDetail.jsx:227
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151
@@ -5788,8 +5982,8 @@ msgstr "プロジェクトの同期の失敗"
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
-#: util/getRelatedResourceDeleteDetails.js:219
-#: util/getRelatedResourceDeleteDetails.js:249
+#: util/getRelatedResourceDeleteDetails.js:202
+#: util/getRelatedResourceDeleteDetails.js:232
msgid "Projects"
msgstr "プロジェクト"
@@ -5806,7 +6000,7 @@ msgstr "プロンプト"
msgid "Prompt Overrides"
msgstr "プロンプトオーバーライド"
-#: components/CodeEditor/VariablesField.jsx:222
+#: components/CodeEditor/VariablesField.jsx:230
#: components/FieldWithPrompt/FieldWithPrompt.jsx:47
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167
msgid "Prompt on launch"
@@ -5822,7 +6016,7 @@ msgstr "プロンプト値"
msgid "Prompts"
msgstr "プロンプト"
-#: screens/Template/shared/JobTemplateForm.jsx:423
+#: screens/Template/shared/JobTemplateForm.jsx:424
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:166
msgid ""
"Provide a host pattern to further constrain\n"
@@ -5842,8 +6036,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36
#: src/screens/Template/shared/JobTemplateForm.jsx:393
#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147
-msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns."
-msgstr "Playbook によって管理されるか、またはその影響を受けるホストの一覧をさらに制限するためのホストのパターンを指定します。複数のパターンが許可されます。パターンについての詳細およびサンプルについては、Ansible ドキュメントを参照してください。"
+#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns."
+#~ msgstr "Playbook によって管理されるか、またはその影響を受けるホストの一覧をさらに制限するためのホストのパターンを指定します。複数のパターンが許可されます。パターンについての詳細およびサンプルについては、Ansible ドキュメントを参照してください。"
#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164
msgid "Provide a value for this field or select the Prompt on launch option."
@@ -5856,21 +6050,33 @@ msgid ""
msgstr ""
#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284
-msgid "Provide key/value pairs using either YAML or JSON."
-msgstr "YAML または JSON のいずれかを使用してキーと値のペアを提供します。"
+#~ msgid "Provide key/value pairs using either YAML or JSON."
+#~ msgstr "YAML または JSON のいずれかを使用してキーと値のペアを提供します。"
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:208
+msgid ""
+"Provide your Red Hat or Red Hat Satellite credentials\n"
+"below and you can choose from a list of your available subscriptions.\n"
+"The credentials you use will be stored for future use in\n"
+"retrieving renewal or expanded subscriptions."
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics."
+msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:152
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243
-#: screens/Template/shared/JobTemplateForm.jsx:609
+#: screens/Template/shared/JobTemplateForm.jsx:610
msgid "Provisioning Callback URL"
msgstr "プロビジョニングコールバック URL"
-#: screens/Template/shared/JobTemplateForm.jsx:604
+#: screens/Template/shared/JobTemplateForm.jsx:605
msgid "Provisioning Callback details"
msgstr "プロビジョニングコールバックの詳細"
-#: screens/Template/shared/JobTemplateForm.jsx:541
-#: screens/Template/shared/JobTemplateForm.jsx:544
+#: screens/Template/shared/JobTemplateForm.jsx:542
+#: screens/Template/shared/JobTemplateForm.jsx:545
msgid "Provisioning Callbacks"
msgstr "プロビジョニングコールバック"
@@ -5951,9 +6157,19 @@ msgstr "リダイレクト URI"
msgid "Redirect uris"
msgstr "リダイレクト URI"
-#: src/screens/Template/shared/JobTemplateForm.jsx:383
-msgid "Refer to the Ansible documentation for details about the configuration file."
-msgstr "設定ファイルの詳細は、Ansible ドキュメントを参照してください。"
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278
+msgid "Redirecting to dashboard"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282
+msgid "Redirecting to subscription detail"
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:414
+msgid ""
+"Refer to the Ansible documentation for details\n"
+"about the configuration file."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:383
#~ msgid "Refer to the Ansible documentation for details about the configuration file."
@@ -5987,7 +6203,7 @@ msgid "Related Groups"
msgstr "関連するグループ"
#: components/JobList/JobListItem.jsx:118
-#: components/LaunchButton/ReLaunchDropDown.jsx:78
+#: components/LaunchButton/ReLaunchDropDown.jsx:81
#: screens/Job/JobDetail/JobDetail.jsx:384
#: screens/Job/JobDetail/JobDetail.jsx:392
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:162
@@ -5999,16 +6215,16 @@ msgstr "再起動"
msgid "Relaunch Job"
msgstr "ジョブの再起動"
-#: components/LaunchButton/ReLaunchDropDown.jsx:39
+#: components/LaunchButton/ReLaunchDropDown.jsx:41
msgid "Relaunch all hosts"
msgstr "すべてのホストの再起動"
-#: components/LaunchButton/ReLaunchDropDown.jsx:51
+#: components/LaunchButton/ReLaunchDropDown.jsx:54
msgid "Relaunch failed hosts"
msgstr "失敗したホストの再起動"
-#: components/LaunchButton/ReLaunchDropDown.jsx:29
-#: components/LaunchButton/ReLaunchDropDown.jsx:34
+#: components/LaunchButton/ReLaunchDropDown.jsx:30
+#: components/LaunchButton/ReLaunchDropDown.jsx:35
msgid "Relaunch on"
msgstr "再起動時"
@@ -6111,9 +6327,11 @@ msgstr "リソースがこのテンプレートにありません。"
msgid "Restore initial value."
msgstr "初期値を復元します。"
-#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212
-msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'"
-msgstr "ホスト変数の指定された辞書から有効な状態を取得します。有効な変数は、ドット表記を使用して指定できます (例: 「foo.bar」)。"
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255
+msgid ""
+"Retrieve the enabled state from the given dict of host variables.\n"
+"The enabled variable may be specified using dot notation, e.g: 'foo.bar'"
+msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212
#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'"
@@ -6172,8 +6390,8 @@ msgid "Revert to factory default."
msgstr "工場出荷時のデフォルトに戻します。"
#: screens/Job/JobDetail/JobDetail.jsx:236
-#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:137
+#: screens/Project/ProjectList/ProjectList.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:152
msgid "Revision"
msgstr "リビジョン"
@@ -6209,7 +6427,7 @@ msgstr "ロール"
#: screens/Credential/shared/ExternalTestModal.jsx:90
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24
-#: screens/Template/shared/JobTemplateForm.jsx:171
+#: screens/Template/shared/JobTemplateForm.jsx:172
msgid "Run"
msgstr "実行"
@@ -6240,7 +6458,7 @@ msgstr "実行:"
msgid "Run type"
msgstr "実行タイプ"
-#: components/JobList/JobList.jsx:204
+#: components/JobList/JobList.jsx:203
#: components/TemplateList/TemplateListItem.jsx:106
#: components/Workflow/WorkflowNodeHelp.jsx:83
msgid "Running"
@@ -6291,7 +6509,7 @@ msgstr "開始"
#: components/Sparkline/Sparkline.jsx:31
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45
-#: screens/Project/ProjectList/ProjectListItem.jsx:65
+#: screens/Project/ProjectList/ProjectListItem.jsx:72
msgid "STATUS:"
msgstr "ステータス:"
@@ -6474,7 +6692,7 @@ msgstr "アイテムの選択"
msgid "Select Items from List"
msgstr "リストからアイテムの選択"
-#: screens/Template/shared/LabelSelect.jsx:88
+#: screens/Template/shared/LabelSelect.jsx:92
msgid "Select Labels"
msgstr ""
@@ -6498,9 +6716,11 @@ msgstr "ノードタイプの選択"
msgid "Select a Resource Type"
msgstr "リソースタイプの選択"
-#: src/screens/Template/shared/JobTemplateForm.jsx:280
-msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch."
-msgstr "ジョブテンプレートにブランチを選択してください。このブランチは、ブランチを求めるすべてのジョブテンプレートノードに適用されます。"
+#: screens/Template/shared/JobTemplateForm.jsx:311
+msgid ""
+"Select a branch for the job template. This branch is applied to\n"
+"all job template nodes that prompt for a branch."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:280
#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch."
@@ -6539,7 +6759,7 @@ msgstr "モジュールの選択"
msgid "Select a playbook"
msgstr "Playbook の選択"
-#: screens/Template/shared/JobTemplateForm.jsx:296
+#: screens/Template/shared/JobTemplateForm.jsx:297
msgid "Select a project before editing the execution environment."
msgstr ""
@@ -6547,7 +6767,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr "承認する行の選択"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr "削除する行の選択"
@@ -6597,8 +6817,8 @@ msgstr "このフィールドに有効な日時を選択"
#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41
#: screens/Team/shared/TeamForm.jsx:20
#: screens/Template/Survey/SurveyQuestionForm.jsx:28
-#: screens/Template/shared/JobTemplateForm.jsx:83
-#: screens/Template/shared/JobTemplateForm.jsx:147
+#: screens/Template/shared/JobTemplateForm.jsx:84
+#: screens/Template/shared/JobTemplateForm.jsx:148
#: screens/User/shared/UserForm.jsx:49
msgid "Select a value for this field"
msgstr "このフィールドの値の選択"
@@ -6628,7 +6848,7 @@ msgstr "ワークフローのインベントリーを選択してください。
msgid "Select an organization before editing the default execution environment."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:354
+#: screens/Template/shared/JobTemplateForm.jsx:355
msgid ""
"Select credentials that allow Tower to access the nodes this job will be ran\n"
"against. You can only select one credential of each type. For machine credentials (SSH),\n"
@@ -6638,12 +6858,19 @@ msgid ""
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:324
-msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time."
-msgstr "Tower のこのジョブが実行されるノードへのアクセスを許可する認証情報を選択します。各タイプにつき 1 つの認証情報のみを選択できます。マシン認証情報 (SSH) については、認証情報を選択せずに「起動プロンプト」を選択すると、実行時にマシン認証情報を選択する必要があります。認証情報を選択し、「起動プロンプト」にチェックを付けている場合は、選択した認証情報が実行時に更新できるデフォルトになります。"
+#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time."
+#~ msgstr "Tower のこのジョブが実行されるノードへのアクセスを許可する認証情報を選択します。各タイプにつき 1 つの認証情報のみを選択できます。マシン認証情報 (SSH) については、認証情報を選択せずに「起動プロンプト」を選択すると、実行時にマシン認証情報を選択する必要があります。認証情報を選択し、「起動プロンプト」にチェックを付けている場合は、選択した認証情報が実行時に更新できるデフォルトになります。"
+
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89
+msgid ""
+"Select from the list of directories found in\n"
+"the Project Base Path. Together the base path and the playbook\n"
+"directory provide the full path used to locate playbooks."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89
-msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks."
-msgstr "プロジェクトのベースパスにあるデイレクトリーの一覧から選択します。ベースパスと Playbook ディレクトリーは、Playbook を見つけるために使用される完全なパスを提供します。"
+#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks."
+#~ msgstr "プロジェクトのベースパスにあるデイレクトリーの一覧から選択します。ベースパスと Playbook ディレクトリーは、Playbook を見つけるために使用される完全なパスを提供します。"
#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94
msgid "Select items from list"
@@ -6670,7 +6897,7 @@ msgstr "適用するロールの選択"
msgid "Select source path"
msgstr "ソースパスの選択"
-#: components/MultiSelect/TagMultiSelect.jsx:55
+#: components/MultiSelect/TagMultiSelect.jsx:60
msgid "Select tags"
msgstr ""
@@ -6678,7 +6905,7 @@ msgstr ""
msgid "Select the Instance Groups for this Inventory to run on."
msgstr "このインベントリーが実行されるインスタンスグループを選択します。"
-#: screens/Template/shared/JobTemplateForm.jsx:493
+#: screens/Template/shared/JobTemplateForm.jsx:494
msgid ""
"Select the Instance Groups for this Organization\n"
"to run on."
@@ -6697,36 +6924,70 @@ msgid "Select the credential you want to use when accessing the remote hosts to
msgstr "そのコマンドを実行するためにリモートホストへのアクセス時に使用する認証情報を選択します。Ansible がリモートホストにログインするために必要なユーザー名および SSH キーまたはパスワードが含まれる認証情報を選択してください。"
#: src/screens/Inventory/shared/InventorySourceForm.jsx:146
-msgid "Select the custom Python virtual environment for this inventory source sync to run on."
-msgstr "このインベントリーソースの実行に使用するカスタム Python 仮想環境を選択します。"
+#~ msgid "Select the custom Python virtual environment for this inventory source sync to run on."
+#~ msgstr "このインベントリーソースの実行に使用するカスタム Python 仮想環境を選択します。"
+
+#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209
+msgid "Select the default execution environment for this organization to run on."
+msgstr ""
+
+#: screens/Organization/shared/OrganizationForm.jsx:102
+msgid "Select the default execution environment for this organization."
+msgstr ""
+
+#: screens/Project/shared/ProjectForm.jsx:198
+msgid "Select the default execution environment for this project."
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:294
+msgid "Select the execution environment for this job template."
+msgstr ""
+
+#: components/Lookup/InventoryLookup.jsx:89
+#: screens/Template/shared/JobTemplateForm.jsx:256
+msgid ""
+"Select the inventory containing the hosts\n"
+"you want this job to manage."
+msgstr ""
#: src/components/Lookup/InventoryLookup.jsx:89
#: src/screens/Template/shared/JobTemplateForm.jsx:248
-msgid "Select the inventory containing the hosts you want this job to manage."
-msgstr "このジョブで管理するホストが含まれるインベントリーを選択してください。"
+#~ msgid "Select the inventory containing the hosts you want this job to manage."
+#~ msgstr "このジョブで管理するホストが含まれるインベントリーを選択してください。"
+
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105
+msgid ""
+"Select the inventory file\n"
+"to be synced by this source. You can select from\n"
+"the dropdown or enter a file within the input."
+msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105
-msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input."
-msgstr "このソースで同期されるインベントリーファイルを選択します。ドロップダウンから選択するか、入力にファイルを指定できます。"
+#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input."
+#~ msgstr "このソースで同期されるインベントリーファイルを選択します。ドロップダウンから選択するか、入力にファイルを指定できます。"
#: components/HostForm/HostForm.jsx:32
#: components/HostForm/HostForm.jsx:47
msgid "Select the inventory that this host will belong to."
msgstr "このホストが属するインベントリーを選択します。"
-#: screens/Template/shared/JobTemplateForm.jsx:334
+#: screens/Template/shared/JobTemplateForm.jsx:335
msgid "Select the playbook to be executed by this job."
msgstr "このジョブで実行される Playbook を選択してください。"
-#: screens/Template/shared/JobTemplateForm.jsx:272
+#: screens/Template/shared/JobTemplateForm.jsx:273
msgid ""
"Select the project containing the playbook\n"
"you want this job to execute."
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:264
-msgid "Select the project containing the playbook you want this job to execute."
-msgstr "このジョブで実行する Playbook が含まれるプロジェクトを選択してください。"
+#~ msgid "Select the project containing the playbook you want this job to execute."
+#~ msgstr "このジョブで実行する Playbook が含まれるプロジェクトを選択してください。"
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:90
+msgid "Select your Ansible Automation Platform subscription to use."
+msgstr ""
#: components/Lookup/Lookup.jsx:129
msgid "Select {0}"
@@ -6750,7 +7011,7 @@ msgstr "{0} の選択"
#: screens/Inventory/InventoryList/InventoryListItem.jsx:79
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43
-#: screens/Project/ProjectList/ProjectListItem.jsx:97
+#: screens/Project/ProjectList/ProjectListItem.jsx:112
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:259
#: screens/Team/TeamList/TeamListItem.jsx:38
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60
@@ -6854,7 +7115,7 @@ msgstr "表示"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:144
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232
-#: screens/Template/shared/JobTemplateForm.jsx:475
+#: screens/Template/shared/JobTemplateForm.jsx:476
msgid "Show Changes"
msgstr "変更の表示"
@@ -6927,11 +7188,11 @@ msgstr "簡易キー選択"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368
#: screens/Job/JobDetail/JobDetail.jsx:327
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357
-#: screens/Template/shared/JobTemplateForm.jsx:514
+#: screens/Template/shared/JobTemplateForm.jsx:515
msgid "Skip Tags"
msgstr "スキップタグ"
-#: screens/Template/shared/JobTemplateForm.jsx:517
+#: screens/Template/shared/JobTemplateForm.jsx:518
msgid ""
"Skip tags are useful when you have a\n"
"large playbook, and you want to skip specific parts of a\n"
@@ -6950,8 +7211,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74
#: src/screens/Template/shared/JobTemplateForm.jsx:487
-msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
-msgstr "スキップタグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分をスキップする必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、Ansible Tower ドキュメントを参照してください。"
+#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
+#~ msgstr "スキップタグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分をスキップする必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、Ansible Tower ドキュメントを参照してください。"
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39
msgid "Skipped"
@@ -7004,7 +7265,7 @@ msgid "Sort question order"
msgstr "質問の順序の並べ替え"
#: components/PromptDetail/PromptInventorySourceDetail.jsx:86
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/shared/InventorySourceForm.jsx:135
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86
msgid "Source"
@@ -7018,7 +7279,7 @@ msgstr "ソース"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321
#: screens/Project/ProjectDetail/ProjectDetail.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220
-#: screens/Template/shared/JobTemplateForm.jsx:306
+#: screens/Template/shared/JobTemplateForm.jsx:307
msgid "Source Control Branch"
msgstr "ソースコントロールブランチ"
@@ -7052,13 +7313,13 @@ msgstr "ソースコントロールのタイプ"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
#: screens/Project/ProjectDetail/ProjectDetail.jsx:114
-#: screens/Project/ProjectList/ProjectList.jsx:158
+#: screens/Project/ProjectList/ProjectList.jsx:157
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97
msgid "Source Control URL"
msgstr "ソースコントロールの URL"
-#: components/JobList/JobList.jsx:185
+#: components/JobList/JobList.jsx:184
#: components/JobList/JobListItem.jsx:32
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39
#: screens/Job/JobDetail/JobDetail.jsx:93
@@ -7090,7 +7351,7 @@ msgstr "ソース詳細"
msgid "Source phone number"
msgstr "発信元の電話番号"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34
msgid "Source variables"
msgstr "ソース変数"
@@ -7111,12 +7372,18 @@ msgid ""
msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478
-msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax."
-msgstr "JSON 形式で HTTP ヘッダーを指定します。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
+#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax."
+#~ msgstr "JSON 形式で HTTP ヘッダーを指定します。構文のサンプルについては Ansible Tower ドキュメントを参照してください。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392
+msgid ""
+"Specify a notification color. Acceptable colors are hex\n"
+"color code (example: #3af or #789abc)."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392
-msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)."
-msgstr "通知の色を指定します。使用できる色は、16 進数の色コード (例: #3af または #789abc) です。"
+#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)."
+#~ msgstr "通知の色を指定します。使用できる色は、16 進数の色コード (例: #3af または #789abc) です。"
#: screens/User/shared/UserTokenForm.jsx:71
msgid "Specify a scope for the token's access"
@@ -7149,7 +7416,7 @@ msgstr "標準出力タブ"
msgid "Start"
msgstr "開始"
-#: components/JobList/JobList.jsx:221
+#: components/JobList/JobList.jsx:220
#: components/JobList/JobListItem.jsx:84
msgid "Start Time"
msgstr "開始時間"
@@ -7177,21 +7444,21 @@ msgid "Start sync source"
msgstr "同期ソースの開始"
#: screens/Job/JobDetail/JobDetail.jsx:141
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79
msgid "Started"
msgstr "開始"
-#: components/JobList/JobList.jsx:198
-#: components/JobList/JobList.jsx:219
+#: components/JobList/JobList.jsx:197
+#: components/JobList/JobList.jsx:218
#: components/JobList/JobListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:201
+#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryListItem.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:174
-#: screens/Project/ProjectList/ProjectListItem.jsx:119
+#: screens/Project/ProjectList/ProjectListItem.jsx:134
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
@@ -7284,7 +7551,7 @@ msgstr "成功メッセージボディー"
msgid "Successful"
msgstr "成功"
-#: screens/Project/ProjectList/ProjectListItem.jsx:148
+#: screens/Project/ProjectList/ProjectListItem.jsx:163
msgid "Successfully copied to clipboard!"
msgstr "クリップボードへのコピーに成功しました!"
@@ -7329,25 +7596,25 @@ msgstr "Survey の質問"
msgid "Sync"
msgstr "同期"
-#: screens/Project/ProjectList/ProjectListItem.jsx:155
+#: screens/Project/ProjectList/ProjectListItem.jsx:170
#: screens/Project/shared/ProjectSyncButton.jsx:31
msgid "Sync Project"
msgstr "プロジェクトの同期"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:200
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:203
msgid "Sync all"
msgstr "すべてを同期"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:194
msgid "Sync all sources"
msgstr "すべてのソースの同期"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:232
msgid "Sync error"
msgstr "同期エラー"
-#: screens/Project/ProjectList/ProjectListItem.jsx:141
+#: screens/Project/ProjectList/ProjectListItem.jsx:156
msgid "Sync for revision"
msgstr "リビジョンの同期"
@@ -7392,7 +7659,7 @@ msgstr "TACACS+ 設定"
msgid "Tabs"
msgstr "タブ"
-#: screens/Template/shared/JobTemplateForm.jsx:501
+#: screens/Template/shared/JobTemplateForm.jsx:502
msgid ""
"Tags are useful when you have a large\n"
"playbook, and you want to run a specific part of a\n"
@@ -7411,8 +7678,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62
#: src/screens/Template/shared/JobTemplateForm.jsx:471
-msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
-msgstr "タグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分を実行する必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、Ansible Tower ドキュメントを参照してください。"
+#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
+#~ msgstr "タグは、Playbook のサイズが大きい場合にプレイまたはタスクの特定の部分を実行する必要がある場合に役立ちます。コンマを使用して複数のタグを区切ります。タグの使用方法の詳細については、Ansible Tower ドキュメントを参照してください。"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138
msgid "Tags for the Annotation"
@@ -7477,7 +7744,7 @@ msgstr "チームが見つかりません。"
#: screens/User/UserTeams/UserTeamList.jsx:176
#: screens/User/UserTeams/UserTeamList.jsx:244
#: screens/User/Users.jsx:33
-#: util/getRelatedResourceDeleteDetails.js:198
+#: util/getRelatedResourceDeleteDetails.js:181
msgid "Teams"
msgstr "チーム"
@@ -7497,8 +7764,8 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82
#: screens/Template/Templates.jsx:16
-#: util/getRelatedResourceDeleteDetails.js:242
-#: util/getRelatedResourceDeleteDetails.js:299
+#: util/getRelatedResourceDeleteDetails.js:225
+#: util/getRelatedResourceDeleteDetails.js:282
msgid "Templates"
msgstr "テンプレート"
@@ -7562,28 +7829,65 @@ msgid ""
msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122
-msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
-msgstr "メール通知が、ホストへの到達を試行するのをやめてタイムアウトするまでの時間 (秒単位)。範囲は 1 から 120 秒です。"
+#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
+#~ msgstr "メール通知が、ホストへの到達を試行するのをやめてタイムアウトするまでの時間 (秒単位)。範囲は 1 から 120 秒です。"
+
+#: screens/Template/shared/JobTemplateForm.jsx:470
+msgid ""
+"The amount of time (in seconds) to run\n"
+"before the job is canceled. Defaults to 0 for no job\n"
+"timeout."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:439
-msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
-msgstr "ジョブが取り消される前の実行時間 (秒数)。デフォルト値は 0 で、ジョブのタイムアウトがありません。"
+#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
+#~ msgstr "ジョブが取り消される前の実行時間 (秒数)。デフォルト値は 0 で、ジョブのタイムアウトがありません。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164
+msgid ""
+"The base URL of the Grafana server - the\n"
+"/api/annotations endpoint will be added automatically to the base\n"
+"Grafana URL."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164
-msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL."
-msgstr "Grafana サーバーのベース URL。/api/annotations エンドポイントは、ベース Grafana URL に自動的に追加されます。"
+#~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL."
+#~ msgstr "Grafana サーバーのベース URL。/api/annotations エンドポイントは、ベース Grafana URL に自動的に追加されます。"
+
+#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78
+msgid ""
+"The first fetches all references. The second\n"
+"fetches the Github pull request number 62, in this example\n"
+"the branch needs to be \"pull/62/head\"."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74
-msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"."
-msgstr "最初は全参照を取得します。2 番目は Github の Pull 要求の 62 番を取得します。この例では、ブランチは \"pull/62/head\" である必要があります。"
+#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"."
+#~ msgstr "最初は全参照を取得します。2 番目は Github の Pull 要求の 62 番を取得します。この例では、ブランチは \"pull/62/head\" である必要があります。"
+
+#: screens/Organization/shared/OrganizationForm.jsx:77
+msgid ""
+"The maximum number of hosts allowed to be managed by this organization.\n"
+"Value defaults to 0 which means no limit. Refer to the Ansible\n"
+"documentation for more details."
+msgstr ""
#: src/screens/Organization/shared/OrganizationForm.jsx:69
-msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
-msgstr "この組織で管理可能な最大ホスト数。デフォルト値は 0 で、管理可能な数に制限がありません。詳細は、Ansible ドキュメントを参照してください。"
+#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
+#~ msgstr "この組織で管理可能な最大ホスト数。デフォルト値は 0 で、管理可能な数に制限がありません。詳細は、Ansible ドキュメントを参照してください。"
+
+#: screens/Template/shared/JobTemplateForm.jsx:408
+msgid ""
+"The number of parallel or simultaneous\n"
+"processes to use while executing the playbook. An empty value,\n"
+"or a value less than 1 will use the Ansible default which is\n"
+"usually 5. The default number of forks can be overwritten\n"
+"with a change to"
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:377
-msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to"
-msgstr "Playbook の実行中に使用する並列または同時プロセスの数。値が空白または 1 未満の場合は、Ansible のデフォルト値 (通常は 5) を使用します。フォークのデフォルトの数は、以下を変更して上書きできます。"
+#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to"
+#~ msgstr "Playbook の実行中に使用する並列または同時プロセスの数。値が空白または 1 未満の場合は、Ansible のデフォルト値 (通常は 5) を使用します。フォークのデフォルトの数は、以下を変更して上書きできます。"
#: components/AdHocCommands/AdHocDetailsStep.jsx:197
msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information"
@@ -7607,9 +7911,12 @@ msgstr ""
msgid "The resource associated with this node has been deleted."
msgstr "このノードに関連付けられているリソースは削除されました。"
-#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134
-msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
-msgstr "推奨される変数名の形式は小文字のみを使用し、それらをアンダースコアで区切ります (foo_bar、user_id、host_name など)。スペースを含む変数名は許可されません。"
+#: screens/Template/Survey/SurveyQuestionForm.jsx:134
+msgid ""
+"The suggested format for variable names is lowercase and\n"
+"underscore-separated (for example, foo_bar, user_id, host_name,\n"
+"etc.). Variable names with spaces are not allowed."
+msgstr ""
#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134
#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
@@ -7619,9 +7926,15 @@ msgstr "推奨される変数名の形式は小文字のみを使用し、それ
msgid "The tower instance group cannot be deleted."
msgstr "Tower インスタンスグループは削除できません。"
-#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53
-msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above."
-msgstr "{project_base_dir} に利用可能な Playbook ディレクトリーはありません。そのディレクトリーが空であるか、すべてのコンテンツがすでに他のプロジェクトに割り当てられています。そこに新しいディレクトリーを作成し、「awx」システムユーザーが Playbook ファイルを読み取れるか、{brandName} が、上記のソースコントロールタイプオプションを使用して、ソースコントロールから Playbook を直接取得できるようにしてください。"
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53
+msgid ""
+"There are no available playbook directories in {project_base_dir}.\n"
+"Either that directory is empty, or all of the contents are already\n"
+"assigned to other projects. Create a new directory there and make\n"
+"sure the playbook files can be read by the \"awx\" system user,\n"
+"or have {brandName} directly retrieve your playbooks from\n"
+"source control using the Source Control Type option above."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53
#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above."
@@ -7648,8 +7961,8 @@ msgid "There was an error testing the log aggregator."
msgstr "ログアグリゲーターのテスト中にエラーが発生しました。"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216
-msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
-msgstr "これらの承認は、不十分な権限または保留中のジョブステータスのために削除できません"
+#~ msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
+#~ msgstr "これらの承認は、不十分な権限または保留中のジョブステータスのために削除できません"
#: components/AdHocCommands/AdHocDetailsStep.jsx:74
msgid "These are the modules that {brandName} supports running commands against."
@@ -7671,7 +7984,7 @@ msgstr "これらの引数は、指定されたモジュールで使用されま
msgid "Third"
msgstr "第 3"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr "このアクションにより、以下が削除されます。"
@@ -7796,7 +8109,7 @@ msgstr ""
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr ""
@@ -7820,7 +8133,7 @@ msgstr ""
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:150
+#: screens/Template/shared/JobTemplateForm.jsx:151
msgid "This project needs to be updated"
msgstr "このプロジェクトは更新する必要があります"
@@ -7841,9 +8154,11 @@ msgstr "このステップにはエラーが含まれています"
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr "この値は、以前に入力されたパスワードと一致しません。パスワードを確認してください。"
-#: src/screens/Setting/shared/RevertAllAlert.jsx:36
-msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?"
-msgstr "これにより、このページのすべての設定値が出荷時の設定に戻ります。本当に続行してもよいですか?"
+#: screens/Setting/shared/RevertAllAlert.jsx:36
+msgid ""
+"This will revert all configuration values on this page to\n"
+"their factory defaults. Are you sure you want to proceed?"
+msgstr ""
#: src/screens/Setting/shared/RevertAllAlert.jsx:36
#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?"
@@ -7884,12 +8199,21 @@ msgid ""
msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121
-msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed."
-msgstr "プロジェクトが最新であることを判別するための時間 (秒単位) です。ジョブ実行およびコールバック時に、タスクシステムは最新のプロジェクト更新のタイムスタンプを評価します。これがキャッシュタイムアウトよりも古い場合には、最新とは見なされず、新規のプロジェクト更新が実行されます。"
+#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed."
+#~ msgstr "プロジェクトが最新であることを判別するための時間 (秒単位) です。ジョブ実行およびコールバック時に、タスクシステムは最新のプロジェクト更新のタイムスタンプを評価します。これがキャッシュタイムアウトよりも古い場合には、最新とは見なされず、新規のプロジェクト更新が実行されます。"
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238
+msgid ""
+"Time in seconds to consider an inventory sync\n"
+"to be current. During job runs and callbacks the task system will\n"
+"evaluate the timestamp of the latest sync. If it is older than\n"
+"Cache Timeout, it is not considered current, and a new\n"
+"inventory sync will be performed."
+msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195
-msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed."
-msgstr "インベントリーの同期が最新の状態であることを判別するために使用される時間 (秒単位) です。ジョブの実行およびコールバック時に、タスクシステムは最新の同期のタイムスタンプを評価します。これがキャッシュタイムアウトよりも古い場合は最新とは見なされず、インベントリーの同期が新たに実行されます。"
+#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed."
+#~ msgstr "インベントリーの同期が最新の状態であることを判別するために使用される時間 (秒単位) です。ジョブの実行およびコールバック時に、タスクシステムは最新の同期のタイムスタンプを評価します。これがキャッシュタイムアウトよりも古い場合は最新とは見なされず、インベントリーの同期が新たに実行されます。"
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21
msgid "Timed out"
@@ -7900,7 +8224,7 @@ msgstr "タイムアウト"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169
-#: screens/Template/shared/JobTemplateForm.jsx:468
+#: screens/Template/shared/JobTemplateForm.jsx:469
msgid "Timeout"
msgstr "タイムアウト"
@@ -8054,7 +8378,7 @@ msgstr "火曜"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.jsx:220
+#: components/JobList/JobList.jsx:219
#: components/JobList/JobListItem.jsx:82
#: components/Lookup/ProjectLookup.jsx:110
#: components/NotificationList/NotificationList.jsx:220
@@ -8062,8 +8386,8 @@ msgstr "Twilio"
#: components/PromptDetail/PromptDetail.jsx:112
#: components/Schedule/ScheduleList/ScheduleList.jsx:174
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95
-#: components/TemplateList/TemplateList.jsx:198
-#: components/TemplateList/TemplateList.jsx:223
+#: components/TemplateList/TemplateList.jsx:197
+#: components/TemplateList/TemplateList.jsx:222
#: components/TemplateList/TemplateListItem.jsx:155
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
@@ -8074,7 +8398,7 @@ msgstr "Twilio"
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
@@ -8087,7 +8411,7 @@ msgstr "Twilio"
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
-#: screens/Project/ProjectList/ProjectListItem.jsx:132
+#: screens/Project/ProjectList/ProjectListItem.jsx:147
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86
@@ -8152,12 +8476,12 @@ msgstr "起動時の更新"
msgid "Update on Project Update"
msgstr "プロジェクト更新時の更新"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:163
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171
msgid "Update on launch"
msgstr "起動時の更新"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:173
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199
msgid "Update on project update"
msgstr "プロジェクト更新時の更新"
@@ -8189,8 +8513,8 @@ msgstr ""
#: src/screens/Inventory/shared/InventorySourceForm.jsx:57
#: src/screens/Organization/shared/OrganizationForm.jsx:33
#: src/screens/Project/shared/ProjectForm.jsx:286
-msgid "Use Default Ansible Environment"
-msgstr "デフォルトの Ansible 環境の使用"
+#~ msgid "Use Default Ansible Environment"
+#~ msgstr "デフォルトの Ansible 環境の使用"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:67
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139
@@ -8207,6 +8531,13 @@ msgstr "SSL の使用"
msgid "Use TLS"
msgstr "TLS の使用"
+#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75
+msgid ""
+"Use custom messages to change the content of\n"
+"notifications sent when a job starts, succeeds, or fails. Use\n"
+"curly braces to access information about the job:"
+msgstr ""
+
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72
#~ msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:"
#~ msgstr ""
@@ -8329,7 +8660,7 @@ msgstr "VMware vCenter"
#: screens/Job/JobDetail/JobDetail.jsx:356
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211
-#: screens/Template/shared/JobTemplateForm.jsx:389
+#: screens/Template/shared/JobTemplateForm.jsx:390
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:239
msgid "Variables"
msgstr "変数"
@@ -8356,11 +8687,11 @@ msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:102
#: components/PromptDetail/PromptJobTemplateDetail.jsx:141
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:239
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227
-#: screens/Template/shared/JobTemplateForm.jsx:441
+#: screens/Template/shared/JobTemplateForm.jsx:442
msgid "Verbosity"
msgstr "詳細"
@@ -8587,8 +8918,12 @@ msgid "View all tokens."
msgstr "すべてのトークンを表示します。"
#: src/screens/Setting/SettingList.jsx:138
-msgid "View and edit your license information"
-msgstr "ライセンス情報の表示および編集"
+#~ msgid "View and edit your license information"
+#~ msgstr "ライセンス情報の表示および編集"
+
+#: screens/Setting/SettingList.jsx:138
+msgid "View and edit your subscription information"
+msgstr ""
#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25
#: screens/ActivityStream/ActivityStreamListItem.jsx:50
@@ -8689,7 +9024,7 @@ msgstr "Webhook サービス"
msgid "Webhook URL"
msgstr "Webhook URL"
-#: screens/Template/shared/JobTemplateForm.jsx:637
+#: screens/Template/shared/JobTemplateForm.jsx:638
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:281
msgid "Webhook details"
msgstr "Webhook の詳細"
@@ -8733,7 +9068,7 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:153
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161
msgid ""
"When not checked, a merge will be performed,\n"
@@ -8743,13 +9078,21 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158
-msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
-msgstr "チェックが付けられていない場合は、ローカル変数と外部ソースにあるものを組み合わせるマージが実行されます。"
+#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
+#~ msgstr "チェックが付けられていない場合は、ローカル変数と外部ソースにあるものを組み合わせるマージが実行されます。"
+
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:134
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144
+msgid ""
+"When not checked, local child\n"
+"hosts and groups not found on the external source will remain\n"
+"untouched by the inventory update process."
+msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141
-msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process."
-msgstr "チェックが付けられていない場合、外部ソースにないローカルの子ホストおよびグループは、インベントリーの更新プロセスによって処理されないままになります。"
+#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process."
+#~ msgstr "チェックが付けられていない場合、外部ソースにないローカルの子ホストおよびグループは、インベントリーの更新プロセスによって処理されないままになります。"
#: components/Workflow/WorkflowLegend.jsx:96
msgid "Workflow"
@@ -8765,14 +9108,14 @@ msgstr "ワークフローの承認が見つかりません。"
#: routeConfig.js:55
#: screens/ActivityStream/ActivityStream.jsx:154
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209
#: screens/WorkflowApproval/WorkflowApprovals.jsx:12
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:19
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:22
msgid "Workflow Approvals"
msgstr "ワークフローの承認"
-#: components/JobList/JobList.jsx:190
+#: components/JobList/JobList.jsx:189
#: components/JobList/JobListItem.jsx:37
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41
#: screens/Job/JobDetail/JobDetail.jsx:101
@@ -8790,13 +9133,13 @@ msgstr "ワークフロージョブ"
msgid "Workflow Job Template"
msgstr "ワークフロージョブテンプレート"
-#: util/getRelatedResourceDeleteDetails.js:139
-#: util/getRelatedResourceDeleteDetails.js:181
-#: util/getRelatedResourceDeleteDetails.js:284
+#: util/getRelatedResourceDeleteDetails.js:122
+#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:267
msgid "Workflow Job Template Nodes"
msgstr ""
-#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:147
msgid "Workflow Job Templates"
msgstr ""
@@ -8898,7 +9241,7 @@ msgstr "同じ Vault ID を持つ複数の Vault 認証情報を選択するこ
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr "次のグループを削除する権限がありません: {itemsUnableToDelete}"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "{pluralizedItemName} を削除するパーミッションがありません: {itemsUnableToDelete}"
@@ -8910,6 +9253,12 @@ msgstr "{pluralizedItemName} を削除するパーミッションがありませ
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "以下の関連付けを解除する権限がありません: {itemsUnableToDisassociate}"
+#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90
+msgid ""
+"You may apply a number of possible variables in the\n"
+"message. For more information, refer to the"
+msgstr ""
+
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89
#~ msgid "You may apply a number of possible variables in the message. Refer to the"
#~ msgstr ""
@@ -8930,12 +9279,12 @@ msgstr "ズームイン"
msgid "Zoom Out"
msgstr "ズームアウト"
-#: screens/Template/shared/JobTemplateForm.jsx:734
+#: screens/Template/shared/JobTemplateForm.jsx:735
#: screens/Template/shared/WebhookSubForm.jsx:155
msgid "a new webhook key will be generated on save."
msgstr "新規 Webhook キーは保存時に生成されます。"
-#: screens/Template/shared/JobTemplateForm.jsx:731
+#: screens/Template/shared/JobTemplateForm.jsx:732
#: screens/Template/shared/WebhookSubForm.jsx:143
msgid "a new webhook url will be generated on save."
msgstr "新規 Webhook URL は保存時に生成されます。"
@@ -8966,7 +9315,7 @@ msgstr "承認"
msgid "brand logo"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:280
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:276
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr "削除のキャンセル"
@@ -8975,7 +9324,7 @@ msgstr "削除のキャンセル"
msgid "command"
msgstr "コマンド"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:265
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr "削除の確認"
@@ -8987,10 +9336,10 @@ msgstr "関連付けの解除の確認"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68
-msgid "controller instance"
-msgstr "コントローラインスタンス"
+#~ msgid "controller instance"
+#~ msgstr "コントローラインスタンス"
-#: screens/Project/ProjectList/ProjectListItem.jsx:140
+#: screens/Project/ProjectList/ProjectListItem.jsx:155
msgid "copy to clipboard disabled"
msgstr "クリップボードへのコピーが無効"
@@ -9016,7 +9365,7 @@ msgstr ""
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:275
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156
#: screens/Project/ProjectDetail/ProjectDetail.jsx:166
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154
@@ -9032,13 +9381,17 @@ msgstr "暗号化"
msgid "expiration"
msgstr "有効期限"
-#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117
-msgid "group"
-msgstr "グループ"
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:226
+msgid "for more info."
+msgstr ""
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117
-msgid "groups"
-msgstr "グループ"
+#~ msgid "group"
+#~ msgstr "グループ"
+
+#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117
+#~ msgid "groups"
+#~ msgstr "グループ"
#: components/AdHocCommands/AdHocDetailsStep.jsx:182
msgid "here"
@@ -9076,8 +9429,8 @@ msgstr "インベントリー"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59
#: screens/Job/JobDetail/JobDetail.jsx:119
-msgid "isolated instance"
-msgstr "分離インスタンス"
+#~ msgid "isolated instance"
+#~ msgstr "分離インスタンス"
#: components/Pagination/Pagination.jsx:24
msgid "items"
@@ -9128,8 +9481,8 @@ msgstr "ページ"
msgid "per page"
msgstr "ページ別"
-#: components/LaunchButton/ReLaunchDropDown.jsx:74
-#: components/LaunchButton/ReLaunchDropDown.jsx:96
+#: components/LaunchButton/ReLaunchDropDown.jsx:77
+#: components/LaunchButton/ReLaunchDropDown.jsx:99
msgid "relaunch jobs"
msgstr ""
@@ -9153,7 +9506,7 @@ msgstr "範囲"
msgid "sec"
msgstr "秒"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
msgid "seconds"
msgstr "秒"
@@ -9221,6 +9574,46 @@ msgstr ""
#~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}"
#~ msgstr ""
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215
+msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
+msgstr ""
+
+#: screens/Credential/CredentialList/CredentialList.jsx:178
+msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171
+msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187
+msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:223
+msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:183
+msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
+msgstr ""
+
+#: screens/Inventory/InventoryList/InventoryList.jsx:222
+msgid "{0, plural, one {This invetory is currently being used by some temeplates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Organization/OrganizationList/OrganizationList.jsx:181
+msgid "{0, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Project/ProjectList/ProjectList.jsx:203
+msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: components/TemplateList/TemplateList.jsx:243
+msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
#: components/JobList/JobListCancelButton.jsx:72
msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}"
msgstr ""
@@ -9253,14 +9646,55 @@ msgstr "{0} ソースが同期に失敗しました。"
msgid "{0}: {1}"
msgstr "{0}: {1}"
+#: components/AppContainer/AppContainer.jsx:142
+msgid "{brandName} logo"
+msgstr ""
+
#: components/DetailList/UserDateDetail.jsx:23
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr} (<0>{username}0> による)"
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:192
+msgid "{intervalValue, plural, one {day} other {days}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:190
+msgid "{intervalValue, plural, one {hour} other {hours}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:188
+msgid "{intervalValue, plural, one {minute} other {minutes}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:196
+msgid "{intervalValue, plural, one {month} other {months}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:194
+msgid "{intervalValue, plural, one {week} other {weeks}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:198
+msgid "{intervalValue, plural, one {year} other {years}}"
+msgstr ""
+
#: components/PromptDetail/PromptDetail.jsx:43
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} 分 {seconds} 秒"
+#: components/JobList/JobListCancelButton.jsx:106
+msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}"
+msgstr ""
+
+#: components/JobList/JobListCancelButton.jsx:167
+msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}"
+msgstr ""
+
+#: components/JobList/JobListCancelButton.jsx:91
+msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}"
+msgstr ""
+
#: components/PaginatedDataList/PaginatedDataList.jsx:92
#: components/PaginatedTable/PaginatedTable.jsx:77
msgid "{pluralizedItemName} List"
+msgstr ""
diff --git a/awx/ui_next/src/locales/nl/messages.po b/awx/ui_next/src/locales/nl/messages.po
index d542128676..944b0e4d6b 100644
--- a/awx/ui_next/src/locales/nl/messages.po
+++ b/awx/ui_next/src/locales/nl/messages.po
@@ -5,7 +5,7 @@ msgstr ""
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: @lingui/cli\n"
-"Language: nl \n"
+"Language: nl\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: \n"
@@ -35,7 +35,7 @@ msgstr ""
msgid "- Enable Webhooks"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228
msgid "/ (project root)"
msgstr ""
@@ -46,16 +46,16 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:42
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106
-#: screens/Template/shared/JobTemplateForm.jsx:180
+#: screens/Template/shared/JobTemplateForm.jsx:181
msgid "0 (Normal)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:105
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82
msgid "0 (Warning)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83
msgid "1 (Info)"
msgstr ""
@@ -67,11 +67,11 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:43
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107
-#: screens/Template/shared/JobTemplateForm.jsx:181
+#: screens/Template/shared/JobTemplateForm.jsx:182
msgid "1 (Verbose)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84
msgid "2 (Debug)"
msgstr ""
@@ -83,7 +83,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:44
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108
-#: screens/Template/shared/JobTemplateForm.jsx:182
+#: screens/Template/shared/JobTemplateForm.jsx:183
msgid "2 (More Verbose)"
msgstr ""
@@ -94,7 +94,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:45
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109
-#: screens/Template/shared/JobTemplateForm.jsx:183
+#: screens/Template/shared/JobTemplateForm.jsx:184
msgid "3 (Debug)"
msgstr ""
@@ -105,7 +105,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:46
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110
-#: screens/Template/shared/JobTemplateForm.jsx:184
+#: screens/Template/shared/JobTemplateForm.jsx:185
msgid "4 (Connection Debug)"
msgstr ""
@@ -186,11 +186,11 @@ msgstr ""
msgid "Action"
msgstr ""
-#: components/JobList/JobList.jsx:225
+#: components/JobList/JobList.jsx:222
#: components/JobList/JobListItem.jsx:90
#: components/Schedule/ScheduleList/ScheduleList.jsx:176
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112
-#: components/TemplateList/TemplateList.jsx:227
+#: components/TemplateList/TemplateList.jsx:224
#: components/TemplateList/TemplateListItem.jsx:157
#: screens/ActivityStream/ActivityStream.jsx:260
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
@@ -200,13 +200,13 @@ msgstr ""
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
#: screens/Host/HostList/HostList.jsx:170
#: screens/Host/HostList/HostListItem.jsx:48
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:204
+#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryListItem.jsx:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
@@ -215,7 +215,7 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:152
+#: screens/Project/ProjectList/ProjectListItem.jsx:167
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
#: screens/User/UserList/UserList.jsx:172
@@ -368,7 +368,7 @@ msgstr ""
msgid "Advanced search value input"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:175
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203
msgid ""
"After every project update where the SCM revision\n"
@@ -398,7 +398,7 @@ msgstr ""
msgid "Alert modal"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:46
+#: components/LaunchButton/ReLaunchDropDown.jsx:48
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:250
msgid "All"
msgstr ""
@@ -526,7 +526,7 @@ msgstr ""
#: screens/Application/Applications.jsx:35
#: screens/Application/ApplicationsList/ApplicationsList.jsx:116
#: screens/Application/ApplicationsList/ApplicationsList.jsx:154
-#: util/getRelatedResourceDeleteDetails.js:233
+#: util/getRelatedResourceDeleteDetails.js:216
msgid "Applications"
msgstr ""
@@ -823,7 +823,7 @@ msgstr ""
msgid "Cache Timeout"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234
msgid "Cache timeout"
msgstr ""
@@ -844,7 +844,7 @@ msgstr ""
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:279
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -956,7 +956,7 @@ msgstr ""
#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type."
#~ msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77
msgid "Capacity"
msgstr ""
@@ -1005,7 +1005,7 @@ msgid "Channel"
msgstr ""
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104
-#: screens/Template/shared/JobTemplateForm.jsx:175
+#: screens/Template/shared/JobTemplateForm.jsx:176
msgid "Check"
msgstr ""
@@ -1038,7 +1038,7 @@ msgid "Choose a Webhook Service"
msgstr ""
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97
-#: screens/Template/shared/JobTemplateForm.jsx:168
+#: screens/Template/shared/JobTemplateForm.jsx:169
msgid "Choose a job type"
msgstr ""
@@ -1159,7 +1159,7 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: components/JobList/JobList.jsx:188
+#: components/JobList/JobList.jsx:187
#: components/JobList/JobListItem.jsx:35
#: screens/Job/JobDetail/JobDetail.jsx:99
#: screens/Job/JobOutput/HostEventModal.jsx:137
@@ -1186,7 +1186,7 @@ msgstr ""
msgid "Compliant"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:580
+#: screens/Template/shared/JobTemplateForm.jsx:581
msgid "Concurrent Jobs"
msgstr ""
@@ -1266,7 +1266,7 @@ msgid ""
"will produce as the playbook executes."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:444
+#: screens/Template/shared/JobTemplateForm.jsx:445
msgid ""
"Control the level of output ansible will\n"
"produce as the playbook executes."
@@ -1315,7 +1315,7 @@ msgstr ""
msgid "Copy Notification Template"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:175
+#: screens/Project/ProjectList/ProjectListItem.jsx:190
msgid "Copy Project"
msgstr ""
@@ -1323,7 +1323,7 @@ msgstr ""
msgid "Copy Template"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:147
+#: screens/Project/ProjectList/ProjectListItem.jsx:162
msgid "Copy full revision to clipboard."
msgstr ""
@@ -1335,7 +1335,7 @@ msgstr ""
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:383
+#: screens/Template/shared/JobTemplateForm.jsx:384
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231
msgid "Create"
msgstr ""
@@ -1481,7 +1481,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:261
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53
#: screens/Job/JobDetail/JobDetail.jsx:343
@@ -1552,7 +1552,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43
@@ -1562,7 +1562,7 @@ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43
-#: util/getRelatedResourceDeleteDetails.js:191
+#: util/getRelatedResourceDeleteDetails.js:174
msgid "Credential"
msgstr ""
@@ -1625,12 +1625,12 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:71
#: screens/ActivityStream/ActivityStream.jsx:165
-#: screens/Credential/CredentialList/CredentialList.jsx:176
+#: screens/Credential/CredentialList/CredentialList.jsx:175
#: screens/Credential/Credentials.jsx:13
#: screens/Credential/Credentials.jsx:24
#: screens/Job/JobDetail/JobDetail.jsx:281
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293
-#: screens/Template/shared/JobTemplateForm.jsx:351
+#: screens/Template/shared/JobTemplateForm.jsx:352
#: util/getRelatedResourceDeleteDetails.js:98
msgid "Credentials"
msgstr ""
@@ -1651,7 +1651,7 @@ msgstr ""
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93
-#: screens/Project/ProjectList/ProjectListItem.jsx:109
+#: screens/Project/ProjectList/ProjectListItem.jsx:124
msgid "Custom virtual environment {0} must be replaced by an execution environment."
msgstr ""
@@ -1739,11 +1739,11 @@ msgstr ""
#: components/DeleteButton/DeleteButton.jsx:91
#: components/DeleteButton/DeleteButton.jsx:95
#: components/DeleteButton/DeleteButton.jsx:115
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:234
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:244
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:248
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:271
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131
@@ -1754,7 +1754,7 @@ msgstr ""
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:126
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69
@@ -1873,7 +1873,7 @@ msgstr ""
msgid "Delete credential type"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:245
msgid "Delete error"
msgstr ""
@@ -1882,7 +1882,7 @@ msgstr ""
msgid "Delete instance group"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:287
msgid "Delete inventory source"
msgstr ""
@@ -1915,7 +1915,7 @@ msgstr ""
msgid "Delete this node"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163
msgid "Delete {pluralizedItemName}?"
msgstr ""
@@ -1967,19 +1967,19 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256
#: components/Schedule/ScheduleList/ScheduleList.jsx:197
#: components/Schedule/shared/ScheduleForm.jsx:110
-#: components/TemplateList/TemplateList.jsx:194
+#: components/TemplateList/TemplateList.jsx:193
#: components/TemplateList/TemplateListItem.jsx:230
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68
#: screens/Application/ApplicationsList/ApplicationsList.jsx:126
#: screens/Application/shared/ApplicationForm.jsx:62
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211
-#: screens/Credential/CredentialList/CredentialList.jsx:129
+#: screens/Credential/CredentialList/CredentialList.jsx:128
#: screens/Credential/shared/CredentialForm.jsx:180
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132
#: screens/CredentialType/shared/CredentialTypeForm.jsx:32
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150
#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:133
#: screens/Host/HostDetail/HostDetail.jsx:81
#: screens/Host/HostList/HostList.jsx:152
@@ -1987,7 +1987,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:177
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
#: screens/Inventory/shared/InventoryForm.jsx:55
@@ -2003,7 +2003,8 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
-#: screens/Project/ProjectList/ProjectList.jsx:143
+#: screens/Project/ProjectList/ProjectList.jsx:142
+#: screens/Project/ProjectList/ProjectListItem.jsx:209
#: screens/Project/shared/ProjectForm.jsx:176
#: screens/Team/TeamDetail/TeamDetail.jsx:38
#: screens/Team/TeamList/TeamList.jsx:134
@@ -2012,7 +2013,7 @@ msgstr ""
#: screens/Template/Survey/SurveyQuestionForm.jsx:124
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166
-#: screens/Template/shared/JobTemplateForm.jsx:215
+#: screens/Template/shared/JobTemplateForm.jsx:216
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:121
#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48
#: screens/User/UserTokenList/UserTokenList.jsx:116
@@ -2129,7 +2130,7 @@ msgstr ""
#: screens/User/Users.jsx:31
#: screens/User/Users.jsx:41
#: screens/WorkflowApproval/WorkflowApproval.jsx:76
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:21
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:24
msgid "Details"
msgstr ""
@@ -2197,7 +2198,7 @@ msgstr ""
msgid "Disassociate?"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:459
+#: screens/Template/shared/JobTemplateForm.jsx:460
msgid ""
"Divide the work done by this job template\n"
"into the specified number of job slices, each running the\n"
@@ -2208,10 +2209,10 @@ msgstr ""
#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
#~ msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:118
-#: components/CodeEditor/VariablesDetail.jsx:124
-#: components/CodeEditor/VariablesField.jsx:134
-#: components/CodeEditor/VariablesField.jsx:140
+#: components/CodeEditor/VariablesDetail.jsx:121
+#: components/CodeEditor/VariablesDetail.jsx:127
+#: components/CodeEditor/VariablesField.jsx:135
+#: components/CodeEditor/VariablesField.jsx:141
msgid "Done"
msgstr ""
@@ -2232,7 +2233,7 @@ msgstr ""
msgid "Each answer choice must be on a separate line."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:165
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175
msgid ""
"Each time a job runs using this inventory,\n"
@@ -2269,7 +2270,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358
@@ -2405,8 +2406,8 @@ msgstr ""
msgid "Edit Organization"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:161
-#: screens/Project/ProjectList/ProjectListItem.jsx:166
+#: screens/Project/ProjectList/ProjectListItem.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:181
msgid "Edit Project"
msgstr ""
@@ -2512,7 +2513,7 @@ msgstr ""
msgid "Enable Concurrent Jobs"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:587
+#: screens/Template/shared/JobTemplateForm.jsx:588
msgid "Enable Fact Storage"
msgstr ""
@@ -2525,8 +2526,8 @@ msgstr ""
msgid "Enable Privilege Escalation"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:561
-#: screens/Template/shared/JobTemplateForm.jsx:564
+#: screens/Template/shared/JobTemplateForm.jsx:562
+#: screens/Template/shared/JobTemplateForm.jsx:565
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:249
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:252
msgid "Enable Webhook"
@@ -2557,7 +2558,7 @@ msgstr ""
msgid "Enable simplified login for your {brandName} applications"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:567
+#: screens/Template/shared/JobTemplateForm.jsx:568
msgid "Enable webhook for this template."
msgstr ""
@@ -2566,20 +2567,28 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267
msgid "Enabled Value"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254
msgid "Enabled Variable"
msgstr ""
#: screens/Template/shared/JobTemplateForm.jsx:547
+#~ msgid ""
+#~ "Enables creation of a provisioning\n"
+#~ "callback URL. Using the URL a host can contact BRAND_NAME\n"
+#~ "and request a configuration update using this job\n"
+#~ "template."
+#~ msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:548
msgid ""
"Enables creation of a provisioning\n"
-"callback URL. Using the URL a host can contact BRAND_NAME\n"
+"callback URL. Using the URL a host can contact {BrandName}\n"
"and request a configuration update using this job\n"
"template."
msgstr ""
@@ -2755,7 +2764,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263
#: screens/Job/JobOutput/JobOutput.jsx:668
#: screens/Setting/shared/LoggingTestAlert.jsx:37
msgid "Error"
@@ -2781,12 +2790,12 @@ msgstr ""
#: components/DeleteButton/DeleteButton.jsx:57
#: components/HostToggle/HostToggle.jsx:73
#: components/InstanceToggle/InstanceToggle.jsx:69
-#: components/JobList/JobList.jsx:278
-#: components/JobList/JobList.jsx:289
+#: components/JobList/JobList.jsx:276
+#: components/JobList/JobList.jsx:287
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:205
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2816,9 +2825,9 @@ msgstr ""
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:301
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:235
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:248
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2829,7 +2838,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:208
+#: screens/Organization/OrganizationList/OrganizationList.jsx:210
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:236
@@ -2859,7 +2868,7 @@ msgstr ""
msgid "Error!"
msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:107
+#: components/CodeEditor/VariablesDetail.jsx:110
msgid "Error:"
msgstr ""
@@ -2927,15 +2936,15 @@ msgstr ""
#: components/Lookup/ExecutionEnvironmentLookup.jsx:124
#: routeConfig.js:143
#: screens/ActivityStream/ActivityStream.jsx:211
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:184
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23
#: screens/Organization/Organization.jsx:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77
#: screens/Organization/Organizations.jsx:38
#: util/getRelatedResourceDeleteDetails.js:88
-#: util/getRelatedResourceDeleteDetails.js:212
+#: util/getRelatedResourceDeleteDetails.js:195
msgid "Execution Environments"
msgstr ""
@@ -2969,8 +2978,8 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:211
-#: components/CodeEditor/VariablesField.jsx:229
+#: components/CodeEditor/VariablesDetail.jsx:214
+#: components/CodeEditor/VariablesField.jsx:237
msgid "Expand input"
msgstr ""
@@ -3023,7 +3032,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:35
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49
-#: screens/Project/ProjectList/ProjectListItem.jsx:69
+#: screens/Project/ProjectList/ProjectListItem.jsx:76
msgid "FINISHED:"
msgstr ""
@@ -3052,7 +3061,7 @@ msgstr ""
msgid "Failed Hosts"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:58
+#: components/LaunchButton/ReLaunchDropDown.jsx:61
#: screens/Dashboard/Dashboard.jsx:135
msgid "Failed hosts"
msgstr ""
@@ -3102,7 +3111,7 @@ msgstr ""
msgid "Failed to copy inventory."
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:183
+#: screens/Project/ProjectList/ProjectListItem.jsx:198
msgid "Failed to copy project."
msgstr ""
@@ -3128,7 +3137,7 @@ msgstr ""
msgid "Failed to delete host."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:305
msgid "Failed to delete inventory source {name}."
msgstr ""
@@ -3177,7 +3186,7 @@ msgstr ""
msgid "Failed to delete one or more inventories."
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:251
msgid "Failed to delete one or more inventory sources."
msgstr ""
@@ -3335,7 +3344,7 @@ msgstr ""
msgid "Failed to sync project."
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:238
msgid "Failed to sync some or all inventory sources."
msgstr ""
@@ -3418,7 +3427,7 @@ msgstr ""
msgid "File, directory or script"
msgstr ""
-#: components/JobList/JobList.jsx:223
+#: components/JobList/JobList.jsx:221
#: components/JobList/JobListItem.jsx:87
msgid "Finish Time"
msgstr ""
@@ -3461,7 +3470,7 @@ msgstr ""
msgid "Float"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:223
+#: screens/Template/shared/JobTemplateForm.jsx:224
msgid ""
"For job templates, select run to execute\n"
"the playbook. Select check to only check playbook syntax,\n"
@@ -3489,7 +3498,7 @@ msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.jsx:193
#: components/PromptDetail/PromptJobTemplateDetail.jsx:139
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224
-#: screens/Template/shared/JobTemplateForm.jsx:404
+#: screens/Template/shared/JobTemplateForm.jsx:405
msgid "Forks"
msgstr ""
@@ -3673,7 +3682,7 @@ msgstr ""
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232
#: screens/Inventory/InventoryList/InventoryListItem.jsx:108
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224
-#: util/getRelatedResourceDeleteDetails.js:143
+#: util/getRelatedResourceDeleteDetails.js:126
msgid "Groups"
msgstr ""
@@ -3715,7 +3724,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:149
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239
-#: screens/Template/shared/JobTemplateForm.jsx:622
+#: screens/Template/shared/JobTemplateForm.jsx:623
msgid "Host Config Key"
msgstr ""
@@ -3735,7 +3744,7 @@ msgstr ""
msgid "Host Failure"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:237
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281
msgid "Host Filter"
msgstr ""
@@ -3803,7 +3812,7 @@ msgstr ""
#: screens/Inventory/SmartInventory.jsx:71
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102
-#: util/getRelatedResourceDeleteDetails.js:147
+#: util/getRelatedResourceDeleteDetails.js:130
msgid "Hosts"
msgstr ""
@@ -3891,7 +3900,7 @@ msgstr ""
msgid "Icon URL"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:148
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156
msgid ""
"If checked, all variables for child groups\n"
@@ -3904,7 +3913,7 @@ msgstr ""
#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
#~ msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:125
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135
msgid ""
"If checked, any hosts and groups that were\n"
@@ -3921,7 +3930,7 @@ msgstr ""
#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:537
+#: screens/Template/shared/JobTemplateForm.jsx:538
msgid ""
"If enabled, run this playbook as an\n"
"administrator."
@@ -3938,7 +3947,7 @@ msgid ""
"--diff mode."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:478
+#: screens/Template/shared/JobTemplateForm.jsx:479
msgid ""
"If enabled, show the changes made by\n"
"Ansible tasks, where supported. This is equivalent\n"
@@ -3953,7 +3962,7 @@ msgstr ""
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:581
+#: screens/Template/shared/JobTemplateForm.jsx:582
msgid ""
"If enabled, simultaneous runs of this job\n"
"template will be allowed."
@@ -3967,7 +3976,7 @@ msgstr ""
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:589
+#: screens/Template/shared/JobTemplateForm.jsx:590
msgid ""
"If enabled, this will store gathered facts so they can\n"
"be viewed at the host level. Facts are persisted and\n"
@@ -4000,9 +4009,9 @@ msgid ""
msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107
@@ -4123,7 +4132,7 @@ msgid "Instance groups"
msgstr ""
#: screens/InstanceGroup/InstanceGroup.jsx:69
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76
#: screens/InstanceGroup/InstanceGroups.jsx:37
#: screens/InstanceGroup/Instances/InstanceList.jsx:148
@@ -4159,8 +4168,8 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
-#: util/getRelatedResourceDeleteDetails.js:226
-#: util/getRelatedResourceDeleteDetails.js:294
+#: util/getRelatedResourceDeleteDetails.js:209
+#: util/getRelatedResourceDeleteDetails.js:277
msgid "Inventories"
msgstr ""
@@ -4220,14 +4229,14 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:161
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:180
#: util/getRelatedResourceDeleteDetails.js:74
-#: util/getRelatedResourceDeleteDetails.js:171
+#: util/getRelatedResourceDeleteDetails.js:154
msgid "Inventory Sources"
msgstr ""
-#: components/JobList/JobList.jsx:186
+#: components/JobList/JobList.jsx:185
#: components/JobList/JobListItem.jsx:33
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37
#: components/Workflow/WorkflowLegend.jsx:100
@@ -4239,7 +4248,7 @@ msgstr ""
msgid "Inventory Update"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:226
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102
msgid "Inventory file"
msgstr ""
@@ -4284,7 +4293,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:28
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42
-#: screens/Project/ProjectList/ProjectListItem.jsx:62
+#: screens/Project/ProjectList/ProjectListItem.jsx:69
msgid "JOB ID:"
msgstr ""
@@ -4328,7 +4337,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:148
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235
-#: screens/Template/shared/JobTemplateForm.jsx:458
+#: screens/Template/shared/JobTemplateForm.jsx:459
msgid "Job Slicing"
msgstr ""
@@ -4343,12 +4352,12 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350
#: screens/Job/JobDetail/JobDetail.jsx:309
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342
-#: screens/Template/shared/JobTemplateForm.jsx:498
+#: screens/Template/shared/JobTemplateForm.jsx:499
msgid "Job Tags"
msgstr ""
#: components/JobList/JobListItem.jsx:137
-#: components/TemplateList/TemplateList.jsx:201
+#: components/TemplateList/TemplateList.jsx:200
#: components/Workflow/WorkflowLegend.jsx:92
#: components/Workflow/WorkflowNodeHelp.jsx:47
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96
@@ -4366,7 +4375,7 @@ msgstr ""
#: screens/Project/Projects.jsx:32
#: util/getRelatedResourceDeleteDetails.js:56
#: util/getRelatedResourceDeleteDetails.js:108
-#: util/getRelatedResourceDeleteDetails.js:157
+#: util/getRelatedResourceDeleteDetails.js:140
msgid "Job Templates"
msgstr ""
@@ -4386,7 +4395,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:180
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145
-#: screens/Template/shared/JobTemplateForm.jsx:220
+#: screens/Template/shared/JobTemplateForm.jsx:221
msgid "Job Type"
msgstr ""
@@ -4522,7 +4531,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:294
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195
-#: screens/Template/shared/JobTemplateForm.jsx:369
+#: screens/Template/shared/JobTemplateForm.jsx:370
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217
msgid "Labels"
msgstr ""
@@ -4574,7 +4583,7 @@ msgstr ""
msgid "Last Name"
msgstr ""
-#: components/TemplateList/TemplateList.jsx:225
+#: components/TemplateList/TemplateList.jsx:223
#: components/TemplateList/TemplateListItem.jsx:156
msgid "Last Ran"
msgstr ""
@@ -4591,12 +4600,17 @@ msgstr ""
msgid "Last job run"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58
+#: screens/Project/ProjectList/ProjectListItem.jsx:236
msgid "Last modified"
msgstr ""
+#: screens/Project/ProjectList/ProjectListItem.jsx:241
+msgid "Last used"
+msgstr ""
+
#: components/AdHocCommands/AdHocCommandsWizard.jsx:92
#: components/LaunchPrompt/steps/usePreviewStep.jsx:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55
@@ -4683,7 +4697,7 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326
#: screens/Job/JobDetail/JobDetail.jsx:238
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225
-#: screens/Template/shared/JobTemplateForm.jsx:420
+#: screens/Template/shared/JobTemplateForm.jsx:421
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163
msgid "Limit"
msgstr ""
@@ -4744,7 +4758,7 @@ msgid "Lookup typeahead"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40
-#: screens/Project/ProjectList/ProjectListItem.jsx:60
+#: screens/Project/ProjectList/ProjectListItem.jsx:67
msgid "MOST RECENT SYNC"
msgstr ""
@@ -4768,7 +4782,7 @@ msgstr ""
msgid "Managed nodes"
msgstr ""
-#: components/JobList/JobList.jsx:189
+#: components/JobList/JobList.jsx:188
#: components/JobList/JobListItem.jsx:36
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40
#: screens/Job/JobDetail/JobDetail.jsx:100
@@ -4803,8 +4817,8 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90
#: screens/Project/ProjectDetail/ProjectDetail.jsx:111
-#: screens/Project/ProjectList/ProjectList.jsx:150
-#: screens/Project/ProjectList/ProjectListItem.jsx:134
+#: screens/Project/ProjectList/ProjectList.jsx:149
+#: screens/Project/ProjectList/ProjectListItem.jsx:149
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89
msgid "Manual"
msgstr ""
@@ -5019,8 +5033,8 @@ msgstr ""
#: components/AssociateModal/AssociateModal.jsx:139
#: components/AssociateModal/AssociateModal.jsx:154
#: components/HostForm/HostForm.jsx:87
-#: components/JobList/JobList.jsx:169
-#: components/JobList/JobList.jsx:218
+#: components/JobList/JobList.jsx:168
+#: components/JobList/JobList.jsx:217
#: components/JobList/JobListItem.jsx:69
#: components/LaunchPrompt/steps/CredentialsStep.jsx:174
#: components/LaunchPrompt/steps/CredentialsStep.jsx:189
@@ -5059,8 +5073,8 @@ msgstr ""
#: components/Schedule/ScheduleList/ScheduleList.jsx:192
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78
#: components/Schedule/shared/ScheduleForm.jsx:102
-#: components/TemplateList/TemplateList.jsx:189
-#: components/TemplateList/TemplateList.jsx:222
+#: components/TemplateList/TemplateList.jsx:188
+#: components/TemplateList/TemplateList.jsx:221
#: components/TemplateList/TemplateListItem.jsx:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37
@@ -5097,8 +5111,8 @@ msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111
@@ -5112,7 +5126,7 @@ msgstr ""
#: screens/Host/HostList/HostListItem.jsx:34
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:64
#: screens/InstanceGroup/Instances/InstanceList.jsx:155
#: screens/InstanceGroup/Instances/InstanceList.jsx:162
@@ -5134,7 +5148,7 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:197
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67
@@ -5165,7 +5179,7 @@ msgstr ""
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
-#: screens/Project/ProjectList/ProjectListItem.jsx:99
+#: screens/Project/ProjectList/ProjectListItem.jsx:114
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
#: screens/Team/TeamDetail/TeamDetail.jsx:34
@@ -5184,7 +5198,7 @@ msgstr ""
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115
-#: screens/Template/shared/JobTemplateForm.jsx:207
+#: screens/Template/shared/JobTemplateForm.jsx:208
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
@@ -5405,7 +5419,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188
#: screens/NotificationTemplate/NotificationTemplates.jsx:13
#: screens/NotificationTemplate/NotificationTemplates.jsx:21
-#: util/getRelatedResourceDeleteDetails.js:205
+#: util/getRelatedResourceDeleteDetails.js:188
msgid "Notification Templates"
msgstr ""
@@ -5479,7 +5493,7 @@ msgstr ""
#: screens/Setting/shared/SharedFields.jsx:97
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:53
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "Off"
msgstr ""
@@ -5497,7 +5511,7 @@ msgstr ""
#: screens/Setting/shared/SharedFields.jsx:96
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:52
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "On"
msgstr ""
@@ -5535,7 +5549,7 @@ msgstr ""
msgid "Option Details"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:372
+#: screens/Template/shared/JobTemplateForm.jsx:373
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:220
msgid ""
"Optional labels that describe this job template,\n"
@@ -5561,12 +5575,12 @@ msgstr ""
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141
#: screens/Credential/shared/TypeInputsSubForm.jsx:49
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:250
#: screens/Project/ProjectDetail/ProjectDetail.jsx:130
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180
-#: screens/Template/shared/JobTemplateForm.jsx:530
+#: screens/Template/shared/JobTemplateForm.jsx:531
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246
msgid "Options"
msgstr ""
@@ -5588,17 +5602,19 @@ msgstr ""
#: screens/Application/ApplicationsList/ApplicationsList.jsx:163
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:202
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69
#: screens/Project/ProjectDetail/ProjectDetail.jsx:98
+#: screens/Project/ProjectList/ProjectListItem.jsx:215
+#: screens/Project/ProjectList/ProjectListItem.jsx:226
#: screens/Team/TeamDetail/TeamDetail.jsx:40
#: screens/Team/TeamList/TeamList.jsx:155
#: screens/Team/TeamList/TeamListItem.jsx:45
@@ -5625,15 +5641,15 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:97
#: screens/ActivityStream/ActivityStream.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:133
-#: screens/Organization/OrganizationList/OrganizationList.jsx:179
+#: screens/Organization/OrganizationList/OrganizationList.jsx:132
+#: screens/Organization/OrganizationList/OrganizationList.jsx:178
#: screens/Organization/Organizations.jsx:16
#: screens/Organization/Organizations.jsx:27
#: screens/User/User.jsx:65
#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55
#: screens/User/Users.jsx:34
-#: util/getRelatedResourceDeleteDetails.js:256
-#: util/getRelatedResourceDeleteDetails.js:290
+#: util/getRelatedResourceDeleteDetails.js:239
+#: util/getRelatedResourceDeleteDetails.js:273
msgid "Organizations"
msgstr ""
@@ -5651,7 +5667,7 @@ msgid "Output"
msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:48
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:121
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
msgid "Overwrite"
msgstr ""
@@ -5660,7 +5676,7 @@ msgstr ""
msgid "Overwrite Variables"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:144
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
msgid "Overwrite variables"
msgstr ""
@@ -5710,7 +5726,7 @@ msgstr ""
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:392
+#: screens/Template/shared/JobTemplateForm.jsx:393
msgid ""
"Pass extra command line variables to the playbook. This is the\n"
"-e or --extra-vars command line parameter for ansible-playbook.\n"
@@ -5779,7 +5795,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:138
#: screens/Job/JobDetail/JobDetail.jsx:237
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223
-#: screens/Template/shared/JobTemplateForm.jsx:330
+#: screens/Template/shared/JobTemplateForm.jsx:331
msgid "Playbook"
msgstr ""
@@ -5797,7 +5813,7 @@ msgstr ""
msgid "Playbook Directory"
msgstr ""
-#: components/JobList/JobList.jsx:187
+#: components/JobList/JobList.jsx:186
#: components/JobList/JobListItem.jsx:34
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38
#: screens/Job/JobDetail/JobDetail.jsx:98
@@ -5852,7 +5868,7 @@ msgstr ""
msgid "Please select a day number between 1 and 31."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:755
+#: screens/Template/shared/JobTemplateForm.jsx:756
msgid "Please select an Inventory or check the Prompt on Launch option."
msgstr ""
@@ -5918,7 +5934,7 @@ msgstr ""
msgid "Private key passphrase"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:536
+#: screens/Template/shared/JobTemplateForm.jsx:537
msgid "Privilege Escalation"
msgstr ""
@@ -5934,7 +5950,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:123
#: components/PromptDetail/PromptJobTemplateDetail.jsx:131
#: components/TemplateList/TemplateListItem.jsx:271
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:216
#: screens/Job/JobDetail/JobDetail.jsx:212
#: screens/Job/JobDetail/JobDetail.jsx:227
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151
@@ -5975,8 +5991,8 @@ msgstr ""
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
-#: util/getRelatedResourceDeleteDetails.js:219
-#: util/getRelatedResourceDeleteDetails.js:249
+#: util/getRelatedResourceDeleteDetails.js:202
+#: util/getRelatedResourceDeleteDetails.js:232
msgid "Projects"
msgstr ""
@@ -5993,7 +6009,7 @@ msgstr ""
msgid "Prompt Overrides"
msgstr ""
-#: components/CodeEditor/VariablesField.jsx:222
+#: components/CodeEditor/VariablesField.jsx:230
#: components/FieldWithPrompt/FieldWithPrompt.jsx:47
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167
msgid "Prompt on launch"
@@ -6009,7 +6025,7 @@ msgstr ""
msgid "Prompts"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:423
+#: screens/Template/shared/JobTemplateForm.jsx:424
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:166
msgid ""
"Provide a host pattern to further constrain\n"
@@ -6060,16 +6076,16 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:152
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243
-#: screens/Template/shared/JobTemplateForm.jsx:609
+#: screens/Template/shared/JobTemplateForm.jsx:610
msgid "Provisioning Callback URL"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:604
+#: screens/Template/shared/JobTemplateForm.jsx:605
msgid "Provisioning Callback details"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:541
-#: screens/Template/shared/JobTemplateForm.jsx:544
+#: screens/Template/shared/JobTemplateForm.jsx:542
+#: screens/Template/shared/JobTemplateForm.jsx:545
msgid "Provisioning Callbacks"
msgstr ""
@@ -6158,7 +6174,7 @@ msgstr ""
msgid "Redirecting to subscription detail"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:413
+#: screens/Template/shared/JobTemplateForm.jsx:414
msgid ""
"Refer to the Ansible documentation for details\n"
"about the configuration file."
@@ -6196,7 +6212,7 @@ msgid "Related Groups"
msgstr ""
#: components/JobList/JobListItem.jsx:118
-#: components/LaunchButton/ReLaunchDropDown.jsx:78
+#: components/LaunchButton/ReLaunchDropDown.jsx:81
#: screens/Job/JobDetail/JobDetail.jsx:384
#: screens/Job/JobDetail/JobDetail.jsx:392
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:162
@@ -6208,16 +6224,16 @@ msgstr ""
msgid "Relaunch Job"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:39
+#: components/LaunchButton/ReLaunchDropDown.jsx:41
msgid "Relaunch all hosts"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:51
+#: components/LaunchButton/ReLaunchDropDown.jsx:54
msgid "Relaunch failed hosts"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:29
-#: components/LaunchButton/ReLaunchDropDown.jsx:34
+#: components/LaunchButton/ReLaunchDropDown.jsx:30
+#: components/LaunchButton/ReLaunchDropDown.jsx:35
msgid "Relaunch on"
msgstr ""
@@ -6383,8 +6399,8 @@ msgid "Revert to factory default."
msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:236
-#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:137
+#: screens/Project/ProjectList/ProjectList.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:152
msgid "Revision"
msgstr ""
@@ -6420,7 +6436,7 @@ msgstr ""
#: screens/Credential/shared/ExternalTestModal.jsx:90
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24
-#: screens/Template/shared/JobTemplateForm.jsx:171
+#: screens/Template/shared/JobTemplateForm.jsx:172
msgid "Run"
msgstr ""
@@ -6451,7 +6467,7 @@ msgstr ""
msgid "Run type"
msgstr ""
-#: components/JobList/JobList.jsx:204
+#: components/JobList/JobList.jsx:203
#: components/TemplateList/TemplateListItem.jsx:106
#: components/Workflow/WorkflowNodeHelp.jsx:83
msgid "Running"
@@ -6502,7 +6518,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:31
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45
-#: screens/Project/ProjectList/ProjectListItem.jsx:65
+#: screens/Project/ProjectList/ProjectListItem.jsx:72
msgid "STATUS:"
msgstr ""
@@ -6685,7 +6701,7 @@ msgstr ""
msgid "Select Items from List"
msgstr ""
-#: screens/Template/shared/LabelSelect.jsx:88
+#: screens/Template/shared/LabelSelect.jsx:92
msgid "Select Labels"
msgstr ""
@@ -6709,7 +6725,7 @@ msgstr ""
msgid "Select a Resource Type"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:310
+#: screens/Template/shared/JobTemplateForm.jsx:311
msgid ""
"Select a branch for the job template. This branch is applied to\n"
"all job template nodes that prompt for a branch."
@@ -6752,7 +6768,7 @@ msgstr ""
msgid "Select a playbook"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:296
+#: screens/Template/shared/JobTemplateForm.jsx:297
msgid "Select a project before editing the execution environment."
msgstr ""
@@ -6760,7 +6776,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr ""
@@ -6810,8 +6826,8 @@ msgstr ""
#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41
#: screens/Team/shared/TeamForm.jsx:20
#: screens/Template/Survey/SurveyQuestionForm.jsx:28
-#: screens/Template/shared/JobTemplateForm.jsx:83
-#: screens/Template/shared/JobTemplateForm.jsx:147
+#: screens/Template/shared/JobTemplateForm.jsx:84
+#: screens/Template/shared/JobTemplateForm.jsx:148
#: screens/User/shared/UserForm.jsx:49
msgid "Select a value for this field"
msgstr ""
@@ -6841,7 +6857,7 @@ msgstr ""
msgid "Select an organization before editing the default execution environment."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:354
+#: screens/Template/shared/JobTemplateForm.jsx:355
msgid ""
"Select credentials that allow Tower to access the nodes this job will be ran\n"
"against. You can only select one credential of each type. For machine credentials (SSH),\n"
@@ -6890,7 +6906,7 @@ msgstr ""
msgid "Select source path"
msgstr ""
-#: components/MultiSelect/TagMultiSelect.jsx:55
+#: components/MultiSelect/TagMultiSelect.jsx:60
msgid "Select tags"
msgstr ""
@@ -6898,7 +6914,7 @@ msgstr ""
msgid "Select the Instance Groups for this Inventory to run on."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:493
+#: screens/Template/shared/JobTemplateForm.jsx:494
msgid ""
"Select the Instance Groups for this Organization\n"
"to run on."
@@ -6932,12 +6948,12 @@ msgstr ""
msgid "Select the default execution environment for this project."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:293
+#: screens/Template/shared/JobTemplateForm.jsx:294
msgid "Select the execution environment for this job template."
msgstr ""
#: components/Lookup/InventoryLookup.jsx:89
-#: screens/Template/shared/JobTemplateForm.jsx:255
+#: screens/Template/shared/JobTemplateForm.jsx:256
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
@@ -6964,11 +6980,11 @@ msgstr ""
msgid "Select the inventory that this host will belong to."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:334
+#: screens/Template/shared/JobTemplateForm.jsx:335
msgid "Select the playbook to be executed by this job."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:272
+#: screens/Template/shared/JobTemplateForm.jsx:273
msgid ""
"Select the project containing the playbook\n"
"you want this job to execute."
@@ -7004,7 +7020,7 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryListItem.jsx:79
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43
-#: screens/Project/ProjectList/ProjectListItem.jsx:97
+#: screens/Project/ProjectList/ProjectListItem.jsx:112
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:259
#: screens/Team/TeamList/TeamListItem.jsx:38
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60
@@ -7108,7 +7124,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:144
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232
-#: screens/Template/shared/JobTemplateForm.jsx:475
+#: screens/Template/shared/JobTemplateForm.jsx:476
msgid "Show Changes"
msgstr ""
@@ -7181,11 +7197,11 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368
#: screens/Job/JobDetail/JobDetail.jsx:327
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357
-#: screens/Template/shared/JobTemplateForm.jsx:514
+#: screens/Template/shared/JobTemplateForm.jsx:515
msgid "Skip Tags"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:517
+#: screens/Template/shared/JobTemplateForm.jsx:518
msgid ""
"Skip tags are useful when you have a\n"
"large playbook, and you want to skip specific parts of a\n"
@@ -7258,7 +7274,7 @@ msgid "Sort question order"
msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:86
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/shared/InventorySourceForm.jsx:135
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86
msgid "Source"
@@ -7272,7 +7288,7 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321
#: screens/Project/ProjectDetail/ProjectDetail.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220
-#: screens/Template/shared/JobTemplateForm.jsx:306
+#: screens/Template/shared/JobTemplateForm.jsx:307
msgid "Source Control Branch"
msgstr ""
@@ -7306,13 +7322,13 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
#: screens/Project/ProjectDetail/ProjectDetail.jsx:114
-#: screens/Project/ProjectList/ProjectList.jsx:158
+#: screens/Project/ProjectList/ProjectList.jsx:157
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97
msgid "Source Control URL"
msgstr ""
-#: components/JobList/JobList.jsx:185
+#: components/JobList/JobList.jsx:184
#: components/JobList/JobListItem.jsx:32
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39
#: screens/Job/JobDetail/JobDetail.jsx:93
@@ -7344,7 +7360,7 @@ msgstr ""
msgid "Source phone number"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34
msgid "Source variables"
msgstr ""
@@ -7409,7 +7425,7 @@ msgstr ""
msgid "Start"
msgstr ""
-#: components/JobList/JobList.jsx:221
+#: components/JobList/JobList.jsx:220
#: components/JobList/JobListItem.jsx:84
msgid "Start Time"
msgstr ""
@@ -7437,21 +7453,21 @@ msgid "Start sync source"
msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:141
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79
msgid "Started"
msgstr ""
-#: components/JobList/JobList.jsx:198
-#: components/JobList/JobList.jsx:219
+#: components/JobList/JobList.jsx:197
+#: components/JobList/JobList.jsx:218
#: components/JobList/JobListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:201
+#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryListItem.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:174
-#: screens/Project/ProjectList/ProjectListItem.jsx:119
+#: screens/Project/ProjectList/ProjectListItem.jsx:134
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
@@ -7544,7 +7560,7 @@ msgstr ""
msgid "Successful"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:148
+#: screens/Project/ProjectList/ProjectListItem.jsx:163
msgid "Successfully copied to clipboard!"
msgstr ""
@@ -7589,25 +7605,25 @@ msgstr ""
msgid "Sync"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:155
+#: screens/Project/ProjectList/ProjectListItem.jsx:170
#: screens/Project/shared/ProjectSyncButton.jsx:31
msgid "Sync Project"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:200
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:203
msgid "Sync all"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:194
msgid "Sync all sources"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:232
msgid "Sync error"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:141
+#: screens/Project/ProjectList/ProjectListItem.jsx:156
msgid "Sync for revision"
msgstr ""
@@ -7652,7 +7668,7 @@ msgstr ""
msgid "Tabs"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:501
+#: screens/Template/shared/JobTemplateForm.jsx:502
msgid ""
"Tags are useful when you have a large\n"
"playbook, and you want to run a specific part of a\n"
@@ -7737,7 +7753,7 @@ msgstr ""
#: screens/User/UserTeams/UserTeamList.jsx:176
#: screens/User/UserTeams/UserTeamList.jsx:244
#: screens/User/Users.jsx:33
-#: util/getRelatedResourceDeleteDetails.js:198
+#: util/getRelatedResourceDeleteDetails.js:181
msgid "Teams"
msgstr ""
@@ -7757,8 +7773,8 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82
#: screens/Template/Templates.jsx:16
-#: util/getRelatedResourceDeleteDetails.js:242
-#: util/getRelatedResourceDeleteDetails.js:299
+#: util/getRelatedResourceDeleteDetails.js:225
+#: util/getRelatedResourceDeleteDetails.js:282
msgid "Templates"
msgstr ""
@@ -7825,7 +7841,7 @@ msgstr ""
#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:469
+#: screens/Template/shared/JobTemplateForm.jsx:470
msgid ""
"The amount of time (in seconds) to run\n"
"before the job is canceled. Defaults to 0 for no job\n"
@@ -7869,7 +7885,7 @@ msgstr ""
#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:407
+#: screens/Template/shared/JobTemplateForm.jsx:408
msgid ""
"The number of parallel or simultaneous\n"
"processes to use while executing the playbook. An empty value,\n"
@@ -7977,7 +7993,7 @@ msgstr ""
msgid "Third"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr ""
@@ -8102,7 +8118,7 @@ msgstr ""
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr ""
@@ -8126,7 +8142,7 @@ msgstr ""
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:150
+#: screens/Template/shared/JobTemplateForm.jsx:151
msgid "This project needs to be updated"
msgstr ""
@@ -8217,7 +8233,7 @@ msgstr ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169
-#: screens/Template/shared/JobTemplateForm.jsx:468
+#: screens/Template/shared/JobTemplateForm.jsx:469
msgid "Timeout"
msgstr ""
@@ -8319,7 +8335,7 @@ msgstr ""
msgid "Top Pagination"
msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
msgid "Total Jobs"
msgstr ""
@@ -8371,7 +8387,7 @@ msgstr ""
msgid "Twilio"
msgstr ""
-#: components/JobList/JobList.jsx:220
+#: components/JobList/JobList.jsx:219
#: components/JobList/JobListItem.jsx:82
#: components/Lookup/ProjectLookup.jsx:110
#: components/NotificationList/NotificationList.jsx:220
@@ -8379,8 +8395,8 @@ msgstr ""
#: components/PromptDetail/PromptDetail.jsx:112
#: components/Schedule/ScheduleList/ScheduleList.jsx:174
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95
-#: components/TemplateList/TemplateList.jsx:198
-#: components/TemplateList/TemplateList.jsx:223
+#: components/TemplateList/TemplateList.jsx:197
+#: components/TemplateList/TemplateList.jsx:222
#: components/TemplateList/TemplateListItem.jsx:155
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
@@ -8391,7 +8407,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
@@ -8404,7 +8420,7 @@ msgstr ""
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
-#: screens/Project/ProjectList/ProjectListItem.jsx:132
+#: screens/Project/ProjectList/ProjectListItem.jsx:147
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86
@@ -8469,12 +8485,12 @@ msgstr ""
msgid "Update on Project Update"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:163
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171
msgid "Update on launch"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:173
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199
msgid "Update on project update"
msgstr ""
@@ -8653,7 +8669,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:356
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211
-#: screens/Template/shared/JobTemplateForm.jsx:389
+#: screens/Template/shared/JobTemplateForm.jsx:390
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:239
msgid "Variables"
msgstr ""
@@ -8680,11 +8696,11 @@ msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:102
#: components/PromptDetail/PromptJobTemplateDetail.jsx:141
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:239
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227
-#: screens/Template/shared/JobTemplateForm.jsx:441
+#: screens/Template/shared/JobTemplateForm.jsx:442
msgid "Verbosity"
msgstr ""
@@ -9017,7 +9033,7 @@ msgstr ""
msgid "Webhook URL"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:637
+#: screens/Template/shared/JobTemplateForm.jsx:638
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:281
msgid "Webhook details"
msgstr ""
@@ -9061,7 +9077,7 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:153
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161
msgid ""
"When not checked, a merge will be performed,\n"
@@ -9074,7 +9090,7 @@ msgstr ""
#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
#~ msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:134
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144
msgid ""
"When not checked, local child\n"
@@ -9101,14 +9117,14 @@ msgstr ""
#: routeConfig.js:55
#: screens/ActivityStream/ActivityStream.jsx:154
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209
#: screens/WorkflowApproval/WorkflowApprovals.jsx:12
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:19
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:22
msgid "Workflow Approvals"
msgstr ""
-#: components/JobList/JobList.jsx:190
+#: components/JobList/JobList.jsx:189
#: components/JobList/JobListItem.jsx:37
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41
#: screens/Job/JobDetail/JobDetail.jsx:101
@@ -9126,13 +9142,13 @@ msgstr ""
msgid "Workflow Job Template"
msgstr ""
-#: util/getRelatedResourceDeleteDetails.js:139
-#: util/getRelatedResourceDeleteDetails.js:181
-#: util/getRelatedResourceDeleteDetails.js:284
+#: util/getRelatedResourceDeleteDetails.js:122
+#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:267
msgid "Workflow Job Template Nodes"
msgstr ""
-#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:147
msgid "Workflow Job Templates"
msgstr ""
@@ -9234,7 +9250,7 @@ msgstr ""
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr ""
@@ -9272,12 +9288,12 @@ msgstr ""
msgid "Zoom Out"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:734
+#: screens/Template/shared/JobTemplateForm.jsx:735
#: screens/Template/shared/WebhookSubForm.jsx:155
msgid "a new webhook key will be generated on save."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:731
+#: screens/Template/shared/JobTemplateForm.jsx:732
#: screens/Template/shared/WebhookSubForm.jsx:143
msgid "a new webhook url will be generated on save."
msgstr ""
@@ -9308,7 +9324,7 @@ msgstr ""
msgid "brand logo"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:276
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr ""
@@ -9317,7 +9333,7 @@ msgstr ""
msgid "command"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:265
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr ""
@@ -9332,7 +9348,7 @@ msgstr ""
#~ msgid "controller instance"
#~ msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:140
+#: screens/Project/ProjectList/ProjectListItem.jsx:155
msgid "copy to clipboard disabled"
msgstr ""
@@ -9358,7 +9374,7 @@ msgstr ""
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:275
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156
#: screens/Project/ProjectDetail/ProjectDetail.jsx:166
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154
@@ -9482,8 +9498,8 @@ msgstr ""
msgid "per page"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:74
-#: components/LaunchButton/ReLaunchDropDown.jsx:96
+#: components/LaunchButton/ReLaunchDropDown.jsx:77
+#: components/LaunchButton/ReLaunchDropDown.jsx:99
msgid "relaunch jobs"
msgstr ""
@@ -9507,7 +9523,7 @@ msgstr ""
msgid "sec"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
msgid "seconds"
msgstr ""
@@ -9575,6 +9591,46 @@ msgstr ""
#~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}"
#~ msgstr ""
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215
+msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
+msgstr ""
+
+#: screens/Credential/CredentialList/CredentialList.jsx:178
+msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171
+msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187
+msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:223
+msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:183
+msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
+msgstr ""
+
+#: screens/Inventory/InventoryList/InventoryList.jsx:222
+msgid "{0, plural, one {This invetory is currently being used by some temeplates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Organization/OrganizationList/OrganizationList.jsx:181
+msgid "{0, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Project/ProjectList/ProjectList.jsx:203
+msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: components/TemplateList/TemplateList.jsx:243
+msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
#: components/JobList/JobListCancelButton.jsx:72
msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}"
msgstr ""
diff --git a/awx/ui_next/src/locales/zh/messages.po b/awx/ui_next/src/locales/zh/messages.po
index 59ed37377b..8cc364baaa 100644
--- a/awx/ui_next/src/locales/zh/messages.po
+++ b/awx/ui_next/src/locales/zh/messages.po
@@ -1,12 +1,16 @@
+msgid ""
+msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: @lingui/cli\n"
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
-"Language: zh \n"
+"Language: zh\n"
"Language-Team: \n"
"Plural-Forms: \n"
+"POT-Creation-Date: \n"
+"Content-Type: \n"
#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43
msgid "(Limited to first 10)"
@@ -30,7 +34,7 @@ msgstr "- 启用并发作业"
msgid "- Enable Webhooks"
msgstr "- 启用 Webhook"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228
msgid "/ (project root)"
msgstr "/ (project root)"
@@ -41,16 +45,16 @@ msgstr "/ (project root)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:42
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106
-#: screens/Template/shared/JobTemplateForm.jsx:180
+#: screens/Template/shared/JobTemplateForm.jsx:181
msgid "0 (Normal)"
msgstr "0(普通)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:105
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82
msgid "0 (Warning)"
msgstr "0(警告)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83
msgid "1 (Info)"
msgstr "1(信息)"
@@ -62,11 +66,11 @@ msgstr "1(信息)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:43
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107
-#: screens/Template/shared/JobTemplateForm.jsx:181
+#: screens/Template/shared/JobTemplateForm.jsx:182
msgid "1 (Verbose)"
msgstr "1(详细)"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84
msgid "2 (Debug)"
msgstr "2(调试)"
@@ -78,7 +82,7 @@ msgstr "2(调试)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:44
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108
-#: screens/Template/shared/JobTemplateForm.jsx:182
+#: screens/Template/shared/JobTemplateForm.jsx:183
msgid "2 (More Verbose)"
msgstr "2(更多详细内容)"
@@ -89,7 +93,7 @@ msgstr "2(更多详细内容)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:45
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109
-#: screens/Template/shared/JobTemplateForm.jsx:183
+#: screens/Template/shared/JobTemplateForm.jsx:184
msgid "3 (Debug)"
msgstr "3(调试)"
@@ -100,7 +104,7 @@ msgstr "3(调试)"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:46
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110
-#: screens/Template/shared/JobTemplateForm.jsx:184
+#: screens/Template/shared/JobTemplateForm.jsx:185
msgid "4 (Connection Debug)"
msgstr "4(连接调试)"
@@ -116,8 +120,12 @@ msgid ""
msgstr ""
#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57
-msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available."
-msgstr "要获取的 refspec(传递至 Ansible git 模块)。此参数允许通过分支字段访问原本不可用的引用。"
+#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available."
+#~ msgstr "要获取的 refspec(传递至 Ansible git 模块)。此参数允许通过分支字段访问原本不可用的引用。"
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:138
+msgid "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com0>. For more information, see the <1>User Guide1>."
+msgstr ""
#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128
#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281
@@ -177,11 +185,11 @@ msgstr "帐户令牌"
msgid "Action"
msgstr "操作"
-#: components/JobList/JobList.jsx:225
+#: components/JobList/JobList.jsx:222
#: components/JobList/JobListItem.jsx:90
#: components/Schedule/ScheduleList/ScheduleList.jsx:176
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112
-#: components/TemplateList/TemplateList.jsx:227
+#: components/TemplateList/TemplateList.jsx:224
#: components/TemplateList/TemplateListItem.jsx:157
#: screens/ActivityStream/ActivityStream.jsx:260
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
@@ -191,13 +199,13 @@ msgstr "操作"
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
#: screens/Host/HostList/HostList.jsx:170
#: screens/Host/HostList/HostListItem.jsx:48
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:204
+#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryListItem.jsx:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
@@ -206,7 +214,7 @@ msgstr "操作"
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:152
+#: screens/Project/ProjectList/ProjectListItem.jsx:167
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
#: screens/User/UserList/UserList.jsx:172
@@ -338,8 +346,8 @@ msgid "Add workflow template"
msgstr "添加工作流模板"
#: src/screens/ActivityStream/ActivityStream.jsx:187
-msgid "Adminisration"
-msgstr "管理"
+#~ msgid "Adminisration"
+#~ msgstr "管理"
#: routeConfig.js:114
#: screens/ActivityStream/ActivityStream.jsx:188
@@ -359,7 +367,7 @@ msgstr ""
msgid "Advanced search value input"
msgstr "高级搜索值输入"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:175
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203
msgid ""
"After every project update where the SCM revision\n"
@@ -370,8 +378,8 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177
-msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format."
-msgstr "因 SCM 修订版本变更进行每次项目更新后,请在执行作业任务前从所选源刷新清单。这是面向静态内容,如 Ansible 清单 .ini 文件格式。"
+#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format."
+#~ msgstr "因 SCM 修订版本变更进行每次项目更新后,请在执行作业任务前从所选源刷新清单。这是面向静态内容,如 Ansible 清单 .ini 文件格式。"
#: components/Schedule/shared/FrequencyDetailSubform.jsx:508
msgid "After number of occurrences"
@@ -389,7 +397,7 @@ msgstr ""
msgid "Alert modal"
msgstr "警报模式"
-#: components/LaunchButton/ReLaunchDropDown.jsx:46
+#: components/LaunchButton/ReLaunchDropDown.jsx:48
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:250
msgid "All"
msgstr "所有"
@@ -409,9 +417,11 @@ msgstr "允许分支覆写"
msgid "Allow Provisioning Callbacks"
msgstr "允许置备回调"
-#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102
-msgid "Allow changing the Source Control branch or revision in a job template that uses this project."
-msgstr "允许在使用此项目的作业模板中更改 Source Control 分支或修订版本。"
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:115
+msgid ""
+"Allow changing the Source Control branch or revision in a job\n"
+"template that uses this project."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102
#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project."
@@ -447,8 +457,8 @@ msgstr "必须选择一个清单"
#: src/screens/Organization/shared/OrganizationForm.jsx:82
#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128
#: src/screens/Project/shared/ProjectForm.jsx:274
-msgid "Ansible Environment"
-msgstr "Ansible 环境"
+#~ msgid "Ansible Environment"
+#~ msgstr "Ansible 环境"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98
msgid "Ansible Tower"
@@ -460,12 +470,12 @@ msgid "Ansible Tower Documentation."
msgstr "Ansible Tower 文档"
#: src/components/About/About.jsx:58
-msgid "Ansible Version"
-msgstr "Ansible 版本"
+#~ msgid "Ansible Version"
+#~ msgstr "Ansible 版本"
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204
-msgid "Ansible environment"
-msgstr "Ansible 环境"
+#~ msgid "Ansible environment"
+#~ msgstr "Ansible 环境"
#: screens/Template/Survey/SurveyQuestionForm.jsx:33
msgid "Answer type"
@@ -515,7 +525,7 @@ msgstr "未找到应用程序。"
#: screens/Application/Applications.jsx:35
#: screens/Application/ApplicationsList/ApplicationsList.jsx:116
#: screens/Application/ApplicationsList/ApplicationsList.jsx:154
-#: util/getRelatedResourceDeleteDetails.js:233
+#: util/getRelatedResourceDeleteDetails.js:216
msgid "Applications"
msgstr "应用程序"
@@ -552,8 +562,8 @@ msgid "April"
msgstr "4 月"
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116
-msgid "Are you sure you want to delete the {0} below?"
-msgstr "您确定要删除以下 {0} 吗?"
+#~ msgid "Are you sure you want to delete the {0} below?"
+#~ msgstr "您确定要删除以下 {0} 吗?"
#: components/DeleteButton/DeleteButton.jsx:128
msgid "Are you sure you want to delete:"
@@ -765,9 +775,13 @@ msgstr "返回到实例组"
msgid "Back to management jobs"
msgstr "返回到管理作业"
-#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70
-msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks."
-msgstr "用于定位 playbook 的基本路径。位于该路径中的目录将列在 playbook 目录下拉列表中。基本路径和所选 playbook 目录一起提供了用于定位 playbook 的完整路径。"
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70
+msgid ""
+"Base path used for locating playbooks. Directories\n"
+"found inside this path will be listed in the playbook directory drop-down.\n"
+"Together the base path and selected playbook directory provide the full\n"
+"path used to locate playbooks."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70
#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks."
@@ -777,9 +791,13 @@ msgstr "用于定位 playbook 的基本路径。位于该路径中的目录将
msgid "Basic auth password"
msgstr "基本验证密码"
-#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33
-msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec."
-msgstr "要签出的分支。除了分支外,您可以输入标签、提交散列和任意 refs。除非你还提供了自定义 refspec,否则某些提交散列和 refs 可能无法使用。"
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33
+msgid ""
+"Branch to checkout. In addition to branches,\n"
+"you can input tags, commit hashes, and arbitrary refs. Some\n"
+"commit hashes and refs may not be available unless you also\n"
+"provide a custom refspec."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33
#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec."
@@ -804,7 +822,7 @@ msgstr ""
msgid "Cache Timeout"
msgstr "缓存超时"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234
msgid "Cache timeout"
msgstr "缓存超时"
@@ -825,7 +843,7 @@ msgstr "缓存超时(秒)"
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:279
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -927,15 +945,17 @@ msgstr "取消同步源"
msgid "Canceled"
msgstr "已取消"
-#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153
-msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type."
-msgstr "在不提供日志记录聚合器主机和日志记录聚合器类型的情况下,无法启用日志聚合器。"
+#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153
+msgid ""
+"Cannot enable log aggregator without providing\n"
+"logging aggregator host and logging aggregator type."
+msgstr ""
#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153
#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type."
#~ msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77
msgid "Capacity"
msgstr "容量"
@@ -960,9 +980,11 @@ msgstr "regex 不区分大小写的版本。"
msgid "Case-insensitive version of startswith."
msgstr "开头不区分大小写的版本。"
-#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76
-msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location."
-msgstr "部署 {brandName} 时更改 PROJECTS_ROOT 以更改此位置。"
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76
+msgid ""
+"Change PROJECTS_ROOT when deploying\n"
+"{brandName} to change this location."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76
#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location."
@@ -982,7 +1004,7 @@ msgid "Channel"
msgstr "频道"
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104
-#: screens/Template/shared/JobTemplateForm.jsx:175
+#: screens/Template/shared/JobTemplateForm.jsx:176
msgid "Check"
msgstr "检查"
@@ -1015,7 +1037,7 @@ msgid "Choose a Webhook Service"
msgstr "选择 Webhook 服务"
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97
-#: screens/Template/shared/JobTemplateForm.jsx:168
+#: screens/Template/shared/JobTemplateForm.jsx:169
msgid "Choose a job type"
msgstr "选择作业类型"
@@ -1031,9 +1053,12 @@ msgstr "选择一个源"
msgid "Choose an HTTP method"
msgstr "选择 HTTP 方法"
-#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37
-msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option."
-msgstr "选择您想要作为用户提示的回答类型或格式。请参阅 Ansible Tower 文档来了解每个选项的更多其他信息。"
+#: screens/Template/Survey/SurveyQuestionForm.jsx:37
+msgid ""
+"Choose an answer type or format you want as the prompt for the user.\n"
+"Refer to the Ansible Tower Documentation for more additional\n"
+"information about each option."
+msgstr ""
#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37
#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option."
@@ -1133,7 +1158,7 @@ msgstr "云"
msgid "Collapse"
msgstr "折叠"
-#: components/JobList/JobList.jsx:188
+#: components/JobList/JobList.jsx:187
#: components/JobList/JobListItem.jsx:35
#: screens/Job/JobDetail/JobDetail.jsx:99
#: screens/Job/JobOutput/HostEventModal.jsx:137
@@ -1147,16 +1172,20 @@ msgstr "命令"
#: src/screens/Template/Template.jsx:151
#: src/screens/Template/Templates.jsx:48
#: src/screens/Template/WorkflowJobTemplate.jsx:145
-msgid "Completed Jobs"
-msgstr "完成的作业"
+#~ msgid "Completed Jobs"
+#~ msgstr "完成的作业"
#: src/screens/Inventory/Inventories.jsx:59
#: src/screens/Inventory/Inventories.jsx:73
#: src/screens/Inventory/SmartInventory.jsx:73
-msgid "Completed jobs"
-msgstr "完成的作业"
+#~ msgid "Completed jobs"
+#~ msgstr "完成的作业"
-#: screens/Template/shared/JobTemplateForm.jsx:580
+#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:53
+msgid "Compliant"
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:581
msgid "Concurrent Jobs"
msgstr "并发作业"
@@ -1227,18 +1256,30 @@ msgid ""
msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92
-msgid "Control the level of output Ansible will produce for inventory source update jobs."
-msgstr "控制 Ansible 为清单源更新作业生成的输出级别。"
+#~ msgid "Control the level of output Ansible will produce for inventory source update jobs."
+#~ msgstr "控制 Ansible 为清单源更新作业生成的输出级别。"
+
+#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:152
+msgid ""
+"Control the level of output ansible\n"
+"will produce as the playbook executes."
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:445
+msgid ""
+"Control the level of output ansible will\n"
+"produce as the playbook executes."
+msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152
#: src/screens/Template/shared/JobTemplateForm.jsx:414
-msgid "Control the level of output ansible will produce as the playbook executes."
-msgstr "控制 ansible 在 playbook 执行时生成的输出级别。"
+#~ msgid "Control the level of output ansible will produce as the playbook executes."
+#~ msgstr "控制 ansible 在 playbook 执行时生成的输出级别。"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
-msgid "Controller"
-msgstr "控制器"
+#~ msgid "Controller"
+#~ msgstr "控制器"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:208
msgid "Convergence"
@@ -1273,7 +1314,7 @@ msgstr "复制清单"
msgid "Copy Notification Template"
msgstr "复制通知模板"
-#: screens/Project/ProjectList/ProjectListItem.jsx:175
+#: screens/Project/ProjectList/ProjectListItem.jsx:190
msgid "Copy Project"
msgstr "复制项目"
@@ -1281,23 +1322,19 @@ msgstr "复制项目"
msgid "Copy Template"
msgstr "复制模板"
-#: screens/Project/ProjectList/ProjectListItem.jsx:147
+#: screens/Project/ProjectList/ProjectListItem.jsx:162
msgid "Copy full revision to clipboard."
msgstr "将完整修订复制到剪贴板。"
-#: components/About/About.jsx:35
-msgid "Copyright 2019 Red Hat, Inc."
-msgstr "Copyright 2019 Red Hat, Inc."
+#: components/About/About.jsx:28
+msgid "Copyright"
+msgstr ""
#: components/About/About.jsx:35
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
-#: components/About/About.jsx:35
-#~ msgid "Copyright 2019 Red Hat, Inc."
-#~ msgstr ""
-
-#: screens/Template/shared/JobTemplateForm.jsx:383
+#: screens/Template/shared/JobTemplateForm.jsx:384
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231
msgid "Create"
msgstr "创建"
@@ -1368,13 +1405,18 @@ msgstr "使用应用的过滤器创建新智能清单"
#: src/screens/InstanceGroup/InstanceGroups.jsx:18
#: src/screens/InstanceGroup/InstanceGroups.jsx:30
-msgid "Create container group"
-msgstr "创建容器组"
+#~ msgid "Create container group"
+#~ msgstr "创建容器组"
#: src/screens/InstanceGroup/InstanceGroups.jsx:17
#: src/screens/InstanceGroup/InstanceGroups.jsx:28
-msgid "Create instance group"
-msgstr "创建实例组"
+#~ msgid "Create instance group"
+#~ msgstr "创建实例组"
+
+#: screens/InstanceGroup/InstanceGroups.jsx:19
+#: screens/InstanceGroup/InstanceGroups.jsx:32
+msgid "Create new container group"
+msgstr ""
#: screens/CredentialType/CredentialTypes.jsx:24
msgid "Create new credential Type"
@@ -1438,7 +1480,7 @@ msgstr "创建用户令牌"
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:261
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53
#: screens/Job/JobDetail/JobDetail.jsx:343
@@ -1509,7 +1551,7 @@ msgstr "创建者(用户名)"
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43
@@ -1519,7 +1561,7 @@ msgstr "创建者(用户名)"
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43
-#: util/getRelatedResourceDeleteDetails.js:191
+#: util/getRelatedResourceDeleteDetails.js:174
msgid "Credential"
msgstr "凭证"
@@ -1555,8 +1597,16 @@ msgid "Credential passwords"
msgstr "凭证密码"
#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60
-msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”."
-msgstr "与 Kubernetes 或 OpenShift 进行身份验证的凭证。必须为“Kubernetes/OpenShift API Bearer Token”类型。"
+#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”."
+#~ msgstr "与 Kubernetes 或 OpenShift 进行身份验证的凭证。必须为“Kubernetes/OpenShift API Bearer Token”类型。"
+
+#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58
+msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used."
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:158
+msgid "Credential to authenticate with a protected container registry."
+msgstr ""
#: screens/CredentialType/CredentialType.jsx:75
msgid "Credential type not found."
@@ -1574,12 +1624,12 @@ msgstr "未找到凭证类型。"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:71
#: screens/ActivityStream/ActivityStream.jsx:165
-#: screens/Credential/CredentialList/CredentialList.jsx:176
+#: screens/Credential/CredentialList/CredentialList.jsx:175
#: screens/Credential/Credentials.jsx:13
#: screens/Credential/Credentials.jsx:24
#: screens/Job/JobDetail/JobDetail.jsx:281
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293
-#: screens/Template/shared/JobTemplateForm.jsx:351
+#: screens/Template/shared/JobTemplateForm.jsx:352
#: util/getRelatedResourceDeleteDetails.js:98
msgid "Credentials"
msgstr "凭证"
@@ -1600,7 +1650,7 @@ msgstr "自定义 pod 规格"
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93
-#: screens/Project/ProjectList/ProjectListItem.jsx:109
+#: screens/Project/ProjectList/ProjectListItem.jsx:124
msgid "Custom virtual environment {0} must be replaced by an execution environment."
msgstr ""
@@ -1688,11 +1738,11 @@ msgstr "定义系统级的特性和功能"
#: components/DeleteButton/DeleteButton.jsx:91
#: components/DeleteButton/DeleteButton.jsx:95
#: components/DeleteButton/DeleteButton.jsx:115
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:234
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:244
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:248
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:271
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131
@@ -1703,7 +1753,7 @@ msgstr "定义系统级的特性和功能"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:126
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69
@@ -1734,17 +1784,17 @@ msgstr "删除所有组和主机"
msgid "Delete Credential"
msgstr "删除凭证"
-#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92
-msgid "Delete Group?"
-msgstr "删除组?"
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131
+msgid "Delete Execution Environment"
+msgstr ""
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92
#~ msgid "Delete Group?"
#~ msgstr ""
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91
-msgid "Delete Groups?"
-msgstr "删除组?"
+#~ msgid "Delete Groups?"
+#~ msgstr "删除组?"
#: screens/Host/HostDetail/HostDetail.jsx:123
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113
@@ -1822,7 +1872,7 @@ msgstr "创建应用"
msgid "Delete credential type"
msgstr "删除凭证类型"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:245
msgid "Delete error"
msgstr "删除错误"
@@ -1831,7 +1881,7 @@ msgstr "删除错误"
msgid "Delete instance group"
msgstr "删除实例组"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:287
msgid "Delete inventory source"
msgstr "删除清单源"
@@ -1844,9 +1894,13 @@ msgstr "更新时删除"
msgid "Delete smart inventory"
msgstr "删除智能清单"
-#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81
-msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update."
-msgstr "在进行更新前删除整个本地存储库。根据存储库的大小,这可能会显著增加完成更新所需的时间。"
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81
+msgid ""
+"Delete the local repository in its entirety prior to\n"
+"performing an update. Depending on the size of the\n"
+"repository this may significantly increase the amount\n"
+"of time required to complete an update."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81
#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update."
@@ -1860,7 +1914,7 @@ msgstr "删除此链接"
msgid "Delete this node"
msgstr "删除此节点"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163
msgid "Delete {pluralizedItemName}?"
msgstr "删除 {pluralizedItemName}?"
@@ -1912,19 +1966,19 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256
#: components/Schedule/ScheduleList/ScheduleList.jsx:197
#: components/Schedule/shared/ScheduleForm.jsx:110
-#: components/TemplateList/TemplateList.jsx:194
+#: components/TemplateList/TemplateList.jsx:193
#: components/TemplateList/TemplateListItem.jsx:230
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68
#: screens/Application/ApplicationsList/ApplicationsList.jsx:126
#: screens/Application/shared/ApplicationForm.jsx:62
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211
-#: screens/Credential/CredentialList/CredentialList.jsx:129
+#: screens/Credential/CredentialList/CredentialList.jsx:128
#: screens/Credential/shared/CredentialForm.jsx:180
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132
#: screens/CredentialType/shared/CredentialTypeForm.jsx:32
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150
#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:133
#: screens/Host/HostDetail/HostDetail.jsx:81
#: screens/Host/HostList/HostList.jsx:152
@@ -1932,7 +1986,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:177
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
#: screens/Inventory/shared/InventoryForm.jsx:55
@@ -1948,7 +2002,8 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
-#: screens/Project/ProjectList/ProjectList.jsx:143
+#: screens/Project/ProjectList/ProjectList.jsx:142
+#: screens/Project/ProjectList/ProjectListItem.jsx:209
#: screens/Project/shared/ProjectForm.jsx:176
#: screens/Team/TeamDetail/TeamDetail.jsx:38
#: screens/Team/TeamList/TeamList.jsx:134
@@ -1957,7 +2012,7 @@ msgstr ""
#: screens/Template/Survey/SurveyQuestionForm.jsx:124
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166
-#: screens/Template/shared/JobTemplateForm.jsx:215
+#: screens/Template/shared/JobTemplateForm.jsx:216
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:121
#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48
#: screens/User/UserTokenList/UserTokenList.jsx:116
@@ -1992,86 +2047,89 @@ msgid "Destination channels or users"
msgstr "目标频道或用户"
#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11
-msgid "Detail coming soon :)"
-msgstr "详情即将发布 :)"
+#~ msgid "Detail coming soon :)"
+#~ msgstr "详情即将发布 :)"
-#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:60
-#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:70
-#: src/components/ErrorDetail/ErrorDetail.jsx:73
-#: src/components/Schedule/Schedule.jsx:67
-#: src/screens/Application/Application/Application.jsx:77
-#: src/screens/Application/Applications.jsx:39
-#: src/screens/Credential/Credential.jsx:58
-#: src/screens/Credential/Credentials.jsx:28
-#: src/screens/CredentialType/CredentialType.jsx:62
-#: src/screens/CredentialType/CredentialTypes.jsx:29
-#: src/screens/Host/Host.jsx:52
-#: src/screens/Host/Hosts.jsx:29
-#: src/screens/InstanceGroup/ContainerGroup.jsx:63
-#: src/screens/InstanceGroup/InstanceGroup.jsx:64
-#: src/screens/InstanceGroup/InstanceGroups.jsx:33
-#: src/screens/InstanceGroup/InstanceGroups.jsx:42
-#: src/screens/Inventory/Inventories.jsx:60
-#: src/screens/Inventory/Inventories.jsx:104
-#: src/screens/Inventory/Inventory.jsx:62
-#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:59
-#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:73
-#: src/screens/Inventory/InventorySource/InventorySource.jsx:88
-#: src/screens/Inventory/SmartInventory.jsx:69
-#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55
-#: src/screens/Job/Job.jsx:63
-#: src/screens/Job/JobOutput/HostEventModal.jsx:113
-#: src/screens/Job/Jobs.jsx:29
-#: src/screens/ManagementJob/ManagementJobs.jsx:29
-#: src/screens/NotificationTemplate/NotificationTemplate.jsx:83
-#: src/screens/NotificationTemplate/NotificationTemplates.jsx:27
-#: src/screens/Organization/Organization.jsx:122
-#: src/screens/Organization/Organizations.jsx:31
-#: src/screens/Project/Project.jsx:105
-#: src/screens/Project/Projects.jsx:29
-#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54
-#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46
-#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46
-#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64
-#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70
-#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111
-#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46
-#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47
-#: src/screens/Setting/Settings.jsx:45
-#: src/screens/Setting/Settings.jsx:48
-#: src/screens/Setting/Settings.jsx:52
-#: src/screens/Setting/Settings.jsx:55
-#: src/screens/Setting/Settings.jsx:58
-#: src/screens/Setting/Settings.jsx:61
-#: src/screens/Setting/Settings.jsx:66
-#: src/screens/Setting/Settings.jsx:69
-#: src/screens/Setting/Settings.jsx:72
-#: src/screens/Setting/Settings.jsx:75
-#: src/screens/Setting/Settings.jsx:84
-#: src/screens/Setting/Settings.jsx:85
-#: src/screens/Setting/Settings.jsx:86
-#: src/screens/Setting/Settings.jsx:87
-#: src/screens/Setting/Settings.jsx:88
-#: src/screens/Setting/Settings.jsx:89
-#: src/screens/Setting/Settings.jsx:98
-#: src/screens/Setting/Settings.jsx:101
-#: src/screens/Setting/Settings.jsx:104
-#: src/screens/Setting/Settings.jsx:107
-#: src/screens/Setting/Settings.jsx:110
-#: src/screens/Setting/Settings.jsx:113
-#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46
-#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:55
-#: src/screens/Team/Team.jsx:55
-#: src/screens/Team/Teams.jsx:29
-#: src/screens/Template/Template.jsx:131
-#: src/screens/Template/Templates.jsx:44
-#: src/screens/Template/WorkflowJobTemplate.jsx:121
-#: src/screens/User/User.jsx:63
-#: src/screens/User/UserToken/UserToken.jsx:54
-#: src/screens/User/Users.jsx:31
-#: src/screens/User/Users.jsx:41
-#: src/screens/WorkflowApproval/WorkflowApproval.jsx:76
-#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:21
+#: components/AdHocCommands/AdHocCommandsWizard.jsx:60
+#: components/AdHocCommands/AdHocCommandsWizard.jsx:70
+#: components/ErrorDetail/ErrorDetail.jsx:73
+#: components/Schedule/Schedule.jsx:68
+#: screens/Application/Application/Application.jsx:77
+#: screens/Application/Applications.jsx:39
+#: screens/Credential/Credential.jsx:58
+#: screens/Credential/Credentials.jsx:28
+#: screens/CredentialType/CredentialType.jsx:62
+#: screens/CredentialType/CredentialTypes.jsx:29
+#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64
+#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:32
+#: screens/Host/Host.jsx:52
+#: screens/Host/Hosts.jsx:29
+#: screens/InstanceGroup/ContainerGroup.jsx:63
+#: screens/InstanceGroup/InstanceGroup.jsx:64
+#: screens/InstanceGroup/InstanceGroups.jsx:35
+#: screens/InstanceGroup/InstanceGroups.jsx:44
+#: screens/Inventory/Inventories.jsx:60
+#: screens/Inventory/Inventories.jsx:102
+#: screens/Inventory/Inventory.jsx:62
+#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59
+#: screens/Inventory/InventoryHost/InventoryHost.jsx:73
+#: screens/Inventory/InventorySource/InventorySource.jsx:88
+#: screens/Inventory/SmartInventory.jsx:69
+#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55
+#: screens/Job/Job.jsx:103
+#: screens/Job/JobOutput/HostEventModal.jsx:113
+#: screens/Job/Jobs.jsx:29
+#: screens/ManagementJob/ManagementJobs.jsx:29
+#: screens/NotificationTemplate/NotificationTemplate.jsx:83
+#: screens/NotificationTemplate/NotificationTemplates.jsx:27
+#: screens/Organization/Organization.jsx:123
+#: screens/Organization/Organizations.jsx:31
+#: screens/Project/Project.jsx:105
+#: screens/Project/Projects.jsx:29
+#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54
+#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46
+#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46
+#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64
+#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70
+#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:117
+#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46
+#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47
+#: screens/Setting/Settings.jsx:45
+#: screens/Setting/Settings.jsx:48
+#: screens/Setting/Settings.jsx:52
+#: screens/Setting/Settings.jsx:55
+#: screens/Setting/Settings.jsx:58
+#: screens/Setting/Settings.jsx:61
+#: screens/Setting/Settings.jsx:66
+#: screens/Setting/Settings.jsx:69
+#: screens/Setting/Settings.jsx:72
+#: screens/Setting/Settings.jsx:75
+#: screens/Setting/Settings.jsx:84
+#: screens/Setting/Settings.jsx:85
+#: screens/Setting/Settings.jsx:86
+#: screens/Setting/Settings.jsx:87
+#: screens/Setting/Settings.jsx:88
+#: screens/Setting/Settings.jsx:89
+#: screens/Setting/Settings.jsx:97
+#: screens/Setting/Settings.jsx:100
+#: screens/Setting/Settings.jsx:103
+#: screens/Setting/Settings.jsx:106
+#: screens/Setting/Settings.jsx:109
+#: screens/Setting/Settings.jsx:112
+#: screens/Setting/Settings.jsx:115
+#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46
+#: screens/Setting/UI/UIDetail/UIDetail.jsx:55
+#: screens/Team/Team.jsx:55
+#: screens/Team/Teams.jsx:29
+#: screens/Template/Template.jsx:144
+#: screens/Template/Templates.jsx:44
+#: screens/Template/WorkflowJobTemplate.jsx:121
+#: screens/User/User.jsx:63
+#: screens/User/UserToken/UserToken.jsx:54
+#: screens/User/Users.jsx:31
+#: screens/User/Users.jsx:41
+#: screens/WorkflowApproval/WorkflowApproval.jsx:76
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:24
msgid "Details"
msgstr "详情"
@@ -2139,7 +2197,7 @@ msgstr "解除关联角色!"
msgid "Disassociate?"
msgstr "解除关联?"
-#: screens/Template/shared/JobTemplateForm.jsx:459
+#: screens/Template/shared/JobTemplateForm.jsx:460
msgid ""
"Divide the work done by this job template\n"
"into the specified number of job slices, each running the\n"
@@ -2147,8 +2205,15 @@ msgid ""
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:429
-msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
-msgstr "将此作业模板完成的工作分成指定作业分片数,每一分片都针对清单的一部分运行相同的任务。"
+#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory."
+#~ msgstr "将此作业模板完成的工作分成指定作业分片数,每一分片都针对清单的一部分运行相同的任务。"
+
+#: components/CodeEditor/VariablesDetail.jsx:121
+#: components/CodeEditor/VariablesDetail.jsx:127
+#: components/CodeEditor/VariablesField.jsx:135
+#: components/CodeEditor/VariablesField.jsx:141
+msgid "Done"
+msgstr ""
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:174
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:179
@@ -2167,7 +2232,7 @@ msgstr "电子邮件选项"
msgid "Each answer choice must be on a separate line."
msgstr "每个答案选择都必须在单独的行中。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:165
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175
msgid ""
"Each time a job runs using this inventory,\n"
@@ -2177,68 +2242,74 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168
-msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks."
-msgstr "每次使用此清单运行作业时,请在执行作业前从所选源中刷新清单。"
+#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks."
+#~ msgstr "每次使用此清单运行作业时,请在执行作业前从所选源中刷新清单。"
+
+#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:105
+msgid ""
+"Each time a job runs using this project, update the\n"
+"revision of the project prior to starting the job."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92
-msgid "Each time a job runs using this project, update the revision of the project prior to starting the job."
-msgstr "每次使用此项目运行作业时,请在启动该作业前更新项目的修订。"
+#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job."
+#~ msgstr "每次使用此项目运行作业时,请在启动该作业前更新项目的修订。"
-#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396
-#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:400
-#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:117
-#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:119
-#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:251
-#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:75
-#: src/screens/Host/HostDetail/HostDetail.jsx:116
-#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
-#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133
-#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:120
-#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60
-#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:67
-#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:106
-#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270
-#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:158
-#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:355
-#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:357
-#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:125
-#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:143
-#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:147
-#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:158
-#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:87
-#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92
-#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:79
-#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84
-#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:142
-#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147
-#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:79
-#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84
-#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:96
-#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101
-#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:160
-#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165
-#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:14
-#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19
-#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:100
-#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105
-#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:141
-#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146
-#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:79
-#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84
-#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:80
-#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85
-#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79
-#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84
-#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:94
-#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:99
-#: src/screens/Team/TeamDetail/TeamDetail.jsx:57
-#: src/screens/Team/TeamDetail/TeamDetail.jsx:61
-#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371
-#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:373
-#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205
-#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:207
-#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:207
-#: src/screens/User/UserDetail/UserDetail.jsx:92
+#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397
+#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401
+#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118
+#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120
+#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125
+#: screens/Host/HostDetail/HostDetail.jsx:117
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110
+#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126
+#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61
+#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68
+#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278
+#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356
+#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358
+#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133
+#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151
+#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155
+#: screens/Project/ProjectDetail/ProjectDetail.jsx:170
+#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88
+#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92
+#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80
+#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84
+#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143
+#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147
+#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80
+#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84
+#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97
+#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101
+#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161
+#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165
+#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101
+#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105
+#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:148
+#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:152
+#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80
+#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84
+#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81
+#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85
+#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158
+#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79
+#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84
+#: screens/Setting/UI/UIDetail/UIDetail.jsx:94
+#: screens/Setting/UI/UIDetail/UIDetail.jsx:99
+#: screens/Team/TeamDetail/TeamDetail.jsx:58
+#: screens/Team/TeamDetail/TeamDetail.jsx:62
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383
+#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223
+#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208
+#: screens/User/UserDetail/UserDetail.jsx:93
msgid "Edit"
msgstr "编辑"
@@ -2334,8 +2405,8 @@ msgstr "编辑通知模板"
msgid "Edit Organization"
msgstr "编辑机构"
-#: screens/Project/ProjectList/ProjectListItem.jsx:161
-#: screens/Project/ProjectList/ProjectListItem.jsx:166
+#: screens/Project/ProjectList/ProjectListItem.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:181
msgid "Edit Project"
msgstr "编辑项目"
@@ -2393,8 +2464,8 @@ msgid "Edit details"
msgstr "编辑详情"
#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11
-msgid "Edit form coming soon :)"
-msgstr "编辑表单即将发布 :)"
+#~ msgid "Edit form coming soon :)"
+#~ msgstr "编辑表单即将发布 :)"
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:81
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85
@@ -2441,7 +2512,7 @@ msgstr "电子邮件选项"
msgid "Enable Concurrent Jobs"
msgstr "启用并发作业"
-#: screens/Template/shared/JobTemplateForm.jsx:587
+#: screens/Template/shared/JobTemplateForm.jsx:588
msgid "Enable Fact Storage"
msgstr "启用事实缓存"
@@ -2454,8 +2525,8 @@ msgstr "启用 HTTPS 证书验证"
msgid "Enable Privilege Escalation"
msgstr "启用权限升级"
-#: screens/Template/shared/JobTemplateForm.jsx:561
-#: screens/Template/shared/JobTemplateForm.jsx:564
+#: screens/Template/shared/JobTemplateForm.jsx:562
+#: screens/Template/shared/JobTemplateForm.jsx:565
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:249
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:252
msgid "Enable Webhook"
@@ -2486,7 +2557,7 @@ msgstr "启用权限升级"
msgid "Enable simplified login for your {brandName} applications"
msgstr "为您的 {brandName} 应用启用简化的登录"
-#: screens/Template/shared/JobTemplateForm.jsx:567
+#: screens/Template/shared/JobTemplateForm.jsx:568
msgid "Enable webhook for this template."
msgstr "为此模板启用 Webhook。"
@@ -2495,23 +2566,31 @@ msgstr "为此模板启用 Webhook。"
msgid "Enabled"
msgstr "启用"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267
msgid "Enabled Value"
msgstr "启用的值"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254
msgid "Enabled Variable"
msgstr "启用的变量"
-#: src/screens/Template/shared/JobTemplateForm.jsx:517
-msgid "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."
-msgstr "允许创建部署回调 URL。使用此 URL,主机可访问 BRAND_NAME 并使用此作业模板请求配置更新。"
+#: screens/Template/shared/JobTemplateForm.jsx:548
+msgid ""
+"Enables creation of a provisioning\n"
+"callback URL. Using the URL a host can contact {BrandName}\n"
+"and request a configuration update using this job\n"
+"template."
+msgstr ""
-#: src/components/AdHocCommands/AdHocDetailsStep.jsx:244
-msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template"
-msgstr "允许创建部署回调 URL。使用此 URL,主机可访问 {brandName} 并使用此任务模板请求配置更新"
+#: components/AdHocCommands/AdHocDetailsStep.jsx:244
+msgid ""
+"Enables creation of a provisioning\n"
+"callback URL. Using the URL a host can contact {brandName}\n"
+"and request a configuration update using this job\n"
+"template"
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:517
#~ msgid "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."
@@ -2570,8 +2649,8 @@ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio
msgstr "使用 JSON 或 YAML 语法输入清单变量。使用单选按钮在两者之间切换。示例语法请参阅 Ansible Tower 文档"
#: src/screens/Inventory/shared/SmartInventoryForm.jsx:100
-msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
-msgstr "使用 JSON 或 YAML 语法输入清单变量。使用单选按钮在两者之间切换。示例语法请参阅 Ansible Tower 文档。"
+#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax."
+#~ msgstr "使用 JSON 或 YAML 语法输入清单变量。使用单选按钮在两者之间切换。示例语法请参阅 Ansible Tower 文档。"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193
msgid "Enter one Annotation Tag per line, without commas."
@@ -2585,24 +2664,48 @@ msgid ""
msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244
-msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required."
-msgstr "每行输入一个 IRC 频道或用户名。频道不需要输入 # 号,用户不需要输入 @ 符号。"
+#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required."
+#~ msgstr "每行输入一个 IRC 频道或用户名。频道不需要输入 # 号,用户不需要输入 @ 符号。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377
+msgid ""
+"Enter one Slack channel per line. The pound symbol (#)\n"
+"is required for channels."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377
-msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels."
-msgstr "每行输入一个 Slack 频道。频道不需要输入 # 号。"
+#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels."
+#~ msgstr "每行输入一个 Slack 频道。频道不需要输入 # 号。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92
+msgid ""
+"Enter one email address per line to create a recipient\n"
+"list for this type of notification."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92
-msgid "Enter one email address per line to create a recipient list for this type of notification."
-msgstr "每行输入一封电子邮件地址,为这类通知创建一个接收者列表。"
+#~ msgid "Enter one email address per line to create a recipient list for this type of notification."
+#~ msgstr "每行输入一封电子邮件地址,为这类通知创建一个接收者列表。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426
+msgid ""
+"Enter one phone number per line to specify where to\n"
+"route SMS messages."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426
-msgid "Enter one phone number per line to specify where to route SMS messages."
-msgstr "每行输入一个电话号码来指定 SMS 消息的传送目标。"
+#~ msgid "Enter one phone number per line to specify where to route SMS messages."
+#~ msgstr "每行输入一个电话号码来指定 SMS 消息的传送目标。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416
+msgid ""
+"Enter the number associated with the \"Messaging\n"
+"Service\" in Twilio in the format +18005550199."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416
-msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199."
-msgstr "在 Twilio 中输入与“信息服务”关联的号码,格式为 +18005550199。"
+#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199."
+#~ msgstr "在 Twilio 中输入与“信息服务”关联的号码,格式为 +18005550199。"
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:60
msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins0> in the documentation and the <1>Tower1> plugin configuration guide."
@@ -2641,17 +2744,20 @@ msgid "Enter variables using either JSON or YAML syntax. Use the radio button to
msgstr "使用 JSON 或 YAML 语法输入变量。使用单选按钮在两者之间切换。"
#: src/screens/Job/JobDetail/JobDetail.jsx:224
-msgid "Environment"
-msgstr "环境"
+#~ msgid "Environment"
+#~ msgstr "环境"
-#: src/components/JobList/JobList.jsx:227
-#: src/components/Workflow/WorkflowNodeHelp.jsx:92
-#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95
-#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:198
-#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112
-#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153
-#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:255
-#: src/screens/Setting/shared/LoggingTestAlert.jsx:37
+#: components/JobList/JobList.jsx:206
+#: components/Workflow/WorkflowNodeHelp.jsx:92
+#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135
+#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210
+#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
+#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
+#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263
+#: screens/Job/JobOutput/JobOutput.jsx:668
+#: screens/Setting/shared/LoggingTestAlert.jsx:37
msgid "Error"
msgstr "错误"
@@ -2675,12 +2781,12 @@ msgstr ""
#: components/DeleteButton/DeleteButton.jsx:57
#: components/HostToggle/HostToggle.jsx:73
#: components/InstanceToggle/InstanceToggle.jsx:69
-#: components/JobList/JobList.jsx:278
-#: components/JobList/JobList.jsx:289
+#: components/JobList/JobList.jsx:276
+#: components/JobList/JobList.jsx:287
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:205
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2710,9 +2816,9 @@ msgstr ""
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:301
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:235
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:248
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2723,7 +2829,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:208
+#: screens/Organization/OrganizationList/OrganizationList.jsx:210
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:236
@@ -2753,6 +2859,10 @@ msgstr ""
msgid "Error!"
msgstr "错误!"
+#: components/CodeEditor/VariablesDetail.jsx:110
+msgid "Error:"
+msgstr ""
+
#: screens/ActivityStream/ActivityStream.jsx:259
#: screens/ActivityStream/ActivityStreamListItem.jsx:46
#: screens/Job/JobOutput/JobOutput.jsx:635
@@ -2817,15 +2927,15 @@ msgstr ""
#: components/Lookup/ExecutionEnvironmentLookup.jsx:124
#: routeConfig.js:143
#: screens/ActivityStream/ActivityStream.jsx:211
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:184
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23
#: screens/Organization/Organization.jsx:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77
#: screens/Organization/Organizations.jsx:38
#: util/getRelatedResourceDeleteDetails.js:88
-#: util/getRelatedResourceDeleteDetails.js:212
+#: util/getRelatedResourceDeleteDetails.js:195
msgid "Execution Environments"
msgstr ""
@@ -2859,8 +2969,8 @@ msgstr "不保存退出"
msgid "Expand"
msgstr "展开"
-#: components/CodeEditor/VariablesDetail.jsx:211
-#: components/CodeEditor/VariablesField.jsx:229
+#: components/CodeEditor/VariablesDetail.jsx:214
+#: components/CodeEditor/VariablesField.jsx:237
msgid "Expand input"
msgstr ""
@@ -2913,7 +3023,7 @@ msgstr "额外变量"
#: components/Sparkline/Sparkline.jsx:35
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49
-#: screens/Project/ProjectList/ProjectListItem.jsx:69
+#: screens/Project/ProjectList/ProjectListItem.jsx:76
msgid "FINISHED:"
msgstr "完成:"
@@ -2942,7 +3052,7 @@ msgstr "失败的主机计数"
msgid "Failed Hosts"
msgstr "失败的主机"
-#: components/LaunchButton/ReLaunchDropDown.jsx:58
+#: components/LaunchButton/ReLaunchDropDown.jsx:61
#: screens/Dashboard/Dashboard.jsx:135
msgid "Failed hosts"
msgstr "失败的主机"
@@ -2992,7 +3102,7 @@ msgstr ""
msgid "Failed to copy inventory."
msgstr "复制清单失败。"
-#: screens/Project/ProjectList/ProjectListItem.jsx:183
+#: screens/Project/ProjectList/ProjectListItem.jsx:198
msgid "Failed to copy project."
msgstr "复制项目失败。"
@@ -3018,7 +3128,7 @@ msgstr "删除组 {0} 失败。"
msgid "Failed to delete host."
msgstr "删除主机失败。"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:305
msgid "Failed to delete inventory source {name}."
msgstr "删除清单源 {name} 失败。"
@@ -3067,7 +3177,7 @@ msgstr "删除一个或多个实例组失败。"
msgid "Failed to delete one or more inventories."
msgstr "删除一个或多个清单失败。"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:251
msgid "Failed to delete one or more inventory sources."
msgstr "删除一个或多个清单源失败。"
@@ -3225,7 +3335,7 @@ msgstr "同步清单源失败。"
msgid "Failed to sync project."
msgstr "同步项目失败。"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:238
msgid "Failed to sync some or all inventory sources."
msgstr "同步部分或所有清单源失败。"
@@ -3308,7 +3418,7 @@ msgstr "上传文件被拒绝。请选择单个 .json 文件。"
msgid "File, directory or script"
msgstr "文件、目录或脚本"
-#: components/JobList/JobList.jsx:223
+#: components/JobList/JobList.jsx:221
#: components/JobList/JobListItem.jsx:87
msgid "Finish Time"
msgstr "完成时间"
@@ -3351,7 +3461,7 @@ msgstr "使图像与可用屏幕大小匹配"
msgid "Float"
msgstr "浮点值"
-#: screens/Template/shared/JobTemplateForm.jsx:223
+#: screens/Template/shared/JobTemplateForm.jsx:224
msgid ""
"For job templates, select run to execute\n"
"the playbook. Select check to only check playbook syntax,\n"
@@ -3368,8 +3478,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115
#: src/screens/Template/shared/JobTemplateForm.jsx:216
-msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook."
-msgstr "对于作业模板,选择“运行”来执行 playbook。选择“检查”将只检查 playbook 语法、测试环境设置和报告问题,而不执行 playbook。"
+#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook."
+#~ msgstr "对于作业模板,选择“运行”来执行 playbook。选择“检查”将只检查 playbook 语法、测试环境设置和报告问题,而不执行 playbook。"
#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:83
msgid "For more information, refer to the"
@@ -3379,7 +3489,7 @@ msgstr "有关详情请参阅"
#: components/AdHocCommands/AdHocDetailsStep.jsx:193
#: components/PromptDetail/PromptJobTemplateDetail.jsx:139
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224
-#: screens/Template/shared/JobTemplateForm.jsx:404
+#: screens/Template/shared/JobTemplateForm.jsx:405
msgid "Forks"
msgstr "分叉"
@@ -3563,7 +3673,7 @@ msgstr "组类型"
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232
#: screens/Inventory/InventoryList/InventoryListItem.jsx:108
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224
-#: util/getRelatedResourceDeleteDetails.js:143
+#: util/getRelatedResourceDeleteDetails.js:126
msgid "Groups"
msgstr "组"
@@ -3605,7 +3715,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:149
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239
-#: screens/Template/shared/JobTemplateForm.jsx:622
+#: screens/Template/shared/JobTemplateForm.jsx:623
msgid "Host Config Key"
msgstr "主机配置键"
@@ -3625,7 +3735,7 @@ msgstr ""
msgid "Host Failure"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:237
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281
msgid "Host Filter"
msgstr "主机过滤器"
@@ -3693,7 +3803,7 @@ msgstr "此作业的主机状态信息不可用。"
#: screens/Inventory/SmartInventory.jsx:71
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102
-#: util/getRelatedResourceDeleteDetails.js:147
+#: util/getRelatedResourceDeleteDetails.js:130
msgid "Hosts"
msgstr "主机"
@@ -3781,7 +3891,7 @@ msgstr "IRC 服务器端口"
msgid "Icon URL"
msgstr "图标 URL"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:148
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156
msgid ""
"If checked, all variables for child groups\n"
@@ -3791,21 +3901,49 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
-msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
-msgstr "如果选中,子组和主机的所有变量都将被删除,并替换为外部源上的变量。"
+#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source."
+#~ msgstr "如果选中,子组和主机的所有变量都将被删除,并替换为外部源上的变量。"
+
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:125
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135
+msgid ""
+"If checked, any hosts and groups that were\n"
+"previously present on the external source but are now removed\n"
+"will be removed from the Tower inventory. Hosts and groups\n"
+"that were not managed by the inventory source will be promoted\n"
+"to the next manually created group or if there is no manually\n"
+"created group to promote them into, they will be left in the \"all\"\n"
+"default group for the inventory."
+msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
-msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
-msgstr "如果选中,以前存在于外部源上的但现已被删除的任何主机和组都将从 Tower 清单中删除。不由清单源管理的主机和组将提升到下一个手动创建的组,如果没有手动创建组来提升它们,则它们将保留在清单的“all”默认组中。"
+#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory."
+#~ msgstr "如果选中,以前存在于外部源上的但现已被删除的任何主机和组都将从 Tower 清单中删除。不由清单源管理的主机和组将提升到下一个手动创建的组,如果没有手动创建组来提升它们,则它们将保留在清单的“all”默认组中。"
+
+#: screens/Template/shared/JobTemplateForm.jsx:538
+msgid ""
+"If enabled, run this playbook as an\n"
+"administrator."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:507
-msgid "If enabled, run this playbook as an administrator."
-msgstr "如果启用,则以管理员身份运行此 playbook。"
+#~ msgid "If enabled, run this playbook as an administrator."
+#~ msgstr "如果启用,则以管理员身份运行此 playbook。"
-#: src/screens/Template/shared/JobTemplateForm.jsx:448
-msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
-msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况下)。这等同于 Ansible 的 --diff 模式。"
+#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177
+msgid ""
+"If enabled, show the changes made\n"
+"by Ansible tasks, where supported. This is equivalent to Ansible’s\n"
+"--diff mode."
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:479
+msgid ""
+"If enabled, show the changes made by\n"
+"Ansible tasks, where supported. This is equivalent\n"
+"to Ansible's --diff mode."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:448
#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode."
@@ -3815,9 +3953,11 @@ msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr "如果启用,显示 Ansible 任务所做的更改(在支持的情况下)。这等同于 Ansible 的 --diff 模式。"
-#: src/screens/Template/shared/JobTemplateForm.jsx:551
-msgid "If enabled, simultaneous runs of this job template will be allowed."
-msgstr "如果启用,将允许同时运行此作业模板。"
+#: screens/Template/shared/JobTemplateForm.jsx:582
+msgid ""
+"If enabled, simultaneous runs of this job\n"
+"template will be allowed."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:551
#~ msgid "If enabled, simultaneous runs of this job template will be allowed."
@@ -3827,23 +3967,31 @@ msgstr "如果启用,将允许同时运行此作业模板。"
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr "如果启用,将允许同时运行此工作流作业模板。"
-#: src/screens/Template/shared/JobTemplateForm.jsx:559
-msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
-msgstr "如果启用,这将存储收集的事实,以便在主机一级查看它们。事实在运行时会被持久化并注入事实缓存。"
+#: screens/Template/shared/JobTemplateForm.jsx:590
+msgid ""
+"If enabled, this will store gathered facts so they can\n"
+"be viewed at the host level. Facts are persisted and\n"
+"injected into the fact cache at runtime."
+msgstr ""
-#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:52
+#: src/screens/Template/shared/JobTemplateForm.jsx:559
+#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime."
+#~ msgstr "如果启用,这将存储收集的事实,以便在主机一级查看它们。事实在运行时会被持久化并注入事实缓存。"
+
+#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:140
+msgid "If you are ready to upgrade or renew, please <0>contact us.0>"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:72
+msgid ""
+"If you do not have a subscription, you can visit\n"
+"Red Hat to obtain a trial subscription."
+msgstr ""
+
+#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58
msgid "If you only want to remove access for this particular user, please remove them from the team."
msgstr "如果您只想删除这个特定用户的访问,请将其从团队中删除。"
-#: src/components/HostToggle/HostToggle.jsx:18
-msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process."
-msgstr "指明主机是否可用且应该包含在正在运行的作业中。对于作为外部清单一部分的主机,可能会被清单同步过程重置。"
-
-#: src/components/AppContainer/PageHeaderToolbar.jsx:104
-#: src/components/AppContainer/PageHeaderToolbar.jsx:114
-msgid "Info"
-msgstr "Info"
-
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211
msgid ""
@@ -3852,9 +4000,9 @@ msgid ""
msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107
@@ -3975,7 +4123,7 @@ msgid "Instance groups"
msgstr "实例组"
#: screens/InstanceGroup/InstanceGroup.jsx:69
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76
#: screens/InstanceGroup/InstanceGroups.jsx:37
#: screens/InstanceGroup/Instances/InstanceList.jsx:148
@@ -4011,8 +4159,8 @@ msgstr "无效的用户名或密码。请重试。"
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
-#: util/getRelatedResourceDeleteDetails.js:226
-#: util/getRelatedResourceDeleteDetails.js:294
+#: util/getRelatedResourceDeleteDetails.js:209
+#: util/getRelatedResourceDeleteDetails.js:277
msgid "Inventories"
msgstr "清单"
@@ -4072,14 +4220,14 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr "清单源同步"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:161
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:180
#: util/getRelatedResourceDeleteDetails.js:74
-#: util/getRelatedResourceDeleteDetails.js:171
+#: util/getRelatedResourceDeleteDetails.js:154
msgid "Inventory Sources"
msgstr "清单源"
-#: components/JobList/JobList.jsx:186
+#: components/JobList/JobList.jsx:185
#: components/JobList/JobListItem.jsx:33
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37
#: components/Workflow/WorkflowLegend.jsx:100
@@ -4091,7 +4239,7 @@ msgstr "清单同步"
msgid "Inventory Update"
msgstr "清单更新"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:226
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102
msgid "Inventory file"
msgstr "清单文件"
@@ -4111,8 +4259,8 @@ msgstr "清单同步失败"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60
#: screens/Job/JobDetail/JobDetail.jsx:120
-msgid "Isolated"
-msgstr "已隔离"
+#~ msgid "Isolated"
+#~ msgstr "已隔离"
#: screens/Job/JobOutput/JobOutput.jsx:649
msgid "Item Failed"
@@ -4136,7 +4284,7 @@ msgstr "每页的项"
#: components/Sparkline/Sparkline.jsx:28
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42
-#: screens/Project/ProjectList/ProjectListItem.jsx:62
+#: screens/Project/ProjectList/ProjectListItem.jsx:69
msgid "JOB ID:"
msgstr "作业 ID:"
@@ -4180,7 +4328,7 @@ msgstr "作业分片"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:148
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235
-#: screens/Template/shared/JobTemplateForm.jsx:458
+#: screens/Template/shared/JobTemplateForm.jsx:459
msgid "Job Slicing"
msgstr "作业分片"
@@ -4195,12 +4343,12 @@ msgstr "作业状态"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350
#: screens/Job/JobDetail/JobDetail.jsx:309
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342
-#: screens/Template/shared/JobTemplateForm.jsx:498
+#: screens/Template/shared/JobTemplateForm.jsx:499
msgid "Job Tags"
msgstr "作业标签"
#: components/JobList/JobListItem.jsx:137
-#: components/TemplateList/TemplateList.jsx:201
+#: components/TemplateList/TemplateList.jsx:200
#: components/Workflow/WorkflowLegend.jsx:92
#: components/Workflow/WorkflowNodeHelp.jsx:47
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96
@@ -4218,7 +4366,7 @@ msgstr ""
#: screens/Project/Projects.jsx:32
#: util/getRelatedResourceDeleteDetails.js:56
#: util/getRelatedResourceDeleteDetails.js:108
-#: util/getRelatedResourceDeleteDetails.js:157
+#: util/getRelatedResourceDeleteDetails.js:140
msgid "Job Templates"
msgstr "作业模板"
@@ -4238,7 +4386,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:180
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145
-#: screens/Template/shared/JobTemplateForm.jsx:220
+#: screens/Template/shared/JobTemplateForm.jsx:221
msgid "Job Type"
msgstr "作业类型"
@@ -4374,7 +4522,7 @@ msgstr "标签名称"
#: screens/Job/JobDetail/JobDetail.jsx:294
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195
-#: screens/Template/shared/JobTemplateForm.jsx:369
+#: screens/Template/shared/JobTemplateForm.jsx:370
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217
msgid "Labels"
msgstr "标签"
@@ -4426,7 +4574,7 @@ msgstr "最后修改"
msgid "Last Name"
msgstr "姓氏"
-#: components/TemplateList/TemplateList.jsx:225
+#: components/TemplateList/TemplateList.jsx:223
#: components/TemplateList/TemplateListItem.jsx:156
msgid "Last Ran"
msgstr "最后运行"
@@ -4443,12 +4591,17 @@ msgstr "最后作业"
msgid "Last job run"
msgstr "最后作业运行"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58
+#: screens/Project/ProjectList/ProjectListItem.jsx:236
msgid "Last modified"
msgstr "最后修改"
+#: screens/Project/ProjectList/ProjectListItem.jsx:241
+msgid "Last used"
+msgstr ""
+
#: components/AdHocCommands/AdHocCommandsWizard.jsx:92
#: components/LaunchPrompt/steps/usePreviewStep.jsx:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55
@@ -4495,28 +4648,26 @@ msgstr "启动者"
msgid "Launched By (Username)"
msgstr "启动者(用户名)"
-#: src/components/Workflow/WorkflowLegend.jsx:86
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131
+msgid "Learn more about Insights Analytics"
+msgstr ""
+
+#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:81
+msgid "Leave this field blank to make the execution environment globally available."
+msgstr ""
+
+#: components/Workflow/WorkflowLegend.jsx:86
msgid "Legend"
msgstr "图例"
-#: src/components/Search/AdvancedSearch.jsx:220
+#: components/Search/AdvancedSearch.jsx:225
msgid "Less than comparison."
msgstr "小于比较。"
-#: src/components/Search/AdvancedSearch.jsx:225
+#: components/Search/AdvancedSearch.jsx:230
msgid "Less than or equal to comparison."
msgstr "小于或等于比较。"
-#: src/screens/Setting/SettingList.jsx:137
-#: src/screens/Setting/Settings.jsx:96
-msgid "License"
-msgstr "许可证"
-
-#: src/screens/Setting/License/License.jsx:15
-#: src/screens/Setting/SettingList.jsx:142
-msgid "License settings"
-msgstr "许可证设置"
-
#: screens/Setting/SettingList.jsx:137
#: screens/Setting/Settings.jsx:96
#~ msgid "License"
@@ -4537,7 +4688,7 @@ msgstr "许可证设置"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326
#: screens/Job/JobDetail/JobDetail.jsx:238
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225
-#: screens/Template/shared/JobTemplateForm.jsx:420
+#: screens/Template/shared/JobTemplateForm.jsx:421
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163
msgid "Limit"
msgstr "限制"
@@ -4598,7 +4749,7 @@ msgid "Lookup typeahead"
msgstr "查找 typeahead"
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40
-#: screens/Project/ProjectList/ProjectListItem.jsx:60
+#: screens/Project/ProjectList/ProjectListItem.jsx:67
msgid "MOST RECENT SYNC"
msgstr "最新同步"
@@ -4622,7 +4773,7 @@ msgstr ""
msgid "Managed nodes"
msgstr ""
-#: components/JobList/JobList.jsx:189
+#: components/JobList/JobList.jsx:188
#: components/JobList/JobListItem.jsx:36
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40
#: screens/Job/JobDetail/JobDetail.jsx:100
@@ -4657,8 +4808,8 @@ msgstr "管理作业"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90
#: screens/Project/ProjectDetail/ProjectDetail.jsx:111
-#: screens/Project/ProjectList/ProjectList.jsx:150
-#: screens/Project/ProjectList/ProjectListItem.jsx:134
+#: screens/Project/ProjectList/ProjectList.jsx:149
+#: screens/Project/ProjectList/ProjectListItem.jsx:149
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89
msgid "Manual"
msgstr "手动"
@@ -4725,12 +4876,18 @@ msgid ""
msgstr ""
#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34
-msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online."
-msgstr "新实例上线时自动分配给此组的最小实例数量。"
+#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online."
+#~ msgstr "新实例上线时自动分配给此组的最小实例数量。"
+
+#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46
+msgid ""
+"Minimum percentage of all instances that will be automatically\n"
+"assigned to this group when new instances come online."
+msgstr ""
#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46
-msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online."
-msgstr "新实例上线时将自动分配给此组的所有实例的最小百分比。"
+#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online."
+#~ msgstr "新实例上线时将自动分配给此组的所有实例的最小百分比。"
#: components/Schedule/shared/ScheduleForm.jsx:163
msgid "Minute"
@@ -4867,8 +5024,8 @@ msgstr "多项选择选项"
#: components/AssociateModal/AssociateModal.jsx:139
#: components/AssociateModal/AssociateModal.jsx:154
#: components/HostForm/HostForm.jsx:87
-#: components/JobList/JobList.jsx:169
-#: components/JobList/JobList.jsx:218
+#: components/JobList/JobList.jsx:168
+#: components/JobList/JobList.jsx:217
#: components/JobList/JobListItem.jsx:69
#: components/LaunchPrompt/steps/CredentialsStep.jsx:174
#: components/LaunchPrompt/steps/CredentialsStep.jsx:189
@@ -4907,8 +5064,8 @@ msgstr "多项选择选项"
#: components/Schedule/ScheduleList/ScheduleList.jsx:192
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78
#: components/Schedule/shared/ScheduleForm.jsx:102
-#: components/TemplateList/TemplateList.jsx:189
-#: components/TemplateList/TemplateList.jsx:222
+#: components/TemplateList/TemplateList.jsx:188
+#: components/TemplateList/TemplateList.jsx:221
#: components/TemplateList/TemplateListItem.jsx:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37
@@ -4945,8 +5102,8 @@ msgstr "多项选择选项"
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111
@@ -4960,7 +5117,7 @@ msgstr "多项选择选项"
#: screens/Host/HostList/HostListItem.jsx:34
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:64
#: screens/InstanceGroup/Instances/InstanceList.jsx:155
#: screens/InstanceGroup/Instances/InstanceList.jsx:162
@@ -4982,7 +5139,7 @@ msgstr "多项选择选项"
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:197
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67
@@ -5013,7 +5170,7 @@ msgstr "多项选择选项"
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
-#: screens/Project/ProjectList/ProjectListItem.jsx:99
+#: screens/Project/ProjectList/ProjectListItem.jsx:114
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
#: screens/Team/TeamDetail/TeamDetail.jsx:34
@@ -5032,7 +5189,7 @@ msgstr "多项选择选项"
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115
-#: screens/Template/shared/JobTemplateForm.jsx:207
+#: screens/Template/shared/JobTemplateForm.jsx:208
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
@@ -5190,36 +5347,54 @@ msgid ""
msgstr ""
#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224
-msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong."
-msgstr "请注意,只有直接属于此组的主机才能解除关联。子组中的主机必须与其所属的子组级别直接解除关联。"
+#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong."
+#~ msgstr "请注意,只有直接属于此组的主机才能解除关联。子组中的主机必须与其所属的子组级别直接解除关联。"
-#: src/screens/Host/HostGroups/HostGroupsList.jsx:212
-msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
-msgstr "请注意,如果主机也是组子对象的成员,在解除关联后,您可能仍然可以在列表中看到组。这个列表显示了主机与其直接及间接关联的所有组。"
+#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214
+msgid ""
+"Note that you may still see the group in the list after\n"
+"disassociating if the host is also a member of that group’s\n"
+"children. This list shows all groups the host is associated\n"
+"with directly and indirectly."
+msgstr ""
+
+#: screens/Host/HostGroups/HostGroupsList.jsx:212
+msgid ""
+"Note that you may still see the group in the list after\n"
+"disassociating if the host is also a member of that group’s \n"
+"children. This list shows all groups the host is associated \n"
+"with directly and indirectly."
+msgstr ""
#: src/screens/Host/HostGroups/HostGroupsList.jsx:212
#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
#~ msgstr ""
#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214
-msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
-msgstr "请注意,如果主机也是组子对象的成员,在解除关联后,您可能仍然可以在列表中看到组。这个列表显示了主机与其直接及间接关联的所有组。"
+#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly."
+#~ msgstr "请注意,如果主机也是组子对象的成员,在解除关联后,您可能仍然可以在列表中看到组。这个列表显示了主机与其直接及间接关联的所有组。"
#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:66
msgid "Note: This field assumes the remote name is \"origin\"."
msgstr "注意:该字段假设远程名称为“origin”。"
-#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36
-msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information."
-msgstr "备注:在将 SSH 协议用于 GitHub 或 Bitbucket 时,只需输入 SSH 密钥,而不要输入用户名(除 git 外)。另外,GitHub 和 Bitbucket 在使用 SSH 时不支持密码验证。GIT 只读协议 (git://) 不使用用户名或密码信息。"
+#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:40
+msgid ""
+"Note: When using SSH protocol for GitHub or\n"
+"Bitbucket, enter an SSH key only, do not enter a username\n"
+"(other than git). Additionally, GitHub and Bitbucket do\n"
+"not support password authentication when using SSH. GIT\n"
+"read only protocol (git://) does not use username or\n"
+"password information."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36
#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information."
#~ msgstr ""
#: src/screens/Inventory/Inventories.jsx:120
-msgid "Notifcations"
-msgstr "通知"
+#~ msgid "Notifcations"
+#~ msgstr "通知"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270
msgid "Notification Color"
@@ -5235,7 +5410,7 @@ msgstr "没有找到通知模板。"
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188
#: screens/NotificationTemplate/NotificationTemplates.jsx:13
#: screens/NotificationTemplate/NotificationTemplates.jsx:21
-#: util/getRelatedResourceDeleteDetails.js:205
+#: util/getRelatedResourceDeleteDetails.js:188
msgid "Notification Templates"
msgstr "通知模板"
@@ -5309,7 +5484,7 @@ msgstr "10 月"
#: screens/Setting/shared/SharedFields.jsx:97
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:53
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "Off"
msgstr "关"
@@ -5327,7 +5502,7 @@ msgstr "关"
#: screens/Setting/shared/SharedFields.jsx:96
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:52
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "On"
msgstr "于"
@@ -5365,7 +5540,7 @@ msgstr "OpenStack"
msgid "Option Details"
msgstr "选项详情"
-#: screens/Template/shared/JobTemplateForm.jsx:372
+#: screens/Template/shared/JobTemplateForm.jsx:373
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:220
msgid ""
"Optional labels that describe this job template,\n"
@@ -5375,8 +5550,8 @@ msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:342
#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187
-msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs."
-msgstr "描述此作业模板的可选标签,如 'dev' 或 'test'。标签可用于对作业模板和完成的作业进行分组和过滤。"
+#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs."
+#~ msgstr "描述此作业模板的可选标签,如 'dev' 或 'test'。标签可用于对作业模板和完成的作业进行分组和过滤。"
#: screens/Template/shared/WebhookSubForm.jsx:219
msgid "Optionally select the credential to use to send status updates back to the webhook service."
@@ -5391,12 +5566,12 @@ msgstr "(可选)选择要用来向 Webhook 服务发回状态更新的凭证
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141
#: screens/Credential/shared/TypeInputsSubForm.jsx:49
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:250
#: screens/Project/ProjectDetail/ProjectDetail.jsx:130
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180
-#: screens/Template/shared/JobTemplateForm.jsx:530
+#: screens/Template/shared/JobTemplateForm.jsx:531
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246
msgid "Options"
msgstr "选项"
@@ -5418,17 +5593,19 @@ msgstr "选项"
#: screens/Application/ApplicationsList/ApplicationsList.jsx:163
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:202
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69
#: screens/Project/ProjectDetail/ProjectDetail.jsx:98
+#: screens/Project/ProjectList/ProjectListItem.jsx:215
+#: screens/Project/ProjectList/ProjectListItem.jsx:226
#: screens/Team/TeamDetail/TeamDetail.jsx:40
#: screens/Team/TeamList/TeamList.jsx:155
#: screens/Team/TeamList/TeamListItem.jsx:45
@@ -5455,15 +5632,15 @@ msgstr "未找到机构。"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:97
#: screens/ActivityStream/ActivityStream.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:133
-#: screens/Organization/OrganizationList/OrganizationList.jsx:179
+#: screens/Organization/OrganizationList/OrganizationList.jsx:132
+#: screens/Organization/OrganizationList/OrganizationList.jsx:178
#: screens/Organization/Organizations.jsx:16
#: screens/Organization/Organizations.jsx:27
#: screens/User/User.jsx:65
#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55
#: screens/User/Users.jsx:34
-#: util/getRelatedResourceDeleteDetails.js:256
-#: util/getRelatedResourceDeleteDetails.js:290
+#: util/getRelatedResourceDeleteDetails.js:239
+#: util/getRelatedResourceDeleteDetails.js:273
msgid "Organizations"
msgstr "机构"
@@ -5481,7 +5658,7 @@ msgid "Output"
msgstr "输出"
#: components/PromptDetail/PromptInventorySourceDetail.jsx:48
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:121
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
msgid "Overwrite"
msgstr "覆盖"
@@ -5490,7 +5667,7 @@ msgstr "覆盖"
msgid "Overwrite Variables"
msgstr "覆盖变量"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:144
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
msgid "Overwrite variables"
msgstr "覆盖变量"
@@ -5540,7 +5717,7 @@ msgstr "Pan 上"
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr "传递额外的命令行更改。有两个 ansible 命令行参数:"
-#: screens/Template/shared/JobTemplateForm.jsx:392
+#: screens/Template/shared/JobTemplateForm.jsx:393
msgid ""
"Pass extra command line variables to the playbook. This is the\n"
"-e or --extra-vars command line parameter for ansible-playbook.\n"
@@ -5609,7 +5786,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:138
#: screens/Job/JobDetail/JobDetail.jsx:237
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223
-#: screens/Template/shared/JobTemplateForm.jsx:330
+#: screens/Template/shared/JobTemplateForm.jsx:331
msgid "Playbook"
msgstr "Playbook"
@@ -5627,7 +5804,7 @@ msgstr ""
msgid "Playbook Directory"
msgstr "Playbook 目录"
-#: components/JobList/JobList.jsx:187
+#: components/JobList/JobList.jsx:186
#: components/JobList/JobListItem.jsx:34
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38
#: screens/Job/JobDetail/JobDetail.jsx:98
@@ -5682,7 +5859,7 @@ msgstr "请输入一个值。"
msgid "Please select a day number between 1 and 31."
msgstr "选择的日数字应介于 1 到 31 之间。"
-#: screens/Template/shared/JobTemplateForm.jsx:755
+#: screens/Template/shared/JobTemplateForm.jsx:756
msgid "Please select an Inventory or check the Prompt on Launch option."
msgstr "请选择一个清单或者选中“启动时提示”选项。"
@@ -5713,9 +5890,13 @@ msgstr "策略实例百分比"
msgid "Populate field from an external secret management system"
msgstr "从外部 secret 管理系统填充字段"
-#: src/components/Lookup/HostFilterLookup.jsx:287
-msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples."
-msgstr "使用搜索过滤器填充此清单的主机。例如: ansible_facts.ansible_distribution:\"RedHat\"。如需更多语法和示例,请参阅 Ansible Tower 文档。"
+#: components/Lookup/HostFilterLookup.jsx:288
+msgid ""
+"Populate the hosts for this inventory by using a search\n"
+"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n"
+"Refer to the Ansible Tower documentation for further syntax and\n"
+"examples."
+msgstr ""
#: src/components/Lookup/HostFilterLookup.jsx:287
#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples."
@@ -5744,7 +5925,7 @@ msgstr "预览"
msgid "Private key passphrase"
msgstr "私钥密码"
-#: screens/Template/shared/JobTemplateForm.jsx:536
+#: screens/Template/shared/JobTemplateForm.jsx:537
msgid "Privilege Escalation"
msgstr "权限升级"
@@ -5760,7 +5941,7 @@ msgstr "权限升级密码"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:123
#: components/PromptDetail/PromptJobTemplateDetail.jsx:131
#: components/TemplateList/TemplateListItem.jsx:271
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:216
#: screens/Job/JobDetail/JobDetail.jsx:212
#: screens/Job/JobDetail/JobDetail.jsx:227
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151
@@ -5801,8 +5982,8 @@ msgstr "项目同步失败"
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
-#: util/getRelatedResourceDeleteDetails.js:219
-#: util/getRelatedResourceDeleteDetails.js:249
+#: util/getRelatedResourceDeleteDetails.js:202
+#: util/getRelatedResourceDeleteDetails.js:232
msgid "Projects"
msgstr "项目"
@@ -5819,7 +6000,7 @@ msgstr "提示"
msgid "Prompt Overrides"
msgstr "提示覆盖"
-#: components/CodeEditor/VariablesField.jsx:222
+#: components/CodeEditor/VariablesField.jsx:230
#: components/FieldWithPrompt/FieldWithPrompt.jsx:47
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167
msgid "Prompt on launch"
@@ -5835,7 +6016,7 @@ msgstr "提示的值"
msgid "Prompts"
msgstr "提示"
-#: screens/Template/shared/JobTemplateForm.jsx:423
+#: screens/Template/shared/JobTemplateForm.jsx:424
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:166
msgid ""
"Provide a host pattern to further constrain\n"
@@ -5855,8 +6036,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36
#: src/screens/Template/shared/JobTemplateForm.jsx:393
#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147
-msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns."
-msgstr "提供主机模式以进一步限制受 playbook 管理或影响的主机列表。允许使用多种模式。请参阅 Ansible 文档,以了解更多有关模式的信息和示例。"
+#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns."
+#~ msgstr "提供主机模式以进一步限制受 playbook 管理或影响的主机列表。允许使用多种模式。请参阅 Ansible 文档,以了解更多有关模式的信息和示例。"
#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164
msgid "Provide a value for this field or select the Prompt on launch option."
@@ -5869,21 +6050,33 @@ msgid ""
msgstr ""
#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284
-msgid "Provide key/value pairs using either YAML or JSON."
-msgstr "使用 YAML 或 JSON 提供键/值对。"
+#~ msgid "Provide key/value pairs using either YAML or JSON."
+#~ msgstr "使用 YAML 或 JSON 提供键/值对。"
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:208
+msgid ""
+"Provide your Red Hat or Red Hat Satellite credentials\n"
+"below and you can choose from a list of your available subscriptions.\n"
+"The credentials you use will be stored for future use in\n"
+"retrieving renewal or expanded subscriptions."
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94
+msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics."
+msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:152
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243
-#: screens/Template/shared/JobTemplateForm.jsx:609
+#: screens/Template/shared/JobTemplateForm.jsx:610
msgid "Provisioning Callback URL"
msgstr "部署回调 URL"
-#: screens/Template/shared/JobTemplateForm.jsx:604
+#: screens/Template/shared/JobTemplateForm.jsx:605
msgid "Provisioning Callback details"
msgstr "置备回调详情"
-#: screens/Template/shared/JobTemplateForm.jsx:541
-#: screens/Template/shared/JobTemplateForm.jsx:544
+#: screens/Template/shared/JobTemplateForm.jsx:542
+#: screens/Template/shared/JobTemplateForm.jsx:545
msgid "Provisioning Callbacks"
msgstr "置备回调"
@@ -5964,9 +6157,19 @@ msgstr "重定向 URI"
msgid "Redirect uris"
msgstr "重定向 URI"
-#: src/screens/Template/shared/JobTemplateForm.jsx:383
-msgid "Refer to the Ansible documentation for details about the configuration file."
-msgstr "有关配置文件的详情请参阅 Ansible 文档。"
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278
+msgid "Redirecting to dashboard"
+msgstr ""
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282
+msgid "Redirecting to subscription detail"
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:414
+msgid ""
+"Refer to the Ansible documentation for details\n"
+"about the configuration file."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:383
#~ msgid "Refer to the Ansible documentation for details about the configuration file."
@@ -6000,7 +6203,7 @@ msgid "Related Groups"
msgstr "相关组"
#: components/JobList/JobListItem.jsx:118
-#: components/LaunchButton/ReLaunchDropDown.jsx:78
+#: components/LaunchButton/ReLaunchDropDown.jsx:81
#: screens/Job/JobDetail/JobDetail.jsx:384
#: screens/Job/JobDetail/JobDetail.jsx:392
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:162
@@ -6012,16 +6215,16 @@ msgstr "重新启动"
msgid "Relaunch Job"
msgstr "重新启动作业"
-#: components/LaunchButton/ReLaunchDropDown.jsx:39
+#: components/LaunchButton/ReLaunchDropDown.jsx:41
msgid "Relaunch all hosts"
msgstr "重新启动所有主机"
-#: components/LaunchButton/ReLaunchDropDown.jsx:51
+#: components/LaunchButton/ReLaunchDropDown.jsx:54
msgid "Relaunch failed hosts"
msgstr "重新启动失败的主机"
-#: components/LaunchButton/ReLaunchDropDown.jsx:29
-#: components/LaunchButton/ReLaunchDropDown.jsx:34
+#: components/LaunchButton/ReLaunchDropDown.jsx:30
+#: components/LaunchButton/ReLaunchDropDown.jsx:35
msgid "Relaunch on"
msgstr "重新启动于"
@@ -6124,9 +6327,11 @@ msgstr "此模板中缺少资源。"
msgid "Restore initial value."
msgstr "恢复初始值。"
-#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212
-msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'"
-msgstr "从给定的主机变量字典中检索启用的状态。启用的变量可以使用点符号来指定,如 'foo.bar'"
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255
+msgid ""
+"Retrieve the enabled state from the given dict of host variables.\n"
+"The enabled variable may be specified using dot notation, e.g: 'foo.bar'"
+msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212
#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'"
@@ -6185,8 +6390,8 @@ msgid "Revert to factory default."
msgstr "恢复到工厂默认值。"
#: screens/Job/JobDetail/JobDetail.jsx:236
-#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:137
+#: screens/Project/ProjectList/ProjectList.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:152
msgid "Revision"
msgstr "修订"
@@ -6222,7 +6427,7 @@ msgstr "角色"
#: screens/Credential/shared/ExternalTestModal.jsx:90
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24
-#: screens/Template/shared/JobTemplateForm.jsx:171
+#: screens/Template/shared/JobTemplateForm.jsx:172
msgid "Run"
msgstr "运行"
@@ -6253,7 +6458,7 @@ msgstr "运行于"
msgid "Run type"
msgstr "运行类型"
-#: components/JobList/JobList.jsx:204
+#: components/JobList/JobList.jsx:203
#: components/TemplateList/TemplateListItem.jsx:106
#: components/Workflow/WorkflowNodeHelp.jsx:83
msgid "Running"
@@ -6304,7 +6509,7 @@ msgstr "开始"
#: components/Sparkline/Sparkline.jsx:31
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45
-#: screens/Project/ProjectList/ProjectListItem.jsx:65
+#: screens/Project/ProjectList/ProjectListItem.jsx:72
msgid "STATUS:"
msgstr "状态:"
@@ -6487,7 +6692,7 @@ msgstr "选择项"
msgid "Select Items from List"
msgstr "从列表中选择项"
-#: screens/Template/shared/LabelSelect.jsx:88
+#: screens/Template/shared/LabelSelect.jsx:92
msgid "Select Labels"
msgstr ""
@@ -6511,9 +6716,11 @@ msgstr "选择节点类型"
msgid "Select a Resource Type"
msgstr "选择资源类型"
-#: src/screens/Template/shared/JobTemplateForm.jsx:280
-msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch."
-msgstr "为工作模板选择一个分支。此分支应用于提示分支的所有作业模板节点。"
+#: screens/Template/shared/JobTemplateForm.jsx:311
+msgid ""
+"Select a branch for the job template. This branch is applied to\n"
+"all job template nodes that prompt for a branch."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:280
#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch."
@@ -6552,7 +6759,7 @@ msgstr "选择一个模块"
msgid "Select a playbook"
msgstr "选择一个 playbook"
-#: screens/Template/shared/JobTemplateForm.jsx:296
+#: screens/Template/shared/JobTemplateForm.jsx:297
msgid "Select a project before editing the execution environment."
msgstr ""
@@ -6560,7 +6767,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr "选择要批准的行"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr "选择要删除的行"
@@ -6610,8 +6817,8 @@ msgstr "为此字段选择有效日期和时间"
#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41
#: screens/Team/shared/TeamForm.jsx:20
#: screens/Template/Survey/SurveyQuestionForm.jsx:28
-#: screens/Template/shared/JobTemplateForm.jsx:83
-#: screens/Template/shared/JobTemplateForm.jsx:147
+#: screens/Template/shared/JobTemplateForm.jsx:84
+#: screens/Template/shared/JobTemplateForm.jsx:148
#: screens/User/shared/UserForm.jsx:49
msgid "Select a value for this field"
msgstr "为这个字段选择一个值"
@@ -6641,7 +6848,7 @@ msgstr "为工作流选择清单。此清单应用于提示清单的所有作业
msgid "Select an organization before editing the default execution environment."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:354
+#: screens/Template/shared/JobTemplateForm.jsx:355
msgid ""
"Select credentials that allow Tower to access the nodes this job will be ran\n"
"against. You can only select one credential of each type. For machine credentials (SSH),\n"
@@ -6651,12 +6858,19 @@ msgid ""
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:324
-msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time."
-msgstr "选择允许 Tower 访问将运行此作业的节点的凭证。每种类型您只能选择一个凭证。对于机器凭证 (SSH),如果选中了“启动时提示”但未选择凭证,您需要在运行时选择机器凭证。如果选择了凭证并选中了“启动时提示”,则所选凭证将变为默认设置,可以在运行时更新。"
+#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time."
+#~ msgstr "选择允许 Tower 访问将运行此作业的节点的凭证。每种类型您只能选择一个凭证。对于机器凭证 (SSH),如果选中了“启动时提示”但未选择凭证,您需要在运行时选择机器凭证。如果选择了凭证并选中了“启动时提示”,则所选凭证将变为默认设置,可以在运行时更新。"
+
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89
+msgid ""
+"Select from the list of directories found in\n"
+"the Project Base Path. Together the base path and the playbook\n"
+"directory provide the full path used to locate playbooks."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89
-msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks."
-msgstr "从位于项目基本路径的目录列表中进行选择。基本路径和 playbook 目录一起提供了用于定位 playbook 的完整路径。"
+#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks."
+#~ msgstr "从位于项目基本路径的目录列表中进行选择。基本路径和 playbook 目录一起提供了用于定位 playbook 的完整路径。"
#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94
msgid "Select items from list"
@@ -6683,7 +6897,7 @@ msgstr "选择要应用的角色"
msgid "Select source path"
msgstr "选择源路径"
-#: components/MultiSelect/TagMultiSelect.jsx:55
+#: components/MultiSelect/TagMultiSelect.jsx:60
msgid "Select tags"
msgstr ""
@@ -6691,7 +6905,7 @@ msgstr ""
msgid "Select the Instance Groups for this Inventory to run on."
msgstr "选择要运行此清单的实例组。"
-#: screens/Template/shared/JobTemplateForm.jsx:493
+#: screens/Template/shared/JobTemplateForm.jsx:494
msgid ""
"Select the Instance Groups for this Organization\n"
"to run on."
@@ -6710,36 +6924,70 @@ msgid "Select the credential you want to use when accessing the remote hosts to
msgstr "选择要在访问远程主机时用来运行命令的凭证。选择包含 Ansbile 登录远程主机所需的用户名和 SSH 密钥或密码的凭证。"
#: src/screens/Inventory/shared/InventorySourceForm.jsx:146
-msgid "Select the custom Python virtual environment for this inventory source sync to run on."
-msgstr "选择要运行此清单源同步的自定义 Python 虚拟环境。"
+#~ msgid "Select the custom Python virtual environment for this inventory source sync to run on."
+#~ msgstr "选择要运行此清单源同步的自定义 Python 虚拟环境。"
+
+#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209
+msgid "Select the default execution environment for this organization to run on."
+msgstr ""
+
+#: screens/Organization/shared/OrganizationForm.jsx:102
+msgid "Select the default execution environment for this organization."
+msgstr ""
+
+#: screens/Project/shared/ProjectForm.jsx:198
+msgid "Select the default execution environment for this project."
+msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:294
+msgid "Select the execution environment for this job template."
+msgstr ""
+
+#: components/Lookup/InventoryLookup.jsx:89
+#: screens/Template/shared/JobTemplateForm.jsx:256
+msgid ""
+"Select the inventory containing the hosts\n"
+"you want this job to manage."
+msgstr ""
#: src/components/Lookup/InventoryLookup.jsx:89
#: src/screens/Template/shared/JobTemplateForm.jsx:248
-msgid "Select the inventory containing the hosts you want this job to manage."
-msgstr "选择包含此作业要管理的主机的清单。"
+#~ msgid "Select the inventory containing the hosts you want this job to manage."
+#~ msgstr "选择包含此作业要管理的主机的清单。"
+
+#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105
+msgid ""
+"Select the inventory file\n"
+"to be synced by this source. You can select from\n"
+"the dropdown or enter a file within the input."
+msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105
-msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input."
-msgstr "选择要由此源同步的清单文件。您可以从下拉列表中选择,或者在输入中输入一个文件。"
+#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input."
+#~ msgstr "选择要由此源同步的清单文件。您可以从下拉列表中选择,或者在输入中输入一个文件。"
#: components/HostForm/HostForm.jsx:32
#: components/HostForm/HostForm.jsx:47
msgid "Select the inventory that this host will belong to."
msgstr "选择此主机要属于的清单。"
-#: screens/Template/shared/JobTemplateForm.jsx:334
+#: screens/Template/shared/JobTemplateForm.jsx:335
msgid "Select the playbook to be executed by this job."
msgstr "选择要由此作业执行的 playbook。"
-#: screens/Template/shared/JobTemplateForm.jsx:272
+#: screens/Template/shared/JobTemplateForm.jsx:273
msgid ""
"Select the project containing the playbook\n"
"you want this job to execute."
msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:264
-msgid "Select the project containing the playbook you want this job to execute."
-msgstr "选择包含此作业要执行的 playbook 的项目。"
+#~ msgid "Select the project containing the playbook you want this job to execute."
+#~ msgstr "选择包含此作业要执行的 playbook 的项目。"
+
+#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:90
+msgid "Select your Ansible Automation Platform subscription to use."
+msgstr ""
#: components/Lookup/Lookup.jsx:129
msgid "Select {0}"
@@ -6763,7 +7011,7 @@ msgstr "选择 {0}"
#: screens/Inventory/InventoryList/InventoryListItem.jsx:79
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43
-#: screens/Project/ProjectList/ProjectListItem.jsx:97
+#: screens/Project/ProjectList/ProjectListItem.jsx:112
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:259
#: screens/Team/TeamList/TeamListItem.jsx:38
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60
@@ -6867,7 +7115,7 @@ msgstr "显示"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:144
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232
-#: screens/Template/shared/JobTemplateForm.jsx:475
+#: screens/Template/shared/JobTemplateForm.jsx:476
msgid "Show Changes"
msgstr "显示更改"
@@ -6940,11 +7188,11 @@ msgstr "简单键选择"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368
#: screens/Job/JobDetail/JobDetail.jsx:327
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357
-#: screens/Template/shared/JobTemplateForm.jsx:514
+#: screens/Template/shared/JobTemplateForm.jsx:515
msgid "Skip Tags"
msgstr "跳过标签"
-#: screens/Template/shared/JobTemplateForm.jsx:517
+#: screens/Template/shared/JobTemplateForm.jsx:518
msgid ""
"Skip tags are useful when you have a\n"
"large playbook, and you want to skip specific parts of a\n"
@@ -6963,8 +7211,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74
#: src/screens/Template/shared/JobTemplateForm.jsx:487
-msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
-msgstr "如果有大型一个 playbook,而您想要跳过某个 play 或任务的特定部分,则跳过标签很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。"
+#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
+#~ msgstr "如果有大型一个 playbook,而您想要跳过某个 play 或任务的特定部分,则跳过标签很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。"
#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39
msgid "Skipped"
@@ -7017,7 +7265,7 @@ msgid "Sort question order"
msgstr "排序问题顺序"
#: components/PromptDetail/PromptInventorySourceDetail.jsx:86
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/shared/InventorySourceForm.jsx:135
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86
msgid "Source"
@@ -7031,7 +7279,7 @@ msgstr "源"
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321
#: screens/Project/ProjectDetail/ProjectDetail.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220
-#: screens/Template/shared/JobTemplateForm.jsx:306
+#: screens/Template/shared/JobTemplateForm.jsx:307
msgid "Source Control Branch"
msgstr "源控制分支"
@@ -7065,13 +7313,13 @@ msgstr "源控制类型"
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
#: screens/Project/ProjectDetail/ProjectDetail.jsx:114
-#: screens/Project/ProjectList/ProjectList.jsx:158
+#: screens/Project/ProjectList/ProjectList.jsx:157
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97
msgid "Source Control URL"
msgstr "源控制 URL"
-#: components/JobList/JobList.jsx:185
+#: components/JobList/JobList.jsx:184
#: components/JobList/JobListItem.jsx:32
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39
#: screens/Job/JobDetail/JobDetail.jsx:93
@@ -7103,7 +7351,7 @@ msgstr "源详情"
msgid "Source phone number"
msgstr "源电话号码"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34
msgid "Source variables"
msgstr "源变量"
@@ -7124,12 +7372,18 @@ msgid ""
msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478
-msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax."
-msgstr "以 JSON 格式指定 HTTP 标头。示例语法请参阅 Ansible Tower 文档。"
+#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax."
+#~ msgstr "以 JSON 格式指定 HTTP 标头。示例语法请参阅 Ansible Tower 文档。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392
+msgid ""
+"Specify a notification color. Acceptable colors are hex\n"
+"color code (example: #3af or #789abc)."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392
-msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)."
-msgstr "指定通知颜色。可接受的颜色为十六进制颜色代码(示例:#3af 或者 #789abc)。"
+#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)."
+#~ msgstr "指定通知颜色。可接受的颜色为十六进制颜色代码(示例:#3af 或者 #789abc)。"
#: screens/User/shared/UserTokenForm.jsx:71
msgid "Specify a scope for the token's access"
@@ -7162,7 +7416,7 @@ msgstr "标准输出标签页"
msgid "Start"
msgstr "开始"
-#: components/JobList/JobList.jsx:221
+#: components/JobList/JobList.jsx:220
#: components/JobList/JobListItem.jsx:84
msgid "Start Time"
msgstr "开始时间"
@@ -7190,21 +7444,21 @@ msgid "Start sync source"
msgstr "启动同步源"
#: screens/Job/JobDetail/JobDetail.jsx:141
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79
msgid "Started"
msgstr "已开始"
-#: components/JobList/JobList.jsx:198
-#: components/JobList/JobList.jsx:219
+#: components/JobList/JobList.jsx:197
+#: components/JobList/JobList.jsx:218
#: components/JobList/JobListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:201
+#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryListItem.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:174
-#: screens/Project/ProjectList/ProjectListItem.jsx:119
+#: screens/Project/ProjectList/ProjectListItem.jsx:134
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
@@ -7297,7 +7551,7 @@ msgstr "成功消息正文"
msgid "Successful"
msgstr "成功"
-#: screens/Project/ProjectList/ProjectListItem.jsx:148
+#: screens/Project/ProjectList/ProjectListItem.jsx:163
msgid "Successfully copied to clipboard!"
msgstr "成功复制至剪贴板!"
@@ -7342,25 +7596,25 @@ msgstr "可选的问卷调查问题"
msgid "Sync"
msgstr "同步"
-#: screens/Project/ProjectList/ProjectListItem.jsx:155
+#: screens/Project/ProjectList/ProjectListItem.jsx:170
#: screens/Project/shared/ProjectSyncButton.jsx:31
msgid "Sync Project"
msgstr "同步项目"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:200
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:203
msgid "Sync all"
msgstr "全部同步"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:194
msgid "Sync all sources"
msgstr "同步所有源"
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:232
msgid "Sync error"
msgstr "同步错误"
-#: screens/Project/ProjectList/ProjectListItem.jsx:141
+#: screens/Project/ProjectList/ProjectListItem.jsx:156
msgid "Sync for revision"
msgstr "修订版本同步"
@@ -7405,7 +7659,7 @@ msgstr "TACACS+ 设置"
msgid "Tabs"
msgstr "制表符"
-#: screens/Template/shared/JobTemplateForm.jsx:501
+#: screens/Template/shared/JobTemplateForm.jsx:502
msgid ""
"Tags are useful when you have a large\n"
"playbook, and you want to run a specific part of a\n"
@@ -7424,8 +7678,8 @@ msgstr ""
#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62
#: src/screens/Template/shared/JobTemplateForm.jsx:471
-msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
-msgstr "如果有大型一个 playbook,而您想要运行某个 play 或任务的特定部分,则标签很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。"
+#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags."
+#~ msgstr "如果有大型一个 playbook,而您想要运行某个 play 或任务的特定部分,则标签很有用。使用逗号分隔多个标签。请参阅 Ansible Tower 文档了解使用标签的详情。"
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138
msgid "Tags for the Annotation"
@@ -7490,7 +7744,7 @@ msgstr "未找到团队"
#: screens/User/UserTeams/UserTeamList.jsx:176
#: screens/User/UserTeams/UserTeamList.jsx:244
#: screens/User/Users.jsx:33
-#: util/getRelatedResourceDeleteDetails.js:198
+#: util/getRelatedResourceDeleteDetails.js:181
msgid "Teams"
msgstr "团队"
@@ -7510,8 +7764,8 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82
#: screens/Template/Templates.jsx:16
-#: util/getRelatedResourceDeleteDetails.js:242
-#: util/getRelatedResourceDeleteDetails.js:299
+#: util/getRelatedResourceDeleteDetails.js:225
+#: util/getRelatedResourceDeleteDetails.js:282
msgid "Templates"
msgstr "模板"
@@ -7575,28 +7829,65 @@ msgid ""
msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122
-msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
-msgstr "电子邮件通知停止尝试到达主机并超时之前所经过的时间(以秒为单位)。范围为 1 秒到 120 秒。"
+#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds."
+#~ msgstr "电子邮件通知停止尝试到达主机并超时之前所经过的时间(以秒为单位)。范围为 1 秒到 120 秒。"
+
+#: screens/Template/shared/JobTemplateForm.jsx:470
+msgid ""
+"The amount of time (in seconds) to run\n"
+"before the job is canceled. Defaults to 0 for no job\n"
+"timeout."
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:439
-msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
-msgstr "取消作业前运行的时间(以秒为单位)。默认为 0,即没有作业超时。"
+#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout."
+#~ msgstr "取消作业前运行的时间(以秒为单位)。默认为 0,即没有作业超时。"
+
+#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164
+msgid ""
+"The base URL of the Grafana server - the\n"
+"/api/annotations endpoint will be added automatically to the base\n"
+"Grafana URL."
+msgstr ""
#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164
-msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL."
-msgstr "Grafana 服务器的基本 URL - /api/annotations 端点将自动添加到基本 Grafana URL。"
+#~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL."
+#~ msgstr "Grafana 服务器的基本 URL - /api/annotations 端点将自动添加到基本 Grafana URL。"
+
+#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:78
+msgid ""
+"The first fetches all references. The second\n"
+"fetches the Github pull request number 62, in this example\n"
+"the branch needs to be \"pull/62/head\"."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74
-msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"."
-msgstr "第一个获取所有引用。第二个获取 Github 拉取请求号 62,在本示例中,分支需要为 \"pull/62/head\"。"
+#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"."
+#~ msgstr "第一个获取所有引用。第二个获取 Github 拉取请求号 62,在本示例中,分支需要为 \"pull/62/head\"。"
+
+#: screens/Organization/shared/OrganizationForm.jsx:77
+msgid ""
+"The maximum number of hosts allowed to be managed by this organization.\n"
+"Value defaults to 0 which means no limit. Refer to the Ansible\n"
+"documentation for more details."
+msgstr ""
#: src/screens/Organization/shared/OrganizationForm.jsx:69
-msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
-msgstr "允许由此机构管理的最大主机数。默认值为 0,表示无限制。请参阅 Ansible 文档以了解更多详情。"
+#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details."
+#~ msgstr "允许由此机构管理的最大主机数。默认值为 0,表示无限制。请参阅 Ansible 文档以了解更多详情。"
+
+#: screens/Template/shared/JobTemplateForm.jsx:408
+msgid ""
+"The number of parallel or simultaneous\n"
+"processes to use while executing the playbook. An empty value,\n"
+"or a value less than 1 will use the Ansible default which is\n"
+"usually 5. The default number of forks can be overwritten\n"
+"with a change to"
+msgstr ""
#: src/screens/Template/shared/JobTemplateForm.jsx:377
-msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to"
-msgstr "执行 playbook 时使用的并行或同步进程数量。空值或小于 1 的值将使用 Ansible 默认值,通常为 5。要覆盖默认分叉数,可更改"
+#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to"
+#~ msgstr "执行 playbook 时使用的并行或同步进程数量。空值或小于 1 的值将使用 Ansible 默认值,通常为 5。要覆盖默认分叉数,可更改"
#: components/AdHocCommands/AdHocDetailsStep.jsx:197
msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information"
@@ -7620,9 +7911,12 @@ msgstr ""
msgid "The resource associated with this node has been deleted."
msgstr "已删除与该节点关联的资源。"
-#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134
-msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
-msgstr "变量名称的建议格式为小写字母并用下划线分隔(例如:foo_bar、user_id、host_name 等等)。不允许使用带空格的变量名称。"
+#: screens/Template/Survey/SurveyQuestionForm.jsx:134
+msgid ""
+"The suggested format for variable names is lowercase and\n"
+"underscore-separated (for example, foo_bar, user_id, host_name,\n"
+"etc.). Variable names with spaces are not allowed."
+msgstr ""
#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134
#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed."
@@ -7632,9 +7926,15 @@ msgstr "变量名称的建议格式为小写字母并用下划线分隔(例如
msgid "The tower instance group cannot be deleted."
msgstr "tower 实例组不能被删除。"
-#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53
-msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above."
-msgstr "{project_base_dir} 中没有可用的 playbook 目录。该目录可能是空目录,或所有内容都已被分配给其他项目。创建一个新目录并确保 playbook 文件可以被 \"awx\" 系统用户读取,或者使用上述的 Source Control Type 选项从源控制控制选项直接获取 {brandName}。"
+#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53
+msgid ""
+"There are no available playbook directories in {project_base_dir}.\n"
+"Either that directory is empty, or all of the contents are already\n"
+"assigned to other projects. Create a new directory there and make\n"
+"sure the playbook files can be read by the \"awx\" system user,\n"
+"or have {brandName} directly retrieve your playbooks from\n"
+"source control using the Source Control Type option above."
+msgstr ""
#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53
#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above."
@@ -7661,8 +7961,8 @@ msgid "There was an error testing the log aggregator."
msgstr "测试日志聚合器时出错。"
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216
-msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
-msgstr "由于权限不足或待处理的作业状态,无法删除这些批准"
+#~ msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status"
+#~ msgstr "由于权限不足或待处理的作业状态,无法删除这些批准"
#: components/AdHocCommands/AdHocDetailsStep.jsx:74
msgid "These are the modules that {brandName} supports running commands against."
@@ -7684,7 +7984,7 @@ msgstr "这些参数与指定的模块一起使用。点击可以找到有关 {0
msgid "Third"
msgstr "第三"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr "此操作将删除以下内容:"
@@ -7809,7 +8109,7 @@ msgstr ""
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr ""
@@ -7833,7 +8133,7 @@ msgstr ""
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:150
+#: screens/Template/shared/JobTemplateForm.jsx:151
msgid "This project needs to be updated"
msgstr "此项目需要被更新"
@@ -7854,9 +8154,11 @@ msgstr "这一步包含错误"
msgid "This value does not match the password you entered previously. Please confirm that password."
msgstr "此值与之前输入的密码不匹配。请确认该密码。"
-#: src/screens/Setting/shared/RevertAllAlert.jsx:36
-msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?"
-msgstr "这会将此页中的所有配置值重置为其工厂默认值。确定要继续?"
+#: screens/Setting/shared/RevertAllAlert.jsx:36
+msgid ""
+"This will revert all configuration values on this page to\n"
+"their factory defaults. Are you sure you want to proceed?"
+msgstr ""
#: src/screens/Setting/shared/RevertAllAlert.jsx:36
#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?"
@@ -7897,12 +8199,21 @@ msgid ""
msgstr ""
#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121
-msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed."
-msgstr "将项目视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新项目更新的时间戳。如果它比缓存超时旧,则不被视为最新,并且会执行新的项目更新。"
+#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed."
+#~ msgstr "将项目视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新项目更新的时间戳。如果它比缓存超时旧,则不被视为最新,并且会执行新的项目更新。"
+
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238
+msgid ""
+"Time in seconds to consider an inventory sync\n"
+"to be current. During job runs and callbacks the task system will\n"
+"evaluate the timestamp of the latest sync. If it is older than\n"
+"Cache Timeout, it is not considered current, and a new\n"
+"inventory sync will be performed."
+msgstr ""
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195
-msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed."
-msgstr "将清单同步视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新同步的时间戳。如果它比缓存超时旧,则不被视为最新,并且会执行新的清单同步。"
+#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed."
+#~ msgstr "将清单同步视为最新的时间(以秒为单位)。在作业运行和回调期间,任务系统将评估最新同步的时间戳。如果它比缓存超时旧,则不被视为最新,并且会执行新的清单同步。"
#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21
msgid "Timed out"
@@ -7913,7 +8224,7 @@ msgstr "超时"
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169
-#: screens/Template/shared/JobTemplateForm.jsx:468
+#: screens/Template/shared/JobTemplateForm.jsx:469
msgid "Timeout"
msgstr "超时"
@@ -8067,7 +8378,7 @@ msgstr "周二"
msgid "Twilio"
msgstr "Twilio"
-#: components/JobList/JobList.jsx:220
+#: components/JobList/JobList.jsx:219
#: components/JobList/JobListItem.jsx:82
#: components/Lookup/ProjectLookup.jsx:110
#: components/NotificationList/NotificationList.jsx:220
@@ -8075,8 +8386,8 @@ msgstr "Twilio"
#: components/PromptDetail/PromptDetail.jsx:112
#: components/Schedule/ScheduleList/ScheduleList.jsx:174
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95
-#: components/TemplateList/TemplateList.jsx:198
-#: components/TemplateList/TemplateList.jsx:223
+#: components/TemplateList/TemplateList.jsx:197
+#: components/TemplateList/TemplateList.jsx:222
#: components/TemplateList/TemplateListItem.jsx:155
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
@@ -8087,7 +8398,7 @@ msgstr "Twilio"
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
@@ -8100,7 +8411,7 @@ msgstr "Twilio"
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
-#: screens/Project/ProjectList/ProjectListItem.jsx:132
+#: screens/Project/ProjectList/ProjectListItem.jsx:147
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86
@@ -8165,12 +8476,12 @@ msgstr "启动时更新"
msgid "Update on Project Update"
msgstr "更新项目更新"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:163
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171
msgid "Update on launch"
msgstr "启动时更新"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:173
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199
msgid "Update on project update"
msgstr "更新项目时更新"
@@ -8202,8 +8513,8 @@ msgstr ""
#: src/screens/Inventory/shared/InventorySourceForm.jsx:57
#: src/screens/Organization/shared/OrganizationForm.jsx:33
#: src/screens/Project/shared/ProjectForm.jsx:286
-msgid "Use Default Ansible Environment"
-msgstr "使用默认 Ansible 环境"
+#~ msgid "Use Default Ansible Environment"
+#~ msgstr "使用默认 Ansible 环境"
#: components/PromptDetail/PromptJobTemplateDetail.jsx:67
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139
@@ -8220,6 +8531,13 @@ msgstr "使用 SSL"
msgid "Use TLS"
msgstr "使用 TLS"
+#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:75
+msgid ""
+"Use custom messages to change the content of\n"
+"notifications sent when a job starts, succeeds, or fails. Use\n"
+"curly braces to access information about the job:"
+msgstr ""
+
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72
#~ msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:"
#~ msgstr ""
@@ -8342,7 +8660,7 @@ msgstr "VMware vCenter"
#: screens/Job/JobDetail/JobDetail.jsx:356
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211
-#: screens/Template/shared/JobTemplateForm.jsx:389
+#: screens/Template/shared/JobTemplateForm.jsx:390
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:239
msgid "Variables"
msgstr "变量"
@@ -8369,11 +8687,11 @@ msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:102
#: components/PromptDetail/PromptJobTemplateDetail.jsx:141
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:239
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227
-#: screens/Template/shared/JobTemplateForm.jsx:441
+#: screens/Template/shared/JobTemplateForm.jsx:442
msgid "Verbosity"
msgstr "详细程度"
@@ -8600,8 +8918,12 @@ msgid "View all tokens."
msgstr "查看所有令牌。"
#: src/screens/Setting/SettingList.jsx:138
-msgid "View and edit your license information"
-msgstr "查看并编辑您的许可证信息"
+#~ msgid "View and edit your license information"
+#~ msgstr "查看并编辑您的许可证信息"
+
+#: screens/Setting/SettingList.jsx:138
+msgid "View and edit your subscription information"
+msgstr ""
#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25
#: screens/ActivityStream/ActivityStreamListItem.jsx:50
@@ -8702,7 +9024,7 @@ msgstr "Webhook 服务"
msgid "Webhook URL"
msgstr "Webhook URL"
-#: screens/Template/shared/JobTemplateForm.jsx:637
+#: screens/Template/shared/JobTemplateForm.jsx:638
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:281
msgid "Webhook details"
msgstr "Webhook 详情"
@@ -8746,7 +9068,7 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:153
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161
msgid ""
"When not checked, a merge will be performed,\n"
@@ -8756,13 +9078,21 @@ msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158
-msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
-msgstr "如果没有选中,就会执行合并,将本地变量与外部源上的变量合并。"
+#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source."
+#~ msgstr "如果没有选中,就会执行合并,将本地变量与外部源上的变量合并。"
+
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:134
+#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144
+msgid ""
+"When not checked, local child\n"
+"hosts and groups not found on the external source will remain\n"
+"untouched by the inventory update process."
+msgstr ""
#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127
#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141
-msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process."
-msgstr "如果没有选中,外部源上没有的本地子主机和组将在清单更新过程中保持不变。"
+#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process."
+#~ msgstr "如果没有选中,外部源上没有的本地子主机和组将在清单更新过程中保持不变。"
#: components/Workflow/WorkflowLegend.jsx:96
msgid "Workflow"
@@ -8778,14 +9108,14 @@ msgstr "未找到工作流批准。"
#: routeConfig.js:55
#: screens/ActivityStream/ActivityStream.jsx:154
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209
#: screens/WorkflowApproval/WorkflowApprovals.jsx:12
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:19
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:22
msgid "Workflow Approvals"
msgstr "工作流批准"
-#: components/JobList/JobList.jsx:190
+#: components/JobList/JobList.jsx:189
#: components/JobList/JobListItem.jsx:37
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41
#: screens/Job/JobDetail/JobDetail.jsx:101
@@ -8803,13 +9133,13 @@ msgstr "工作流作业"
msgid "Workflow Job Template"
msgstr "工作流作业模板"
-#: util/getRelatedResourceDeleteDetails.js:139
-#: util/getRelatedResourceDeleteDetails.js:181
-#: util/getRelatedResourceDeleteDetails.js:284
+#: util/getRelatedResourceDeleteDetails.js:122
+#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:267
msgid "Workflow Job Template Nodes"
msgstr ""
-#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:147
msgid "Workflow Job Templates"
msgstr ""
@@ -8911,7 +9241,7 @@ msgstr "您不能选择具有相同 vault ID 的多个 vault 凭证。这样做
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr "您没有权限删除以下组: {itemsUnableToDelete}"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr "您没有权限删除 {pluralizedItemName}:{itemsUnableToDelete}"
@@ -8923,6 +9253,12 @@ msgstr "您没有权限删除 {pluralizedItemName}:{itemsUnableToDelete}"
msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}"
msgstr "您没有权限取消关联: {itemsUnableToDisassociate}"
+#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:90
+msgid ""
+"You may apply a number of possible variables in the\n"
+"message. For more information, refer to the"
+msgstr ""
+
#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89
#~ msgid "You may apply a number of possible variables in the message. Refer to the"
#~ msgstr ""
@@ -8943,12 +9279,12 @@ msgstr "放大"
msgid "Zoom Out"
msgstr "缩小"
-#: screens/Template/shared/JobTemplateForm.jsx:734
+#: screens/Template/shared/JobTemplateForm.jsx:735
#: screens/Template/shared/WebhookSubForm.jsx:155
msgid "a new webhook key will be generated on save."
msgstr "在保存时会生成一个新的 WEBHOOK 密钥"
-#: screens/Template/shared/JobTemplateForm.jsx:731
+#: screens/Template/shared/JobTemplateForm.jsx:732
#: screens/Template/shared/WebhookSubForm.jsx:143
msgid "a new webhook url will be generated on save."
msgstr "在保存时会生成一个新的 WEBHOOK url"
@@ -8979,7 +9315,7 @@ msgstr "批准"
msgid "brand logo"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:280
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:276
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr "取消删除"
@@ -8988,7 +9324,7 @@ msgstr "取消删除"
msgid "command"
msgstr "命令"
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:265
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr "确认删除"
@@ -9000,10 +9336,10 @@ msgstr "确认解除关联"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68
-msgid "controller instance"
-msgstr "控制器实例"
+#~ msgid "controller instance"
+#~ msgstr "控制器实例"
-#: screens/Project/ProjectList/ProjectListItem.jsx:140
+#: screens/Project/ProjectList/ProjectListItem.jsx:155
msgid "copy to clipboard disabled"
msgstr "复制到剪贴板被禁用"
@@ -9029,7 +9365,7 @@ msgstr ""
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:275
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156
#: screens/Project/ProjectDetail/ProjectDetail.jsx:166
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154
@@ -9045,13 +9381,17 @@ msgstr "加密"
msgid "expiration"
msgstr "过期"
-#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117
-msgid "group"
-msgstr "组"
+#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:226
+msgid "for more info."
+msgstr ""
#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117
-msgid "groups"
-msgstr "组"
+#~ msgid "group"
+#~ msgstr "组"
+
+#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117
+#~ msgid "groups"
+#~ msgstr "组"
#: components/AdHocCommands/AdHocDetailsStep.jsx:182
msgid "here"
@@ -9089,8 +9429,8 @@ msgstr "清单(inventory)"
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59
#: screens/Job/JobDetail/JobDetail.jsx:119
-msgid "isolated instance"
-msgstr "隔离的实例"
+#~ msgid "isolated instance"
+#~ msgstr "隔离的实例"
#: components/Pagination/Pagination.jsx:24
msgid "items"
@@ -9141,8 +9481,8 @@ msgstr "页"
msgid "per page"
msgstr "按页面"
-#: components/LaunchButton/ReLaunchDropDown.jsx:74
-#: components/LaunchButton/ReLaunchDropDown.jsx:96
+#: components/LaunchButton/ReLaunchDropDown.jsx:77
+#: components/LaunchButton/ReLaunchDropDown.jsx:99
msgid "relaunch jobs"
msgstr ""
@@ -9166,7 +9506,7 @@ msgstr "范围"
msgid "sec"
msgstr "秒"
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
msgid "seconds"
msgstr "秒"
@@ -9234,6 +9574,46 @@ msgstr ""
#~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}"
#~ msgstr ""
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215
+msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
+msgstr ""
+
+#: screens/Credential/CredentialList/CredentialList.jsx:178
+msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171
+msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187
+msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:223
+msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:183
+msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
+msgstr ""
+
+#: screens/Inventory/InventoryList/InventoryList.jsx:222
+msgid "{0, plural, one {This invetory is currently being used by some temeplates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Organization/OrganizationList/OrganizationList.jsx:181
+msgid "{0, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Project/ProjectList/ProjectList.jsx:203
+msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: components/TemplateList/TemplateList.jsx:243
+msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
#: components/JobList/JobListCancelButton.jsx:72
msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}"
msgstr ""
@@ -9274,10 +9654,47 @@ msgstr ""
msgid "{dateStr} by <0>{username}0>"
msgstr "{dateStr}(按 <0>{username}0>)"
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:192
+msgid "{intervalValue, plural, one {day} other {days}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:190
+msgid "{intervalValue, plural, one {hour} other {hours}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:188
+msgid "{intervalValue, plural, one {minute} other {minutes}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:196
+msgid "{intervalValue, plural, one {month} other {months}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:194
+msgid "{intervalValue, plural, one {week} other {weeks}}"
+msgstr ""
+
+#: components/Schedule/shared/FrequencyDetailSubform.jsx:198
+msgid "{intervalValue, plural, one {year} other {years}}"
+msgstr ""
+
#: components/PromptDetail/PromptDetail.jsx:43
msgid "{minutes} min {seconds} sec"
msgstr "{minutes} 分 {seconds} 秒"
+#: components/JobList/JobListCancelButton.jsx:106
+msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}"
+msgstr ""
+
+#: components/JobList/JobListCancelButton.jsx:167
+msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}"
+msgstr ""
+
+#: components/JobList/JobListCancelButton.jsx:91
+msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}"
+msgstr ""
+
#: components/PaginatedDataList/PaginatedDataList.jsx:92
#: components/PaginatedTable/PaginatedTable.jsx:77
msgid "{pluralizedItemName} List"
+msgstr ""
diff --git a/awx/ui_next/src/locales/zu/messages.po b/awx/ui_next/src/locales/zu/messages.po
index 3172861cd4..1c5e76f9e2 100644
--- a/awx/ui_next/src/locales/zu/messages.po
+++ b/awx/ui_next/src/locales/zu/messages.po
@@ -35,7 +35,7 @@ msgstr ""
msgid "- Enable Webhooks"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228
msgid "/ (project root)"
msgstr ""
@@ -46,16 +46,16 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:42
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106
-#: screens/Template/shared/JobTemplateForm.jsx:180
+#: screens/Template/shared/JobTemplateForm.jsx:181
msgid "0 (Normal)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:105
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82
msgid "0 (Warning)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83
msgid "1 (Info)"
msgstr ""
@@ -67,11 +67,11 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:43
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107
-#: screens/Template/shared/JobTemplateForm.jsx:181
+#: screens/Template/shared/JobTemplateForm.jsx:182
msgid "1 (Verbose)"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84
msgid "2 (Debug)"
msgstr ""
@@ -83,7 +83,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:44
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108
-#: screens/Template/shared/JobTemplateForm.jsx:182
+#: screens/Template/shared/JobTemplateForm.jsx:183
msgid "2 (More Verbose)"
msgstr ""
@@ -94,7 +94,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:45
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109
-#: screens/Template/shared/JobTemplateForm.jsx:183
+#: screens/Template/shared/JobTemplateForm.jsx:184
msgid "3 (Debug)"
msgstr ""
@@ -105,7 +105,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:46
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110
-#: screens/Template/shared/JobTemplateForm.jsx:184
+#: screens/Template/shared/JobTemplateForm.jsx:185
msgid "4 (Connection Debug)"
msgstr ""
@@ -182,11 +182,11 @@ msgstr ""
msgid "Action"
msgstr ""
-#: components/JobList/JobList.jsx:225
+#: components/JobList/JobList.jsx:222
#: components/JobList/JobListItem.jsx:90
#: components/Schedule/ScheduleList/ScheduleList.jsx:176
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112
-#: components/TemplateList/TemplateList.jsx:227
+#: components/TemplateList/TemplateList.jsx:224
#: components/TemplateList/TemplateListItem.jsx:157
#: screens/ActivityStream/ActivityStream.jsx:260
#: screens/ActivityStream/ActivityStreamListItem.jsx:49
@@ -196,13 +196,13 @@ msgstr ""
#: screens/Credential/CredentialList/CredentialListItem.jsx:63
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:184
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:74
#: screens/Host/HostList/HostList.jsx:170
#: screens/Host/HostList/HostListItem.jsx:48
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:241
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:204
+#: screens/Inventory/InventoryList/InventoryList.jsx:203
#: screens/Inventory/InventoryList/InventoryListItem.jsx:112
#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104
#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74
@@ -211,7 +211,7 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:160
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71
#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:152
+#: screens/Project/ProjectList/ProjectListItem.jsx:167
#: screens/Team/TeamList/TeamList.jsx:156
#: screens/Team/TeamList/TeamListItem.jsx:54
#: screens/User/UserList/UserList.jsx:172
@@ -360,7 +360,7 @@ msgstr ""
msgid "Advanced search value input"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:175
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203
msgid ""
"After every project update where the SCM revision\n"
@@ -385,7 +385,7 @@ msgstr ""
msgid "Alert modal"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:46
+#: components/LaunchButton/ReLaunchDropDown.jsx:48
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:250
msgid "All"
msgstr ""
@@ -491,7 +491,7 @@ msgstr ""
#: screens/Application/Applications.jsx:35
#: screens/Application/ApplicationsList/ApplicationsList.jsx:116
#: screens/Application/ApplicationsList/ApplicationsList.jsx:154
-#: util/getRelatedResourceDeleteDetails.js:233
+#: util/getRelatedResourceDeleteDetails.js:216
msgid "Applications"
msgstr ""
@@ -776,7 +776,7 @@ msgstr ""
msgid "Cache Timeout"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:234
msgid "Cache timeout"
msgstr ""
@@ -797,7 +797,7 @@ msgstr ""
#: components/LaunchPrompt/LaunchPrompt.jsx:119
#: components/Lookup/HostFilterLookup.jsx:329
#: components/Lookup/Lookup.jsx:150
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:279
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46
#: components/Schedule/shared/ScheduleForm.jsx:641
#: components/Schedule/shared/ScheduleForm.jsx:646
@@ -905,7 +905,7 @@ msgid ""
"logging aggregator host and logging aggregator type."
msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77
msgid "Capacity"
msgstr ""
@@ -950,7 +950,7 @@ msgid "Channel"
msgstr ""
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104
-#: screens/Template/shared/JobTemplateForm.jsx:175
+#: screens/Template/shared/JobTemplateForm.jsx:176
msgid "Check"
msgstr ""
@@ -983,7 +983,7 @@ msgid "Choose a Webhook Service"
msgstr ""
#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97
-#: screens/Template/shared/JobTemplateForm.jsx:168
+#: screens/Template/shared/JobTemplateForm.jsx:169
msgid "Choose a job type"
msgstr ""
@@ -1100,7 +1100,7 @@ msgstr ""
msgid "Collapse"
msgstr ""
-#: components/JobList/JobList.jsx:188
+#: components/JobList/JobList.jsx:187
#: components/JobList/JobListItem.jsx:35
#: screens/Job/JobDetail/JobDetail.jsx:99
#: screens/Job/JobOutput/HostEventModal.jsx:137
@@ -1111,7 +1111,7 @@ msgstr ""
msgid "Compliant"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:580
+#: screens/Template/shared/JobTemplateForm.jsx:581
msgid "Concurrent Jobs"
msgstr ""
@@ -1187,7 +1187,7 @@ msgid ""
"will produce as the playbook executes."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:444
+#: screens/Template/shared/JobTemplateForm.jsx:445
msgid ""
"Control the level of output ansible will\n"
"produce as the playbook executes."
@@ -1231,7 +1231,7 @@ msgstr ""
msgid "Copy Notification Template"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:175
+#: screens/Project/ProjectList/ProjectListItem.jsx:190
msgid "Copy Project"
msgstr ""
@@ -1239,7 +1239,7 @@ msgstr ""
msgid "Copy Template"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:147
+#: screens/Project/ProjectList/ProjectListItem.jsx:162
msgid "Copy full revision to clipboard."
msgstr ""
@@ -1251,7 +1251,7 @@ msgstr ""
#~ msgid "Copyright 2019 Red Hat, Inc."
#~ msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:383
+#: screens/Template/shared/JobTemplateForm.jsx:384
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231
msgid "Create"
msgstr ""
@@ -1397,7 +1397,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:261
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53
#: screens/Job/JobDetail/JobDetail.jsx:343
@@ -1468,7 +1468,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243
#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:39
#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:43
@@ -1478,7 +1478,7 @@ msgstr ""
#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:43
#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:43
-#: util/getRelatedResourceDeleteDetails.js:191
+#: util/getRelatedResourceDeleteDetails.js:174
msgid "Credential"
msgstr ""
@@ -1537,12 +1537,12 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77
#: routeConfig.js:71
#: screens/ActivityStream/ActivityStream.jsx:165
-#: screens/Credential/CredentialList/CredentialList.jsx:176
+#: screens/Credential/CredentialList/CredentialList.jsx:175
#: screens/Credential/Credentials.jsx:13
#: screens/Credential/Credentials.jsx:24
#: screens/Job/JobDetail/JobDetail.jsx:281
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293
-#: screens/Template/shared/JobTemplateForm.jsx:351
+#: screens/Template/shared/JobTemplateForm.jsx:352
#: util/getRelatedResourceDeleteDetails.js:98
msgid "Credentials"
msgstr ""
@@ -1563,7 +1563,7 @@ msgstr ""
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93
-#: screens/Project/ProjectList/ProjectListItem.jsx:109
+#: screens/Project/ProjectList/ProjectListItem.jsx:124
msgid "Custom virtual environment {0} must be replaced by an execution environment."
msgstr ""
@@ -1651,11 +1651,11 @@ msgstr ""
#: components/DeleteButton/DeleteButton.jsx:91
#: components/DeleteButton/DeleteButton.jsx:95
#: components/DeleteButton/DeleteButton.jsx:115
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:158
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:234
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:244
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:248
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:271
#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131
@@ -1666,7 +1666,7 @@ msgstr ""
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:126
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:294
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69
@@ -1777,7 +1777,7 @@ msgstr ""
msgid "Delete credential type"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:246
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:245
msgid "Delete error"
msgstr ""
@@ -1786,7 +1786,7 @@ msgstr ""
msgid "Delete instance group"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:287
msgid "Delete inventory source"
msgstr ""
@@ -1815,7 +1815,7 @@ msgstr ""
msgid "Delete this node"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:167
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:163
msgid "Delete {pluralizedItemName}?"
msgstr ""
@@ -1867,19 +1867,19 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256
#: components/Schedule/ScheduleList/ScheduleList.jsx:197
#: components/Schedule/shared/ScheduleForm.jsx:110
-#: components/TemplateList/TemplateList.jsx:194
+#: components/TemplateList/TemplateList.jsx:193
#: components/TemplateList/TemplateListItem.jsx:230
#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68
#: screens/Application/ApplicationsList/ApplicationsList.jsx:126
#: screens/Application/shared/ApplicationForm.jsx:62
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211
-#: screens/Credential/CredentialList/CredentialList.jsx:129
+#: screens/Credential/CredentialList/CredentialList.jsx:128
#: screens/Credential/shared/CredentialForm.jsx:180
#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78
#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132
#: screens/CredentialType/shared/CredentialTypeForm.jsx:32
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:150
#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:133
#: screens/Host/HostDetail/HostDetail.jsx:81
#: screens/Host/HostList/HostList.jsx:152
@@ -1887,7 +1887,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82
#: screens/Inventory/InventoryList/InventoryList.jsx:177
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38
#: screens/Inventory/shared/InventoryForm.jsx:55
@@ -1903,7 +1903,8 @@ msgstr ""
#: screens/Organization/OrganizationList/OrganizationList.jsx:141
#: screens/Organization/shared/OrganizationForm.jsx:68
#: screens/Project/ProjectDetail/ProjectDetail.jsx:95
-#: screens/Project/ProjectList/ProjectList.jsx:143
+#: screens/Project/ProjectList/ProjectList.jsx:142
+#: screens/Project/ProjectList/ProjectListItem.jsx:209
#: screens/Project/shared/ProjectForm.jsx:176
#: screens/Team/TeamDetail/TeamDetail.jsx:38
#: screens/Team/TeamList/TeamList.jsx:134
@@ -1912,7 +1913,7 @@ msgstr ""
#: screens/Template/Survey/SurveyQuestionForm.jsx:124
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166
-#: screens/Template/shared/JobTemplateForm.jsx:215
+#: screens/Template/shared/JobTemplateForm.jsx:216
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:121
#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48
#: screens/User/UserTokenList/UserTokenList.jsx:116
@@ -2029,7 +2030,7 @@ msgstr ""
#: screens/User/Users.jsx:31
#: screens/User/Users.jsx:41
#: screens/WorkflowApproval/WorkflowApproval.jsx:76
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:21
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:24
msgid "Details"
msgstr ""
@@ -2097,17 +2098,17 @@ msgstr ""
msgid "Disassociate?"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:459
+#: screens/Template/shared/JobTemplateForm.jsx:460
msgid ""
"Divide the work done by this job template\n"
"into the specified number of job slices, each running the\n"
"same tasks against a portion of the inventory."
msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:118
-#: components/CodeEditor/VariablesDetail.jsx:124
-#: components/CodeEditor/VariablesField.jsx:134
-#: components/CodeEditor/VariablesField.jsx:140
+#: components/CodeEditor/VariablesDetail.jsx:121
+#: components/CodeEditor/VariablesDetail.jsx:127
+#: components/CodeEditor/VariablesField.jsx:135
+#: components/CodeEditor/VariablesField.jsx:141
msgid "Done"
msgstr ""
@@ -2128,7 +2129,7 @@ msgstr ""
msgid "Each answer choice must be on a separate line."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:165
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175
msgid ""
"Each time a job runs using this inventory,\n"
@@ -2156,7 +2157,7 @@ msgstr ""
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61
#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:278
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358
@@ -2292,8 +2293,8 @@ msgstr ""
msgid "Edit Organization"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:161
-#: screens/Project/ProjectList/ProjectListItem.jsx:166
+#: screens/Project/ProjectList/ProjectListItem.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:181
msgid "Edit Project"
msgstr ""
@@ -2399,7 +2400,7 @@ msgstr ""
msgid "Enable Concurrent Jobs"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:587
+#: screens/Template/shared/JobTemplateForm.jsx:588
msgid "Enable Fact Storage"
msgstr ""
@@ -2412,8 +2413,8 @@ msgstr ""
msgid "Enable Privilege Escalation"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:561
-#: screens/Template/shared/JobTemplateForm.jsx:564
+#: screens/Template/shared/JobTemplateForm.jsx:562
+#: screens/Template/shared/JobTemplateForm.jsx:565
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:249
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:252
msgid "Enable Webhook"
@@ -2444,7 +2445,7 @@ msgstr ""
msgid "Enable simplified login for your {brandName} applications"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:567
+#: screens/Template/shared/JobTemplateForm.jsx:568
msgid "Enable webhook for this template."
msgstr ""
@@ -2453,20 +2454,28 @@ msgstr ""
msgid "Enabled"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267
msgid "Enabled Value"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254
msgid "Enabled Variable"
msgstr ""
#: screens/Template/shared/JobTemplateForm.jsx:547
+#~ msgid ""
+#~ "Enables creation of a provisioning\n"
+#~ "callback URL. Using the URL a host can contact BRAND_NAME\n"
+#~ "and request a configuration update using this job\n"
+#~ "template."
+#~ msgstr ""
+
+#: screens/Template/shared/JobTemplateForm.jsx:548
msgid ""
"Enables creation of a provisioning\n"
-"callback URL. Using the URL a host can contact BRAND_NAME\n"
+"callback URL. Using the URL a host can contact {BrandName}\n"
"and request a configuration update using this job\n"
"template."
msgstr ""
@@ -2606,7 +2615,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:222
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:134
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:263
#: screens/Job/JobOutput/JobOutput.jsx:668
#: screens/Setting/shared/LoggingTestAlert.jsx:37
msgid "Error"
@@ -2632,12 +2641,12 @@ msgstr ""
#: components/DeleteButton/DeleteButton.jsx:57
#: components/HostToggle/HostToggle.jsx:73
#: components/InstanceToggle/InstanceToggle.jsx:69
-#: components/JobList/JobList.jsx:278
-#: components/JobList/JobList.jsx:289
+#: components/JobList/JobList.jsx:276
+#: components/JobList/JobList.jsx:287
#: components/LaunchButton/LaunchButton.jsx:171
#: components/LaunchPrompt/LaunchPrompt.jsx:73
#: components/NotificationList/NotificationList.jsx:248
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:209
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:205
#: components/ResourceAccessList/ResourceAccessList.jsx:236
#: components/ResourceAccessList/ResourceAccessList.jsx:248
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419
@@ -2667,9 +2676,9 @@ msgstr ""
#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188
#: screens/Inventory/InventoryList/InventoryList.jsx:262
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:236
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:249
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:301
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:235
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:248
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178
#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148
#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86
@@ -2680,7 +2689,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164
#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:208
+#: screens/Organization/OrganizationList/OrganizationList.jsx:210
#: screens/Project/ProjectDetail/ProjectDetail.jsx:196
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197
#: screens/Project/ProjectList/ProjectList.jsx:236
@@ -2710,7 +2719,7 @@ msgstr ""
msgid "Error!"
msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:107
+#: components/CodeEditor/VariablesDetail.jsx:110
msgid "Error:"
msgstr ""
@@ -2778,15 +2787,15 @@ msgstr ""
#: components/Lookup/ExecutionEnvironmentLookup.jsx:124
#: routeConfig.js:143
#: screens/ActivityStream/ActivityStream.jsx:211
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:120
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:184
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13
#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23
#: screens/Organization/Organization.jsx:127
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77
#: screens/Organization/Organizations.jsx:38
#: util/getRelatedResourceDeleteDetails.js:88
-#: util/getRelatedResourceDeleteDetails.js:212
+#: util/getRelatedResourceDeleteDetails.js:195
msgid "Execution Environments"
msgstr ""
@@ -2820,8 +2829,8 @@ msgstr ""
msgid "Expand"
msgstr ""
-#: components/CodeEditor/VariablesDetail.jsx:211
-#: components/CodeEditor/VariablesField.jsx:229
+#: components/CodeEditor/VariablesDetail.jsx:214
+#: components/CodeEditor/VariablesField.jsx:237
msgid "Expand input"
msgstr ""
@@ -2874,7 +2883,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:35
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49
-#: screens/Project/ProjectList/ProjectListItem.jsx:69
+#: screens/Project/ProjectList/ProjectListItem.jsx:76
msgid "FINISHED:"
msgstr ""
@@ -2903,7 +2912,7 @@ msgstr ""
msgid "Failed Hosts"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:58
+#: components/LaunchButton/ReLaunchDropDown.jsx:61
#: screens/Dashboard/Dashboard.jsx:135
msgid "Failed hosts"
msgstr ""
@@ -2953,7 +2962,7 @@ msgstr ""
msgid "Failed to copy inventory."
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:183
+#: screens/Project/ProjectList/ProjectListItem.jsx:198
msgid "Failed to copy project."
msgstr ""
@@ -2979,7 +2988,7 @@ msgstr ""
msgid "Failed to delete host."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:305
msgid "Failed to delete inventory source {name}."
msgstr ""
@@ -3028,7 +3037,7 @@ msgstr ""
msgid "Failed to delete one or more inventories."
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:252
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:251
msgid "Failed to delete one or more inventory sources."
msgstr ""
@@ -3186,7 +3195,7 @@ msgstr ""
msgid "Failed to sync project."
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:239
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:238
msgid "Failed to sync some or all inventory sources."
msgstr ""
@@ -3269,7 +3278,7 @@ msgstr ""
msgid "File, directory or script"
msgstr ""
-#: components/JobList/JobList.jsx:223
+#: components/JobList/JobList.jsx:221
#: components/JobList/JobListItem.jsx:87
msgid "Finish Time"
msgstr ""
@@ -3312,7 +3321,7 @@ msgstr ""
msgid "Float"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:223
+#: screens/Template/shared/JobTemplateForm.jsx:224
msgid ""
"For job templates, select run to execute\n"
"the playbook. Select check to only check playbook syntax,\n"
@@ -3335,7 +3344,7 @@ msgstr ""
#: components/AdHocCommands/AdHocDetailsStep.jsx:193
#: components/PromptDetail/PromptJobTemplateDetail.jsx:139
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224
-#: screens/Template/shared/JobTemplateForm.jsx:404
+#: screens/Template/shared/JobTemplateForm.jsx:405
msgid "Forks"
msgstr ""
@@ -3519,7 +3528,7 @@ msgstr ""
#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232
#: screens/Inventory/InventoryList/InventoryListItem.jsx:108
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224
-#: util/getRelatedResourceDeleteDetails.js:143
+#: util/getRelatedResourceDeleteDetails.js:126
msgid "Groups"
msgstr ""
@@ -3561,7 +3570,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:149
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239
-#: screens/Template/shared/JobTemplateForm.jsx:622
+#: screens/Template/shared/JobTemplateForm.jsx:623
msgid "Host Config Key"
msgstr ""
@@ -3581,7 +3590,7 @@ msgstr ""
msgid "Host Failure"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:237
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281
msgid "Host Filter"
msgstr ""
@@ -3649,7 +3658,7 @@ msgstr ""
#: screens/Inventory/SmartInventory.jsx:71
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102
-#: util/getRelatedResourceDeleteDetails.js:147
+#: util/getRelatedResourceDeleteDetails.js:130
msgid "Hosts"
msgstr ""
@@ -3737,7 +3746,7 @@ msgstr ""
msgid "Icon URL"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:148
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156
msgid ""
"If checked, all variables for child groups\n"
@@ -3745,7 +3754,7 @@ msgid ""
"on the external source."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:125
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135
msgid ""
"If checked, any hosts and groups that were\n"
@@ -3757,7 +3766,7 @@ msgid ""
"default group for the inventory."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:537
+#: screens/Template/shared/JobTemplateForm.jsx:538
msgid ""
"If enabled, run this playbook as an\n"
"administrator."
@@ -3770,7 +3779,7 @@ msgid ""
"--diff mode."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:478
+#: screens/Template/shared/JobTemplateForm.jsx:479
msgid ""
"If enabled, show the changes made by\n"
"Ansible tasks, where supported. This is equivalent\n"
@@ -3781,7 +3790,7 @@ msgstr ""
msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:581
+#: screens/Template/shared/JobTemplateForm.jsx:582
msgid ""
"If enabled, simultaneous runs of this job\n"
"template will be allowed."
@@ -3791,7 +3800,7 @@ msgstr ""
msgid "If enabled, simultaneous runs of this workflow job template will be allowed."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:589
+#: screens/Template/shared/JobTemplateForm.jsx:590
msgid ""
"If enabled, this will store gathered facts so they can\n"
"be viewed at the host level. Facts are persisted and\n"
@@ -3820,9 +3829,9 @@ msgid ""
msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:132
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:138
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:62
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88
#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107
@@ -3939,7 +3948,7 @@ msgid "Instance groups"
msgstr ""
#: screens/InstanceGroup/InstanceGroup.jsx:69
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:76
#: screens/InstanceGroup/InstanceGroups.jsx:37
#: screens/InstanceGroup/Instances/InstanceList.jsx:148
@@ -3975,8 +3984,8 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryList.jsx:168
#: screens/Inventory/InventoryList/InventoryList.jsx:219
#: util/getRelatedResourceDeleteDetails.js:67
-#: util/getRelatedResourceDeleteDetails.js:226
-#: util/getRelatedResourceDeleteDetails.js:294
+#: util/getRelatedResourceDeleteDetails.js:209
+#: util/getRelatedResourceDeleteDetails.js:277
msgid "Inventories"
msgstr ""
@@ -4036,14 +4045,14 @@ msgstr ""
msgid "Inventory Source Sync"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:162
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:181
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:161
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:180
#: util/getRelatedResourceDeleteDetails.js:74
-#: util/getRelatedResourceDeleteDetails.js:171
+#: util/getRelatedResourceDeleteDetails.js:154
msgid "Inventory Sources"
msgstr ""
-#: components/JobList/JobList.jsx:186
+#: components/JobList/JobList.jsx:185
#: components/JobList/JobListItem.jsx:33
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37
#: components/Workflow/WorkflowLegend.jsx:100
@@ -4055,7 +4064,7 @@ msgstr ""
msgid "Inventory Update"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:226
#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102
msgid "Inventory file"
msgstr ""
@@ -4100,7 +4109,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:28
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42
-#: screens/Project/ProjectList/ProjectListItem.jsx:62
+#: screens/Project/ProjectList/ProjectListItem.jsx:69
msgid "JOB ID:"
msgstr ""
@@ -4144,7 +4153,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:148
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235
-#: screens/Template/shared/JobTemplateForm.jsx:458
+#: screens/Template/shared/JobTemplateForm.jsx:459
msgid "Job Slicing"
msgstr ""
@@ -4159,12 +4168,12 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350
#: screens/Job/JobDetail/JobDetail.jsx:309
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342
-#: screens/Template/shared/JobTemplateForm.jsx:498
+#: screens/Template/shared/JobTemplateForm.jsx:499
msgid "Job Tags"
msgstr ""
#: components/JobList/JobListItem.jsx:137
-#: components/TemplateList/TemplateList.jsx:201
+#: components/TemplateList/TemplateList.jsx:200
#: components/Workflow/WorkflowLegend.jsx:92
#: components/Workflow/WorkflowNodeHelp.jsx:47
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96
@@ -4182,7 +4191,7 @@ msgstr ""
#: screens/Project/Projects.jsx:32
#: util/getRelatedResourceDeleteDetails.js:56
#: util/getRelatedResourceDeleteDetails.js:108
-#: util/getRelatedResourceDeleteDetails.js:157
+#: util/getRelatedResourceDeleteDetails.js:140
msgid "Job Templates"
msgstr ""
@@ -4202,7 +4211,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:180
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145
-#: screens/Template/shared/JobTemplateForm.jsx:220
+#: screens/Template/shared/JobTemplateForm.jsx:221
msgid "Job Type"
msgstr ""
@@ -4338,7 +4347,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:294
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195
-#: screens/Template/shared/JobTemplateForm.jsx:369
+#: screens/Template/shared/JobTemplateForm.jsx:370
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:217
msgid "Labels"
msgstr ""
@@ -4390,7 +4399,7 @@ msgstr ""
msgid "Last Name"
msgstr ""
-#: components/TemplateList/TemplateList.jsx:225
+#: components/TemplateList/TemplateList.jsx:223
#: components/TemplateList/TemplateListItem.jsx:156
msgid "Last Ran"
msgstr ""
@@ -4407,12 +4416,17 @@ msgstr ""
msgid "Last job run"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:266
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58
+#: screens/Project/ProjectList/ProjectListItem.jsx:236
msgid "Last modified"
msgstr ""
+#: screens/Project/ProjectList/ProjectListItem.jsx:241
+msgid "Last used"
+msgstr ""
+
#: components/AdHocCommands/AdHocCommandsWizard.jsx:92
#: components/LaunchPrompt/steps/usePreviewStep.jsx:35
#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55
@@ -4499,7 +4513,7 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326
#: screens/Job/JobDetail/JobDetail.jsx:238
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225
-#: screens/Template/shared/JobTemplateForm.jsx:420
+#: screens/Template/shared/JobTemplateForm.jsx:421
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163
msgid "Limit"
msgstr ""
@@ -4560,7 +4574,7 @@ msgid "Lookup typeahead"
msgstr ""
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40
-#: screens/Project/ProjectList/ProjectListItem.jsx:60
+#: screens/Project/ProjectList/ProjectListItem.jsx:67
msgid "MOST RECENT SYNC"
msgstr ""
@@ -4584,7 +4598,7 @@ msgstr ""
msgid "Managed nodes"
msgstr ""
-#: components/JobList/JobList.jsx:189
+#: components/JobList/JobList.jsx:188
#: components/JobList/JobListItem.jsx:36
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40
#: screens/Job/JobDetail/JobDetail.jsx:100
@@ -4619,8 +4633,8 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90
#: screens/Project/ProjectDetail/ProjectDetail.jsx:111
-#: screens/Project/ProjectList/ProjectList.jsx:150
-#: screens/Project/ProjectList/ProjectListItem.jsx:134
+#: screens/Project/ProjectList/ProjectList.jsx:149
+#: screens/Project/ProjectList/ProjectListItem.jsx:149
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89
msgid "Manual"
msgstr ""
@@ -4827,8 +4841,8 @@ msgstr ""
#: components/AssociateModal/AssociateModal.jsx:139
#: components/AssociateModal/AssociateModal.jsx:154
#: components/HostForm/HostForm.jsx:87
-#: components/JobList/JobList.jsx:169
-#: components/JobList/JobList.jsx:218
+#: components/JobList/JobList.jsx:168
+#: components/JobList/JobList.jsx:217
#: components/JobList/JobListItem.jsx:69
#: components/LaunchPrompt/steps/CredentialsStep.jsx:174
#: components/LaunchPrompt/steps/CredentialsStep.jsx:189
@@ -4867,8 +4881,8 @@ msgstr ""
#: components/Schedule/ScheduleList/ScheduleList.jsx:192
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78
#: components/Schedule/shared/ScheduleForm.jsx:102
-#: components/TemplateList/TemplateList.jsx:189
-#: components/TemplateList/TemplateList.jsx:222
+#: components/TemplateList/TemplateList.jsx:188
+#: components/TemplateList/TemplateList.jsx:221
#: components/TemplateList/TemplateListItem.jsx:127
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37
@@ -4905,8 +4919,8 @@ msgstr ""
#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32
#: screens/CredentialType/shared/CredentialTypeForm.jsx:24
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:127
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:156
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111
@@ -4920,7 +4934,7 @@ msgstr ""
#: screens/Host/HostList/HostListItem.jsx:34
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:50
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:64
#: screens/InstanceGroup/Instances/InstanceList.jsx:155
#: screens/InstanceGroup/Instances/InstanceList.jsx:162
@@ -4942,7 +4956,7 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryListItem.jsx:81
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165
#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:197
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98
#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31
#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67
@@ -4973,7 +4987,7 @@ msgstr ""
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147
#: screens/Project/ProjectList/ProjectList.jsx:137
#: screens/Project/ProjectList/ProjectList.jsx:173
-#: screens/Project/ProjectList/ProjectListItem.jsx:99
+#: screens/Project/ProjectList/ProjectListItem.jsx:114
#: screens/Project/shared/ProjectForm.jsx:168
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:145
#: screens/Team/TeamDetail/TeamDetail.jsx:34
@@ -4992,7 +5006,7 @@ msgstr ""
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115
-#: screens/Template/shared/JobTemplateForm.jsx:207
+#: screens/Template/shared/JobTemplateForm.jsx:208
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:113
#: screens/User/UserTeams/UserTeamList.jsx:230
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86
@@ -5193,7 +5207,7 @@ msgstr ""
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188
#: screens/NotificationTemplate/NotificationTemplates.jsx:13
#: screens/NotificationTemplate/NotificationTemplates.jsx:21
-#: util/getRelatedResourceDeleteDetails.js:205
+#: util/getRelatedResourceDeleteDetails.js:188
msgid "Notification Templates"
msgstr ""
@@ -5267,7 +5281,7 @@ msgstr ""
#: screens/Setting/shared/SharedFields.jsx:97
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:53
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "Off"
msgstr ""
@@ -5285,7 +5299,7 @@ msgstr ""
#: screens/Setting/shared/SharedFields.jsx:96
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233
#: screens/Template/Survey/SurveyToolbar.jsx:52
-#: screens/Template/shared/JobTemplateForm.jsx:484
+#: screens/Template/shared/JobTemplateForm.jsx:485
msgid "On"
msgstr ""
@@ -5323,7 +5337,7 @@ msgstr ""
msgid "Option Details"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:372
+#: screens/Template/shared/JobTemplateForm.jsx:373
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:220
msgid ""
"Optional labels that describe this job template,\n"
@@ -5344,12 +5358,12 @@ msgstr ""
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141
#: screens/Credential/shared/TypeInputsSubForm.jsx:49
#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:250
#: screens/Project/ProjectDetail/ProjectDetail.jsx:130
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180
-#: screens/Template/shared/JobTemplateForm.jsx:530
+#: screens/Template/shared/JobTemplateForm.jsx:531
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246
msgid "Options"
msgstr ""
@@ -5371,17 +5385,19 @@ msgstr ""
#: screens/Application/ApplicationsList/ApplicationsList.jsx:163
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218
#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147
-#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:146
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158
#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:63
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81
#: screens/Inventory/InventoryList/InventoryList.jsx:202
#: screens/Inventory/InventoryList/InventoryListItem.jsx:100
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:202
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59
#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69
#: screens/Project/ProjectDetail/ProjectDetail.jsx:98
+#: screens/Project/ProjectList/ProjectListItem.jsx:215
+#: screens/Project/ProjectList/ProjectListItem.jsx:226
#: screens/Team/TeamDetail/TeamDetail.jsx:40
#: screens/Team/TeamList/TeamList.jsx:155
#: screens/Team/TeamList/TeamListItem.jsx:45
@@ -5408,15 +5424,15 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188
#: routeConfig.js:97
#: screens/ActivityStream/ActivityStream.jsx:179
-#: screens/Organization/OrganizationList/OrganizationList.jsx:133
-#: screens/Organization/OrganizationList/OrganizationList.jsx:179
+#: screens/Organization/OrganizationList/OrganizationList.jsx:132
+#: screens/Organization/OrganizationList/OrganizationList.jsx:178
#: screens/Organization/Organizations.jsx:16
#: screens/Organization/Organizations.jsx:27
#: screens/User/User.jsx:65
#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55
#: screens/User/Users.jsx:34
-#: util/getRelatedResourceDeleteDetails.js:256
-#: util/getRelatedResourceDeleteDetails.js:290
+#: util/getRelatedResourceDeleteDetails.js:239
+#: util/getRelatedResourceDeleteDetails.js:273
msgid "Organizations"
msgstr ""
@@ -5434,7 +5450,7 @@ msgid "Output"
msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:48
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:121
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132
msgid "Overwrite"
msgstr ""
@@ -5443,7 +5459,7 @@ msgstr ""
msgid "Overwrite Variables"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:144
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153
msgid "Overwrite variables"
msgstr ""
@@ -5493,7 +5509,7 @@ msgstr ""
msgid "Pass extra command line changes. There are two ansible command line parameters:"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:392
+#: screens/Template/shared/JobTemplateForm.jsx:393
msgid ""
"Pass extra command line variables to the playbook. This is the\n"
"-e or --extra-vars command line parameter for ansible-playbook.\n"
@@ -5562,7 +5578,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:138
#: screens/Job/JobDetail/JobDetail.jsx:237
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223
-#: screens/Template/shared/JobTemplateForm.jsx:330
+#: screens/Template/shared/JobTemplateForm.jsx:331
msgid "Playbook"
msgstr ""
@@ -5580,7 +5596,7 @@ msgstr ""
msgid "Playbook Directory"
msgstr ""
-#: components/JobList/JobList.jsx:187
+#: components/JobList/JobList.jsx:186
#: components/JobList/JobListItem.jsx:34
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38
#: screens/Job/JobDetail/JobDetail.jsx:98
@@ -5635,7 +5651,7 @@ msgstr ""
msgid "Please select a day number between 1 and 31."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:755
+#: screens/Template/shared/JobTemplateForm.jsx:756
msgid "Please select an Inventory or check the Prompt on Launch option."
msgstr ""
@@ -5697,7 +5713,7 @@ msgstr ""
msgid "Private key passphrase"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:536
+#: screens/Template/shared/JobTemplateForm.jsx:537
msgid "Privilege Escalation"
msgstr ""
@@ -5713,7 +5729,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:123
#: components/PromptDetail/PromptJobTemplateDetail.jsx:131
#: components/TemplateList/TemplateListItem.jsx:271
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:216
#: screens/Job/JobDetail/JobDetail.jsx:212
#: screens/Job/JobDetail/JobDetail.jsx:227
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151
@@ -5754,8 +5770,8 @@ msgstr ""
#: screens/Project/Projects.jsx:14
#: screens/Project/Projects.jsx:25
#: util/getRelatedResourceDeleteDetails.js:60
-#: util/getRelatedResourceDeleteDetails.js:219
-#: util/getRelatedResourceDeleteDetails.js:249
+#: util/getRelatedResourceDeleteDetails.js:202
+#: util/getRelatedResourceDeleteDetails.js:232
msgid "Projects"
msgstr ""
@@ -5772,7 +5788,7 @@ msgstr ""
msgid "Prompt Overrides"
msgstr ""
-#: components/CodeEditor/VariablesField.jsx:222
+#: components/CodeEditor/VariablesField.jsx:230
#: components/FieldWithPrompt/FieldWithPrompt.jsx:47
#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167
msgid "Prompt on launch"
@@ -5788,7 +5804,7 @@ msgstr ""
msgid "Prompts"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:423
+#: screens/Template/shared/JobTemplateForm.jsx:424
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:166
msgid ""
"Provide a host pattern to further constrain\n"
@@ -5829,16 +5845,16 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:152
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243
-#: screens/Template/shared/JobTemplateForm.jsx:609
+#: screens/Template/shared/JobTemplateForm.jsx:610
msgid "Provisioning Callback URL"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:604
+#: screens/Template/shared/JobTemplateForm.jsx:605
msgid "Provisioning Callback details"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:541
-#: screens/Template/shared/JobTemplateForm.jsx:544
+#: screens/Template/shared/JobTemplateForm.jsx:542
+#: screens/Template/shared/JobTemplateForm.jsx:545
msgid "Provisioning Callbacks"
msgstr ""
@@ -5927,7 +5943,7 @@ msgstr ""
msgid "Redirecting to subscription detail"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:413
+#: screens/Template/shared/JobTemplateForm.jsx:414
msgid ""
"Refer to the Ansible documentation for details\n"
"about the configuration file."
@@ -5961,7 +5977,7 @@ msgid "Related Groups"
msgstr ""
#: components/JobList/JobListItem.jsx:118
-#: components/LaunchButton/ReLaunchDropDown.jsx:78
+#: components/LaunchButton/ReLaunchDropDown.jsx:81
#: screens/Job/JobDetail/JobDetail.jsx:384
#: screens/Job/JobDetail/JobDetail.jsx:392
#: screens/Job/JobOutput/shared/OutputToolbar.jsx:162
@@ -5973,16 +5989,16 @@ msgstr ""
msgid "Relaunch Job"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:39
+#: components/LaunchButton/ReLaunchDropDown.jsx:41
msgid "Relaunch all hosts"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:51
+#: components/LaunchButton/ReLaunchDropDown.jsx:54
msgid "Relaunch failed hosts"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:29
-#: components/LaunchButton/ReLaunchDropDown.jsx:34
+#: components/LaunchButton/ReLaunchDropDown.jsx:30
+#: components/LaunchButton/ReLaunchDropDown.jsx:35
msgid "Relaunch on"
msgstr ""
@@ -6144,8 +6160,8 @@ msgid "Revert to factory default."
msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:236
-#: screens/Project/ProjectList/ProjectList.jsx:177
-#: screens/Project/ProjectList/ProjectListItem.jsx:137
+#: screens/Project/ProjectList/ProjectList.jsx:176
+#: screens/Project/ProjectList/ProjectListItem.jsx:152
msgid "Revision"
msgstr ""
@@ -6181,7 +6197,7 @@ msgstr ""
#: screens/Credential/shared/ExternalTestModal.jsx:90
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24
-#: screens/Template/shared/JobTemplateForm.jsx:171
+#: screens/Template/shared/JobTemplateForm.jsx:172
msgid "Run"
msgstr ""
@@ -6212,7 +6228,7 @@ msgstr ""
msgid "Run type"
msgstr ""
-#: components/JobList/JobList.jsx:204
+#: components/JobList/JobList.jsx:203
#: components/TemplateList/TemplateListItem.jsx:106
#: components/Workflow/WorkflowNodeHelp.jsx:83
msgid "Running"
@@ -6263,7 +6279,7 @@ msgstr ""
#: components/Sparkline/Sparkline.jsx:31
#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45
-#: screens/Project/ProjectList/ProjectListItem.jsx:65
+#: screens/Project/ProjectList/ProjectListItem.jsx:72
msgid "STATUS:"
msgstr ""
@@ -6446,7 +6462,7 @@ msgstr ""
msgid "Select Items from List"
msgstr ""
-#: screens/Template/shared/LabelSelect.jsx:88
+#: screens/Template/shared/LabelSelect.jsx:92
msgid "Select Labels"
msgstr ""
@@ -6470,7 +6486,7 @@ msgstr ""
msgid "Select a Resource Type"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:310
+#: screens/Template/shared/JobTemplateForm.jsx:311
msgid ""
"Select a branch for the job template. This branch is applied to\n"
"all job template nodes that prompt for a branch."
@@ -6509,7 +6525,7 @@ msgstr ""
msgid "Select a playbook"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:296
+#: screens/Template/shared/JobTemplateForm.jsx:297
msgid "Select a project before editing the execution environment."
msgstr ""
@@ -6517,7 +6533,7 @@ msgstr ""
msgid "Select a row to approve"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:164
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:160
#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100
msgid "Select a row to delete"
msgstr ""
@@ -6567,8 +6583,8 @@ msgstr ""
#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41
#: screens/Team/shared/TeamForm.jsx:20
#: screens/Template/Survey/SurveyQuestionForm.jsx:28
-#: screens/Template/shared/JobTemplateForm.jsx:83
-#: screens/Template/shared/JobTemplateForm.jsx:147
+#: screens/Template/shared/JobTemplateForm.jsx:84
+#: screens/Template/shared/JobTemplateForm.jsx:148
#: screens/User/shared/UserForm.jsx:49
msgid "Select a value for this field"
msgstr ""
@@ -6598,7 +6614,7 @@ msgstr ""
msgid "Select an organization before editing the default execution environment."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:354
+#: screens/Template/shared/JobTemplateForm.jsx:355
msgid ""
"Select credentials that allow Tower to access the nodes this job will be ran\n"
"against. You can only select one credential of each type. For machine credentials (SSH),\n"
@@ -6639,7 +6655,7 @@ msgstr ""
msgid "Select source path"
msgstr ""
-#: components/MultiSelect/TagMultiSelect.jsx:55
+#: components/MultiSelect/TagMultiSelect.jsx:60
msgid "Select tags"
msgstr ""
@@ -6647,7 +6663,7 @@ msgstr ""
msgid "Select the Instance Groups for this Inventory to run on."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:493
+#: screens/Template/shared/JobTemplateForm.jsx:494
msgid ""
"Select the Instance Groups for this Organization\n"
"to run on."
@@ -6677,12 +6693,12 @@ msgstr ""
msgid "Select the default execution environment for this project."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:293
+#: screens/Template/shared/JobTemplateForm.jsx:294
msgid "Select the execution environment for this job template."
msgstr ""
#: components/Lookup/InventoryLookup.jsx:89
-#: screens/Template/shared/JobTemplateForm.jsx:255
+#: screens/Template/shared/JobTemplateForm.jsx:256
msgid ""
"Select the inventory containing the hosts\n"
"you want this job to manage."
@@ -6700,11 +6716,11 @@ msgstr ""
msgid "Select the inventory that this host will belong to."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:334
+#: screens/Template/shared/JobTemplateForm.jsx:335
msgid "Select the playbook to be executed by this job."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:272
+#: screens/Template/shared/JobTemplateForm.jsx:273
msgid ""
"Select the project containing the playbook\n"
"you want this job to execute."
@@ -6736,7 +6752,7 @@ msgstr ""
#: screens/Inventory/InventoryList/InventoryListItem.jsx:79
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105
#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43
-#: screens/Project/ProjectList/ProjectListItem.jsx:97
+#: screens/Project/ProjectList/ProjectListItem.jsx:112
#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionStep.jsx:259
#: screens/Team/TeamList/TeamListItem.jsx:38
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60
@@ -6840,7 +6856,7 @@ msgstr ""
#: components/PromptDetail/PromptJobTemplateDetail.jsx:144
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232
-#: screens/Template/shared/JobTemplateForm.jsx:475
+#: screens/Template/shared/JobTemplateForm.jsx:476
msgid "Show Changes"
msgstr ""
@@ -6913,11 +6929,11 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368
#: screens/Job/JobDetail/JobDetail.jsx:327
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357
-#: screens/Template/shared/JobTemplateForm.jsx:514
+#: screens/Template/shared/JobTemplateForm.jsx:515
msgid "Skip Tags"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:517
+#: screens/Template/shared/JobTemplateForm.jsx:518
msgid ""
"Skip tags are useful when you have a\n"
"large playbook, and you want to skip specific parts of a\n"
@@ -6985,7 +7001,7 @@ msgid "Sort question order"
msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:86
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199
#: screens/Inventory/shared/InventorySourceForm.jsx:135
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86
msgid "Source"
@@ -6999,7 +7015,7 @@ msgstr ""
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321
#: screens/Project/ProjectDetail/ProjectDetail.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220
-#: screens/Template/shared/JobTemplateForm.jsx:306
+#: screens/Template/shared/JobTemplateForm.jsx:307
msgid "Source Control Branch"
msgstr ""
@@ -7033,13 +7049,13 @@ msgstr ""
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165
#: screens/Project/ProjectDetail/ProjectDetail.jsx:114
-#: screens/Project/ProjectList/ProjectList.jsx:158
+#: screens/Project/ProjectList/ProjectList.jsx:157
#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97
msgid "Source Control URL"
msgstr ""
-#: components/JobList/JobList.jsx:185
+#: components/JobList/JobList.jsx:184
#: components/JobList/JobListItem.jsx:32
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39
#: screens/Job/JobDetail/JobDetail.jsx:93
@@ -7071,7 +7087,7 @@ msgstr ""
msgid "Source phone number"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34
msgid "Source variables"
msgstr ""
@@ -7128,7 +7144,7 @@ msgstr ""
msgid "Start"
msgstr ""
-#: components/JobList/JobList.jsx:221
+#: components/JobList/JobList.jsx:220
#: components/JobList/JobListItem.jsx:84
msgid "Start Time"
msgstr ""
@@ -7156,21 +7172,21 @@ msgid "Start sync source"
msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:141
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:229
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79
msgid "Started"
msgstr ""
-#: components/JobList/JobList.jsx:198
-#: components/JobList/JobList.jsx:219
+#: components/JobList/JobList.jsx:197
+#: components/JobList/JobList.jsx:218
#: components/JobList/JobListItem.jsx:78
-#: screens/Inventory/InventoryList/InventoryList.jsx:201
+#: screens/Inventory/InventoryList/InventoryList.jsx:200
#: screens/Inventory/InventoryList/InventoryListItem.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:130
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196
#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112
#: screens/Project/ProjectList/ProjectList.jsx:174
-#: screens/Project/ProjectList/ProjectListItem.jsx:119
+#: screens/Project/ProjectList/ProjectListItem.jsx:134
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:49
#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108
#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:230
@@ -7263,7 +7279,7 @@ msgstr ""
msgid "Successful"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:148
+#: screens/Project/ProjectList/ProjectListItem.jsx:163
msgid "Successfully copied to clipboard!"
msgstr ""
@@ -7308,25 +7324,25 @@ msgstr ""
msgid "Sync"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:155
+#: screens/Project/ProjectList/ProjectListItem.jsx:170
#: screens/Project/shared/ProjectSyncButton.jsx:31
msgid "Sync Project"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:201
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:204
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:200
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:203
msgid "Sync all"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:195
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:194
msgid "Sync all sources"
msgstr ""
-#: screens/Inventory/InventorySources/InventorySourceList.jsx:233
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:232
msgid "Sync error"
msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:141
+#: screens/Project/ProjectList/ProjectListItem.jsx:156
msgid "Sync for revision"
msgstr ""
@@ -7371,7 +7387,7 @@ msgstr ""
msgid "Tabs"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:501
+#: screens/Template/shared/JobTemplateForm.jsx:502
msgid ""
"Tags are useful when you have a large\n"
"playbook, and you want to run a specific part of a\n"
@@ -7451,7 +7467,7 @@ msgstr ""
#: screens/User/UserTeams/UserTeamList.jsx:176
#: screens/User/UserTeams/UserTeamList.jsx:244
#: screens/User/Users.jsx:33
-#: util/getRelatedResourceDeleteDetails.js:198
+#: util/getRelatedResourceDeleteDetails.js:181
msgid "Teams"
msgstr ""
@@ -7471,8 +7487,8 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82
#: screens/Template/Templates.jsx:16
-#: util/getRelatedResourceDeleteDetails.js:242
-#: util/getRelatedResourceDeleteDetails.js:299
+#: util/getRelatedResourceDeleteDetails.js:225
+#: util/getRelatedResourceDeleteDetails.js:282
msgid "Templates"
msgstr ""
@@ -7535,7 +7551,7 @@ msgid ""
"from 1 to 120 seconds."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:469
+#: screens/Template/shared/JobTemplateForm.jsx:470
msgid ""
"The amount of time (in seconds) to run\n"
"before the job is canceled. Defaults to 0 for no job\n"
@@ -7563,7 +7579,7 @@ msgid ""
"documentation for more details."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:407
+#: screens/Template/shared/JobTemplateForm.jsx:408
msgid ""
"The number of parallel or simultaneous\n"
"processes to use while executing the playbook. An empty value,\n"
@@ -7659,7 +7675,7 @@ msgstr ""
msgid "Third"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:287
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:283
#: screens/Template/Survey/SurveyList.jsx:123
msgid "This action will delete the following:"
msgstr ""
@@ -7784,7 +7800,7 @@ msgstr ""
msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:291
msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?"
msgstr ""
@@ -7808,7 +7824,7 @@ msgstr ""
msgid "This project is currently being used by other resources. Are you sure you want to delete it?"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:150
+#: screens/Template/shared/JobTemplateForm.jsx:151
msgid "This project needs to be updated"
msgstr ""
@@ -7887,7 +7903,7 @@ msgstr ""
#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:169
-#: screens/Template/shared/JobTemplateForm.jsx:468
+#: screens/Template/shared/JobTemplateForm.jsx:469
msgid "Timeout"
msgstr ""
@@ -7989,7 +8005,7 @@ msgstr ""
msgid "Top Pagination"
msgstr ""
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238
msgid "Total Jobs"
msgstr ""
@@ -8041,7 +8057,7 @@ msgstr ""
msgid "Twilio"
msgstr ""
-#: components/JobList/JobList.jsx:220
+#: components/JobList/JobList.jsx:219
#: components/JobList/JobListItem.jsx:82
#: components/Lookup/ProjectLookup.jsx:110
#: components/NotificationList/NotificationList.jsx:220
@@ -8049,8 +8065,8 @@ msgstr ""
#: components/PromptDetail/PromptDetail.jsx:112
#: components/Schedule/ScheduleList/ScheduleList.jsx:174
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95
-#: components/TemplateList/TemplateList.jsx:198
-#: components/TemplateList/TemplateList.jsx:223
+#: components/TemplateList/TemplateList.jsx:197
+#: components/TemplateList/TemplateList.jsx:222
#: components/TemplateList/TemplateListItem.jsx:155
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85
#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154
@@ -8061,7 +8077,7 @@ msgstr ""
#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:55
-#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236
#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69
#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86
#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79
@@ -8074,7 +8090,7 @@ msgstr ""
#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155
#: screens/Project/ProjectList/ProjectList.jsx:146
#: screens/Project/ProjectList/ProjectList.jsx:175
-#: screens/Project/ProjectList/ProjectListItem.jsx:132
+#: screens/Project/ProjectList/ProjectListItem.jsx:147
#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30
#: screens/Template/Survey/SurveyListItem.jsx:117
#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86
@@ -8139,12 +8155,12 @@ msgstr ""
msgid "Update on Project Update"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:163
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171
msgid "Update on launch"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:173
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199
msgid "Update on project update"
msgstr ""
@@ -8317,7 +8333,7 @@ msgstr ""
#: screens/Job/JobDetail/JobDetail.jsx:356
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372
#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211
-#: screens/Template/shared/JobTemplateForm.jsx:389
+#: screens/Template/shared/JobTemplateForm.jsx:390
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:239
msgid "Variables"
msgstr ""
@@ -8344,11 +8360,11 @@ msgstr ""
#: components/PromptDetail/PromptInventorySourceDetail.jsx:102
#: components/PromptDetail/PromptJobTemplateDetail.jsx:141
#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90
#: screens/Job/JobDetail/JobDetail.jsx:239
#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227
-#: screens/Template/shared/JobTemplateForm.jsx:441
+#: screens/Template/shared/JobTemplateForm.jsx:442
msgid "Verbosity"
msgstr ""
@@ -8681,7 +8697,7 @@ msgstr ""
msgid "Webhook URL"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:637
+#: screens/Template/shared/JobTemplateForm.jsx:638
#: screens/Template/shared/WorkflowJobTemplateForm.jsx:281
msgid "Webhook details"
msgstr ""
@@ -8725,7 +8741,7 @@ msgid ""
"Please complete the steps below to activate your subscription."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:153
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161
msgid ""
"When not checked, a merge will be performed,\n"
@@ -8733,7 +8749,7 @@ msgid ""
"external source."
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:134
#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144
msgid ""
"When not checked, local child\n"
@@ -8755,14 +8771,14 @@ msgstr ""
#: routeConfig.js:55
#: screens/ActivityStream/ActivityStream.jsx:154
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170
-#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:169
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:209
#: screens/WorkflowApproval/WorkflowApprovals.jsx:12
-#: screens/WorkflowApproval/WorkflowApprovals.jsx:19
+#: screens/WorkflowApproval/WorkflowApprovals.jsx:22
msgid "Workflow Approvals"
msgstr ""
-#: components/JobList/JobList.jsx:190
+#: components/JobList/JobList.jsx:189
#: components/JobList/JobListItem.jsx:37
#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41
#: screens/Job/JobDetail/JobDetail.jsx:101
@@ -8780,13 +8796,13 @@ msgstr ""
msgid "Workflow Job Template"
msgstr ""
-#: util/getRelatedResourceDeleteDetails.js:139
-#: util/getRelatedResourceDeleteDetails.js:181
-#: util/getRelatedResourceDeleteDetails.js:284
+#: util/getRelatedResourceDeleteDetails.js:122
+#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:267
msgid "Workflow Job Template Nodes"
msgstr ""
-#: util/getRelatedResourceDeleteDetails.js:164
+#: util/getRelatedResourceDeleteDetails.js:147
msgid "Workflow Job Templates"
msgstr ""
@@ -8888,7 +8904,7 @@ msgstr ""
msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:155
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:152
msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}"
msgstr ""
@@ -8926,12 +8942,12 @@ msgstr ""
msgid "Zoom Out"
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:734
+#: screens/Template/shared/JobTemplateForm.jsx:735
#: screens/Template/shared/WebhookSubForm.jsx:155
msgid "a new webhook key will be generated on save."
msgstr ""
-#: screens/Template/shared/JobTemplateForm.jsx:731
+#: screens/Template/shared/JobTemplateForm.jsx:732
#: screens/Template/shared/WebhookSubForm.jsx:143
msgid "a new webhook url will be generated on save."
msgstr ""
@@ -8962,7 +8978,7 @@ msgstr ""
msgid "brand logo"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:276
#: screens/Template/Survey/SurveyList.jsx:113
msgid "cancel delete"
msgstr ""
@@ -8971,7 +8987,7 @@ msgstr ""
msgid "command"
msgstr ""
-#: components/PaginatedDataList/ToolbarDeleteButton.jsx:269
+#: components/PaginatedDataList/ToolbarDeleteButton.jsx:265
#: screens/Template/Survey/SurveyList.jsx:104
msgid "confirm delete"
msgstr ""
@@ -8986,7 +9002,7 @@ msgstr ""
#~ msgid "controller instance"
#~ msgstr ""
-#: screens/Project/ProjectList/ProjectListItem.jsx:140
+#: screens/Project/ProjectList/ProjectListItem.jsx:155
msgid "copy to clipboard disabled"
msgstr ""
@@ -9012,7 +9028,7 @@ msgstr ""
#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93
#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:106
#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:275
#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156
#: screens/Project/ProjectDetail/ProjectDetail.jsx:166
#: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:154
@@ -9128,8 +9144,8 @@ msgstr ""
msgid "per page"
msgstr ""
-#: components/LaunchButton/ReLaunchDropDown.jsx:74
-#: components/LaunchButton/ReLaunchDropDown.jsx:96
+#: components/LaunchButton/ReLaunchDropDown.jsx:77
+#: components/LaunchButton/ReLaunchDropDown.jsx:99
msgid "relaunch jobs"
msgstr ""
@@ -9153,7 +9169,7 @@ msgstr ""
msgid "sec"
msgstr ""
-#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236
+#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235
msgid "seconds"
msgstr ""
@@ -9221,6 +9237,46 @@ msgstr ""
#~ msgid "{0, plural, one {The template will be in a pending status until the final delete is processed.} other {The templates will be in a pending status until the final delete is processed.}}"
#~ msgstr ""
+#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:215
+msgid "{0, plural, one {This approval cannot be deleted due to insufficient permissions or a pending job status} other {These approvals cannot be deleted due to insufficient permissions or a pending job status}}"
+msgstr ""
+
+#: screens/Credential/CredentialList/CredentialList.jsx:178
+msgid "{0, plural, one {This credential is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these credentials could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171
+msgid "{0, plural, one {This credential type is currently being used by some credentials and cannot be deleted.} other {Credential types that are being used by credentials cannot be deleted. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:187
+msgid "{0, plural, one {This execution environment is currently being used by other resources. Are you sure you want to delete it?} other {These execution environments could be in use by other resources that rely on them. Are you sure you want to delete them anyway?}}"
+msgstr ""
+
+#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:223
+msgid "{0, plural, one {This instance group is currently being by other resources. Are you sure you want to delete it?} other {Deleting these instance groups could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Inventory/InventorySources/InventorySourceList.jsx:183
+msgid "{0, plural, one {This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?} other {Deleting these inventory sources could impact other resources that rely on them. Are you sure you want to delete anyway}}"
+msgstr ""
+
+#: screens/Inventory/InventoryList/InventoryList.jsx:222
+msgid "{0, plural, one {This invetory is currently being used by some temeplates. Are you sure you want to delete it?} other {Deleting these inventories could impact some templates that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Organization/OrganizationList/OrganizationList.jsx:181
+msgid "{0, plural, one {This organization is currently being by other resources. Are you sure you want to delete it?} other {Deleting these organizations could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: screens/Project/ProjectList/ProjectList.jsx:203
+msgid "{0, plural, one {This project is currently being used by other resources. Are you sure you want to delete it?} other {Deleting these projects could impact other resources that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
+#: components/TemplateList/TemplateList.jsx:243
+msgid "{0, plural, one {This template is currently being used by some workflow nodes. Are you sure you want to delete it?} other {Deleting these templates could impact some workflow nodes that rely on them. Are you sure you want to delete anyway?}}"
+msgstr ""
+
#: components/JobList/JobListCancelButton.jsx:72
msgid "{0, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}"
msgstr ""
diff --git a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx
index d7bcd23e20..e2cf76b44d 100644
--- a/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx
+++ b/awx/ui_next/src/screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx
@@ -187,7 +187,7 @@ function ExecutionEnvironmentList() {
}
/>,