From e6bde23aea8d110aaeb533016e3bfa9784ff5e9d Mon Sep 17 00:00:00 2001 From: Alex Corey Date: Tue, 20 Apr 2021 16:26:39 -0400 Subject: [PATCH 1/2] Adds an execution environment step to the ad hoc commands --- .../AdHocCommands/AdHocCommands.jsx | 14 +- .../AdHocCommands/AdHocCommands.test.jsx | 160 +- .../AdHocCommands/AdHocCommandsWizard.jsx | 10 + .../AdHocCommandsWizard.test.jsx | 66 +- .../AdHocExecutionEnrionmentStep.test.jsx | 47 + .../AdHocExecutionEnvironmentStep.jsx | 108 + .../ToolbarDeleteButton.test.jsx.snap | 3066 ++++++++ .../DeleteRoleConfirmationModal.test.jsx.snap | 6446 ++++++++++++++++ .../ResourceAccessListItem.test.jsx.snap | 6864 +++++++++++++++++ .../InventoryDetail/InventoryDetail.test.jsx | 4 +- .../InventoryGroupHostList.jsx | 6 +- .../InventoryGroups/InventoryGroupsList.jsx | 6 +- .../InventoryHostGroupsList.jsx | 6 +- .../InventoryHosts/InventoryHostList.jsx | 4 +- .../InventoryRelatedGroupList.jsx | 4 +- .../SmartInventoryHostList.jsx | 7 +- 16 files changed, 16785 insertions(+), 33 deletions(-) create mode 100644 awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnrionmentStep.test.jsx create mode 100644 awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx create mode 100644 awx/ui_next/src/components/PaginatedDataList/__snapshots__/ToolbarDeleteButton.test.jsx.snap create mode 100644 awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap create mode 100644 awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx index b4523b4bdd..8f5469ce8d 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx @@ -12,10 +12,9 @@ import AlertModal from '../AlertModal'; import ErrorDetail from '../ErrorDetail'; import AdHocCommandsWizard from './AdHocCommandsWizard'; import { KebabifiedContext } from '../../contexts/Kebabified'; -import ContentLoading from '../ContentLoading'; import ContentError from '../ContentError'; -function AdHocCommands({ adHocItems, i18n, hasListItems }) { +function AdHocCommands({ adHocItems, i18n, hasListItems, onLaunchLoading }) { const history = useHistory(); const { id } = useParams(); @@ -76,19 +75,20 @@ function AdHocCommands({ adHocItems, i18n, hasListItems }) { ); const handleSubmit = async values => { - const { credential, ...remainingValues } = values; + const { credential, execution_environment, ...remainingValues } = values; const newCredential = credential[0].id; const manipulatedValues = { credential: newCredential, + execution_environment: execution_environment[0]?.id, ...remainingValues, }; await launchAdHocCommands(manipulatedValues); }; - - if (isLaunchLoading) { - return ; - } + useEffect(() => onLaunchLoading(isLaunchLoading), [ + isLaunchLoading, + onLaunchLoading, + ]); if (error && isWizardOpen) { return ( diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx index 2cbe7250f0..d920c1432c 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.test.jsx @@ -4,12 +4,19 @@ import { mountWithContexts, waitForElement, } from '../../../testUtils/enzymeHelpers'; -import { CredentialTypesAPI, InventoriesAPI, CredentialsAPI } from '../../api'; +import { + CredentialTypesAPI, + InventoriesAPI, + CredentialsAPI, + ExecutionEnvironmentsAPI, +} from '../../api'; import AdHocCommands from './AdHocCommands'; jest.mock('../../api/models/CredentialTypes'); jest.mock('../../api/models/Inventories'); jest.mock('../../api/models/Credentials'); +jest.mock('../../api/models/ExecutionEnvironments'); + jest.mock('react-router-dom', () => ({ ...jest.requireActual('react-router-dom'), useParams: () => ({ @@ -51,6 +58,15 @@ describe('', () => { CredentialTypesAPI.read.mockResolvedValue({ data: { count: 1, results: [{ id: 1, name: 'cred' }] }, }); + ExecutionEnvironmentsAPI.read.mockResolvedValue({ + data: { + results: [ + { id: 1, name: 'EE1 1', url: 'wwww.google.com' }, + { id: 2, name: 'EE2', url: 'wwww.google.com' }, + ], + count: 2, + }, + }); }); let wrapper; afterEach(() => { @@ -61,7 +77,11 @@ describe('', () => { test('mounts successfully', async () => { await act(async () => { wrapper = mountWithContexts( - + jest.fn()} + /> ); }); expect(wrapper.find('AdHocCommands').length).toBe(1); @@ -86,9 +106,22 @@ describe('', () => { CredentialTypesAPI.read.mockResolvedValue({ data: { results: [{ id: 1 }] }, }); + ExecutionEnvironmentsAPI.read.mockResolvedValue({ + data: { + results: [ + { id: 1, name: 'EE1 1', url: 'wwww.google.com' }, + { id: 2, name: 'EE2', url: 'wwww.google.com' }, + ], + count: 2, + }, + }); await act(async () => { wrapper = mountWithContexts( - + jest.fn()} + /> ); }); await act(async () => @@ -108,9 +141,22 @@ describe('', () => { count: 5, }, }); + ExecutionEnvironmentsAPI.read.mockResolvedValue({ + data: { + results: [ + { id: 1, name: 'EE1 1', url: 'wwww.google.com' }, + { id: 2, name: 'EE2', url: 'wwww.google.com' }, + ], + count: 2, + }, + }); await act(async () => { wrapper = mountWithContexts( - + jest.fn()} + /> ); }); @@ -147,8 +193,27 @@ describe('', () => { wrapper.find('Button[type="submit"]').prop('onClick')() ); await waitForElement(wrapper, 'ContentEmpty', el => el.length === 0); + // second step of wizard + await act(async () => { + wrapper + .find('input[aria-labelledby="check-action-item-2"]') + .simulate('change', { target: { checked: true } }); + }); + + wrapper.update(); + + expect( + wrapper.find('CheckboxListItem[label="EE2"]').prop('isSelected') + ).toBe(true); + + await act(async () => + wrapper.find('Button[type="submit"]').prop('onClick')() + ); + // third step of wizard + await waitForElement(wrapper, 'ContentEmpty', el => el.length === 0); + await act(async () => { wrapper .find('input[aria-labelledby="check-action-item-4"]') @@ -176,6 +241,7 @@ describe('', () => { limit: 'Inventory 1 Org 0, Inventory 2 Org 0', module_name: 'command', verbosity: 1, + execution_environment: 2, }); }); @@ -202,13 +268,21 @@ describe('', () => { ['foo', 'foo'], ], }, - verbosity: { choices: [[1], [2]] }, + verbosity: { + choices: [[1], [2]], + }, }, }, }, }); CredentialTypesAPI.read.mockResolvedValue({ - data: { results: [{ id: 1 }] }, + data: { + results: [ + { + id: 1, + }, + ], + }, }); CredentialsAPI.read.mockResolvedValue({ data: { @@ -216,9 +290,30 @@ describe('', () => { count: 5, }, }); + ExecutionEnvironmentsAPI.read.mockResolvedValue({ + data: { + results: [ + { + id: 1, + name: 'EE1 1', + url: 'wwww.google.com', + }, + { + id: 2, + name: 'EE2', + url: 'wwww.google.com', + }, + ], + count: 2, + }, + }); await act(async () => { wrapper = mountWithContexts( - + jest.fn()} + /> ); }); @@ -240,7 +335,10 @@ describe('', () => { 'command' ); wrapper.find('input#module_args').simulate('change', { - target: { value: 'foo', name: 'module_args' }, + target: { + value: 'foo', + name: 'module_args', + }, }); wrapper.find('AnsibleSelect[name="verbosity"]').prop('onChange')({}, 1); }); @@ -259,10 +357,36 @@ describe('', () => { // second step of wizard + await act(async () => { + wrapper + .find('input[aria-labelledby="check-action-item-2"]') + .simulate('change', { + target: { + checked: true, + }, + }); + }); + + wrapper.update(); + + expect( + wrapper.find('CheckboxListItem[label="EE2"]').prop('isSelected') + ).toBe(true); + + await act(async () => + wrapper.find('Button[type="submit"]').prop('onClick')() + ); + // third step of wizard + await waitForElement(wrapper, 'ContentEmpty', el => el.length === 0); + await act(async () => { wrapper .find('input[aria-labelledby="check-action-item-4"]') - .simulate('change', { target: { checked: true } }); + .simulate('change', { + target: { + checked: true, + }, + }); }); wrapper.update(); @@ -291,7 +415,11 @@ describe('', () => { }); await act(async () => { wrapper = mountWithContexts( - + jest.fn()} + /> ); }); await waitForElement(wrapper, 'ContentLoading', el => el.length === 0); @@ -312,7 +440,11 @@ describe('', () => { }); await act(async () => { wrapper = mountWithContexts( - + jest.fn()} + /> ); }); await waitForElement(wrapper, 'ContentLoading', el => el.length === 0); @@ -335,7 +467,11 @@ describe('', () => { ); await act(async () => { wrapper = mountWithContexts( - + jest.fn()} + /> ); }); await act(async () => wrapper.find('button').prop('onClick')()); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx index 865564ba92..a7fb455f61 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.jsx @@ -10,6 +10,7 @@ import styled from 'styled-components'; import Wizard from '../Wizard'; import AdHocCredentialStep from './AdHocCredentialStep'; import AdHocDetailsStep from './AdHocDetailsStep'; +import AdHocExecutionEnvironmentStep from './AdHocExecutionEnvironmentStep'; const AlertText = styled.div` color: var(--pf-global--danger-color--200); @@ -81,6 +82,14 @@ function AdHocCommandsWizard({ { id: 2, key: 2, + name: t`Execution Environment`, + component: , + enableNext: true, + canJumpTo: currentStepId >= 2, + }, + { + id: 3, + key: 3, name: i18n._(t`Machine credential`), component: ( ', () => { wrapper.update(); }); test('launch button should become active', async () => { + ExecutionEnvironmentsAPI.read.mockResolvedValue({ + data: { + results: [ + { id: 1, name: 'EE 1', url: '' }, + { id: 2, name: 'EE 2', url: '' }, + ], + count: 2, + }, + }); CredentialsAPI.read.mockResolvedValue({ data: { results: [ @@ -127,10 +138,40 @@ describe('', () => { ); wrapper.update(); + + // step 2 + + await waitForElement(wrapper, 'OptionsList', el => el.length > 0); + expect(wrapper.find('CheckboxListItem').length).toBe(2); + expect(wrapper.find('Button[type="submit"]').prop('isDisabled')).toBe( + false + ); + + await act(async () => { + wrapper + .find('input[aria-labelledby="check-action-item-1"]') + .simulate('change', { target: { checked: true } }); + }); + + wrapper.update(); + + expect( + wrapper.find('CheckboxListItem[label="EE 1"]').prop('isSelected') + ).toBe(true); + expect(wrapper.find('Button[type="submit"]').prop('isDisabled')).toBe( + false + ); + + await act(async () => + wrapper.find('Button[type="submit"]').prop('onClick')() + ); + + wrapper.update(); + // step 3 + await waitForElement(wrapper, 'OptionsList', el => el.length > 0); expect(wrapper.find('CheckboxListItem').length).toBe(2); expect(wrapper.find('Button[type="submit"]').prop('isDisabled')).toBe(true); - await act(async () => { wrapper .find('input[aria-labelledby="check-action-item-1"]') @@ -150,8 +191,21 @@ describe('', () => { wrapper.find('Button[type="submit"]').prop('onClick')() ); - expect(onLaunch).toHaveBeenCalled(); + expect(onLaunch).toHaveBeenCalledWith({ + become_enabled: '', + credential: [{ id: 1, name: 'Cred 1', url: '' }], + diff_mode: false, + execution_environment: [{ id: 1, name: 'EE 1', url: '' }], + extra_vars: '---', + forks: 0, + job_type: 'run', + limit: 'Inventory 1, Inventory 2, inventory 3', + module_args: 'foo', + module_name: 'command', + verbosity: 1, + }); }); + test('should show error in navigation bar', async () => { await waitForElement(wrapper, 'WizardNavItem', el => el.length > 0); @@ -201,6 +255,12 @@ describe('', () => { wrapper.find('Button[type="submit"]').prop('onClick')() ); + wrapper.update(); + + await act(async () => + wrapper.find('Button[type="submit"]').prop('onClick')() + ); + wrapper.update(); expect(wrapper.find('ContentError').length).toBe(1); }); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnrionmentStep.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnrionmentStep.test.jsx new file mode 100644 index 0000000000..5e6c0060ab --- /dev/null +++ b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnrionmentStep.test.jsx @@ -0,0 +1,47 @@ +import React from 'react'; +import { act } from 'react-dom/test-utils'; +import { Formik } from 'formik'; +import { + mountWithContexts, + waitForElement, +} from '../../../testUtils/enzymeHelpers'; +import { ExecutionEnvironmentsAPI } from '../../api'; +import AdHocExecutionEnvironmentStep from './AdHocExecutionEnvironmentStep'; + +jest.mock('../../api/models/ExecutionEnvironments'); + +describe('', () => { + let wrapper; + beforeEach(async () => { + ExecutionEnvironmentsAPI.read.mockResolvedValue({ + data: { + results: [ + { id: 1, name: 'EE1 1', url: 'wwww.google.com' }, + { id: 2, name: 'EE2', url: 'wwww.google.com' }, + ], + count: 2, + }, + }); + await act(async () => { + wrapper = mountWithContexts( + + + + ); + }); + }); + afterEach(() => { + jest.clearAllMocks(); + wrapper.unmount(); + }); + + test('should mount properly', async () => { + await waitForElement(wrapper, 'OptionsList', el => el.length > 0); + }); + + test('should call api', async () => { + await waitForElement(wrapper, 'OptionsList', el => el.length > 0); + expect(ExecutionEnvironmentsAPI.read).toHaveBeenCalled(); + expect(wrapper.find('CheckboxListItem').length).toBe(2); + }); +}); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx new file mode 100644 index 0000000000..3e73a57175 --- /dev/null +++ b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx @@ -0,0 +1,108 @@ +import React, { useEffect, useCallback } from 'react'; +import { useHistory } from 'react-router-dom'; +import { t } from '@lingui/macro'; +import { useField } from 'formik'; +import { Form, FormGroup } from '@patternfly/react-core'; +import { ExecutionEnvironmentsAPI } from '../../api'; +import Popover from '../Popover'; + +import { parseQueryString, getQSConfig } from '../../util/qs'; +import useRequest from '../../util/useRequest'; +import ContentError from '../ContentError'; +import ContentLoading from '../ContentLoading'; +import OptionsList from '../OptionsList'; + +const QS_CONFIG = getQSConfig('execution_environemts', { + page: 1, + page_size: 5, + order_by: 'name', +}); +function AdHocExecutionEnvironmentStep() { + const history = useHistory(); + const [executionEnvironmentField, , executionEnvironmentHelpers] = useField( + 'execution_environment' + ); + const { + error, + isLoading, + request: fetchExecutionEnvironments, + result: { executionEnvironments, executionEnvironmentsCount }, + } = useRequest( + useCallback(async () => { + const params = parseQueryString(QS_CONFIG, history.location.search); + + const { + data: { results, count }, + } = await ExecutionEnvironmentsAPI.read(params); + + return { + executionEnvironments: results, + executionEnvironmentsCount: count, + }; + }, [history.location.search]), + { executionEnvironments: [], executionEnvironmentsCount: 0 } + ); + + useEffect(() => { + fetchExecutionEnvironments(); + }, [fetchExecutionEnvironments]); + + if (error) { + return ; + } + if (isLoading) { + return ; + } + + return ( +
+ + } + > + { + executionEnvironmentHelpers.setValue([value]); + }} + deselectItem={() => { + executionEnvironmentHelpers.setValue([]); + }} + /> + +
+ ); +} +export default AdHocExecutionEnvironmentStep; 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 new file mode 100644 index 0000000000..d5a47b9328 --- /dev/null +++ b/awx/ui_next/src/components/PaginatedDataList/__snapshots__/ToolbarDeleteButton.test.jsx.snap @@ -0,0 +1,3066 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", + "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", + "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", + "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.com": "View YAML examples at <0>docs.ansible.com", + "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 {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", + "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}": Array [ + Array [ + "dateStr", + ], + " by <0>", + Array [ + "username", + ], + "", + ], + "{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" + warningMessage={null} +> + + + + + Select a row to delete + + + } + popperMatchesTriggerWidth={false} + positionModifiers={ + Object { + "bottom": "pf-m-bottom", + "left": "pf-m-left", + "right": "pf-m-right", + "top": "pf-m-top", + } + } + trigger={ +
+ +
+ } + zIndex={9999} + > + +
+ + +
+
+
+
+
+`; 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 new file mode 100644 index 0000000000..1f60375963 --- /dev/null +++ b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap @@ -0,0 +1,6446 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` should render initially 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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", + "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", + "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", + "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.com": "View YAML examples at <0>docs.ansible.com", + "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 {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", + "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}": Array [ + Array [ + "dateStr", + ], + " by <0>", + Array [ + "username", + ], + "", + ], + "{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", + }, + ], + ], + }, + }, + }, + } + } + onCancel={[Function]} + onConfirm={[Function]} + role={ + Object { + "id": 3, + "name": "Member", + "resource_name": "Org", + "resource_type": "organization", + "team_id": 5, + "team_name": "The Team", + } + } + username="jane" +> + + Delete + , + , + ] + } + isOpen={true} + onClose={[Function]} + title="Remove Team Access" + variant="danger" + > + + Delete + , + , + ] + } + i18n={ + I18n { + "_events": Object { + "change": Array [ + [Function], + ], + }, + "_locale": "en", + "_localeData": Object { + "en": Object { + "plurals": [Function], + }, + }, + "_locales": undefined, + "_messages": Object { + "en": Object { + "messages": Object { + "(Limited to first 10)": "(Limited to first 10)", + "(Prompt on launch)": "(Prompt on launch)", + "* 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.", + "- Enable Concurrent Jobs": "- Enable Concurrent Jobs", + "- Enable Webhooks": "- Enable Webhooks", + "/ (project root)": "/ (project root)", + "0 (Normal)": "0 (Normal)", + "0 (Warning)": "0 (Warning)", + "1 (Info)": "1 (Info)", + "1 (Verbose)": "1 (Verbose)", + "2 (Debug)": "2 (Debug)", + "2 (More Verbose)": "2 (More Verbose)", + "3 (Debug)": "3 (Debug)", + "4 (Connection Debug)": "4 (Connection Debug)", + "404": "404", + "5 (WinRM Debug)": "5 (WinRM Debug)", + "> 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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", + "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", + "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", + "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.com": "View YAML examples at <0>docs.ansible.com", + "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 {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", + "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}": Array [ + Array [ + "dateStr", + ], + " by <0>", + Array [ + "username", + ], + "", + ], + "{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", + }, + ], + ], + }, + }, + }, + } + } + isOpen={true} + onClose={[Function]} + title="Remove Team Access" + variant="danger" + > + + Delete + , + , + ] + } + appendTo={[Function]} + aria-describedby="" + aria-label="Alert modal" + aria-labelledby="alert-modal-header-label" + className="" + hasNoBodyWrapper={false} + header={ + + + + Remove Team Access + + + } + isOpen={true} + onClose={[Function]} + ouiaSafe={true} + showClose={true} + title="Remove Team Access" + titleIconVariant={null} + titleLabel="" + variant="small" + > + +
+
+ +
+
+ + } + > + + Delete + , + , + ] + } + aria-describedby="" + aria-label="Alert modal" + aria-labelledby="alert-modal-header-label" + boxId="pf-modal-part-0" + className="" + descriptorId="pf-modal-part-2" + hasNoBodyWrapper={false} + header={ + + + + Remove Team Access + + + } + isOpen={true} + labelId="pf-modal-part-1" + onClose={[Function]} + ouiaId="OUIA-Generated-Modal-small-1" + ouiaSafe={true} + showClose={true} + title="Remove Team Access" + titleIconVariant={null} + titleLabel="" + variant="small" + > + +
+ +
+ + + +
+
+
+
+
+
+
+
+
+
+`; 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 new file mode 100644 index 0000000000..148928a495 --- /dev/null +++ b/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap @@ -0,0 +1,6864 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` initially renders successfully 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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", + "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", + "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", + "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.com": "View YAML examples at <0>docs.ansible.com", + "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 {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", + "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}": Array [ + Array [ + "dateStr", + ], + " by <0>", + Array [ + "username", + ], + "", + ], + "{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", + }, + ], + ], + }, + }, + }, + } + } + onRoleDelete={[Function]} +> + +
  • + +
    + + + + + jane + + + + + + + , + + + + + Member + + + } + /> + + , + ] + } + key=".0" + rowid="access-list-item" + > + + + + + jane + + + + + + + , + + + + + Member + + + } + /> + + , + ] + } + forwardedComponent={ + Object { + "$$typeof": Symbol(react.forward_ref), + "attrs": Array [], + "componentStyle": ComponentStyle { + "componentId": "ResourceAccessListItem__DataListItemCells-sc-658iqk-0", + "isStatic": false, + "lastClassName": "jCdAGK", + "rules": Array [ + "align-items:start;", + ], + }, + "displayName": "ResourceAccessListItem__DataListItemCells", + "foldedComponentIds": Array [], + "render": [Function], + "styledComponentId": "ResourceAccessListItem__DataListItemCells-sc-658iqk-0", + "target": [Function], + "toString": [Function], + "warnTooManyClasses": [Function], + "withComponent": [Function], + } + } + forwardedRef={null} + rowid="access-list-item" + > + + + + + jane + + + + + + + , + + + + + Member + + + } + /> + + , + ] + } + rowid="access-list-item" + > +
    + + + +
    + +
    + +
    + + + + + + jane + + + + + +
    +
    +
    +
    + + + + +
    + + + + + +
    + Name +
    +
    +
    +
    +
    + + + + +
    + jane brown +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    + + + +
    + + + + +
    + + + Member + + + } + > + + + + +
    + Team Roles +
    +
    +
    +
    +
    + + + + +
    + + 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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", + "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", + "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", + "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", + "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.com": "View YAML examples at <0>docs.ansible.com", + "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 {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", + "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}": Array [ + Array [ + "dateStr", + ], + " by <0>", + Array [ + "username", + ], + "", + ], + "{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", + }, + ], + ], + }, + }, + }, + } + } + numChips={5} + totalChips={1} + > + + +
    +
    +
      +
    • + + +
      + + Member + + + +
      +
      +
      +
    • +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
    +
  • +
    +
    +`; diff --git a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx index fd36b84877..47e76cb00a 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx +++ b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx @@ -92,11 +92,11 @@ describe('', () => { expectDetailToMatch(wrapper, 'Type', 'Inventory'); const org = wrapper.find('Detail[label="Organization"]'); expect(org.prop('value')).toMatchInlineSnapshot(` - The Organization - + `); const vars = wrapper.find('VariablesDetail'); expect(vars).toHaveLength(1); diff --git a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx index 1215413c3d..682883f907 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx +++ b/awx/ui_next/src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx @@ -28,6 +28,7 @@ const QS_CONFIG = getQSConfig('host', { }); function InventoryGroupHostList({ i18n }) { + const [isAdHocLaunchLoading, setIsAdHocLaunchLoading] = useState(false); const [isModalOpen, setIsModalOpen] = useState(false); const { id: inventoryId, groupId } = useParams(); const location = useLocation(); @@ -172,7 +173,9 @@ function InventoryGroupHostList({ i18n }) { <> 0} + onLaunchLoading={setIsAdHocLaunchLoading} />, 0} + onLaunchLoading={setIsAdHocLaunchLoading} />, 0} + onLaunchLoading={setIsAdHocLaunchLoading} />, 0} + onLaunchLoading={setIsAdHocLaunchLoading} />, 0} + onLaunchLoading={setIsAdHocLaunchLoading} />, 0} + onLaunchLoading={setIsAdHocLaunchLoading} />, ] : [] From 1d442452b05e1ab1a3d5b8e10b617c22e7f8d9ab Mon Sep 17 00:00:00 2001 From: Alex Corey Date: Mon, 26 Apr 2021 14:02:22 -0400 Subject: [PATCH 2/2] adds advanced search functionality and lists correct EEs --- .../AdHocCommands/AdHocCommands.jsx | 14 +- .../AdHocCommands/AdHocCommands.test.jsx | 14 + .../AdHocCommands/AdHocCommandsWizard.jsx | 31 +- .../AdHocCommandsWizard.test.jsx | 4 + ... => AdHocExecutionEnironmentStep.test.jsx} | 5 +- .../AdHocExecutionEnvironmentStep.jsx | 57 +- .../ToolbarDeleteButton.test.jsx.snap | 3066 -------- .../DeleteRoleConfirmationModal.test.jsx.snap | 6446 ---------------- .../ResourceAccessListItem.test.jsx.snap | 6864 ----------------- .../InventoryDetail/InventoryDetail.test.jsx | 4 +- 10 files changed, 98 insertions(+), 16407 deletions(-) rename awx/ui_next/src/components/AdHocCommands/{AdHocExecutionEnrionmentStep.test.jsx => AdHocExecutionEnironmentStep.test.jsx} (88%) delete mode 100644 awx/ui_next/src/components/PaginatedDataList/__snapshots__/ToolbarDeleteButton.test.jsx.snap delete mode 100644 awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap delete mode 100644 awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx index 8f5469ce8d..fb8ed89f84 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCommands.jsx @@ -35,22 +35,29 @@ function AdHocCommands({ adHocItems, i18n, hasListItems, onLaunchLoading }) { }, [isKebabified, isWizardOpen, onKebabModalChange]); const { - result: { moduleOptions, credentialTypeId, isAdHocDisabled }, + result: { + moduleOptions, + credentialTypeId, + isAdHocDisabled, + organizationId, + }, request: fetchData, error: fetchError, } = useRequest( useCallback(async () => { - const [options, cred] = await Promise.all([ + const [options, { data }, cred] = await Promise.all([ InventoriesAPI.readAdHocOptions(id), + InventoriesAPI.readDetail(id), CredentialTypesAPI.read({ namespace: 'ssh' }), ]); return { moduleOptions: options.data.actions.GET.module_name.choices, credentialTypeId: cred.data.results[0].id, isAdHocDisabled: !options.data.actions.POST, + organizationId: data.organization, }; }, [id]), - { moduleOptions: [], isAdHocDisabled: true } + { moduleOptions: [], isAdHocDisabled: true, organizationId: null } ); useEffect(() => { fetchData(); @@ -141,6 +148,7 @@ function AdHocCommands({ adHocItems, i18n, hasListItems, onLaunchLoading }) { {isWizardOpen && ( ', () => { }, }, }); + InventoriesAPI.readDetail.mockResolvedValue({ data: { organization: 1 } }); CredentialTypesAPI.read.mockResolvedValue({ data: { results: [{ id: 1 }] }, }); @@ -135,6 +136,10 @@ describe('', () => { test('should submit properly', async () => { InventoriesAPI.launchAdHocCommands.mockResolvedValue({ data: { id: 1 } }); + InventoriesAPI.readDetail.mockResolvedValue({ + data: { organization: 1 }, + }); + CredentialsAPI.read.mockResolvedValue({ data: { results: credentials, @@ -150,6 +155,9 @@ describe('', () => { count: 2, }, }); + ExecutionEnvironmentsAPI.readOptions.mockResolvedValue({ + data: { actions: { GET: {} } }, + }); await act(async () => { wrapper = mountWithContexts( ', () => { }, }, }); + InventoriesAPI.readDetail.mockResolvedValue({ + data: { organization: 1 }, + }); CredentialTypesAPI.read.mockResolvedValue({ data: { results: [ @@ -307,6 +318,9 @@ describe('', () => { count: 2, }, }); + ExecutionEnvironmentsAPI.readOptions.mockResolvedValue({ + data: { actions: { GET: {} } }, + }); await act(async () => { wrapper = mountWithContexts( - {i18n._(t`Details`)} + {t`Details`} ) : ( - i18n._(t`Details`) + t`Details` ), component: ( ), enableNext: enabledNextOnDetailsStep(), - nextButtonText: i18n._(t`Next`), + nextButtonText: t`Next`, }, { id: 2, key: 2, name: t`Execution Environment`, - component: , + component: ( + + ), + // Removed this line when https://github.com/patternfly/patternfly-react/issues/5729 is fixed + stepNavItemProps: { style: { 'white-space': 'nowrap' } }, enableNext: true, + nextButtonText: t`Next`, canJumpTo: currentStepId >= 2, }, { id: 3, key: 3, - name: i18n._(t`Machine credential`), + name: t`Machine credential`, component: ( ), enableNext: enableLaunch && Object.values(errors).length === 0, - nextButtonText: i18n._(t`Launch`), + nextButtonText: t`Launch`, canJumpTo: currentStepId >= 2, }, ]; @@ -115,10 +120,10 @@ function AdHocCommandsWizard({ onLaunch(values); }} steps={steps} - title={i18n._(t`Run command`)} + title={t`Run command`} nextButtonText={currentStep.nextButtonText || undefined} - backButtonText={i18n._(t`Back`)} - cancelButtonText={i18n._(t`Cancel`)} + backButtonText={t`Back`} + cancelButtonText={t`Cancel`} /> ); } @@ -149,4 +154,4 @@ FormikApp.propTypes = { onCloseWizard: PropTypes.func.isRequired, credentialTypeId: PropTypes.number.isRequired, }; -export default withI18n()(FormikApp); +export default FormikApp; diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx index 0626873f6d..db8d7edd17 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocCommandsWizard.test.jsx @@ -41,6 +41,7 @@ describe('', () => { verbosityOptions={verbosityOptions} onCloseWizard={() => {}} credentialTypeId={1} + organizationId={1} /> ); }); @@ -108,6 +109,9 @@ describe('', () => { count: 2, }, }); + ExecutionEnvironmentsAPI.readOptions.mockResolvedValue({ + data: { actions: { GET: {} } }, + }); CredentialsAPI.read.mockResolvedValue({ data: { results: [ diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnrionmentStep.test.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.jsx similarity index 88% rename from awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnrionmentStep.test.jsx rename to awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.jsx index 5e6c0060ab..539ec5874e 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnrionmentStep.test.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnironmentStep.test.jsx @@ -22,10 +22,13 @@ describe('', () => { count: 2, }, }); + ExecutionEnvironmentsAPI.readOptions.mockResolvedValue({ + data: { actions: { GET: {} } }, + }); await act(async () => { wrapper = mountWithContexts( - + ); }); diff --git a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx index 3e73a57175..4c8c6ec3ae 100644 --- a/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx +++ b/awx/ui_next/src/components/AdHocCommands/AdHocExecutionEnvironmentStep.jsx @@ -6,18 +6,18 @@ import { Form, FormGroup } from '@patternfly/react-core'; import { ExecutionEnvironmentsAPI } from '../../api'; import Popover from '../Popover'; -import { parseQueryString, getQSConfig } from '../../util/qs'; +import { parseQueryString, getQSConfig, mergeParams } from '../../util/qs'; import useRequest from '../../util/useRequest'; import ContentError from '../ContentError'; import ContentLoading from '../ContentLoading'; import OptionsList from '../OptionsList'; -const QS_CONFIG = getQSConfig('execution_environemts', { +const QS_CONFIG = getQSConfig('execution_environments', { page: 1, page_size: 5, order_by: 'name', }); -function AdHocExecutionEnvironmentStep() { +function AdHocExecutionEnvironmentStep({ organizationId }) { const history = useHistory(); const [executionEnvironmentField, , executionEnvironmentHelpers] = useField( 'execution_environment' @@ -26,21 +26,51 @@ function AdHocExecutionEnvironmentStep() { error, isLoading, request: fetchExecutionEnvironments, - result: { executionEnvironments, executionEnvironmentsCount }, + result: { + executionEnvironments, + executionEnvironmentsCount, + relatedSearchableKeys, + searchableKeys, + }, } = useRequest( useCallback(async () => { const params = parseQueryString(QS_CONFIG, history.location.search); + const globallyAvailableParams = { or__organization__isnull: 'True' }; + const organizationIdParams = organizationId + ? { or__organization__id: organizationId } + : {}; - const { - data: { results, count }, - } = await ExecutionEnvironmentsAPI.read(params); - + const [ + { + data: { results, count }, + }, + actionsResponse, + ] = await Promise.all([ + ExecutionEnvironmentsAPI.read( + mergeParams(params, { + ...globallyAvailableParams, + ...organizationIdParams, + }) + ), + ExecutionEnvironmentsAPI.readOptions(), + ]); return { executionEnvironments: results, executionEnvironmentsCount: count, + relatedSearchableKeys: ( + actionsResponse?.data?.related_search_fields || [] + ).map(val => val.slice(0, -8)), + searchableKeys: Object.keys( + actionsResponse.data.actions?.GET || {} + ).filter(key => actionsResponse.data.actions?.GET[key].filterable), }; - }, [history.location.search]), - { executionEnvironments: [], executionEnvironmentsCount: 0 } + }, [history.location.search, organizationId]), + { + executionEnvironments: [], + executionEnvironmentsCount: 0, + relatedSearchableKeys: [], + searchableKeys: [], + } ); useEffect(() => { @@ -62,11 +92,12 @@ function AdHocExecutionEnvironmentStep() { aria-label={t`Execution Environments`} labelIcon={ } > { executionEnvironmentHelpers.setValue([value]); }} 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 deleted file mode 100644 index d5a47b9328..0000000000 --- a/awx/ui_next/src/components/PaginatedDataList/__snapshots__/ToolbarDeleteButton.test.jsx.snap +++ /dev/null @@ -1,3066 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", - "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", - "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", - "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.com": "View YAML examples at <0>docs.ansible.com", - "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 {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", - "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}": Array [ - Array [ - "dateStr", - ], - " by <0>", - Array [ - "username", - ], - "", - ], - "{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" - warningMessage={null} -> - - - - - Select a row to delete - - - } - popperMatchesTriggerWidth={false} - positionModifiers={ - Object { - "bottom": "pf-m-bottom", - "left": "pf-m-left", - "right": "pf-m-right", - "top": "pf-m-top", - } - } - trigger={ -
    - -
    - } - zIndex={9999} - > - -
    - - -
    -
    -
    -
    -
    -`; 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 deleted file mode 100644 index 1f60375963..0000000000 --- a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/DeleteRoleConfirmationModal.test.jsx.snap +++ /dev/null @@ -1,6446 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[` should render initially 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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", - "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", - "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", - "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.com": "View YAML examples at <0>docs.ansible.com", - "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 {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", - "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}": Array [ - Array [ - "dateStr", - ], - " by <0>", - Array [ - "username", - ], - "", - ], - "{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", - }, - ], - ], - }, - }, - }, - } - } - onCancel={[Function]} - onConfirm={[Function]} - role={ - Object { - "id": 3, - "name": "Member", - "resource_name": "Org", - "resource_type": "organization", - "team_id": 5, - "team_name": "The Team", - } - } - username="jane" -> - - Delete - , - , - ] - } - isOpen={true} - onClose={[Function]} - title="Remove Team Access" - variant="danger" - > - - Delete - , - , - ] - } - i18n={ - I18n { - "_events": Object { - "change": Array [ - [Function], - ], - }, - "_locale": "en", - "_localeData": Object { - "en": Object { - "plurals": [Function], - }, - }, - "_locales": undefined, - "_messages": Object { - "en": Object { - "messages": Object { - "(Limited to first 10)": "(Limited to first 10)", - "(Prompt on launch)": "(Prompt on launch)", - "* 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.", - "- Enable Concurrent Jobs": "- Enable Concurrent Jobs", - "- Enable Webhooks": "- Enable Webhooks", - "/ (project root)": "/ (project root)", - "0 (Normal)": "0 (Normal)", - "0 (Warning)": "0 (Warning)", - "1 (Info)": "1 (Info)", - "1 (Verbose)": "1 (Verbose)", - "2 (Debug)": "2 (Debug)", - "2 (More Verbose)": "2 (More Verbose)", - "3 (Debug)": "3 (Debug)", - "4 (Connection Debug)": "4 (Connection Debug)", - "404": "404", - "5 (WinRM Debug)": "5 (WinRM Debug)", - "> 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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", - "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", - "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", - "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.com": "View YAML examples at <0>docs.ansible.com", - "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 {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", - "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}": Array [ - Array [ - "dateStr", - ], - " by <0>", - Array [ - "username", - ], - "", - ], - "{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", - }, - ], - ], - }, - }, - }, - } - } - isOpen={true} - onClose={[Function]} - title="Remove Team Access" - variant="danger" - > - - Delete - , - , - ] - } - appendTo={[Function]} - aria-describedby="" - aria-label="Alert modal" - aria-labelledby="alert-modal-header-label" - className="" - hasNoBodyWrapper={false} - header={ - - - - Remove Team Access - - - } - isOpen={true} - onClose={[Function]} - ouiaSafe={true} - showClose={true} - title="Remove Team Access" - titleIconVariant={null} - titleLabel="" - variant="small" - > - -
    -
    - -
    -
    - - } - > - - Delete - , - , - ] - } - aria-describedby="" - aria-label="Alert modal" - aria-labelledby="alert-modal-header-label" - boxId="pf-modal-part-0" - className="" - descriptorId="pf-modal-part-2" - hasNoBodyWrapper={false} - header={ - - - - Remove Team Access - - - } - isOpen={true} - labelId="pf-modal-part-1" - onClose={[Function]} - ouiaId="OUIA-Generated-Modal-small-1" - ouiaSafe={true} - showClose={true} - title="Remove Team Access" - titleIconVariant={null} - titleLabel="" - variant="small" - > - -
    - -
    - - - -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -`; 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 deleted file mode 100644 index 148928a495..0000000000 --- a/awx/ui_next/src/components/ResourceAccessList/__snapshots__/ResourceAccessListItem.test.jsx.snap +++ /dev/null @@ -1,6864 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[` initially renders successfully 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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", - "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", - "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", - "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.com": "View YAML examples at <0>docs.ansible.com", - "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 {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", - "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}": Array [ - Array [ - "dateStr", - ], - " by <0>", - Array [ - "username", - ], - "", - ], - "{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", - }, - ], - ], - }, - }, - }, - } - } - onRoleDelete={[Function]} -> - -
  • - -
    - - - - - jane - - - - - - - , - - - - - Member - - - } - /> - - , - ] - } - key=".0" - rowid="access-list-item" - > - - - - - jane - - - - - - - , - - - - - Member - - - } - /> - - , - ] - } - forwardedComponent={ - Object { - "$$typeof": Symbol(react.forward_ref), - "attrs": Array [], - "componentStyle": ComponentStyle { - "componentId": "ResourceAccessListItem__DataListItemCells-sc-658iqk-0", - "isStatic": false, - "lastClassName": "jCdAGK", - "rules": Array [ - "align-items:start;", - ], - }, - "displayName": "ResourceAccessListItem__DataListItemCells", - "foldedComponentIds": Array [], - "render": [Function], - "styledComponentId": "ResourceAccessListItem__DataListItemCells-sc-658iqk-0", - "target": [Function], - "toString": [Function], - "warnTooManyClasses": [Function], - "withComponent": [Function], - } - } - forwardedRef={null} - rowid="access-list-item" - > - - - - - jane - - - - - - - , - - - - - Member - - - } - /> - - , - ] - } - rowid="access-list-item" - > -
    - - - -
    - -
    - -
    - - - - - - jane - - - - - -
    -
    -
    -
    - - - - -
    - - - - - -
    - Name -
    -
    -
    -
    -
    - - - - -
    - jane brown -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    - - - -
    - - - - -
    - - - Member - - - } - > - - - - -
    - Team Roles -
    -
    -
    -
    -
    - - - - -
    - - 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.com. For more information, see the <1>User Guide.": "A subscription manifest is an export of a Red Hat Subscription. To generate a subscription manifest, go to <0>access.redhat.com. For more information, see the <1>User Guide.", - "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 page. 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 page. 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 Plugins in the documentation and the <1>Tower plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide.", - "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide.": "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory 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.": "If you are ready to upgrade or renew, please <0>contact us.", - "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 allocations on the Red Hat Customer Portal.": "Upload a Red Hat Subscription Manifest containing your subscription. To generate your subscription manifest, go to <0>subscription allocations 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.org": "View JSON examples at <0>www.json.org", - "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.com": "View YAML examples at <0>docs.ansible.com", - "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 {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", - "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}": Array [ - Array [ - "dateStr", - ], - " by <0>", - Array [ - "username", - ], - "", - ], - "{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", - }, - ], - ], - }, - }, - }, - } - } - numChips={5} - totalChips={1} - > - - -
    -
    -
      -
    • - - -
      - - Member - - - -
      -
      -
      -
    • -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
    -
  • -
    -
    -`; diff --git a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx index 47e76cb00a..fd36b84877 100644 --- a/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx +++ b/awx/ui_next/src/screens/Inventory/InventoryDetail/InventoryDetail.test.jsx @@ -92,11 +92,11 @@ describe('', () => { expectDetailToMatch(wrapper, 'Type', 'Inventory'); const org = wrapper.find('Detail[label="Organization"]'); expect(org.prop('value')).toMatchInlineSnapshot(` - The Organization - + `); const vars = wrapper.find('VariablesDetail'); expect(vars).toHaveLength(1);