diff --git a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx index ddb0a1e7cd..15f530ec63 100644 --- a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.jsx @@ -1,6 +1,5 @@ -import React from 'react'; -import { Wizard } from '@patternfly/react-core'; - +import React, { useState } from 'react'; +import { ExpandableSection, Wizard } from '@patternfly/react-core'; import { t } from '@lingui/macro'; import { Formik, useFormikContext } from 'formik'; import ContentError from '../ContentError'; @@ -20,6 +19,7 @@ function PromptModalForm({ resourceDefaultCredentials, }) { const { setFieldTouched, values } = useFormikContext(); + const [showDescription, setShowDescription] = useState(false); const { steps, @@ -102,7 +102,24 @@ function PromptModalForm({ validateStep(nextStep.id); } }} - title={t`Prompts`} + title={t`Launch | ${resource.name}`} + description={ + resource.description.length > 512 ? ( + { + setShowDescription(!showDescription); + }} + isExpanded={showDescription} + > + {resource.description} + + ) : ( + resource.description + ) + } steps={ isReady ? steps diff --git a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx index 338ea17256..4e5547242c 100644 --- a/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx +++ b/awx/ui_next/src/components/LaunchPrompt/LaunchPrompt.test.jsx @@ -24,6 +24,8 @@ jest.mock('../../api/models/JobTemplates'); let config; const resource = { id: 1, + description: 'Foo Description', + name: 'Foobar', type: 'job_template', }; const noop = () => {}; @@ -147,6 +149,10 @@ describe('LaunchPrompt', () => { expect(steps[3].name.props.children).toEqual('Other prompts'); expect(steps[4].name.props.children).toEqual('Survey'); expect(steps[5].name.props.children).toEqual('Preview'); + expect(wizard.find('WizardHeader').prop('title')).toBe('Launch | Foobar'); + expect(wizard.find('WizardHeader').prop('description')).toBe( + 'Foo Description' + ); }); test('should add inventory step', async () => { diff --git a/awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.test.jsx b/awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.test.jsx index 4ecd88cf3a..b95212e755 100644 --- a/awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.test.jsx +++ b/awx/ui_next/src/components/Schedule/ScheduleAdd/ScheduleAdd.test.jsx @@ -66,6 +66,8 @@ describe('', () => { type: 'job_template', inventory: 2, summary_fields: { credentials: [] }, + name: 'Foo Job Template', + description: '', }} launchConfig={launchConfig} /> @@ -417,6 +419,8 @@ describe('', () => { type: 'job_template', inventory: 2, summary_fields: { credentials: [] }, + name: 'Foo Job Template', + description: '', }} launchConfig={launchConfig} surveyConfig={{ diff --git a/awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.test.jsx b/awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.test.jsx index 85de8346fe..9b1b2f4c62 100644 --- a/awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.test.jsx +++ b/awx/ui_next/src/components/Schedule/ScheduleEdit/ScheduleEdit.test.jsx @@ -142,6 +142,8 @@ describe('', () => { { name: 'job template credential', id: 75, kind: 'ssh' }, ], }, + name: 'Foo Job Template', + description: '', }} resourceDefaultCredentials={[]} launchConfig={{ @@ -654,6 +656,8 @@ describe('', () => { { name: 'job template credential', id: 75, kind: 'ssh' }, ], }, + name: 'Foo Job Template', + description: '', }} resourceDefaultCredentials={[]} launchConfig={{ diff --git a/awx/ui_next/src/components/Schedule/shared/ScheduleForm.test.jsx b/awx/ui_next/src/components/Schedule/shared/ScheduleForm.test.jsx index c650c3ceaa..9e95e4d009 100644 --- a/awx/ui_next/src/components/Schedule/shared/ScheduleForm.test.jsx +++ b/awx/ui_next/src/components/Schedule/shared/ScheduleForm.test.jsx @@ -150,7 +150,12 @@ describe('', () => { description: '', }, }} - resource={{ id: 23, type: 'job_template' }} + resource={{ + id: 23, + type: 'job_template', + name: 'Foo Job Template', + description: '', + }} /> ); }); @@ -199,7 +204,13 @@ describe('', () => { description: '', }, }} - resource={{ id: 23, type: 'job_template', inventory: 1 }} + resource={{ + id: 23, + type: 'job_template', + inventory: 1, + name: 'Foo Job Template', + description: '', + }} /> ); }); @@ -232,6 +243,8 @@ describe('', () => { summary_fields: { credentials: [], }, + name: 'Foo Job Template', + description: '', }} launchConfig={{ can_start_without_user_input: false, @@ -370,6 +383,8 @@ describe('', () => { resource={{ id: 23, type: 'job_template', + name: 'Foo Job Template', + description: '', }} launchConfig={{ can_start_without_user_input: false, @@ -422,7 +437,13 @@ describe('', () => { ', () => { handleSubmit={jest.fn()} handleCancel={jest.fn()} schedule={{ inventory: null, ...mockSchedule }} - resource={{ id: 23, type: 'job_template' }} + resource={{ + id: 23, + type: 'job_template', + name: 'Foo Job Template', + description: '', + }} launchConfig={{ can_start_without_user_input: true, passwords_needed_to_start: [], @@ -794,7 +820,12 @@ describe('', () => { ', () => { id: 23, type: 'project', inventory: 2, + name: 'Foo Project', + description: '', }} /> ); @@ -858,7 +891,12 @@ describe('', () => { handleCancel={jest.fn()} schedule={mockSchedule} launchConfig={{ inventory_needed_to_start: false }} - resource={{ id: 23, type: 'job_template' }} + resource={{ + id: 23, + type: 'job_template', + name: 'Foo Job Template', + description: '', + }} /> ); }); @@ -888,7 +926,12 @@ describe('', () => { 'DTSTART;TZID=America/New_York:20200402T144500 RRULE:INTERVAL=10;FREQ=MINUTELY', dtend: null, })} - resource={{ id: 23, type: 'job_template' }} + resource={{ + id: 23, + type: 'job_template', + name: 'Foo Job Template', + description: '', + }} /> ); }); @@ -923,7 +966,12 @@ describe('', () => { dtend: '2020-04-03T03:45:00Z', until: '', })} - resource={{ id: 23, type: 'job_template' }} + resource={{ + id: 23, + type: 'job_template', + name: 'Foo Job Template', + description: '', + }} /> ); }); @@ -959,7 +1007,12 @@ describe('', () => { dtend: null, until: '', })} - resource={{ id: 23, type: 'job_template' }} + resource={{ + id: 23, + type: 'job_template', + name: 'Foo Job Template', + description: '', + }} /> ); expect(wrapper.find('ScheduleForm').length).toBe(1); @@ -994,7 +1047,12 @@ describe('', () => { dtend: '2020-10-30T18:45:00Z', until: '2021-01-01T00:00:00', })} - resource={{ id: 23, type: 'job_template' }} + resource={{ + id: 23, + type: 'job_template', + name: 'Foo Job Template', + description: '', + }} /> ); }); @@ -1053,7 +1111,12 @@ describe('', () => { dtend: null, until: '', })} - resource={{ id: 23, type: 'job_template' }} + resource={{ + id: 23, + type: 'job_template', + name: 'Foo Job Template', + description: '', + }} /> ); expect(wrapper.find('ScheduleForm').length).toBe(1); @@ -1100,7 +1163,12 @@ describe('', () => { dtend: null, until: '', })} - resource={{ id: 23, type: 'job_template' }} + resource={{ + id: 23, + type: 'job_template', + name: 'Foo Job Template', + description: '', + }} /> ); expect(wrapper.find('ScheduleForm').length).toBe(1); diff --git a/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.jsx b/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.jsx index 72cac061e8..289c6c3259 100644 --- a/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.jsx +++ b/awx/ui_next/src/components/Schedule/shared/SchedulePromptableFields.jsx @@ -1,6 +1,5 @@ -import React from 'react'; -import { Wizard } from '@patternfly/react-core'; - +import React, { useState } from 'react'; +import { ExpandableSection, Wizard } from '@patternfly/react-core'; import { t } from '@lingui/macro'; import { useFormikContext } from 'formik'; import AlertModal from '../../AlertModal'; @@ -37,11 +36,10 @@ function SchedulePromptableFields({ launchConfig, schedule, resource, - credentials, resourceDefaultCredentials ); - + const [showDescription, setShowDescription] = useState(false); const { error, dismissError } = useDismissableError(contentError); const cancelPromptableValues = async () => { resetForm({ @@ -107,7 +105,24 @@ function SchedulePromptableFields({ validateStep(nextStep.id); } }} - title={t`Prompts`} + title={t`Prompt | ${resource.name}`} + description={ + resource.description.length > 512 ? ( + { + setShowDescription(!showDescription); + }} + isExpanded={showDescription} + > + {resource.description} + + ) : ( + resource.description + ) + } steps={ isReady ? steps diff --git a/awx/ui_next/src/locales/en/messages.po b/awx/ui_next/src/locales/en/messages.po index 65f9bec739..dbc9269b5d 100644 --- a/awx/ui_next/src/locales/en/messages.po +++ b/awx/ui_next/src/locales/en/messages.po @@ -23,7 +23,7 @@ msgstr "(Limited to first 10)" #: components/TemplateList/TemplateListItem.jsx:90 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:92 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 msgid "(Prompt on launch)" msgstr "(Prompt on launch)" @@ -31,11 +31,11 @@ msgstr "(Prompt on launch)" msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "* This field will be retrieved from an external secret management system using the specified credential." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:60 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 msgid "- Enable Concurrent Jobs" msgstr "- Enable Concurrent Jobs" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:65 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 msgid "- Enable Webhooks" msgstr "- Enable Webhooks" @@ -44,7 +44,7 @@ msgid "/ (project root)" msgstr "/ (project root)" #: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:132 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 #: components/PromptDetail/PromptDetail.jsx:95 #: components/PromptDetail/PromptInventorySourceDetail.jsx:32 #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 @@ -65,7 +65,7 @@ msgid "1 (Info)" msgstr "1 (Info)" #: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:133 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 #: components/PromptDetail/PromptDetail.jsx:96 #: components/PromptDetail/PromptInventorySourceDetail.jsx:33 #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 @@ -81,7 +81,7 @@ msgid "2 (Debug)" msgstr "2 (Debug)" #: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 #: components/PromptDetail/PromptDetail.jsx:97 #: components/PromptDetail/PromptInventorySourceDetail.jsx:34 #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 @@ -92,7 +92,7 @@ msgid "2 (More Verbose)" msgstr "2 (More Verbose)" #: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 #: components/PromptDetail/PromptDetail.jsx:98 #: components/PromptDetail/PromptInventorySourceDetail.jsx:35 #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 @@ -103,7 +103,7 @@ msgid "3 (Debug)" msgstr "3 (Debug)" #: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 #: components/PromptDetail/PromptDetail.jsx:99 #: components/PromptDetail/PromptInventorySourceDetail.jsx:36 #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 @@ -229,6 +229,8 @@ msgstr "Action" #: screens/Host/HostList/HostListItem.jsx:42 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 @@ -237,6 +239,8 @@ msgstr "Action" #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 #: screens/Inventory/InventoryList/InventoryList.jsx:206 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 #: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 @@ -258,10 +262,12 @@ msgstr "Actions" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 #: components/TemplateList/TemplateListItem.jsx:233 #: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:119 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 msgid "Activity" msgstr "Activity" @@ -329,11 +335,11 @@ msgstr "Add a new node between these two nodes" msgid "Add container group" msgstr "Add container group" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 msgid "Add existing group" msgstr "Add existing group" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 msgid "Add existing host" msgstr "Add existing host" @@ -349,11 +355,11 @@ msgstr "Add inventory" msgid "Add job template" msgstr "Add job template" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:130 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 msgid "Add new group" msgstr "Add new group" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:148 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 msgid "Add new host" msgstr "Add new host" @@ -395,11 +401,11 @@ msgstr "" msgid "Advanced" msgstr "Advanced" -#: components/Search/AdvancedSearch.jsx:254 +#: components/Search/AdvancedSearch.jsx:282 msgid "Advanced search documentation" msgstr "Advanced search documentation" -#: components/Search/AdvancedSearch.jsx:237 +#: components/Search/AdvancedSearch.jsx:264 msgid "Advanced search value input" msgstr "Advanced search value input" @@ -480,7 +486,7 @@ msgstr "Allowed URIs list, space separated" msgid "Always" msgstr "Always" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 msgid "Amazon EC2" msgstr "Amazon EC2" @@ -488,7 +494,7 @@ msgstr "Amazon EC2" msgid "An error occurred" msgstr "An error occurred" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 msgid "An inventory must be selected" msgstr "An inventory must be selected" @@ -502,7 +508,7 @@ msgstr "An inventory must be selected" #~ msgid "Ansible Environment" #~ msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 msgid "Ansible Tower" msgstr "Ansible Tower" @@ -716,10 +722,10 @@ msgstr "Azure AD settings" #: components/AdHocCommands/AdHocCommandsWizard.jsx:125 #: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:118 -#: components/Schedule/shared/SchedulePromptableFields.jsx:121 +#: components/LaunchPrompt/LaunchPrompt.jsx:133 +#: components/Schedule/shared/SchedulePromptableFields.jsx:136 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:72 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" @@ -781,7 +787,7 @@ msgstr "Back to Schedules" #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" msgstr "Back to Settings" @@ -912,14 +918,14 @@ msgstr "Cache timeout (seconds)" #: components/DisassociateButton/DisassociateButton.jsx:125 #: components/FormActionGroup/FormActionGroup.jsx:24 #: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 #: components/Lookup/Lookup.jsx:150 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 -#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: components/Schedule/shared/SchedulePromptableFields.jsx:137 #: screens/Credential/shared/CredentialForm.jsx:341 #: screens/Credential/shared/CredentialForm.jsx:346 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 @@ -927,7 +933,7 @@ msgstr "Cache timeout (seconds)" #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 #: screens/Setting/shared/RevertAllAlert.jsx:32 @@ -1000,7 +1006,7 @@ msgstr "Cancel selected job" msgid "Cancel selected jobs" msgstr "Cancel selected jobs" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:79 msgid "Cancel subscription edit" msgstr "Cancel subscription edit" @@ -1058,23 +1064,23 @@ msgstr "" msgid "Capacity" msgstr "Capacity" -#: components/Search/AdvancedSearch.jsx:171 +#: components/Search/AdvancedSearch.jsx:185 msgid "Case-insensitive version of contains" msgstr "Case-insensitive version of contains" -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.jsx:209 msgid "Case-insensitive version of endswith." msgstr "Case-insensitive version of endswith." -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.jsx:173 msgid "Case-insensitive version of exact." msgstr "Case-insensitive version of exact." -#: components/Search/AdvancedSearch.jsx:201 +#: components/Search/AdvancedSearch.jsx:221 msgid "Case-insensitive version of regex." msgstr "Case-insensitive version of regex." -#: components/Search/AdvancedSearch.jsx:181 +#: components/Search/AdvancedSearch.jsx:197 msgid "Case-insensitive version of startswith." msgstr "Case-insensitive version of startswith." @@ -1103,16 +1109,16 @@ msgstr "Changes" msgid "Channel" msgstr "Channel" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 #: screens/Template/shared/JobTemplateForm.jsx:181 msgid "Check" msgstr "Check" -#: components/Search/AdvancedSearch.jsx:226 +#: components/Search/AdvancedSearch.jsx:251 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "Check whether the given field or related object is null; expects a boolean value." -#: components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:257 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." @@ -1136,7 +1142,7 @@ msgstr "Choose a Source Control Type" msgid "Choose a Webhook Service" msgstr "Choose a Webhook Service" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:93 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 #: screens/Template/shared/JobTemplateForm.jsx:174 msgid "Choose a job type" msgstr "Choose a job type" @@ -1365,12 +1371,12 @@ msgstr "Container group" msgid "Container group not found." msgstr "Container group not found." -#: components/LaunchPrompt/LaunchPrompt.jsx:113 -#: components/Schedule/shared/SchedulePromptableFields.jsx:116 +#: components/LaunchPrompt/LaunchPrompt.jsx:128 +#: components/Schedule/shared/SchedulePromptableFields.jsx:131 msgid "Content Loading" msgstr "Content Loading" -#: components/AppContainer/AppContainer.jsx:225 +#: components/AppContainer/AppContainer.jsx:233 msgid "Continue" msgstr "Continue" @@ -1386,7 +1392,7 @@ msgstr "" #~ msgid "Control the level of output Ansible will produce for inventory source update jobs." #~ msgstr "Control the level of output Ansible will produce for inventory source update jobs." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:148 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." @@ -1470,7 +1476,7 @@ msgstr "Copyright" #~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:225 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Create" msgstr "Create" @@ -1624,7 +1630,7 @@ msgstr "Create user token" #: screens/Project/ProjectDetail/ProjectDetail.jsx:182 #: screens/Team/TeamDetail/TeamDetail.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:191 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 #: screens/User/UserDetail/UserDetail.jsx:77 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 #: screens/User/UserTokenList/UserTokenList.jsx:134 @@ -1654,24 +1660,24 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 #: screens/Credential/CredentialList/CredentialList.jsx:132 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 #: screens/Host/HostList/HostList.jsx:156 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 #: screens/Inventory/InventoryList/InventoryList.jsx:184 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 #: screens/Organization/OrganizationList/OrganizationList.jsx:145 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 #: screens/Project/ProjectList/ProjectList.jsx:165 #: screens/Team/TeamList/TeamList.jsx:142 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 msgid "Created By (Username)" msgstr "Created By (Username)" @@ -1773,7 +1779,7 @@ msgstr "" msgid "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}" msgstr "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}" -#: components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:34 msgid "Current page" msgstr "" @@ -1903,7 +1909,7 @@ msgstr "Define system-level features and functions" #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 #: screens/Template/Survey/SurveyList.jsx:104 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1989,7 +1995,7 @@ msgstr "Delete User Token" msgid "Delete Workflow Approval" msgstr "Delete Workflow Approval" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 msgid "Delete Workflow Job Template" msgstr "Delete Workflow Job Template" @@ -2160,10 +2166,10 @@ msgstr "Deprecated" #: screens/Team/shared/TeamForm.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 #: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 #: screens/User/UserTeams/UserTeamList.jsx:184 @@ -2272,7 +2278,7 @@ msgstr "Destination channels or users" #: screens/Setting/Settings.jsx:110 #: screens/Setting/Settings.jsx:113 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:55 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 #: screens/Team/Team.jsx:55 #: screens/Team/Teams.jsx:28 #: screens/Template/Template.jsx:144 @@ -2321,7 +2327,7 @@ msgstr "Disassociate" msgid "Disassociate group from host?" msgstr "Disassociate group from host?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:228 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 msgid "Disassociate host from group?" msgstr "Disassociate host from group?" @@ -2329,7 +2335,7 @@ msgstr "Disassociate host from group?" msgid "Disassociate instance from instance group?" msgstr "Disassociate instance from instance group?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:207 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 msgid "Disassociate related group(s)?" msgstr "Disassociate related group(s)?" @@ -2371,8 +2377,8 @@ msgstr "Documentation." #: components/CodeEditor/VariablesDetail.jsx:112 #: components/CodeEditor/VariablesDetail.jsx:118 -#: components/CodeEditor/VariablesField.jsx:126 -#: components/CodeEditor/VariablesField.jsx:132 +#: components/CodeEditor/VariablesField.jsx:138 +#: components/CodeEditor/VariablesField.jsx:144 msgid "Done" msgstr "Done" @@ -2467,14 +2473,14 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:100 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2534,15 +2540,16 @@ msgstr "Edit Execution Environment" #: screens/Host/HostGroups/HostGroupItem.jsx:50 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 msgid "Edit Group" msgstr "Edit Group" #: screens/Host/HostList/HostListItem.jsx:46 #: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:74 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 msgid "Edit Host" msgstr "Edit Host" @@ -2681,7 +2688,7 @@ msgstr "Email Options" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:261 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Concurrent Jobs" msgstr "Enable Concurrent Jobs" @@ -2700,12 +2707,12 @@ msgstr "Enable Privilege Escalation" #: screens/Template/shared/JobTemplateForm.jsx:558 #: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 msgid "Enable Webhook" msgstr "Enable Webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:247 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Enable Webhook for this workflow job template." msgstr "Enable Webhook for this workflow job template." @@ -2814,7 +2821,7 @@ msgstr "End date/time" msgid "End did not match an expected value" msgstr "End did not match an expected value" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:215 msgid "End user license agreement" msgstr "End user license agreement" @@ -3013,7 +3020,7 @@ msgstr "Error saving the workflow!" #: components/JobList/JobList.jsx:281 #: components/JobList/JobList.jsx:292 #: components/LaunchButton/LaunchButton.jsx:173 -#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 @@ -3021,10 +3028,10 @@ msgstr "Error saving the workflow!" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 #: components/Schedule/ScheduleList/ScheduleList.jsx:239 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:76 +#: components/Schedule/shared/SchedulePromptableFields.jsx:74 #: components/TemplateList/TemplateList.jsx:278 #: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: contexts/Config.jsx:74 +#: contexts/Config.jsx:64 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 #: screens/Application/ApplicationsList/ApplicationsList.jsx:191 @@ -3038,14 +3045,14 @@ msgstr "Error saving the workflow!" #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:265 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 #: screens/Inventory/InventoryList/InventoryList.jsx:265 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:239 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 #: screens/Inventory/InventorySources/InventorySourceList.jsx:245 #: screens/Inventory/InventorySources/InventorySourceList.jsx:258 @@ -3068,7 +3075,7 @@ msgstr "Error saving the workflow!" #: screens/Team/TeamRoles/TeamRolesList.jsx:235 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 @@ -3114,7 +3121,7 @@ msgstr "Event summary not available" msgid "Events" msgstr "Events" -#: components/Search/AdvancedSearch.jsx:156 +#: components/Search/AdvancedSearch.jsx:167 msgid "Exact match (default lookup if not specified)." msgstr "Exact match (default lookup if not specified)." @@ -3154,7 +3161,7 @@ msgstr "Execute when the parent node results in a successful state." #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 #: components/Lookup/ExecutionEnvironmentLookup.jsx:152 #: components/Lookup/ExecutionEnvironmentLookup.jsx:174 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "Execution Environment" @@ -3207,7 +3214,7 @@ msgid "Expand" msgstr "" #: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:226 +#: components/CodeEditor/VariablesField.jsx:246 msgid "Expand input" msgstr "Expand input" @@ -3313,9 +3320,9 @@ msgstr "Failed to associate role" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:268 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:243 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 #: screens/User/UserTeams/UserTeamList.jsx:268 msgid "Failed to associate." msgstr "Failed to associate." @@ -3519,7 +3526,7 @@ msgstr "Failed to delete user." msgid "Failed to delete workflow approval." msgstr "Failed to delete workflow approval." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:268 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 msgid "Failed to delete workflow job template." msgstr "Failed to delete workflow job template." @@ -3538,11 +3545,11 @@ msgstr "Failed to deny workflow approval." #: screens/Host/HostGroups/HostGroupsList.jsx:250 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "Failed to disassociate one or more groups." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 msgid "Failed to disassociate one or more hosts." msgstr "Failed to disassociate one or more hosts." @@ -3564,7 +3571,7 @@ msgstr "Failed to fetch custom login configuration settings. System defaults wi msgid "Failed to launch job." msgstr "Failed to launch job." -#: contexts/Config.jsx:78 +#: contexts/Config.jsx:68 msgid "Failed to retrieve configuration." msgstr "Failed to retrieve configuration." @@ -3639,11 +3646,11 @@ msgstr "False" msgid "February" msgstr "February" -#: components/Search/AdvancedSearch.jsx:166 +#: components/Search/AdvancedSearch.jsx:179 msgid "Field contains value." msgstr "Field contains value." -#: components/Search/AdvancedSearch.jsx:186 +#: components/Search/AdvancedSearch.jsx:203 msgid "Field ends with value." msgstr "Field ends with value." @@ -3651,11 +3658,11 @@ msgstr "Field ends with value." msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "Field for passing a custom Kubernetes or OpenShift Pod specification." -#: components/Search/AdvancedSearch.jsx:196 +#: components/Search/AdvancedSearch.jsx:215 msgid "Field matches the given regular expression." msgstr "Field matches the given regular expression." -#: components/Search/AdvancedSearch.jsx:176 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field starts with value." msgstr "Field starts with value." @@ -3671,7 +3678,7 @@ msgstr "File Difference" msgid "File upload rejected. Please select a single .json file." msgstr "File upload rejected. Please select a single .json file." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "File, directory or script" msgstr "File, directory or script" @@ -3710,7 +3717,7 @@ msgstr "First Run" msgid "First name" msgstr "First name" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.jsx:266 msgid "First, select a key" msgstr "First, select a key" @@ -3734,7 +3741,7 @@ msgstr "" "test environment setup, and report problems without\n" "executing the playbook." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:111 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" @@ -3808,7 +3815,7 @@ msgstr "Get subscriptions" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 #: screens/Project/ProjectList/ProjectList.jsx:150 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "Git" @@ -3869,23 +3876,23 @@ msgstr "Globally Available" msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "Globally available execution environment can not be reassigned to a specific Organization" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" @@ -3911,11 +3918,11 @@ msgstr "Grafana API key" msgid "Grafana URL" msgstr "Grafana URL" -#: components/Search/AdvancedSearch.jsx:206 +#: components/Search/AdvancedSearch.jsx:227 msgid "Greater than comparison." msgstr "Greater than comparison." -#: components/Search/AdvancedSearch.jsx:211 +#: components/Search/AdvancedSearch.jsx:233 msgid "Greater than or equal to comparison." msgstr "Greater than or equal to comparison." @@ -3940,7 +3947,7 @@ msgstr "Group type" #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:226 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 msgid "Groups" msgstr "Groups" @@ -3963,6 +3970,11 @@ msgstr "" msgid "Hide" msgstr "Hide" +#: components/LaunchPrompt/LaunchPrompt.jsx:110 +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Hide description" +msgstr "Hide description" + #: components/NotificationList/NotificationList.jsx:195 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "Hipchat" @@ -4064,8 +4076,8 @@ msgstr "Host status information for this job is unavailable." #: screens/Inventory/Inventories.jsx:77 #: screens/Inventory/Inventory.jsx:65 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:182 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:252 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 #: screens/Inventory/SmartInventory.jsx:71 @@ -4229,7 +4241,7 @@ msgstr "" #~ msgid "If enabled, run this playbook as an administrator." #~ msgstr "If enabled, run this playbook as an administrator." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" @@ -4269,7 +4281,7 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "If enabled, simultaneous runs of this job template will be allowed." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "If enabled, simultaneous runs of this workflow job template will be allowed." @@ -4396,12 +4408,21 @@ msgstr "Insights Credential" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -msgid "Insights for Ansible" -msgstr "Insights for Ansible" +#~ msgid "Insights for Ansible" +#~ msgstr "Insights for Ansible" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +msgid "Insights for Ansible Automation Platform" +msgstr "Insights for Ansible Automation Platform" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -msgid "Insights for Ansible dashboard" -msgstr "Insights for Ansible dashboard" +msgid "Insights for Ansible Automation Platform dashboard" +msgstr "Insights for Ansible Automation Platform dashboard" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#~ msgid "Insights for Ansible dashboard" +#~ msgstr "Insights for Ansible dashboard" #: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" @@ -4505,7 +4526,7 @@ msgstr "Inventories with sources cannot be copied" #: components/HostForm/HostForm.jsx:28 #: components/JobList/JobListItem.jsx:180 #: components/LaunchPrompt/steps/InventoryStep.jsx:107 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 #: components/Lookup/InventoryLookup.jsx:85 #: components/Lookup/InventoryLookup.jsx:94 #: components/Lookup/InventoryLookup.jsx:131 @@ -4530,11 +4551,11 @@ msgstr "Inventories with sources cannot be copied" #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 msgid "Inventory" msgstr "Inventory" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 msgid "Inventory (Name)" msgstr "Inventory (Name)" @@ -4625,7 +4646,7 @@ msgstr "Items" #~ msgid "Items Per Page" #~ msgstr "" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" @@ -4732,13 +4753,13 @@ msgid "Job Templates with credentials that prompt for passwords cannot be select msgstr "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" #: components/JobList/JobList.jsx:185 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:108 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 #: screens/Template/shared/JobTemplateForm.jsx:226 msgid "Job Type" msgstr "Job Type" @@ -4799,15 +4820,15 @@ msgstr "July" msgid "June" msgstr "June" -#: components/Search/AdvancedSearch.jsx:127 +#: components/Search/AdvancedSearch.jsx:132 msgid "Key" msgstr "Key" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.jsx:123 msgid "Key select" msgstr "Key select" -#: components/Search/AdvancedSearch.jsx:121 +#: components/Search/AdvancedSearch.jsx:126 msgid "Key typeahead" msgstr "Key typeahead" @@ -4878,9 +4899,9 @@ msgstr "Label Name" #: components/TemplateList/TemplateListItem.jsx:306 #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:203 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 #: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:211 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 msgid "Labels" msgstr "Labels" @@ -4973,8 +4994,8 @@ msgstr "Last used" #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:233 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:242 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 msgid "Launch" msgstr "Launch" @@ -5005,6 +5026,10 @@ msgstr "Launch template" msgid "Launch workflow" msgstr "Launch workflow" +#: components/LaunchPrompt/LaunchPrompt.jsx:105 +msgid "Launch | {0}" +msgstr "Launch | {0}" + #: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "Launched By" @@ -5018,8 +5043,12 @@ msgstr "Launched By (Username)" #~ msgstr "Learn more about Insights Analytics" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -msgid "Learn more about Insights for Ansible" -msgstr "Learn more about Insights for Ansible" +#~ msgid "Learn more about Insights for Ansible" +#~ msgstr "Learn more about Insights for Ansible" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +msgid "Learn more about Insights for Ansible Automation Platform" +msgstr "Learn more about Insights for Ansible Automation Platform" #: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 msgid "Leave this field blank to make the execution environment globally available." @@ -5029,11 +5058,11 @@ msgstr "Leave this field blank to make the execution environment globally availa msgid "Legend" msgstr "Legend" -#: components/Search/AdvancedSearch.jsx:216 +#: components/Search/AdvancedSearch.jsx:239 msgid "Less than comparison." msgstr "Less than comparison." -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.jsx:245 msgid "Less than or equal to comparison." msgstr "Less than or equal to comparison." @@ -5057,8 +5086,9 @@ msgstr "Less than or equal to comparison." #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 #: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:160 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 msgid "Limit" msgstr "Limit" @@ -5098,8 +5128,8 @@ msgstr "Logging" msgid "Logging settings" msgstr "Logging settings" -#: components/AppContainer/AppContainer.jsx:168 -#: components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:176 +#: components/AppContainer/AppContainer.jsx:241 #: components/AppContainer/PageHeaderToolbar.jsx:166 msgid "Logout" msgstr "" @@ -5109,15 +5139,15 @@ msgstr "" msgid "Lookup modal" msgstr "Lookup modal" -#: components/Search/AdvancedSearch.jsx:140 +#: components/Search/AdvancedSearch.jsx:150 msgid "Lookup select" msgstr "Lookup select" -#: components/Search/AdvancedSearch.jsx:149 +#: components/Search/AdvancedSearch.jsx:159 msgid "Lookup type" msgstr "Lookup type" -#: components/Search/AdvancedSearch.jsx:143 +#: components/Search/AdvancedSearch.jsx:153 msgid "Lookup typeahead" msgstr "Lookup typeahead" @@ -5184,7 +5214,7 @@ msgstr "Management jobs" #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 #: screens/Project/ProjectList/ProjectList.jsx:149 #: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" msgstr "Manual" @@ -5231,7 +5261,7 @@ msgstr "Metric" msgid "Metrics" msgstr "Metrics" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" @@ -5293,7 +5323,7 @@ msgstr "Missing resource" #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 #: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" @@ -5320,24 +5350,24 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 #: screens/Credential/CredentialList/CredentialList.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 #: screens/Host/HostList/HostList.jsx:160 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:196 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 #: screens/Inventory/InventoryList/InventoryList.jsx:188 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:175 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 #: screens/Organization/OrganizationList/OrganizationList.jsx:149 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 #: screens/Project/ProjectList/ProjectList.jsx:161 #: screens/Team/TeamList/TeamList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 msgid "Modified By (Username)" msgstr "Modified By (Username)" @@ -5439,9 +5469,10 @@ msgstr "Multiple Choice Options" #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 +#: components/OptionsList/OptionsList.jsx:72 #: components/PaginatedDataList/PaginatedDataList.jsx:77 #: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PaginatedTable/PaginatedTable.jsx:69 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 @@ -5479,8 +5510,8 @@ msgstr "Multiple Choice Options" #: screens/Credential/CredentialList/CredentialList.jsx:142 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 #: screens/Credential/shared/CredentialForm.jsx:169 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 @@ -5510,8 +5541,9 @@ msgstr "Multiple Choice Options" #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:187 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:202 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 @@ -5525,8 +5557,9 @@ msgstr "Multiple Choice Options" #: screens/Inventory/InventoryList/InventoryList.jsx:194 #: screens/Inventory/InventoryList/InventoryList.jsx:202 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:181 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 #: screens/Inventory/InventorySources/InventorySourceList.jsx:217 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 @@ -5569,18 +5602,18 @@ msgstr "Multiple Choice Options" #: screens/Team/TeamList/TeamListItem.jsx:33 #: screens/Team/shared/TeamForm.jsx:35 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:88 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 #: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:112 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 @@ -5596,7 +5629,7 @@ msgstr "Multiple Choice Options" msgid "Name" msgstr "" -#: components/AppContainer/AppContainer.jsx:181 +#: components/AppContainer/AppContainer.jsx:189 msgid "Navigation" msgstr "Navigation" @@ -5622,10 +5655,10 @@ msgstr "New" #: components/AdHocCommands/AdHocCommandsWizard.jsx:80 #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:120 -#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: components/LaunchPrompt/LaunchPrompt.jsx:135 +#: components/Schedule/shared/SchedulePromptableFields.jsx:138 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:61 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" @@ -5678,9 +5711,9 @@ msgstr "No items found." msgid "No result found" msgstr "No result found" -#: components/Search/AdvancedSearch.jsx:99 -#: components/Search/AdvancedSearch.jsx:131 -#: components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:100 +#: components/Search/AdvancedSearch.jsx:136 +#: components/Search/AdvancedSearch.jsx:161 msgid "No results found" msgstr "No results found" @@ -5698,7 +5731,7 @@ msgstr "No survey questions found." #~ msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "No {pluralizedItemName} Found" msgstr "No {pluralizedItemName} Found" @@ -5741,7 +5774,7 @@ msgstr "Not configured" msgid "Not configured for inventory sync." msgstr "Not configured for inventory sync." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:229 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" @@ -5893,8 +5926,8 @@ msgstr "October" #: components/AdHocCommands/AdHocDetailsStep.jsx:213 #: components/HostToggle/HostToggle.jsx:56 #: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:184 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5911,8 +5944,8 @@ msgstr "Off" #: components/AdHocCommands/AdHocDetailsStep.jsx:212 #: components/HostToggle/HostToggle.jsx:55 #: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5952,7 +5985,7 @@ msgstr "On days" msgid "Only Group By" msgstr "Only Group By" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 msgid "OpenStack" msgstr "OpenStack" @@ -5961,7 +5994,7 @@ msgid "Option Details" msgstr "Option Details" #: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:214 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5993,9 +6026,9 @@ msgstr "Optionally select the credential to use to send status updates back to t #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 #: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 msgid "Options" msgstr "Options" @@ -6034,14 +6067,14 @@ msgstr "Options" #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 #: screens/User/UserTeams/UserTeamList.jsx:183 #: screens/User/UserTeams/UserTeamList.jsx:242 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "Organization" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Organization (Name)" msgstr "Organization (Name)" @@ -6080,7 +6113,7 @@ msgstr "" #~ msgid "Organizations List" #~ msgstr "" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 msgid "Other prompts" msgstr "Other prompts" @@ -6141,7 +6174,7 @@ msgstr "Pagerduty Subdomain" msgid "Pagerduty subdomain" msgstr "Pagerduty subdomain" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" @@ -6189,7 +6222,7 @@ msgstr "" "Provide key/value pairs using either YAML or JSON. Refer to the\n" "documentation for example syntax." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:235 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 msgid "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." msgstr "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." @@ -6290,7 +6323,7 @@ msgstr "Playbook Started" #: components/TemplateList/TemplateList.jsx:211 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "Playbook name" @@ -6316,7 +6349,7 @@ msgstr "Please add survey questions." #~ msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.jsx:90 msgid "Please add {pluralizedItemName} to populate this list" msgstr "Please add {pluralizedItemName} to populate this list" @@ -6370,8 +6403,8 @@ msgstr "Policy instance minimum" msgid "Policy instance percentage" msgstr "Policy instance percentage" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:64 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:70 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 msgid "Populate field from an external secret management system" msgstr "Populate field from an external secret management system" @@ -6536,12 +6569,16 @@ msgstr "Prompt" msgid "Prompt Overrides" msgstr "Prompt Overrides" -#: components/CodeEditor/VariablesField.jsx:219 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: components/CodeEditor/VariablesField.jsx:239 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" msgstr "Prompt on launch" +#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +msgid "Prompt | {0}" +msgstr "Prompt | {0}" + #: components/PromptDetail/PromptDetail.jsx:146 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 msgid "Prompted Values" @@ -6549,11 +6586,11 @@ msgstr "Prompted Values" #: components/LaunchPrompt/LaunchPrompt.jsx:107 #: components/Schedule/shared/SchedulePromptableFields.jsx:110 -msgid "Prompts" -msgstr "Prompts" +#~ msgid "Prompts" +#~ msgstr "Prompts" #: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6616,8 +6653,12 @@ msgstr "" #~ msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights Analytics." #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." -msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." +msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +#~ msgstr "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 @@ -6687,15 +6728,15 @@ msgstr "Recipient list" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 #: screens/Project/ProjectList/ProjectList.jsx:153 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" @@ -6715,11 +6756,11 @@ msgstr "Redirect URIs" msgid "Redirect uris" msgstr "Redirect uris" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:266 msgid "Redirecting to dashboard" msgstr "Redirecting to dashboard" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:270 msgid "Redirecting to subscription detail" msgstr "Redirecting to subscription detail" @@ -6762,7 +6803,7 @@ msgstr "Regular expression where only matching host names will be imported. The #: screens/Inventory/Inventories.jsx:79 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:161 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 msgid "Related Groups" msgstr "Related Groups" @@ -6801,7 +6842,7 @@ msgstr "Relaunch using host parameters" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 #: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "Remote Archive" @@ -6921,15 +6962,15 @@ msgstr "Return" msgid "Return to subscription management." msgstr "Return to subscription management." -#: components/Search/AdvancedSearch.jsx:114 +#: components/Search/AdvancedSearch.jsx:118 msgid "Returns results that have values other than this one as well as other filters." msgstr "Returns results that have values other than this one as well as other filters." -#: components/Search/AdvancedSearch.jsx:104 +#: components/Search/AdvancedSearch.jsx:106 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." -#: components/Search/AdvancedSearch.jsx:109 +#: components/Search/AdvancedSearch.jsx:112 msgid "Returns results that satisfy this one or any other filters." msgstr "Returns results that satisfy this one or any other filters." @@ -6997,7 +7038,7 @@ msgstr "Role" msgid "Roles" msgstr "Roles" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:96 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 #: components/Workflow/WorkflowLinkHelp.jsx:39 #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 @@ -7131,7 +7172,7 @@ msgstr "Save and enable log aggregation before testing the log aggregator." msgid "Save link changes" msgstr "Save link changes" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:273 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:261 msgid "Save successful!" msgstr "Save successful!" @@ -7207,12 +7248,12 @@ msgstr "" msgid "Search is disabled while the job is running" msgstr "Search is disabled while the job is running" -#: components/Search/AdvancedSearch.jsx:247 -#: components/Search/Search.jsx:284 +#: components/Search/AdvancedSearch.jsx:275 +#: components/Search/Search.jsx:286 msgid "Search submit button" msgstr "Search submit button" -#: components/Search/Search.jsx:274 +#: components/Search/Search.jsx:275 msgid "Search text input" msgstr "" @@ -7226,14 +7267,14 @@ msgstr "Second" msgid "Seconds" msgstr "Seconds" -#: components/LaunchPrompt/steps/PreviewStep.jsx:61 +#: components/LaunchPrompt/steps/PreviewStep.jsx:65 msgid "See errors on the left" msgstr "See errors on the left" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 #: components/Lookup/Lookup.jsx:141 -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:33 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 msgid "Select" msgstr "" @@ -7244,11 +7285,11 @@ msgstr "Select Credential Type" #: screens/Host/HostGroups/HostGroupsList.jsx:238 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:232 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "Select Groups" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:258 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 msgid "Select Hosts" msgstr "Select Hosts" @@ -7312,7 +7353,7 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:185 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." @@ -7422,7 +7463,7 @@ msgstr "Select an activity type" msgid "Select an instance and a metric to show chart" msgstr "Select an instance and a metric to show chart" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:137 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." @@ -7537,17 +7578,17 @@ msgstr "Select the credential you want to use when accessing the remote hosts to #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "Select the custom Python virtual environment for this inventory source sync to run on." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:204 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 msgid "Select the default execution environment for this organization to run on." msgstr "Select the default execution environment for this organization to run on." #: screens/Organization/shared/OrganizationForm.jsx:96 -msgid "Select the default execution environment for this organization." -msgstr "Select the default execution environment for this organization." +#~ msgid "Select the default execution environment for this organization." +#~ msgstr "Select the default execution environment for this organization." #: screens/Project/shared/ProjectForm.jsx:196 -msgid "Select the default execution environment for this project." -msgstr "Select the default execution environment for this project." +#~ msgid "Select the default execution environment for this project." +#~ msgstr "Select the default execution environment for this project." #: screens/Template/shared/JobTemplateForm.jsx:298 msgid "Select the execution environment for this job template." @@ -7618,6 +7659,7 @@ msgstr "Select {0}" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 +#: components/CheckboxListItem/CheckboxListItem.jsx:31 #: components/OptionsList/OptionsList.jsx:51 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 @@ -7629,7 +7671,9 @@ msgstr "Select {0}" #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 #: screens/Host/HostList/HostListItem.jsx:26 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 #: screens/Inventory/InventoryList/InventoryListItem.jsx:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 @@ -7691,15 +7735,15 @@ msgstr "Set the instance online or offline. If offline, jobs will not be assigne msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "Set to Public or Confidential depending on how secure the client device is." -#: components/Search/AdvancedSearch.jsx:97 +#: components/Search/AdvancedSearch.jsx:98 msgid "Set type" msgstr "Set type" -#: components/Search/AdvancedSearch.jsx:88 +#: components/Search/AdvancedSearch.jsx:89 msgid "Set type select" msgstr "Set type select" -#: components/Search/AdvancedSearch.jsx:91 +#: components/Search/AdvancedSearch.jsx:92 msgid "Set type typeahead" msgstr "Set type typeahead" @@ -7731,7 +7775,7 @@ msgstr "" msgid "Show" msgstr "Show" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:171 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 #: components/PromptDetail/PromptDetail.jsx:243 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 @@ -7749,6 +7793,10 @@ msgstr "Show all groups" msgid "Show changes" msgstr "Show changes" +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Show description" +msgstr "Show description" + #: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "Show less" @@ -7887,7 +7935,7 @@ msgstr "Smart host filter" msgid "Smart inventory" msgstr "Smart inventory" -#: components/LaunchPrompt/steps/PreviewStep.jsx:58 +#: components/LaunchPrompt/steps/PreviewStep.jsx:62 msgid "Some of the previous step(s) have errors" msgstr "Some of the previous step(s) have errors" @@ -7911,7 +7959,7 @@ msgstr "Sort question order" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 #: screens/Inventory/shared/InventorySourceForm.jsx:134 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "Source" @@ -7924,7 +7972,7 @@ msgstr "Source" #: screens/Job/JobDetail/JobDetail.jsx:215 #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:137 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 #: screens/Template/shared/JobTemplateForm.jsx:308 msgid "Source Control Branch" msgstr "Source Control Branch" @@ -7961,7 +8009,7 @@ msgstr "Source Control Type" #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 #: screens/Project/ProjectList/ProjectList.jsx:157 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "Source Control URL" @@ -7985,7 +8033,7 @@ msgstr "Source Variables" msgid "Source Workflow Job" msgstr "Source Workflow Job" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:182 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Source control branch" msgstr "Source control branch" @@ -8002,7 +8050,7 @@ msgstr "Source phone number" msgid "Source variables" msgstr "Source variables" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Sourced from a project" msgstr "Sourced from a project" @@ -8130,9 +8178,9 @@ msgstr "Status" msgid "Stdout" msgstr "Stdout" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:39 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:52 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:230 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:38 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:51 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:218 msgid "Submit" msgstr "Submit" @@ -8155,7 +8203,7 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:213 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:201 msgid "Subscription" msgstr "Subscription" @@ -8163,7 +8211,7 @@ msgstr "Subscription" msgid "Subscription Details" msgstr "Subscription Details" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:200 msgid "Subscription Management" msgstr "Subscription Management" @@ -8191,7 +8239,7 @@ msgstr "Subscriptions table" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 #: screens/Project/ProjectList/ProjectList.jsx:151 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "Subversion" @@ -8559,6 +8607,14 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#: screens/Organization/shared/OrganizationForm.jsx:96 +msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." +msgstr "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." + +#: screens/Project/shared/ProjectForm.jsx:196 +msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." +msgstr "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." + #: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 msgid "" "The first fetches all references. The second\n" @@ -8775,11 +8831,21 @@ msgstr "This credential type is currently being used by some credentials and can msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" -"Red Hat Insights for Ansible." +"Insights for Ansible Automation Platform." msgstr "" "This data is used to enhance\n" "future releases of the Software and to provide\n" -"Red Hat Insights for Ansible." +"Insights for Ansible Automation Platform." + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#~ msgid "" +#~ "This data is used to enhance\n" +#~ "future releases of the Software and to provide\n" +#~ "Red Hat Insights for Ansible." +#~ msgstr "" +#~ "This data is used to enhance\n" +#~ "future releases of the Software and to provide\n" +#~ "Red Hat Insights for Ansible." #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 msgid "" @@ -8874,7 +8940,7 @@ msgstr "This field will be retrieved from an external secret management system u msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "This instance group is currently being by other resources. Are you sure you want to delete it?" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:64 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." @@ -8947,7 +9013,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "This workflow does not have any nodes configured." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:255 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" @@ -9043,6 +9109,7 @@ msgid "Toggle expand/collapse event lines" msgstr "Toggle expand/collapse event lines" #: components/HostToggle/HostToggle.jsx:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 msgid "Toggle host" msgstr "Toggle host" @@ -9112,7 +9179,7 @@ msgstr "Tokens" msgid "Tools" msgstr "Tools" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.jsx:129 msgid "Top Pagination" msgstr "Top Pagination" @@ -9207,7 +9274,7 @@ msgstr "Twilio" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 #: screens/Team/TeamRoles/TeamRolesList.jsx:181 #: screens/Template/Survey/SurveyListItem.jsx:117 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 #: screens/User/UserRoles/UserRolesList.jsx:155 #: screens/User/UserRoles/UserRolesListItem.jsx:21 @@ -9392,7 +9459,7 @@ msgid "User analytics" msgstr "User analytics" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:220 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:208 msgid "User and Insights analytics" msgstr "User and Insights analytics" @@ -9447,7 +9514,7 @@ msgstr "Username / password" msgid "Users" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 msgid "VMware vCenter" msgstr "VMware vCenter" @@ -9468,9 +9535,9 @@ msgstr "VMware vCenter" #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 #: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:233 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 msgid "Variables" msgstr "Variables" @@ -9491,7 +9558,7 @@ msgid "Verbose" msgstr "Verbose" #: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:145 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 #: components/PromptDetail/PromptDetail.jsx:191 #: components/PromptDetail/PromptInventorySourceDetail.jsx:100 #: components/PromptDetail/PromptJobTemplateDetail.jsx:134 @@ -9804,14 +9871,14 @@ msgstr "Webhook" msgid "Webhook Credential" msgstr "Webhook Credential" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:177 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 msgid "Webhook Credentials" msgstr "Webhook Credentials" #: components/PromptDetail/PromptJobTemplateDetail.jsx:153 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 #: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook Key" msgstr "Webhook Key" @@ -9819,7 +9886,7 @@ msgstr "Webhook Key" #: components/PromptDetail/PromptJobTemplateDetail.jsx:146 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 #: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "Webhook Service" @@ -9827,14 +9894,14 @@ msgstr "Webhook Service" #: components/PromptDetail/PromptJobTemplateDetail.jsx:149 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 #: screens/Template/shared/WebhookSubForm.jsx:163 #: screens/Template/shared/WebhookSubForm.jsx:173 msgid "Webhook URL" msgstr "Webhook URL" #: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:269 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 msgid "Webhook details" msgstr "Webhook details" @@ -10098,11 +10165,11 @@ msgstr "" #~ msgid "You may apply a number of possible variables in the message. Refer to the" #~ msgstr "You may apply a number of possible variables in the message. Refer to the" -#: components/AppContainer/AppContainer.jsx:237 +#: components/AppContainer/AppContainer.jsx:245 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "You will be logged out in {0} seconds due to inactivity." -#: components/AppContainer/AppContainer.jsx:213 +#: components/AppContainer/AppContainer.jsx:221 msgid "Your session is about to expire" msgstr "Your session is about to expire" @@ -10126,8 +10193,6 @@ msgstr "a new webhook url will be generated on save." #: screens/Host/HostGroups/HostGroupItem.jsx:45 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:68 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:58 #: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 msgid "actions" @@ -10150,7 +10215,7 @@ msgstr "and click on Update Revision on Launch" msgid "approved" msgstr "approved" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "brand logo" msgstr "brand logo" @@ -10300,7 +10365,7 @@ msgstr "inventory" #~ msgid "isolated instance" #~ msgstr "isolated instance" -#: components/Pagination/Pagination.jsx:23 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" @@ -10348,15 +10413,15 @@ msgstr "option to the" #~ msgid "or attributes of the job such as" #~ msgstr "or attributes of the job such as" -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "page" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" @@ -10414,7 +10479,7 @@ msgid "social login" msgstr "social login" #: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:193 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 msgid "source control branch" msgstr "source control branch" @@ -10550,7 +10615,7 @@ msgstr "{0} sources with sync failures." msgid "{0}: {1}" msgstr "{0}: {1}" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "{brandName} logo" msgstr "{brandName} logo" @@ -10627,7 +10692,7 @@ msgstr "{numJobsToCancel, plural, one {{0}} other {{1}}}" #~ msgstr "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" #: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedTable/PaginatedTable.jsx:76 msgid "{pluralizedItemName} List" msgstr "{pluralizedItemName} List" diff --git a/awx/ui_next/src/locales/es/messages.po b/awx/ui_next/src/locales/es/messages.po index 71aaae0bc1..dc06fa1480 100644 --- a/awx/ui_next/src/locales/es/messages.po +++ b/awx/ui_next/src/locales/es/messages.po @@ -19,7 +19,7 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:90 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:92 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 msgid "(Prompt on launch)" msgstr "" @@ -27,11 +27,11 @@ msgstr "" msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:60 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 msgid "- Enable Concurrent Jobs" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:65 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 msgid "- Enable Webhooks" msgstr "" @@ -40,7 +40,7 @@ msgid "/ (project root)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:132 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 #: components/PromptDetail/PromptDetail.jsx:95 #: components/PromptDetail/PromptInventorySourceDetail.jsx:32 #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 @@ -61,7 +61,7 @@ msgid "1 (Info)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:133 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 #: components/PromptDetail/PromptDetail.jsx:96 #: components/PromptDetail/PromptInventorySourceDetail.jsx:33 #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 @@ -77,7 +77,7 @@ msgid "2 (Debug)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 #: components/PromptDetail/PromptDetail.jsx:97 #: components/PromptDetail/PromptInventorySourceDetail.jsx:34 #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 @@ -88,7 +88,7 @@ msgid "2 (More Verbose)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 #: components/PromptDetail/PromptDetail.jsx:98 #: components/PromptDetail/PromptInventorySourceDetail.jsx:35 #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 @@ -99,7 +99,7 @@ msgid "3 (Debug)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 #: components/PromptDetail/PromptDetail.jsx:99 #: components/PromptDetail/PromptInventorySourceDetail.jsx:36 #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 @@ -206,6 +206,8 @@ msgstr "" #: screens/Host/HostList/HostListItem.jsx:42 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 @@ -214,6 +216,8 @@ msgstr "" #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 #: screens/Inventory/InventoryList/InventoryList.jsx:206 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 #: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 @@ -235,10 +239,12 @@ msgstr "" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 #: components/TemplateList/TemplateListItem.jsx:233 #: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:119 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 msgid "Activity" msgstr "" @@ -306,11 +312,11 @@ msgstr "" msgid "Add container group" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 msgid "Add existing group" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 msgid "Add existing host" msgstr "" @@ -326,11 +332,11 @@ msgstr "" msgid "Add job template" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:130 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 msgid "Add new group" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:148 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 msgid "Add new host" msgstr "" @@ -368,11 +374,11 @@ msgstr "" msgid "Advanced" msgstr "" -#: components/Search/AdvancedSearch.jsx:254 +#: components/Search/AdvancedSearch.jsx:282 msgid "Advanced search documentation" msgstr "" -#: components/Search/AdvancedSearch.jsx:237 +#: components/Search/AdvancedSearch.jsx:264 msgid "Advanced search value input" msgstr "" @@ -447,7 +453,7 @@ msgstr "" msgid "Always" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 msgid "Amazon EC2" msgstr "" @@ -455,7 +461,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 msgid "An inventory must be selected" msgstr "" @@ -469,7 +475,7 @@ msgstr "" #~ msgid "Ansible Environment" #~ msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 msgid "Ansible Tower" msgstr "" @@ -675,10 +681,10 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:125 #: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:118 -#: components/Schedule/shared/SchedulePromptableFields.jsx:121 +#: components/LaunchPrompt/LaunchPrompt.jsx:133 +#: components/Schedule/shared/SchedulePromptableFields.jsx:136 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:72 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" @@ -740,7 +746,7 @@ msgstr "" #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" msgstr "" @@ -863,14 +869,14 @@ msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:125 #: components/FormActionGroup/FormActionGroup.jsx:24 #: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 #: components/Lookup/Lookup.jsx:150 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 -#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: components/Schedule/shared/SchedulePromptableFields.jsx:137 #: screens/Credential/shared/CredentialForm.jsx:341 #: screens/Credential/shared/CredentialForm.jsx:346 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 @@ -878,7 +884,7 @@ msgstr "" #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 #: screens/Setting/shared/RevertAllAlert.jsx:32 @@ -951,7 +957,7 @@ msgstr "" msgid "Cancel selected jobs" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:79 msgid "Cancel subscription edit" msgstr "" @@ -995,23 +1001,23 @@ msgstr "" msgid "Capacity" msgstr "" -#: components/Search/AdvancedSearch.jsx:171 +#: components/Search/AdvancedSearch.jsx:185 msgid "Case-insensitive version of contains" msgstr "" -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.jsx:209 msgid "Case-insensitive version of endswith." msgstr "" -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.jsx:173 msgid "Case-insensitive version of exact." msgstr "" -#: components/Search/AdvancedSearch.jsx:201 +#: components/Search/AdvancedSearch.jsx:221 msgid "Case-insensitive version of regex." msgstr "" -#: components/Search/AdvancedSearch.jsx:181 +#: components/Search/AdvancedSearch.jsx:197 msgid "Case-insensitive version of startswith." msgstr "" @@ -1038,16 +1044,16 @@ msgstr "" msgid "Channel" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 #: screens/Template/shared/JobTemplateForm.jsx:181 msgid "Check" msgstr "" -#: components/Search/AdvancedSearch.jsx:226 +#: components/Search/AdvancedSearch.jsx:251 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "" -#: components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:257 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "" @@ -1071,7 +1077,7 @@ msgstr "" msgid "Choose a Webhook Service" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:93 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 #: screens/Template/shared/JobTemplateForm.jsx:174 msgid "Choose a job type" msgstr "" @@ -1294,12 +1300,12 @@ msgstr "" msgid "Container group not found." msgstr "" -#: components/LaunchPrompt/LaunchPrompt.jsx:113 -#: components/Schedule/shared/SchedulePromptableFields.jsx:116 +#: components/LaunchPrompt/LaunchPrompt.jsx:128 +#: components/Schedule/shared/SchedulePromptableFields.jsx:131 msgid "Content Loading" msgstr "" -#: components/AppContainer/AppContainer.jsx:225 +#: components/AppContainer/AppContainer.jsx:233 msgid "Continue" msgstr "" @@ -1313,7 +1319,7 @@ msgstr "" #~ msgid "Control the level of output Ansible will produce for inventory source update jobs." #~ msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:148 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." @@ -1389,7 +1395,7 @@ msgstr "" #~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:225 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Create" msgstr "" @@ -1543,7 +1549,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:182 #: screens/Team/TeamDetail/TeamDetail.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:191 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 #: screens/User/UserDetail/UserDetail.jsx:77 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 #: screens/User/UserTokenList/UserTokenList.jsx:134 @@ -1573,24 +1579,24 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 #: screens/Credential/CredentialList/CredentialList.jsx:132 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 #: screens/Host/HostList/HostList.jsx:156 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 #: screens/Inventory/InventoryList/InventoryList.jsx:184 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 #: screens/Organization/OrganizationList/OrganizationList.jsx:145 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 #: screens/Project/ProjectList/ProjectList.jsx:165 #: screens/Team/TeamList/TeamList.jsx:142 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 msgid "Created By (Username)" msgstr "" @@ -1692,7 +1698,7 @@ msgstr "" msgid "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}" msgstr "" -#: components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:34 msgid "Current page" msgstr "" @@ -1822,7 +1828,7 @@ msgstr "" #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 #: screens/Template/Survey/SurveyList.jsx:104 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1908,7 +1914,7 @@ msgstr "" msgid "Delete Workflow Approval" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 msgid "Delete Workflow Job Template" msgstr "" @@ -2067,10 +2073,10 @@ msgstr "" #: screens/Team/shared/TeamForm.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 #: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 #: screens/User/UserTeams/UserTeamList.jsx:184 @@ -2179,7 +2185,7 @@ msgstr "" #: screens/Setting/Settings.jsx:110 #: screens/Setting/Settings.jsx:113 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:55 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 #: screens/Team/Team.jsx:55 #: screens/Team/Teams.jsx:28 #: screens/Template/Template.jsx:144 @@ -2228,7 +2234,7 @@ msgstr "" msgid "Disassociate group from host?" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:228 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 msgid "Disassociate host from group?" msgstr "" @@ -2236,7 +2242,7 @@ msgstr "" msgid "Disassociate instance from instance group?" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:207 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 msgid "Disassociate related group(s)?" msgstr "" @@ -2275,8 +2281,8 @@ msgstr "" #: components/CodeEditor/VariablesDetail.jsx:112 #: components/CodeEditor/VariablesDetail.jsx:118 -#: components/CodeEditor/VariablesField.jsx:126 -#: components/CodeEditor/VariablesField.jsx:132 +#: components/CodeEditor/VariablesField.jsx:138 +#: components/CodeEditor/VariablesField.jsx:144 msgid "Done" msgstr "" @@ -2366,14 +2372,14 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:100 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2433,15 +2439,16 @@ msgstr "" #: screens/Host/HostGroups/HostGroupItem.jsx:50 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 msgid "Edit Group" msgstr "" #: screens/Host/HostList/HostListItem.jsx:46 #: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:74 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 msgid "Edit Host" msgstr "" @@ -2580,7 +2587,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:261 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Concurrent Jobs" msgstr "" @@ -2599,12 +2606,12 @@ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:558 #: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 msgid "Enable Webhook" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:247 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Enable Webhook for this workflow job template." msgstr "" @@ -2701,7 +2708,7 @@ msgstr "" msgid "End did not match an expected value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:215 msgid "End user license agreement" msgstr "" @@ -2883,7 +2890,7 @@ msgstr "" #: components/JobList/JobList.jsx:281 #: components/JobList/JobList.jsx:292 #: components/LaunchButton/LaunchButton.jsx:173 -#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 @@ -2891,10 +2898,10 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 #: components/Schedule/ScheduleList/ScheduleList.jsx:239 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:76 +#: components/Schedule/shared/SchedulePromptableFields.jsx:74 #: components/TemplateList/TemplateList.jsx:278 #: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: contexts/Config.jsx:74 +#: contexts/Config.jsx:64 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 #: screens/Application/ApplicationsList/ApplicationsList.jsx:191 @@ -2908,14 +2915,14 @@ msgstr "" #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:265 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 #: screens/Inventory/InventoryList/InventoryList.jsx:265 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:239 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 #: screens/Inventory/InventorySources/InventorySourceList.jsx:245 #: screens/Inventory/InventorySources/InventorySourceList.jsx:258 @@ -2938,7 +2945,7 @@ msgstr "" #: screens/Team/TeamRoles/TeamRolesList.jsx:235 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 @@ -2984,7 +2991,7 @@ msgstr "" msgid "Events" msgstr "" -#: components/Search/AdvancedSearch.jsx:156 +#: components/Search/AdvancedSearch.jsx:167 msgid "Exact match (default lookup if not specified)." msgstr "" @@ -3024,7 +3031,7 @@ msgstr "" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 #: components/Lookup/ExecutionEnvironmentLookup.jsx:152 #: components/Lookup/ExecutionEnvironmentLookup.jsx:174 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3077,7 +3084,7 @@ msgid "Expand" msgstr "" #: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:226 +#: components/CodeEditor/VariablesField.jsx:246 msgid "Expand input" msgstr "" @@ -3183,9 +3190,9 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:268 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:243 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 #: screens/User/UserTeams/UserTeamList.jsx:268 msgid "Failed to associate." msgstr "" @@ -3389,7 +3396,7 @@ msgstr "" msgid "Failed to delete workflow approval." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:268 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 msgid "Failed to delete workflow job template." msgstr "" @@ -3408,11 +3415,11 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:250 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 msgid "Failed to disassociate one or more hosts." msgstr "" @@ -3434,7 +3441,7 @@ msgstr "" msgid "Failed to launch job." msgstr "" -#: contexts/Config.jsx:78 +#: contexts/Config.jsx:68 msgid "Failed to retrieve configuration." msgstr "" @@ -3509,11 +3516,11 @@ msgstr "" msgid "February" msgstr "" -#: components/Search/AdvancedSearch.jsx:166 +#: components/Search/AdvancedSearch.jsx:179 msgid "Field contains value." msgstr "" -#: components/Search/AdvancedSearch.jsx:186 +#: components/Search/AdvancedSearch.jsx:203 msgid "Field ends with value." msgstr "" @@ -3521,11 +3528,11 @@ msgstr "" msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" -#: components/Search/AdvancedSearch.jsx:196 +#: components/Search/AdvancedSearch.jsx:215 msgid "Field matches the given regular expression." msgstr "" -#: components/Search/AdvancedSearch.jsx:176 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field starts with value." msgstr "" @@ -3541,7 +3548,7 @@ msgstr "" msgid "File upload rejected. Please select a single .json file." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "File, directory or script" msgstr "" @@ -3580,7 +3587,7 @@ msgstr "" msgid "First name" msgstr "" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.jsx:266 msgid "First, select a key" msgstr "" @@ -3600,7 +3607,7 @@ msgid "" "executing the playbook." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:111 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" @@ -3671,7 +3678,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 #: screens/Project/ProjectList/ProjectList.jsx:150 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "" @@ -3732,23 +3739,23 @@ msgstr "" msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 msgid "Google Compute Engine" msgstr "" @@ -3774,11 +3781,11 @@ msgstr "" msgid "Grafana URL" msgstr "" -#: components/Search/AdvancedSearch.jsx:206 +#: components/Search/AdvancedSearch.jsx:227 msgid "Greater than comparison." msgstr "" -#: components/Search/AdvancedSearch.jsx:211 +#: components/Search/AdvancedSearch.jsx:233 msgid "Greater than or equal to comparison." msgstr "" @@ -3803,7 +3810,7 @@ msgstr "" #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:226 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 msgid "Groups" msgstr "" @@ -3826,6 +3833,11 @@ msgstr "" msgid "Hide" msgstr "" +#: components/LaunchPrompt/LaunchPrompt.jsx:110 +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Hide description" +msgstr "" + #: components/NotificationList/NotificationList.jsx:195 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "Hipchat" @@ -3927,8 +3939,8 @@ msgstr "" #: screens/Inventory/Inventories.jsx:77 #: screens/Inventory/Inventory.jsx:65 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:182 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:252 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 #: screens/Inventory/SmartInventory.jsx:71 @@ -4073,7 +4085,7 @@ msgstr "" #~ msgid "If enabled, run this playbook as an administrator." #~ msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" @@ -4105,7 +4117,7 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" @@ -4218,13 +4230,22 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -msgid "Insights for Ansible" +#~ msgid "Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +msgid "Insights for Ansible Automation Platform" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -msgid "Insights for Ansible dashboard" +msgid "Insights for Ansible Automation Platform dashboard" msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#~ msgid "Insights for Ansible dashboard" +#~ msgstr "" + #: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "" @@ -4323,7 +4344,7 @@ msgstr "" #: components/HostForm/HostForm.jsx:28 #: components/JobList/JobListItem.jsx:180 #: components/LaunchPrompt/steps/InventoryStep.jsx:107 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 #: components/Lookup/InventoryLookup.jsx:85 #: components/Lookup/InventoryLookup.jsx:94 #: components/Lookup/InventoryLookup.jsx:131 @@ -4348,11 +4369,11 @@ msgstr "" #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 msgid "Inventory" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 msgid "Inventory (Name)" msgstr "" @@ -4434,7 +4455,7 @@ msgstr "" msgid "Items" msgstr "" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" @@ -4537,13 +4558,13 @@ msgid "Job Templates with credentials that prompt for passwords cannot be select msgstr "" #: components/JobList/JobList.jsx:185 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:108 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 #: screens/Template/shared/JobTemplateForm.jsx:226 msgid "Job Type" msgstr "" @@ -4600,15 +4621,15 @@ msgstr "" msgid "June" msgstr "" -#: components/Search/AdvancedSearch.jsx:127 +#: components/Search/AdvancedSearch.jsx:132 msgid "Key" msgstr "" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.jsx:123 msgid "Key select" msgstr "" -#: components/Search/AdvancedSearch.jsx:121 +#: components/Search/AdvancedSearch.jsx:126 msgid "Key typeahead" msgstr "" @@ -4679,9 +4700,9 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:306 #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:203 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 #: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:211 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 msgid "Labels" msgstr "" @@ -4774,8 +4795,8 @@ msgstr "" #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:233 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:242 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 msgid "Launch" msgstr "" @@ -4806,6 +4827,10 @@ msgstr "" msgid "Launch workflow" msgstr "" +#: components/LaunchPrompt/LaunchPrompt.jsx:105 +msgid "Launch | {0}" +msgstr "" + #: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "" @@ -4819,7 +4844,11 @@ msgstr "" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -msgid "Learn more about Insights for Ansible" +#~ msgid "Learn more about Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" #: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 @@ -4830,11 +4859,11 @@ msgstr "" msgid "Legend" msgstr "" -#: components/Search/AdvancedSearch.jsx:216 +#: components/Search/AdvancedSearch.jsx:239 msgid "Less than comparison." msgstr "" -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.jsx:245 msgid "Less than or equal to comparison." msgstr "" @@ -4858,8 +4887,9 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 #: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:160 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 msgid "Limit" msgstr "" @@ -4895,8 +4925,8 @@ msgstr "" msgid "Logging settings" msgstr "" -#: components/AppContainer/AppContainer.jsx:168 -#: components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:176 +#: components/AppContainer/AppContainer.jsx:241 #: components/AppContainer/PageHeaderToolbar.jsx:166 msgid "Logout" msgstr "" @@ -4906,15 +4936,15 @@ msgstr "" msgid "Lookup modal" msgstr "" -#: components/Search/AdvancedSearch.jsx:140 +#: components/Search/AdvancedSearch.jsx:150 msgid "Lookup select" msgstr "" -#: components/Search/AdvancedSearch.jsx:149 +#: components/Search/AdvancedSearch.jsx:159 msgid "Lookup type" msgstr "" -#: components/Search/AdvancedSearch.jsx:143 +#: components/Search/AdvancedSearch.jsx:153 msgid "Lookup typeahead" msgstr "" @@ -4981,7 +5011,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 #: screens/Project/ProjectList/ProjectList.jsx:149 #: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" msgstr "" @@ -5028,7 +5058,7 @@ msgstr "" msgid "Metrics" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 msgid "Microsoft Azure Resource Manager" msgstr "" @@ -5086,7 +5116,7 @@ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 #: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" @@ -5113,24 +5143,24 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 #: screens/Credential/CredentialList/CredentialList.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 #: screens/Host/HostList/HostList.jsx:160 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:196 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 #: screens/Inventory/InventoryList/InventoryList.jsx:188 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:175 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 #: screens/Organization/OrganizationList/OrganizationList.jsx:149 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 #: screens/Project/ProjectList/ProjectList.jsx:161 #: screens/Team/TeamList/TeamList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 msgid "Modified By (Username)" msgstr "" @@ -5227,9 +5257,10 @@ msgstr "" #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 +#: components/OptionsList/OptionsList.jsx:72 #: components/PaginatedDataList/PaginatedDataList.jsx:77 #: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PaginatedTable/PaginatedTable.jsx:69 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 @@ -5267,8 +5298,8 @@ msgstr "" #: screens/Credential/CredentialList/CredentialList.jsx:142 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 #: screens/Credential/shared/CredentialForm.jsx:169 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 @@ -5298,8 +5329,9 @@ msgstr "" #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:187 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:202 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 @@ -5313,8 +5345,9 @@ msgstr "" #: screens/Inventory/InventoryList/InventoryList.jsx:194 #: screens/Inventory/InventoryList/InventoryList.jsx:202 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:181 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 #: screens/Inventory/InventorySources/InventorySourceList.jsx:217 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 @@ -5357,18 +5390,18 @@ msgstr "" #: screens/Team/TeamList/TeamListItem.jsx:33 #: screens/Team/shared/TeamForm.jsx:35 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:88 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 #: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:112 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 @@ -5384,7 +5417,7 @@ msgstr "" msgid "Name" msgstr "" -#: components/AppContainer/AppContainer.jsx:181 +#: components/AppContainer/AppContainer.jsx:189 msgid "Navigation" msgstr "" @@ -5410,10 +5443,10 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:80 #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:120 -#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: components/LaunchPrompt/LaunchPrompt.jsx:135 +#: components/Schedule/shared/SchedulePromptableFields.jsx:138 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:61 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" @@ -5466,9 +5499,9 @@ msgstr "" msgid "No result found" msgstr "" -#: components/Search/AdvancedSearch.jsx:99 -#: components/Search/AdvancedSearch.jsx:131 -#: components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:100 +#: components/Search/AdvancedSearch.jsx:136 +#: components/Search/AdvancedSearch.jsx:161 msgid "No results found" msgstr "" @@ -5482,7 +5515,7 @@ msgid "No survey questions found." msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "No {pluralizedItemName} Found" msgstr "" @@ -5525,7 +5558,7 @@ msgstr "" msgid "Not configured for inventory sync." msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:229 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" @@ -5660,8 +5693,8 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:213 #: components/HostToggle/HostToggle.jsx:56 #: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:184 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5678,8 +5711,8 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:212 #: components/HostToggle/HostToggle.jsx:55 #: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5719,7 +5752,7 @@ msgstr "" msgid "Only Group By" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 msgid "OpenStack" msgstr "" @@ -5728,7 +5761,7 @@ msgid "Option Details" msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:214 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5757,9 +5790,9 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 #: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 msgid "Options" msgstr "" @@ -5798,14 +5831,14 @@ msgstr "" #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 #: screens/User/UserTeams/UserTeamList.jsx:183 #: screens/User/UserTeams/UserTeamList.jsx:242 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Organization (Name)" msgstr "" @@ -5832,7 +5865,7 @@ msgstr "" msgid "Organizations" msgstr "" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 msgid "Other prompts" msgstr "" @@ -5881,7 +5914,7 @@ msgstr "" msgid "Pagerduty subdomain" msgstr "" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" @@ -5921,7 +5954,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:235 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 msgid "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." msgstr "" @@ -6018,7 +6051,7 @@ msgstr "" #: components/TemplateList/TemplateList.jsx:211 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "" @@ -6035,7 +6068,7 @@ msgid "Please add survey questions." msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.jsx:90 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" @@ -6089,8 +6122,8 @@ msgstr "" msgid "Policy instance percentage" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:64 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:70 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 msgid "Populate field from an external secret management system" msgstr "" @@ -6230,12 +6263,16 @@ msgstr "" msgid "Prompt Overrides" msgstr "" -#: components/CodeEditor/VariablesField.jsx:219 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: components/CodeEditor/VariablesField.jsx:239 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" msgstr "" +#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +msgid "Prompt | {0}" +msgstr "" + #: components/PromptDetail/PromptDetail.jsx:146 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 msgid "Prompted Values" @@ -6243,11 +6280,11 @@ msgstr "" #: components/LaunchPrompt/LaunchPrompt.jsx:107 #: components/Schedule/shared/SchedulePromptableFields.jsx:110 -msgid "Prompts" -msgstr "" +#~ msgid "Prompts" +#~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6296,9 +6333,13 @@ msgstr "" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +#~ msgstr "" + #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 #: screens/Template/shared/JobTemplateForm.jsx:604 @@ -6367,15 +6408,15 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 #: screens/Project/ProjectList/ProjectList.jsx:153 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 msgid "Red Hat Satellite 6" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 msgid "Red Hat Virtualization" msgstr "" @@ -6395,11 +6436,11 @@ msgstr "" msgid "Redirect uris" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:266 msgid "Redirecting to dashboard" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:270 msgid "Redirecting to subscription detail" msgstr "" @@ -6440,7 +6481,7 @@ msgstr "" #: screens/Inventory/Inventories.jsx:79 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:161 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 msgid "Related Groups" msgstr "" @@ -6479,7 +6520,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 #: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "" @@ -6597,15 +6638,15 @@ msgstr "" msgid "Return to subscription management." msgstr "" -#: components/Search/AdvancedSearch.jsx:114 +#: components/Search/AdvancedSearch.jsx:118 msgid "Returns results that have values other than this one as well as other filters." msgstr "" -#: components/Search/AdvancedSearch.jsx:104 +#: components/Search/AdvancedSearch.jsx:106 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "" -#: components/Search/AdvancedSearch.jsx:109 +#: components/Search/AdvancedSearch.jsx:112 msgid "Returns results that satisfy this one or any other filters." msgstr "" @@ -6673,7 +6714,7 @@ msgstr "" msgid "Roles" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:96 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 #: components/Workflow/WorkflowLinkHelp.jsx:39 #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 @@ -6807,7 +6848,7 @@ msgstr "" msgid "Save link changes" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:273 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:261 msgid "Save successful!" msgstr "" @@ -6883,12 +6924,12 @@ msgstr "" msgid "Search is disabled while the job is running" msgstr "" -#: components/Search/AdvancedSearch.jsx:247 -#: components/Search/Search.jsx:284 +#: components/Search/AdvancedSearch.jsx:275 +#: components/Search/Search.jsx:286 msgid "Search submit button" msgstr "" -#: components/Search/Search.jsx:274 +#: components/Search/Search.jsx:275 msgid "Search text input" msgstr "" @@ -6902,14 +6943,14 @@ msgstr "" msgid "Seconds" msgstr "" -#: components/LaunchPrompt/steps/PreviewStep.jsx:61 +#: components/LaunchPrompt/steps/PreviewStep.jsx:65 msgid "See errors on the left" msgstr "" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 #: components/Lookup/Lookup.jsx:141 -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:33 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 msgid "Select" msgstr "" @@ -6920,11 +6961,11 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:232 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:258 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 msgid "Select Hosts" msgstr "" @@ -6982,7 +7023,7 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:185 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" @@ -7092,7 +7133,7 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:137 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" @@ -7192,17 +7233,17 @@ msgstr "" #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:204 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 msgid "Select the default execution environment for this organization to run on." msgstr "" #: screens/Organization/shared/OrganizationForm.jsx:96 -msgid "Select the default execution environment for this organization." -msgstr "" +#~ msgid "Select the default execution environment for this organization." +#~ msgstr "" #: screens/Project/shared/ProjectForm.jsx:196 -msgid "Select the default execution environment for this project." -msgstr "" +#~ msgid "Select the default execution environment for this project." +#~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:298 msgid "Select the execution environment for this job template." @@ -7262,6 +7303,7 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 +#: components/CheckboxListItem/CheckboxListItem.jsx:31 #: components/OptionsList/OptionsList.jsx:51 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 @@ -7273,7 +7315,9 @@ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 #: screens/Host/HostList/HostListItem.jsx:26 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 #: screens/Inventory/InventoryList/InventoryListItem.jsx:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 @@ -7335,15 +7379,15 @@ msgstr "" msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" -#: components/Search/AdvancedSearch.jsx:97 +#: components/Search/AdvancedSearch.jsx:98 msgid "Set type" msgstr "" -#: components/Search/AdvancedSearch.jsx:88 +#: components/Search/AdvancedSearch.jsx:89 msgid "Set type select" msgstr "" -#: components/Search/AdvancedSearch.jsx:91 +#: components/Search/AdvancedSearch.jsx:92 msgid "Set type typeahead" msgstr "" @@ -7375,7 +7419,7 @@ msgstr "" msgid "Show" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:171 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 #: components/PromptDetail/PromptDetail.jsx:243 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 @@ -7393,6 +7437,10 @@ msgstr "" msgid "Show changes" msgstr "" +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Show description" +msgstr "" + #: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "" @@ -7517,7 +7565,7 @@ msgstr "" msgid "Smart inventory" msgstr "" -#: components/LaunchPrompt/steps/PreviewStep.jsx:58 +#: components/LaunchPrompt/steps/PreviewStep.jsx:62 msgid "Some of the previous step(s) have errors" msgstr "" @@ -7541,7 +7589,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 #: screens/Inventory/shared/InventorySourceForm.jsx:134 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "" @@ -7554,7 +7602,7 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:215 #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:137 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 #: screens/Template/shared/JobTemplateForm.jsx:308 msgid "Source Control Branch" msgstr "" @@ -7591,7 +7639,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 #: screens/Project/ProjectList/ProjectList.jsx:157 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "" @@ -7615,7 +7663,7 @@ msgstr "" msgid "Source Workflow Job" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:182 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Source control branch" msgstr "" @@ -7632,7 +7680,7 @@ msgstr "" msgid "Source variables" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Sourced from a project" msgstr "" @@ -7754,9 +7802,9 @@ msgstr "" msgid "Stdout" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:39 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:52 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:230 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:38 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:51 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:218 msgid "Submit" msgstr "" @@ -7773,7 +7821,7 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:213 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:201 msgid "Subscription" msgstr "" @@ -7781,7 +7829,7 @@ msgstr "" msgid "Subscription Details" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:200 msgid "Subscription Management" msgstr "" @@ -7809,7 +7857,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 #: screens/Project/ProjectList/ProjectList.jsx:151 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "" @@ -8150,6 +8198,14 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "" +#: screens/Organization/shared/OrganizationForm.jsx:96 +msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:196 +msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." +msgstr "" + #: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 msgid "" "The first fetches all references. The second\n" @@ -8340,9 +8396,16 @@ msgstr "" msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" -"Red Hat Insights for Ansible." +"Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#~ msgid "" +#~ "This data is used to enhance\n" +#~ "future releases of the Software and to provide\n" +#~ "Red Hat Insights for Ansible." +#~ msgstr "" + #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 msgid "" "This data is used to enhance\n" @@ -8430,7 +8493,7 @@ msgstr "" msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:64 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" @@ -8501,7 +8564,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:255 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8586,6 +8649,7 @@ msgid "Toggle expand/collapse event lines" msgstr "" #: components/HostToggle/HostToggle.jsx:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 msgid "Toggle host" msgstr "" @@ -8655,7 +8719,7 @@ msgstr "" msgid "Tools" msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.jsx:129 msgid "Top Pagination" msgstr "" @@ -8750,7 +8814,7 @@ msgstr "" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 #: screens/Team/TeamRoles/TeamRolesList.jsx:181 #: screens/Template/Survey/SurveyListItem.jsx:117 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 #: screens/User/UserRoles/UserRolesList.jsx:155 #: screens/User/UserRoles/UserRolesListItem.jsx:21 @@ -8924,7 +8988,7 @@ msgid "User analytics" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:220 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:208 msgid "User and Insights analytics" msgstr "" @@ -8979,7 +9043,7 @@ msgstr "" msgid "Users" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 msgid "VMware vCenter" msgstr "" @@ -9000,9 +9064,9 @@ msgstr "" #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 #: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:233 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 msgid "Variables" msgstr "" @@ -9023,7 +9087,7 @@ msgid "Verbose" msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:145 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 #: components/PromptDetail/PromptDetail.jsx:191 #: components/PromptDetail/PromptInventorySourceDetail.jsx:100 #: components/PromptDetail/PromptJobTemplateDetail.jsx:134 @@ -9336,14 +9400,14 @@ msgstr "" msgid "Webhook Credential" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:177 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 msgid "Webhook Credentials" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:153 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 #: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook Key" msgstr "" @@ -9351,7 +9415,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:146 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 #: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "" @@ -9359,14 +9423,14 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:149 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 #: screens/Template/shared/WebhookSubForm.jsx:163 #: screens/Template/shared/WebhookSubForm.jsx:173 msgid "Webhook URL" msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:269 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 msgid "Webhook details" msgstr "" @@ -9612,11 +9676,11 @@ msgstr "" #~ msgid "You may apply a number of possible variables in the message. Refer to the" #~ msgstr "" -#: components/AppContainer/AppContainer.jsx:237 +#: components/AppContainer/AppContainer.jsx:245 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "" -#: components/AppContainer/AppContainer.jsx:213 +#: components/AppContainer/AppContainer.jsx:221 msgid "Your session is about to expire" msgstr "" @@ -9640,8 +9704,6 @@ msgstr "" #: screens/Host/HostGroups/HostGroupItem.jsx:45 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:68 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:58 #: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 msgid "actions" @@ -9656,7 +9718,7 @@ msgstr "" msgid "approved" msgstr "" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "brand logo" msgstr "" @@ -9790,7 +9852,7 @@ msgstr "" #~ msgid "isolated instance" #~ msgstr "" -#: components/Pagination/Pagination.jsx:23 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" @@ -9834,15 +9896,15 @@ msgstr "" #~ msgid "or attributes of the job such as" #~ msgstr "" -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" @@ -9888,7 +9950,7 @@ msgid "social login" msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:193 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 msgid "source control branch" msgstr "" @@ -10020,7 +10082,7 @@ msgstr "" msgid "{0}: {1}" msgstr "" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "{brandName} logo" msgstr "" @@ -10089,7 +10151,7 @@ msgstr "" #~ msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedTable/PaginatedTable.jsx:76 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/fr/messages.po b/awx/ui_next/src/locales/fr/messages.po index b9dc2d4af5..e9525fb657 100644 --- a/awx/ui_next/src/locales/fr/messages.po +++ b/awx/ui_next/src/locales/fr/messages.po @@ -18,7 +18,7 @@ msgstr "(10 premiers seulement)" #: components/TemplateList/TemplateListItem.jsx:90 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:92 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 msgid "(Prompt on launch)" msgstr "(Me le demander au lancement)" @@ -26,11 +26,11 @@ msgstr "(Me le demander au lancement)" msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "* Ce champ sera récupéré dans un système externe de gestion des secrets en utilisant le justificatif d'identité spécifié." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:60 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 msgid "- Enable Concurrent Jobs" msgstr "Activer les tâches parallèles" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:65 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 msgid "- Enable Webhooks" msgstr "Activer Webhooks" @@ -39,7 +39,7 @@ msgid "/ (project root)" msgstr "/ (project root)" #: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:132 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 #: components/PromptDetail/PromptDetail.jsx:95 #: components/PromptDetail/PromptInventorySourceDetail.jsx:32 #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 @@ -60,7 +60,7 @@ msgid "1 (Info)" msgstr "1 (info)" #: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:133 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 #: components/PromptDetail/PromptDetail.jsx:96 #: components/PromptDetail/PromptInventorySourceDetail.jsx:33 #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 @@ -76,7 +76,7 @@ msgid "2 (Debug)" msgstr "2 (Déboguer)" #: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 #: components/PromptDetail/PromptDetail.jsx:97 #: components/PromptDetail/PromptInventorySourceDetail.jsx:34 #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 @@ -87,7 +87,7 @@ msgid "2 (More Verbose)" msgstr "2 (Verbeux +)" #: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 #: components/PromptDetail/PromptDetail.jsx:98 #: components/PromptDetail/PromptInventorySourceDetail.jsx:35 #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 @@ -98,7 +98,7 @@ msgid "3 (Debug)" msgstr "3 (Déboguer)" #: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 #: components/PromptDetail/PromptDetail.jsx:99 #: components/PromptDetail/PromptInventorySourceDetail.jsx:36 #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 @@ -205,6 +205,8 @@ msgstr "Action" #: screens/Host/HostList/HostListItem.jsx:42 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 @@ -213,6 +215,8 @@ msgstr "Action" #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 #: screens/Inventory/InventoryList/InventoryList.jsx:206 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 #: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 @@ -234,10 +238,12 @@ msgstr "Actions" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 #: components/TemplateList/TemplateListItem.jsx:233 #: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:119 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 msgid "Activity" msgstr "Activité" @@ -305,11 +311,11 @@ msgstr "Ajouter un nouveau nœud entre ces deux nœuds" msgid "Add container group" msgstr "Ajouter un groupe de conteneurs" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 msgid "Add existing group" msgstr "Ajouter un groupe existant" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 msgid "Add existing host" msgstr "Ajouter une hôte existant" @@ -325,11 +331,11 @@ msgstr "Ajouter un inventaire" msgid "Add job template" msgstr "Ajouter un modèle de job" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:130 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 msgid "Add new group" msgstr "Ajouter un nouveau groupe" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:148 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 msgid "Add new host" msgstr "Ajouter un nouvel hôte" @@ -367,11 +373,11 @@ msgstr "Administration" msgid "Advanced" msgstr "Avancé" -#: components/Search/AdvancedSearch.jsx:254 +#: components/Search/AdvancedSearch.jsx:282 msgid "Advanced search documentation" msgstr "" -#: components/Search/AdvancedSearch.jsx:237 +#: components/Search/AdvancedSearch.jsx:264 msgid "Advanced search value input" msgstr "Saisie de la valeur de la recherche avancée" @@ -446,7 +452,7 @@ msgstr "Liste des URI autorisés, séparés par des espaces" msgid "Always" msgstr "Toujours" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 msgid "Amazon EC2" msgstr "Amazon EC2" @@ -454,7 +460,7 @@ msgstr "Amazon EC2" msgid "An error occurred" msgstr "Une erreur est survenue" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 msgid "An inventory must be selected" msgstr "Un inventaire doit être sélectionné" @@ -468,7 +474,7 @@ msgstr "Un inventaire doit être sélectionné" #~ msgid "Ansible Environment" #~ msgstr "Environnement Ansible" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 msgid "Ansible Tower" msgstr "Ansible Tower" @@ -674,10 +680,10 @@ msgstr "Paramètres AD Azure" #: components/AdHocCommands/AdHocCommandsWizard.jsx:125 #: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:118 -#: components/Schedule/shared/SchedulePromptableFields.jsx:121 +#: components/LaunchPrompt/LaunchPrompt.jsx:133 +#: components/Schedule/shared/SchedulePromptableFields.jsx:136 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:72 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" @@ -739,7 +745,7 @@ msgstr "Retour aux horaires" #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" msgstr "Retour aux paramètres" @@ -862,14 +868,14 @@ msgstr "Expiration du délai d’attente du cache (secondes)" #: components/DisassociateButton/DisassociateButton.jsx:125 #: components/FormActionGroup/FormActionGroup.jsx:24 #: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 #: components/Lookup/Lookup.jsx:150 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 -#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: components/Schedule/shared/SchedulePromptableFields.jsx:137 #: screens/Credential/shared/CredentialForm.jsx:341 #: screens/Credential/shared/CredentialForm.jsx:346 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 @@ -877,7 +883,7 @@ msgstr "Expiration du délai d’attente du cache (secondes)" #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 #: screens/Setting/shared/RevertAllAlert.jsx:32 @@ -950,7 +956,7 @@ msgstr "" msgid "Cancel selected jobs" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:79 msgid "Cancel subscription edit" msgstr "" @@ -994,23 +1000,23 @@ msgstr "" msgid "Capacity" msgstr "Capacité" -#: components/Search/AdvancedSearch.jsx:171 +#: components/Search/AdvancedSearch.jsx:185 msgid "Case-insensitive version of contains" msgstr "La version non sensible à la casse de contains" -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.jsx:209 msgid "Case-insensitive version of endswith." msgstr "Version non sensible à la casse de endswith." -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.jsx:173 msgid "Case-insensitive version of exact." msgstr "Version non sensible à la casse de exact." -#: components/Search/AdvancedSearch.jsx:201 +#: components/Search/AdvancedSearch.jsx:221 msgid "Case-insensitive version of regex." msgstr "Version non sensible à la casse de regex" -#: components/Search/AdvancedSearch.jsx:181 +#: components/Search/AdvancedSearch.jsx:197 msgid "Case-insensitive version of startswith." msgstr "Version non sensible à la casse de startswith." @@ -1037,16 +1043,16 @@ msgstr "Modifications" msgid "Channel" msgstr "Canal" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 #: screens/Template/shared/JobTemplateForm.jsx:181 msgid "Check" msgstr "Vérifier" -#: components/Search/AdvancedSearch.jsx:226 +#: components/Search/AdvancedSearch.jsx:251 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "Vérifiez si le champ donné ou l'objet connexe est nul ; attendez-vous à une valeur booléenne." -#: components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:257 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "Vérifiez si la valeur du champ donné est présente dans la liste fournie ; attendez-vous à une liste d'éléments séparés par des virgules." @@ -1070,7 +1076,7 @@ msgstr "Choisissez un type de contrôle à la source" msgid "Choose a Webhook Service" msgstr "Choisir un service de webhook" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:93 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 #: screens/Template/shared/JobTemplateForm.jsx:174 msgid "Choose a job type" msgstr "Choisir un type de job" @@ -1293,12 +1299,12 @@ msgstr "Groupe de conteneurs" msgid "Container group not found." msgstr "Groupe de conteneurs non trouvé." -#: components/LaunchPrompt/LaunchPrompt.jsx:113 -#: components/Schedule/shared/SchedulePromptableFields.jsx:116 +#: components/LaunchPrompt/LaunchPrompt.jsx:128 +#: components/Schedule/shared/SchedulePromptableFields.jsx:131 msgid "Content Loading" msgstr "Chargement du contenu" -#: components/AppContainer/AppContainer.jsx:225 +#: components/AppContainer/AppContainer.jsx:233 msgid "Continue" msgstr "Continuer" @@ -1312,7 +1318,7 @@ msgstr "" #~ msgid "Control the level of output Ansible will produce for inventory source update jobs." #~ msgstr "Contrôlez le niveau de sortie produit par Ansible pour les tâches d'actualisation de source d'inventaire." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:148 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." @@ -1388,7 +1394,7 @@ msgstr "" #~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:225 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Create" msgstr "Créer" @@ -1542,7 +1548,7 @@ msgstr "Créer un jeton d'utilisateur" #: screens/Project/ProjectDetail/ProjectDetail.jsx:182 #: screens/Team/TeamDetail/TeamDetail.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:191 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 #: screens/User/UserDetail/UserDetail.jsx:77 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 #: screens/User/UserTokenList/UserTokenList.jsx:134 @@ -1572,24 +1578,24 @@ msgstr "Créé" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 #: screens/Credential/CredentialList/CredentialList.jsx:132 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 #: screens/Host/HostList/HostList.jsx:156 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 #: screens/Inventory/InventoryList/InventoryList.jsx:184 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 #: screens/Organization/OrganizationList/OrganizationList.jsx:145 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 #: screens/Project/ProjectList/ProjectList.jsx:165 #: screens/Team/TeamList/TeamList.jsx:142 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 msgid "Created By (Username)" msgstr "Créé par (Nom d'utilisateur)" @@ -1691,7 +1697,7 @@ msgstr "Informations d’identification" msgid "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}" msgstr "" -#: components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:34 msgid "Current page" msgstr "Page actuelle" @@ -1821,7 +1827,7 @@ msgstr "Définir les fonctions et fonctionnalités niveau système" #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 #: screens/Template/Survey/SurveyList.jsx:104 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1907,7 +1913,7 @@ msgstr "Supprimer un jeton d'utilisateur" msgid "Delete Workflow Approval" msgstr "Supprimer l'approbation du flux de travail" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 msgid "Delete Workflow Job Template" msgstr "Supprimer le modèle de flux de travail " @@ -2066,10 +2072,10 @@ msgstr "" #: screens/Team/shared/TeamForm.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 #: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 #: screens/User/UserTeams/UserTeamList.jsx:184 @@ -2178,7 +2184,7 @@ msgstr "Canaux ou utilisateurs de destination" #: screens/Setting/Settings.jsx:110 #: screens/Setting/Settings.jsx:113 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:55 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 #: screens/Team/Team.jsx:55 #: screens/Team/Teams.jsx:28 #: screens/Template/Template.jsx:144 @@ -2227,7 +2233,7 @@ msgstr "Dissocier" msgid "Disassociate group from host?" msgstr "Dissocier le groupe de l'hôte ?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:228 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 msgid "Disassociate host from group?" msgstr "Dissocier Hôte du Groupe" @@ -2235,7 +2241,7 @@ msgstr "Dissocier Hôte du Groupe" msgid "Disassociate instance from instance group?" msgstr "Dissocier l'instance du groupe d'instances ?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:207 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 msgid "Disassociate related group(s)?" msgstr "Dissocier le(s) groupe(s) lié(s) ?" @@ -2274,8 +2280,8 @@ msgstr "" #: components/CodeEditor/VariablesDetail.jsx:112 #: components/CodeEditor/VariablesDetail.jsx:118 -#: components/CodeEditor/VariablesField.jsx:126 -#: components/CodeEditor/VariablesField.jsx:132 +#: components/CodeEditor/VariablesField.jsx:138 +#: components/CodeEditor/VariablesField.jsx:144 msgid "Done" msgstr "" @@ -2365,14 +2371,14 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:100 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2432,15 +2438,16 @@ msgstr "" #: screens/Host/HostGroups/HostGroupItem.jsx:50 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 msgid "Edit Group" msgstr "Modifier le groupe" #: screens/Host/HostList/HostListItem.jsx:46 #: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:74 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 msgid "Edit Host" msgstr "Modifier l’hôte" @@ -2579,7 +2586,7 @@ msgstr "Options d'email" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:261 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Concurrent Jobs" msgstr "Activer les tâches parallèles" @@ -2598,12 +2605,12 @@ msgstr "Activer l’élévation des privilèges" #: screens/Template/shared/JobTemplateForm.jsx:558 #: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 msgid "Enable Webhook" msgstr "Activer le webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:247 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Enable Webhook for this workflow job template." msgstr "Activez le webhook pour ce modèle de flux de travail." @@ -2696,7 +2703,7 @@ msgstr "Date/Heure de fin" msgid "End did not match an expected value" msgstr "La fin ne correspondait pas à une valeur attendue" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:215 msgid "End user license agreement" msgstr "" @@ -2878,7 +2885,7 @@ msgstr "" #: components/JobList/JobList.jsx:281 #: components/JobList/JobList.jsx:292 #: components/LaunchButton/LaunchButton.jsx:173 -#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 @@ -2886,10 +2893,10 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 #: components/Schedule/ScheduleList/ScheduleList.jsx:239 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:76 +#: components/Schedule/shared/SchedulePromptableFields.jsx:74 #: components/TemplateList/TemplateList.jsx:278 #: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: contexts/Config.jsx:74 +#: contexts/Config.jsx:64 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 #: screens/Application/ApplicationsList/ApplicationsList.jsx:191 @@ -2903,14 +2910,14 @@ msgstr "" #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:265 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 #: screens/Inventory/InventoryList/InventoryList.jsx:265 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:239 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 #: screens/Inventory/InventorySources/InventorySourceList.jsx:245 #: screens/Inventory/InventorySources/InventorySourceList.jsx:258 @@ -2933,7 +2940,7 @@ msgstr "" #: screens/Team/TeamRoles/TeamRolesList.jsx:235 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 @@ -2979,7 +2986,7 @@ msgstr "Récapitulatif de l’événement non disponible" msgid "Events" msgstr "Événements" -#: components/Search/AdvancedSearch.jsx:156 +#: components/Search/AdvancedSearch.jsx:167 msgid "Exact match (default lookup if not specified)." msgstr "Correspondance exacte (recherche par défaut si non spécifiée)." @@ -3019,7 +3026,7 @@ msgstr "Exécuter lorsque le nœud parent se trouve dans un état de réussite." #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 #: components/Lookup/ExecutionEnvironmentLookup.jsx:152 #: components/Lookup/ExecutionEnvironmentLookup.jsx:174 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3072,7 +3079,7 @@ msgid "Expand" msgstr "Développer" #: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:226 +#: components/CodeEditor/VariablesField.jsx:246 msgid "Expand input" msgstr "" @@ -3178,9 +3185,9 @@ msgstr "N'a pas réussi à associer le rôle" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:268 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:243 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 #: screens/User/UserTeams/UserTeamList.jsx:268 msgid "Failed to associate." msgstr "N'a pas réussi à associer." @@ -3384,7 +3391,7 @@ msgstr "Impossible de supprimer l'utilisateur." msgid "Failed to delete workflow approval." msgstr "N'a pas réussi à supprimer l'approbation du flux de travail." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:268 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 msgid "Failed to delete workflow job template." msgstr "N'a pas réussi à supprimer le modèle de flux de travail." @@ -3403,11 +3410,11 @@ msgstr "N'a pas refusé l'approbation du flux de travail." #: screens/Host/HostGroups/HostGroupsList.jsx:250 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "N'a pas réussi à dissocier un ou plusieurs groupes." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 msgid "Failed to disassociate one or more hosts." msgstr "N'a pas réussi à dissocier un ou plusieurs hôtes." @@ -3429,7 +3436,7 @@ msgstr "Impossible de récupérer les paramètres de configuration de connexion msgid "Failed to launch job." msgstr "Echec du lancement du Job." -#: contexts/Config.jsx:78 +#: contexts/Config.jsx:68 msgid "Failed to retrieve configuration." msgstr "Impossible de récupérer la configuration." @@ -3504,11 +3511,11 @@ msgstr "Faux" msgid "February" msgstr "Février" -#: components/Search/AdvancedSearch.jsx:166 +#: components/Search/AdvancedSearch.jsx:179 msgid "Field contains value." msgstr "Le champ contient une valeur." -#: components/Search/AdvancedSearch.jsx:186 +#: components/Search/AdvancedSearch.jsx:203 msgid "Field ends with value." msgstr "Le champ se termine par une valeur." @@ -3516,11 +3523,11 @@ msgstr "Le champ se termine par une valeur." msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "Champ permettant de passer une spécification de pod Kubernetes ou OpenShift personnalisée." -#: components/Search/AdvancedSearch.jsx:196 +#: components/Search/AdvancedSearch.jsx:215 msgid "Field matches the given regular expression." msgstr "Le champ correspond à l'expression régulière donnée." -#: components/Search/AdvancedSearch.jsx:176 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field starts with value." msgstr "Le champ commence par la valeur." @@ -3536,7 +3543,7 @@ msgstr "" msgid "File upload rejected. Please select a single .json file." msgstr "Téléchargement de fichier rejeté. Veuillez sélectionner un seul fichier .json." -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "File, directory or script" msgstr "Fichier, répertoire ou script" @@ -3575,7 +3582,7 @@ msgstr "Première exécution" msgid "First name" msgstr "" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.jsx:266 msgid "First, select a key" msgstr "Tout d'abord, sélectionnez une clé" @@ -3595,7 +3602,7 @@ msgid "" "executing the playbook." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:111 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" @@ -3666,7 +3673,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 #: screens/Project/ProjectList/ProjectList.jsx:150 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "Git" @@ -3727,23 +3734,23 @@ msgstr "" msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "Allez à la première page" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "Allez à la dernière page de la liste" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "Allez à la page suivante de la liste" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "Obtenir la page précédente" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" @@ -3769,11 +3776,11 @@ msgstr "Clé API Grafana" msgid "Grafana URL" msgstr "URL Grafana" -#: components/Search/AdvancedSearch.jsx:206 +#: components/Search/AdvancedSearch.jsx:227 msgid "Greater than comparison." msgstr "Supérieur à la comparaison." -#: components/Search/AdvancedSearch.jsx:211 +#: components/Search/AdvancedSearch.jsx:233 msgid "Greater than or equal to comparison." msgstr "Supérieur ou égal à la comparaison." @@ -3798,7 +3805,7 @@ msgstr "Type de groupe" #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:226 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 msgid "Groups" msgstr "Groupes" @@ -3821,6 +3828,11 @@ msgstr "Aide" msgid "Hide" msgstr "Masquer" +#: components/LaunchPrompt/LaunchPrompt.jsx:110 +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Hide description" +msgstr "" + #: components/NotificationList/NotificationList.jsx:195 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "Hipchat" @@ -3922,8 +3934,8 @@ msgstr "Les informations relatives au statut d'hôte pour ce Job ne sont pas dis #: screens/Inventory/Inventories.jsx:77 #: screens/Inventory/Inventory.jsx:65 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:182 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:252 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 #: screens/Inventory/SmartInventory.jsx:71 @@ -4068,7 +4080,7 @@ msgstr "" #~ msgid "If enabled, run this playbook as an administrator." #~ msgstr "Si activé, exécuter ce playbook en tant qu'administrateur." -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" @@ -4100,7 +4112,7 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "Si activé, il sera possible d’avoir des exécutions de ce modèle de job de flux de travail en simultané." @@ -4213,13 +4225,22 @@ msgstr "Information d’identification d’Insights" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -msgid "Insights for Ansible" +#~ msgid "Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +msgid "Insights for Ansible Automation Platform" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -msgid "Insights for Ansible dashboard" +msgid "Insights for Ansible Automation Platform dashboard" msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#~ msgid "Insights for Ansible dashboard" +#~ msgstr "" + #: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "ID du système Insights" @@ -4318,7 +4339,7 @@ msgstr "Les inventaires et les sources ne peuvent pas être copiés" #: components/HostForm/HostForm.jsx:28 #: components/JobList/JobListItem.jsx:180 #: components/LaunchPrompt/steps/InventoryStep.jsx:107 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 #: components/Lookup/InventoryLookup.jsx:85 #: components/Lookup/InventoryLookup.jsx:94 #: components/Lookup/InventoryLookup.jsx:131 @@ -4343,11 +4364,11 @@ msgstr "Les inventaires et les sources ne peuvent pas être copiés" #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 msgid "Inventory" msgstr "Inventaire" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 msgid "Inventory (Name)" msgstr "Inventaire (nom)" @@ -4429,7 +4450,7 @@ msgstr "" msgid "Items" msgstr "Éléments" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "Éléments par page" @@ -4532,13 +4553,13 @@ msgid "Job Templates with credentials that prompt for passwords cannot be select msgstr "" #: components/JobList/JobList.jsx:185 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:108 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 #: screens/Template/shared/JobTemplateForm.jsx:226 msgid "Job Type" msgstr "Type de Job" @@ -4595,15 +4616,15 @@ msgstr "Juillet" msgid "June" msgstr "Juin" -#: components/Search/AdvancedSearch.jsx:127 +#: components/Search/AdvancedSearch.jsx:132 msgid "Key" msgstr "Clé" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.jsx:123 msgid "Key select" msgstr "Sélection de la clé" -#: components/Search/AdvancedSearch.jsx:121 +#: components/Search/AdvancedSearch.jsx:126 msgid "Key typeahead" msgstr "En-tête de la clé" @@ -4674,9 +4695,9 @@ msgstr "Nom du label" #: components/TemplateList/TemplateListItem.jsx:306 #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:203 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 #: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:211 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 msgid "Labels" msgstr "Libellés" @@ -4769,8 +4790,8 @@ msgstr "" #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:233 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:242 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 msgid "Launch" msgstr "Lancer" @@ -4801,6 +4822,10 @@ msgstr "Lancer le modèle" msgid "Launch workflow" msgstr "Lancer le flux de travail" +#: components/LaunchPrompt/LaunchPrompt.jsx:105 +msgid "Launch | {0}" +msgstr "" + #: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "Lancé par" @@ -4814,7 +4839,11 @@ msgstr "Lancé par (Nom d'utilisateur)" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -msgid "Learn more about Insights for Ansible" +#~ msgid "Learn more about Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" #: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 @@ -4825,11 +4854,11 @@ msgstr "" msgid "Legend" msgstr "Légende" -#: components/Search/AdvancedSearch.jsx:216 +#: components/Search/AdvancedSearch.jsx:239 msgid "Less than comparison." msgstr "Moins que la comparaison." -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.jsx:245 msgid "Less than or equal to comparison." msgstr "Moins ou égal à la comparaison." @@ -4853,8 +4882,9 @@ msgstr "Moins ou égal à la comparaison." #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 #: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:160 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 msgid "Limit" msgstr "Limite" @@ -4890,8 +4920,8 @@ msgstr "Journalisation" msgid "Logging settings" msgstr "Paramètres de journalisation" -#: components/AppContainer/AppContainer.jsx:168 -#: components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:176 +#: components/AppContainer/AppContainer.jsx:241 #: components/AppContainer/PageHeaderToolbar.jsx:166 msgid "Logout" msgstr "Déconnexion" @@ -4901,15 +4931,15 @@ msgstr "Déconnexion" msgid "Lookup modal" msgstr "Recherche modale" -#: components/Search/AdvancedSearch.jsx:140 +#: components/Search/AdvancedSearch.jsx:150 msgid "Lookup select" msgstr "Sélection de la recherche" -#: components/Search/AdvancedSearch.jsx:149 +#: components/Search/AdvancedSearch.jsx:159 msgid "Lookup type" msgstr "Type de recherche" -#: components/Search/AdvancedSearch.jsx:143 +#: components/Search/AdvancedSearch.jsx:153 msgid "Lookup typeahead" msgstr "Recherche par type" @@ -4976,7 +5006,7 @@ msgstr "Jobs de gestion" #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 #: screens/Project/ProjectList/ProjectList.jsx:149 #: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" msgstr "Manuel" @@ -5023,7 +5053,7 @@ msgstr "" msgid "Metrics" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" @@ -5081,7 +5111,7 @@ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 #: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "Modifié" @@ -5108,24 +5138,24 @@ msgstr "Modifié" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 #: screens/Credential/CredentialList/CredentialList.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 #: screens/Host/HostList/HostList.jsx:160 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:196 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 #: screens/Inventory/InventoryList/InventoryList.jsx:188 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:175 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 #: screens/Organization/OrganizationList/OrganizationList.jsx:149 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 #: screens/Project/ProjectList/ProjectList.jsx:161 #: screens/Team/TeamList/TeamList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 msgid "Modified By (Username)" msgstr "Modifié par (nom d'utilisateur)" @@ -5222,9 +5252,10 @@ msgstr "Options à choix multiples." #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 +#: components/OptionsList/OptionsList.jsx:72 #: components/PaginatedDataList/PaginatedDataList.jsx:77 #: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PaginatedTable/PaginatedTable.jsx:69 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 @@ -5262,8 +5293,8 @@ msgstr "Options à choix multiples." #: screens/Credential/CredentialList/CredentialList.jsx:142 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 #: screens/Credential/shared/CredentialForm.jsx:169 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 @@ -5293,8 +5324,9 @@ msgstr "Options à choix multiples." #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:187 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:202 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 @@ -5308,8 +5340,9 @@ msgstr "Options à choix multiples." #: screens/Inventory/InventoryList/InventoryList.jsx:194 #: screens/Inventory/InventoryList/InventoryList.jsx:202 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:181 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 #: screens/Inventory/InventorySources/InventorySourceList.jsx:217 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 @@ -5352,18 +5385,18 @@ msgstr "Options à choix multiples." #: screens/Team/TeamList/TeamListItem.jsx:33 #: screens/Team/shared/TeamForm.jsx:35 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:88 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 #: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:112 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 @@ -5379,7 +5412,7 @@ msgstr "Options à choix multiples." msgid "Name" msgstr "Nom" -#: components/AppContainer/AppContainer.jsx:181 +#: components/AppContainer/AppContainer.jsx:189 msgid "Navigation" msgstr "Navigation" @@ -5405,10 +5438,10 @@ msgstr "Nouveau" #: components/AdHocCommands/AdHocCommandsWizard.jsx:80 #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:120 -#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: components/LaunchPrompt/LaunchPrompt.jsx:135 +#: components/Schedule/shared/SchedulePromptableFields.jsx:138 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:61 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "Suivant" @@ -5461,9 +5494,9 @@ msgstr "Aucun objet trouvé." msgid "No result found" msgstr "Aucun résultat trouvé" -#: components/Search/AdvancedSearch.jsx:99 -#: components/Search/AdvancedSearch.jsx:131 -#: components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:100 +#: components/Search/AdvancedSearch.jsx:136 +#: components/Search/AdvancedSearch.jsx:161 msgid "No results found" msgstr "Aucun résultat trouvé" @@ -5477,7 +5510,7 @@ msgid "No survey questions found." msgstr "Aucune question d'enquête trouvée." #: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "No {pluralizedItemName} Found" msgstr "Aucun(e) {pluralizedItemName} trouvé(e)" @@ -5520,7 +5553,7 @@ msgstr "Non configuré" msgid "Not configured for inventory sync." msgstr "Non configuré pour la synchronisation de l'inventaire." -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:229 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" @@ -5655,8 +5688,8 @@ msgstr "Octobre" #: components/AdHocCommands/AdHocDetailsStep.jsx:213 #: components/HostToggle/HostToggle.jsx:56 #: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:184 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5673,8 +5706,8 @@ msgstr "Désactivé" #: components/AdHocCommands/AdHocDetailsStep.jsx:212 #: components/HostToggle/HostToggle.jsx:55 #: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5714,7 +5747,7 @@ msgstr "Tels jours" msgid "Only Group By" msgstr "Grouper seulement par" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 msgid "OpenStack" msgstr "OpenStack" @@ -5723,7 +5756,7 @@ msgid "Option Details" msgstr "Détails de l'option" #: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:214 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5752,9 +5785,9 @@ msgstr "En option, sélectionnez les informations d'identification à utiliser p #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 #: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 msgid "Options" msgstr "Options" @@ -5793,14 +5826,14 @@ msgstr "Options" #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 #: screens/User/UserTeams/UserTeamList.jsx:183 #: screens/User/UserTeams/UserTeamList.jsx:242 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "Organisation" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Organization (Name)" msgstr "Organisation (Nom)" @@ -5827,7 +5860,7 @@ msgstr "Organisation non trouvée." msgid "Organizations" msgstr "Organisations" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 msgid "Other prompts" msgstr "Autres invites" @@ -5876,7 +5909,7 @@ msgstr "Sous-domaine Pagerduty" msgid "Pagerduty subdomain" msgstr "Sous-domaine Pagerduty" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "Pagination" @@ -5916,7 +5949,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:235 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 msgid "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." msgstr "Transmettez des variables de ligne de commandes supplémentaires au playbook. Voici le paramètre de ligne de commande -e or --extra-vars pour ansible-playbook. Fournir la paire clé/valeur en utilisant YAML ou JSON. Consulter la documentation Ansible Tower pour obtenir des exemples de syntaxe." @@ -6013,7 +6046,7 @@ msgstr "" #: components/TemplateList/TemplateList.jsx:211 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "Nom du playbook" @@ -6030,7 +6063,7 @@ msgid "Please add survey questions." msgstr "Veuillez ajouter des questions d'enquête." #: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.jsx:90 msgid "Please add {pluralizedItemName} to populate this list" msgstr "Veuillez ajouter {brandName} pour remplir cette liste" @@ -6084,8 +6117,8 @@ msgstr "Instances de stratégies minimum" msgid "Policy instance percentage" msgstr "Pourcentage d'instances de stratégie" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:64 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:70 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 msgid "Populate field from an external secret management system" msgstr "Remplir le champ à partir d'un système de gestion des secrets externes" @@ -6225,12 +6258,16 @@ msgstr "Invite" msgid "Prompt Overrides" msgstr "Invite Remplacements" -#: components/CodeEditor/VariablesField.jsx:219 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: components/CodeEditor/VariablesField.jsx:239 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" msgstr "Me le demander au lancement" +#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +msgid "Prompt | {0}" +msgstr "" + #: components/PromptDetail/PromptDetail.jsx:146 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 msgid "Prompted Values" @@ -6238,11 +6275,11 @@ msgstr "Valeurs incitatrices" #: components/LaunchPrompt/LaunchPrompt.jsx:107 #: components/Schedule/shared/SchedulePromptableFields.jsx:110 -msgid "Prompts" -msgstr "Invites" +#~ msgid "Prompts" +#~ msgstr "Invites" #: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6291,9 +6328,13 @@ msgstr "" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +#~ msgstr "" + #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 #: screens/Template/shared/JobTemplateForm.jsx:604 @@ -6362,15 +6403,15 @@ msgstr "Liste de destinataires" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 #: screens/Project/ProjectList/ProjectList.jsx:153 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" @@ -6390,11 +6431,11 @@ msgstr "Redirection d'URIs." msgid "Redirect uris" msgstr "Redirection d'urs." -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:266 msgid "Redirecting to dashboard" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:270 msgid "Redirecting to subscription detail" msgstr "" @@ -6435,7 +6476,7 @@ msgstr "Expression régulière où seuls les noms d'hôtes correspondants seront #: screens/Inventory/Inventories.jsx:79 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:161 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 msgid "Related Groups" msgstr "Groupes liés" @@ -6474,7 +6515,7 @@ msgstr "Relancer en utilisant les paramètres de l'hôte" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 #: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "Archive à distance" @@ -6592,15 +6633,15 @@ msgstr "Renvoi" msgid "Return to subscription management." msgstr "" -#: components/Search/AdvancedSearch.jsx:114 +#: components/Search/AdvancedSearch.jsx:118 msgid "Returns results that have values other than this one as well as other filters." msgstr "Renvoie les résultats qui ont des valeurs autres que celle-ci ainsi que d'autres filtres." -#: components/Search/AdvancedSearch.jsx:104 +#: components/Search/AdvancedSearch.jsx:106 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "Retourne des résultats qui satisfont à ce filtre ainsi qu'à d'autres filtres. Il s'agit du type d'ensemble par défaut si rien n'est sélectionné." -#: components/Search/AdvancedSearch.jsx:109 +#: components/Search/AdvancedSearch.jsx:112 msgid "Returns results that satisfy this one or any other filters." msgstr "Retourne les résultats qui satisfont à ce filtre ou à tout autre filtre." @@ -6668,7 +6709,7 @@ msgstr "Rôle" msgid "Roles" msgstr "Rôles" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:96 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 #: components/Workflow/WorkflowLinkHelp.jsx:39 #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 @@ -6802,7 +6843,7 @@ msgstr "Enregistrez et activez l'agrégation de journalisation avant de tester l msgid "Save link changes" msgstr "Enregistrer les changements de liens" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:273 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:261 msgid "Save successful!" msgstr "" @@ -6878,12 +6919,12 @@ msgstr "Rechercher" msgid "Search is disabled while the job is running" msgstr "" -#: components/Search/AdvancedSearch.jsx:247 -#: components/Search/Search.jsx:284 +#: components/Search/AdvancedSearch.jsx:275 +#: components/Search/Search.jsx:286 msgid "Search submit button" msgstr "Bouton de soumission de recherche" -#: components/Search/Search.jsx:274 +#: components/Search/Search.jsx:275 msgid "Search text input" msgstr "Saisie de texte de recherche" @@ -6897,14 +6938,14 @@ msgstr "Deuxième" msgid "Seconds" msgstr "Secondes" -#: components/LaunchPrompt/steps/PreviewStep.jsx:61 +#: components/LaunchPrompt/steps/PreviewStep.jsx:65 msgid "See errors on the left" msgstr "Voir les erreurs sur la gauche" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 #: components/Lookup/Lookup.jsx:141 -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:33 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 msgid "Select" msgstr "Sélectionner" @@ -6915,11 +6956,11 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:232 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "Sélectionner les groupes" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:258 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 msgid "Select Hosts" msgstr "Sélectionner les hôtes" @@ -6977,7 +7018,7 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "Sélectionnez une branche pour le flux de travail. Cette branche est appliquée à tous les nœuds de modèle de tâche qui demandent une branche." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:185 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "Sélectionnez une branche pour le flux de travail. Cette branche est appliquée à tous les nœuds de modèle de tâche qui demandent une branche." @@ -7087,7 +7128,7 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:137 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "Sélectionnez un inventaire pour le flux de travail. Cet inventaire est appliqué à tous les nœuds de modèle de tâche qui demandent un inventaire." @@ -7187,17 +7228,17 @@ msgstr "Sélectionnez les informations d’identification qu’il vous faut util #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "Sélectionnez l'environnement virtuel Python personnalisé sur lequel exécuter cette source d'inventaire." -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:204 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 msgid "Select the default execution environment for this organization to run on." msgstr "" #: screens/Organization/shared/OrganizationForm.jsx:96 -msgid "Select the default execution environment for this organization." -msgstr "" +#~ msgid "Select the default execution environment for this organization." +#~ msgstr "" #: screens/Project/shared/ProjectForm.jsx:196 -msgid "Select the default execution environment for this project." -msgstr "" +#~ msgid "Select the default execution environment for this project." +#~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:298 msgid "Select the execution environment for this job template." @@ -7257,6 +7298,7 @@ msgstr "Sélectionnez {0}" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 +#: components/CheckboxListItem/CheckboxListItem.jsx:31 #: components/OptionsList/OptionsList.jsx:51 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 @@ -7268,7 +7310,9 @@ msgstr "Sélectionnez {0}" #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 #: screens/Host/HostList/HostListItem.jsx:26 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 #: screens/Inventory/InventoryList/InventoryListItem.jsx:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 @@ -7330,15 +7374,15 @@ msgstr "Mettez l'instance en ligne ou hors ligne. Si elle est hors ligne, les Jo msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "Définir sur sur Public ou Confidentiel selon le degré de sécurité du périphérique client." -#: components/Search/AdvancedSearch.jsx:97 +#: components/Search/AdvancedSearch.jsx:98 msgid "Set type" msgstr "Type d'ensemble" -#: components/Search/AdvancedSearch.jsx:88 +#: components/Search/AdvancedSearch.jsx:89 msgid "Set type select" msgstr "Sélection du type d’ensemble" -#: components/Search/AdvancedSearch.jsx:91 +#: components/Search/AdvancedSearch.jsx:92 msgid "Set type typeahead" msgstr "En-tête du type d'ensemble" @@ -7370,7 +7414,7 @@ msgstr "Paramètres" msgid "Show" msgstr "Afficher" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:171 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 #: components/PromptDetail/PromptDetail.jsx:243 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 @@ -7388,6 +7432,10 @@ msgstr "Afficher tous les groupes" msgid "Show changes" msgstr "Afficher les modifications" +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Show description" +msgstr "" + #: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "Afficher moins de détails" @@ -7512,7 +7560,7 @@ msgstr "Filtre d'hôte smart" msgid "Smart inventory" msgstr "Inventaire smart" -#: components/LaunchPrompt/steps/PreviewStep.jsx:58 +#: components/LaunchPrompt/steps/PreviewStep.jsx:62 msgid "Some of the previous step(s) have errors" msgstr "Certaines des étapes précédentes comportent des erreurs" @@ -7536,7 +7584,7 @@ msgstr "Trier l'ordre des questions" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 #: screens/Inventory/shared/InventorySourceForm.jsx:134 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "Source" @@ -7549,7 +7597,7 @@ msgstr "Source" #: screens/Job/JobDetail/JobDetail.jsx:215 #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:137 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 #: screens/Template/shared/JobTemplateForm.jsx:308 msgid "Source Control Branch" msgstr "Branche Contrôle de la source" @@ -7586,7 +7634,7 @@ msgstr "Type de Contrôle de la source" #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 #: screens/Project/ProjectList/ProjectList.jsx:157 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "URL Contrôle de la source" @@ -7610,7 +7658,7 @@ msgstr "Variables Source" msgid "Source Workflow Job" msgstr "Flux de travail Source" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:182 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Source control branch" msgstr "Branche Contrôle de la source" @@ -7627,7 +7675,7 @@ msgstr "Numéro de téléphone de la source" msgid "Source variables" msgstr "Variables sources" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Sourced from a project" msgstr "Provenance d'un projet" @@ -7749,9 +7797,9 @@ msgstr "État" msgid "Stdout" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:39 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:52 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:230 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:38 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:51 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:218 msgid "Submit" msgstr "" @@ -7768,7 +7816,7 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:213 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:201 msgid "Subscription" msgstr "" @@ -7776,7 +7824,7 @@ msgstr "" msgid "Subscription Details" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:200 msgid "Subscription Management" msgstr "" @@ -7804,7 +7852,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 #: screens/Project/ProjectList/ProjectList.jsx:151 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "Subversion" @@ -8145,6 +8193,14 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "URL de base du serveur Grafana - le point de terminaison /api/annotations sera ajouté automatiquement à l'URL Grafana de base." +#: screens/Organization/shared/OrganizationForm.jsx:96 +msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:196 +msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." +msgstr "" + #: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 msgid "" "The first fetches all references. The second\n" @@ -8335,9 +8391,16 @@ msgstr "" msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" -"Red Hat Insights for Ansible." +"Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#~ msgid "" +#~ "This data is used to enhance\n" +#~ "future releases of the Software and to provide\n" +#~ "Red Hat Insights for Ansible." +#~ msgstr "" + #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 msgid "" "This data is used to enhance\n" @@ -8425,7 +8488,7 @@ msgstr "Ce champ sera récupéré dans un système externe de gestion des secret msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:64 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" @@ -8496,7 +8559,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "Ce flux de travail ne comporte aucun nœud configuré." -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:255 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8581,6 +8644,7 @@ msgid "Toggle expand/collapse event lines" msgstr "Basculer entre Étendre/Effondrer pour les lignes d'événements" #: components/HostToggle/HostToggle.jsx:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 msgid "Toggle host" msgstr "Basculer l'hôte" @@ -8650,7 +8714,7 @@ msgstr "Jetons" msgid "Tools" msgstr "Outils" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.jsx:129 msgid "Top Pagination" msgstr "" @@ -8745,7 +8809,7 @@ msgstr "Twilio" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 #: screens/Team/TeamRoles/TeamRolesList.jsx:181 #: screens/Template/Survey/SurveyListItem.jsx:117 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 #: screens/User/UserRoles/UserRolesList.jsx:155 #: screens/User/UserRoles/UserRolesListItem.jsx:21 @@ -8919,7 +8983,7 @@ msgid "User analytics" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:220 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:208 msgid "User and Insights analytics" msgstr "" @@ -8974,7 +9038,7 @@ msgstr "" msgid "Users" msgstr "Utilisateurs" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 msgid "VMware vCenter" msgstr "VMware vCenter" @@ -8995,9 +9059,9 @@ msgstr "VMware vCenter" #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 #: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:233 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 msgid "Variables" msgstr "Variables" @@ -9018,7 +9082,7 @@ msgid "Verbose" msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:145 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 #: components/PromptDetail/PromptDetail.jsx:191 #: components/PromptDetail/PromptInventorySourceDetail.jsx:100 #: components/PromptDetail/PromptJobTemplateDetail.jsx:134 @@ -9331,14 +9395,14 @@ msgstr "Webhook" msgid "Webhook Credential" msgstr "Informations d'identification du webhook" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:177 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 msgid "Webhook Credentials" msgstr "Informations d'identification du webhook" #: components/PromptDetail/PromptJobTemplateDetail.jsx:153 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 #: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook Key" msgstr "Clé du webhook" @@ -9346,7 +9410,7 @@ msgstr "Clé du webhook" #: components/PromptDetail/PromptJobTemplateDetail.jsx:146 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 #: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "Service webhook" @@ -9354,14 +9418,14 @@ msgstr "Service webhook" #: components/PromptDetail/PromptJobTemplateDetail.jsx:149 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 #: screens/Template/shared/WebhookSubForm.jsx:163 #: screens/Template/shared/WebhookSubForm.jsx:173 msgid "Webhook URL" msgstr "URL du webhook" #: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:269 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 msgid "Webhook details" msgstr "Détails de webhook" @@ -9607,11 +9671,11 @@ msgstr "" #~ msgid "You may apply a number of possible variables in the message. Refer to the" #~ msgstr "" -#: components/AppContainer/AppContainer.jsx:237 +#: components/AppContainer/AppContainer.jsx:245 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "Vous serez déconnecté dans {itemsUnableToDisassociate} secondes pour cause d'inactivité." -#: components/AppContainer/AppContainer.jsx:213 +#: components/AppContainer/AppContainer.jsx:221 msgid "Your session is about to expire" msgstr "Votre session est sur le point d'expirer" @@ -9635,8 +9699,6 @@ msgstr "une nouvelle url de webhook sera générée lors de la sauvegarde." #: screens/Host/HostGroups/HostGroupItem.jsx:45 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:68 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:58 #: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 msgid "actions" @@ -9651,7 +9713,7 @@ msgstr "" msgid "approved" msgstr "approuvé" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "brand logo" msgstr "" @@ -9781,7 +9843,7 @@ msgstr "inventaire" #~ msgid "isolated instance" #~ msgstr "cas isolé" -#: components/Pagination/Pagination.jsx:23 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "éléments" @@ -9821,15 +9883,15 @@ msgstr "de" msgid "option to the" msgstr "l'option à la" -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "page" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "pages" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "par page" @@ -9875,7 +9937,7 @@ msgid "social login" msgstr "social login" #: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:193 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 msgid "source control branch" msgstr "" @@ -10007,7 +10069,7 @@ msgstr "{0} des sources avec des défaillances de synchronisation." msgid "{0}: {1}" msgstr "{0}: {1}" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "{brandName} logo" msgstr "" @@ -10060,6 +10122,6 @@ msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedTable/PaginatedTable.jsx:76 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/ja/messages.po b/awx/ui_next/src/locales/ja/messages.po index 3a2893bff9..247b01d9a8 100644 --- a/awx/ui_next/src/locales/ja/messages.po +++ b/awx/ui_next/src/locales/ja/messages.po @@ -18,7 +18,7 @@ msgstr "(最初の 10 件に制限)" #: components/TemplateList/TemplateListItem.jsx:90 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:92 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 msgid "(Prompt on launch)" msgstr "(起動プロンプト)" @@ -26,11 +26,11 @@ msgstr "(起動プロンプト)" msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "*このフィールドは、指定された認証情報を使用して外部のシークレット管理システムから取得されます。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:60 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 msgid "- Enable Concurrent Jobs" msgstr "- 同時実行ジョブの有効化" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:65 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 msgid "- Enable Webhooks" msgstr "- Webhook の有効化" @@ -39,7 +39,7 @@ msgid "/ (project root)" msgstr "/ (プロジェクト root)" #: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:132 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 #: components/PromptDetail/PromptDetail.jsx:95 #: components/PromptDetail/PromptInventorySourceDetail.jsx:32 #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 @@ -60,7 +60,7 @@ msgid "1 (Info)" msgstr "1 (情報)" #: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:133 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 #: components/PromptDetail/PromptDetail.jsx:96 #: components/PromptDetail/PromptInventorySourceDetail.jsx:33 #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 @@ -76,7 +76,7 @@ msgid "2 (Debug)" msgstr "2 (デバッグ)" #: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 #: components/PromptDetail/PromptDetail.jsx:97 #: components/PromptDetail/PromptInventorySourceDetail.jsx:34 #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 @@ -87,7 +87,7 @@ msgid "2 (More Verbose)" msgstr "2 (より詳細)" #: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 #: components/PromptDetail/PromptDetail.jsx:98 #: components/PromptDetail/PromptInventorySourceDetail.jsx:35 #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 @@ -98,7 +98,7 @@ msgid "3 (Debug)" msgstr "3 (デバッグ)" #: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 #: components/PromptDetail/PromptDetail.jsx:99 #: components/PromptDetail/PromptInventorySourceDetail.jsx:36 #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 @@ -205,6 +205,8 @@ msgstr "アクション" #: screens/Host/HostList/HostListItem.jsx:42 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 @@ -213,6 +215,8 @@ msgstr "アクション" #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 #: screens/Inventory/InventoryList/InventoryList.jsx:206 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 #: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 @@ -234,10 +238,12 @@ msgstr "アクション" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 #: components/TemplateList/TemplateListItem.jsx:233 #: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:119 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 msgid "Activity" msgstr "アクティビティー" @@ -305,11 +311,11 @@ msgstr "これら 2 つのノードの間に新しいノードを追加します msgid "Add container group" msgstr "コンテナーグループの追加" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 msgid "Add existing group" msgstr "既存グループの追加" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 msgid "Add existing host" msgstr "既存ホストの追加" @@ -325,11 +331,11 @@ msgstr "インベントリーの追加" msgid "Add job template" msgstr "新規ジョブテンプレートの追加" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:130 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 msgid "Add new group" msgstr "新規グループの追加" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:148 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 msgid "Add new host" msgstr "新規ホストの追加" @@ -367,11 +373,11 @@ msgstr "管理" msgid "Advanced" msgstr "詳細" -#: components/Search/AdvancedSearch.jsx:254 +#: components/Search/AdvancedSearch.jsx:282 msgid "Advanced search documentation" msgstr "" -#: components/Search/AdvancedSearch.jsx:237 +#: components/Search/AdvancedSearch.jsx:264 msgid "Advanced search value input" msgstr "詳細な検索値の入力" @@ -446,7 +452,7 @@ msgstr "許可された URI リスト (スペース区切り)" msgid "Always" msgstr "常時" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 msgid "Amazon EC2" msgstr "Amazon EC2" @@ -454,7 +460,7 @@ msgstr "Amazon EC2" msgid "An error occurred" msgstr "エラーが発生しました" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 msgid "An inventory must be selected" msgstr "インベントリーを選択する必要があります" @@ -468,7 +474,7 @@ msgstr "インベントリーを選択する必要があります" #~ msgid "Ansible Environment" #~ msgstr "Ansible 環境" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 msgid "Ansible Tower" msgstr "Ansible Tower" @@ -674,10 +680,10 @@ msgstr "Azure AD の設定" #: components/AdHocCommands/AdHocCommandsWizard.jsx:125 #: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:118 -#: components/Schedule/shared/SchedulePromptableFields.jsx:121 +#: components/LaunchPrompt/LaunchPrompt.jsx:133 +#: components/Schedule/shared/SchedulePromptableFields.jsx:136 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:72 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" @@ -739,7 +745,7 @@ msgstr "スケジュールに戻る" #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" msgstr "設定に戻る" @@ -862,14 +868,14 @@ msgstr "キャッシュのタイムアウト (秒)" #: components/DisassociateButton/DisassociateButton.jsx:125 #: components/FormActionGroup/FormActionGroup.jsx:24 #: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 #: components/Lookup/Lookup.jsx:150 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 -#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: components/Schedule/shared/SchedulePromptableFields.jsx:137 #: screens/Credential/shared/CredentialForm.jsx:341 #: screens/Credential/shared/CredentialForm.jsx:346 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 @@ -877,7 +883,7 @@ msgstr "キャッシュのタイムアウト (秒)" #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 #: screens/Setting/shared/RevertAllAlert.jsx:32 @@ -950,7 +956,7 @@ msgstr "" msgid "Cancel selected jobs" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:79 msgid "Cancel subscription edit" msgstr "" @@ -994,23 +1000,23 @@ msgstr "" msgid "Capacity" msgstr "容量" -#: components/Search/AdvancedSearch.jsx:171 +#: components/Search/AdvancedSearch.jsx:185 msgid "Case-insensitive version of contains" msgstr "contains で大文字小文字の区別なし。" -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.jsx:209 msgid "Case-insensitive version of endswith." msgstr "endswith で大文字小文字の区別なし。" -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.jsx:173 msgid "Case-insensitive version of exact." msgstr "exact で大文字小文字の区別なし。" -#: components/Search/AdvancedSearch.jsx:201 +#: components/Search/AdvancedSearch.jsx:221 msgid "Case-insensitive version of regex." msgstr "regex で大文字小文字の区別なし。" -#: components/Search/AdvancedSearch.jsx:181 +#: components/Search/AdvancedSearch.jsx:197 msgid "Case-insensitive version of startswith." msgstr "startswith で大文字小文字の区別なし。" @@ -1037,16 +1043,16 @@ msgstr "変更" msgid "Channel" msgstr "チャネル" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 #: screens/Template/shared/JobTemplateForm.jsx:181 msgid "Check" msgstr "チェック" -#: components/Search/AdvancedSearch.jsx:226 +#: components/Search/AdvancedSearch.jsx:251 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "特定フィールドもしくは関連オブジェクトが null かどうかをチェック。ブール値を想定。" -#: components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:257 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "特定フィールドの値が提供されたリストに存在するかどうかをチェック (項目のコンマ区切りのリストを想定)。" @@ -1070,7 +1076,7 @@ msgstr "ソースコントロールタイプの選択" msgid "Choose a Webhook Service" msgstr "Webhook サービスの選択" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:93 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 #: screens/Template/shared/JobTemplateForm.jsx:174 msgid "Choose a job type" msgstr "ジョブタイプの選択" @@ -1293,12 +1299,12 @@ msgstr "コンテナーグループ" msgid "Container group not found." msgstr "コンテナーグループが見つかりません。" -#: components/LaunchPrompt/LaunchPrompt.jsx:113 -#: components/Schedule/shared/SchedulePromptableFields.jsx:116 +#: components/LaunchPrompt/LaunchPrompt.jsx:128 +#: components/Schedule/shared/SchedulePromptableFields.jsx:131 msgid "Content Loading" msgstr "コンテンツの読み込み" -#: components/AppContainer/AppContainer.jsx:225 +#: components/AppContainer/AppContainer.jsx:233 msgid "Continue" msgstr "続行" @@ -1312,7 +1318,7 @@ msgstr "" #~ msgid "Control the level of output Ansible will produce for inventory source update jobs." #~ msgstr "インベントリーソースの更新ジョブ用に Ansible が生成する出力のレベルを制御します。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:148 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." @@ -1388,7 +1394,7 @@ msgstr "" #~ msgstr "Copyright 2019 Red Hat, Inc." #: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:225 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Create" msgstr "作成" @@ -1542,7 +1548,7 @@ msgstr "ユーザートークンの作成" #: screens/Project/ProjectDetail/ProjectDetail.jsx:182 #: screens/Team/TeamDetail/TeamDetail.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:191 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 #: screens/User/UserDetail/UserDetail.jsx:77 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 #: screens/User/UserTokenList/UserTokenList.jsx:134 @@ -1572,24 +1578,24 @@ msgstr "作成済み" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 #: screens/Credential/CredentialList/CredentialList.jsx:132 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 #: screens/Host/HostList/HostList.jsx:156 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 #: screens/Inventory/InventoryList/InventoryList.jsx:184 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 #: screens/Organization/OrganizationList/OrganizationList.jsx:145 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 #: screens/Project/ProjectList/ProjectList.jsx:165 #: screens/Team/TeamList/TeamList.jsx:142 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 msgid "Created By (Username)" msgstr "作成者 (ユーザー名)" @@ -1691,7 +1697,7 @@ msgstr "認証情報" msgid "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}" msgstr "" -#: components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:34 msgid "Current page" msgstr "現在のページ" @@ -1821,7 +1827,7 @@ msgstr "システムレベルの機能および関数の定義" #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 #: screens/Template/Survey/SurveyList.jsx:104 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1907,7 +1913,7 @@ msgstr "ユーザートークンの削除" msgid "Delete Workflow Approval" msgstr "ワークフロー承認の削除" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 msgid "Delete Workflow Job Template" msgstr "新規ワークフロージョブテンプレートの削除" @@ -2066,10 +2072,10 @@ msgstr "" #: screens/Team/shared/TeamForm.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 #: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 #: screens/User/UserTeams/UserTeamList.jsx:184 @@ -2178,7 +2184,7 @@ msgstr "送信先チャネルまたはユーザー" #: screens/Setting/Settings.jsx:110 #: screens/Setting/Settings.jsx:113 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:55 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 #: screens/Team/Team.jsx:55 #: screens/Team/Teams.jsx:28 #: screens/Template/Template.jsx:144 @@ -2227,7 +2233,7 @@ msgstr "関連付けの解除" msgid "Disassociate group from host?" msgstr "グループのホストとの関連付けを解除しますか?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:228 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 msgid "Disassociate host from group?" msgstr "ホストのグループとの関連付けを解除しますか?" @@ -2235,7 +2241,7 @@ msgstr "ホストのグループとの関連付けを解除しますか?" msgid "Disassociate instance from instance group?" msgstr "インスタンスグループへのインスタンスの関連付けを解除しますか?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:207 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 msgid "Disassociate related group(s)?" msgstr "関連するグループの関連付けを解除しますか?" @@ -2274,8 +2280,8 @@ msgstr "" #: components/CodeEditor/VariablesDetail.jsx:112 #: components/CodeEditor/VariablesDetail.jsx:118 -#: components/CodeEditor/VariablesField.jsx:126 -#: components/CodeEditor/VariablesField.jsx:132 +#: components/CodeEditor/VariablesField.jsx:138 +#: components/CodeEditor/VariablesField.jsx:144 msgid "Done" msgstr "" @@ -2365,14 +2371,14 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:100 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2432,15 +2438,16 @@ msgstr "" #: screens/Host/HostGroups/HostGroupItem.jsx:50 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 msgid "Edit Group" msgstr "グループの編集" #: screens/Host/HostList/HostListItem.jsx:46 #: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:74 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 msgid "Edit Host" msgstr "ホストの編集" @@ -2579,7 +2586,7 @@ msgstr "メールオプション" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:261 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Concurrent Jobs" msgstr "同時実行ジョブの有効化" @@ -2598,12 +2605,12 @@ msgstr "権限昇格の有効化" #: screens/Template/shared/JobTemplateForm.jsx:558 #: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 msgid "Enable Webhook" msgstr "Webhook の有効化" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:247 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Enable Webhook for this workflow job template." msgstr "このワークフローのジョブテンプレートの Webhook を有効にします。" @@ -2692,7 +2699,7 @@ msgstr "終了日時" msgid "End did not match an expected value" msgstr "終了が期待値と一致しませんでした" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:215 msgid "End user license agreement" msgstr "" @@ -2874,7 +2881,7 @@ msgstr "" #: components/JobList/JobList.jsx:281 #: components/JobList/JobList.jsx:292 #: components/LaunchButton/LaunchButton.jsx:173 -#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 @@ -2882,10 +2889,10 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 #: components/Schedule/ScheduleList/ScheduleList.jsx:239 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:76 +#: components/Schedule/shared/SchedulePromptableFields.jsx:74 #: components/TemplateList/TemplateList.jsx:278 #: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: contexts/Config.jsx:74 +#: contexts/Config.jsx:64 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 #: screens/Application/ApplicationsList/ApplicationsList.jsx:191 @@ -2899,14 +2906,14 @@ msgstr "" #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:265 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 #: screens/Inventory/InventoryList/InventoryList.jsx:265 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:239 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 #: screens/Inventory/InventorySources/InventorySourceList.jsx:245 #: screens/Inventory/InventorySources/InventorySourceList.jsx:258 @@ -2929,7 +2936,7 @@ msgstr "" #: screens/Team/TeamRoles/TeamRolesList.jsx:235 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 @@ -2975,7 +2982,7 @@ msgstr "イベントの概要はありません" msgid "Events" msgstr "イベント" -#: components/Search/AdvancedSearch.jsx:156 +#: components/Search/AdvancedSearch.jsx:167 msgid "Exact match (default lookup if not specified)." msgstr "完全一致 (指定されない場合のデフォルトのルックアップ)" @@ -3015,7 +3022,7 @@ msgstr "親ノードが正常な状態になったときに実行します。" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 #: components/Lookup/ExecutionEnvironmentLookup.jsx:152 #: components/Lookup/ExecutionEnvironmentLookup.jsx:174 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3068,7 +3075,7 @@ msgid "Expand" msgstr "展開" #: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:226 +#: components/CodeEditor/VariablesField.jsx:246 msgid "Expand input" msgstr "" @@ -3174,9 +3181,9 @@ msgstr "ロールの関連付けに失敗しました" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:268 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:243 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 #: screens/User/UserTeams/UserTeamList.jsx:268 msgid "Failed to associate." msgstr "関連付けに失敗しました。" @@ -3380,7 +3387,7 @@ msgstr "ユーザーを削除できませんでした。" msgid "Failed to delete workflow approval." msgstr "ワークフロー承認を削除できませんでした。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:268 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 msgid "Failed to delete workflow job template." msgstr "ワークフロージョブテンプレートを削除できませんでした。" @@ -3399,11 +3406,11 @@ msgstr "ワークフローの承認を拒否できませんでした。" #: screens/Host/HostGroups/HostGroupsList.jsx:250 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "1 つ以上のグループの関連付けを解除できませんでした。" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 msgid "Failed to disassociate one or more hosts." msgstr "1 つ以上のホストの関連付けを解除できませんでした。" @@ -3425,7 +3432,7 @@ msgstr "カスタムログイン構成設定を取得できません。代わり msgid "Failed to launch job." msgstr "ジョブを起動できませんでした。" -#: contexts/Config.jsx:78 +#: contexts/Config.jsx:68 msgid "Failed to retrieve configuration." msgstr "構成を取得できませんでした。" @@ -3500,11 +3507,11 @@ msgstr "False" msgid "February" msgstr "2 月" -#: components/Search/AdvancedSearch.jsx:166 +#: components/Search/AdvancedSearch.jsx:179 msgid "Field contains value." msgstr "値を含むフィールド。" -#: components/Search/AdvancedSearch.jsx:186 +#: components/Search/AdvancedSearch.jsx:203 msgid "Field ends with value." msgstr "値で終了するフィールド。" @@ -3512,11 +3519,11 @@ msgstr "値で終了するフィールド。" msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "カスタムの Kubernetes または OpenShift Pod 仕様を渡すためのフィールド。" -#: components/Search/AdvancedSearch.jsx:196 +#: components/Search/AdvancedSearch.jsx:215 msgid "Field matches the given regular expression." msgstr "特定の正規表現に一致するフィールド。" -#: components/Search/AdvancedSearch.jsx:176 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field starts with value." msgstr "値で開始するフィールド。" @@ -3532,7 +3539,7 @@ msgstr "" msgid "File upload rejected. Please select a single .json file." msgstr "ファイルのアップロードが拒否されました。単一の .json ファイルを選択してください。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "File, directory or script" msgstr "ファイル、ディレクトリー、またはスクリプト" @@ -3571,7 +3578,7 @@ msgstr "初回実行日時" msgid "First name" msgstr "" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.jsx:266 msgid "First, select a key" msgstr "最初に、キーを選択します" @@ -3591,7 +3598,7 @@ msgid "" "executing the playbook." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:111 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" @@ -3662,7 +3669,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 #: screens/Project/ProjectList/ProjectList.jsx:150 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "Git" @@ -3723,23 +3730,23 @@ msgstr "" msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "最初のページに移動" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "最後のページに移動" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "次のページに移動" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "前のページに移動" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" @@ -3765,11 +3772,11 @@ msgstr "Grafana API キー" msgid "Grafana URL" msgstr "Grafana URL" -#: components/Search/AdvancedSearch.jsx:206 +#: components/Search/AdvancedSearch.jsx:227 msgid "Greater than comparison." msgstr "Greater than の比較条件" -#: components/Search/AdvancedSearch.jsx:211 +#: components/Search/AdvancedSearch.jsx:233 msgid "Greater than or equal to comparison." msgstr "Greater than or equal to の比較条件" @@ -3794,7 +3801,7 @@ msgstr "グループタイプ" #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:226 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 msgid "Groups" msgstr "グループ" @@ -3817,6 +3824,11 @@ msgstr "ヘルプ" msgid "Hide" msgstr "非表示" +#: components/LaunchPrompt/LaunchPrompt.jsx:110 +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Hide description" +msgstr "" + #: components/NotificationList/NotificationList.jsx:195 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "Hipchat" @@ -3918,8 +3930,8 @@ msgstr "" #: screens/Inventory/Inventories.jsx:77 #: screens/Inventory/Inventory.jsx:65 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:182 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:252 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 #: screens/Inventory/SmartInventory.jsx:71 @@ -4064,7 +4076,7 @@ msgstr "" #~ msgid "If enabled, run this playbook as an administrator." #~ msgstr "有効な場合は、この Playbook を管理者として実行します。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" @@ -4096,7 +4108,7 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "有効な場合は、このワークフロージョブテンプレートの同時実行が許可されます。" @@ -4209,13 +4221,22 @@ msgstr "Insights 認証情報" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -msgid "Insights for Ansible" +#~ msgid "Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +msgid "Insights for Ansible Automation Platform" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -msgid "Insights for Ansible dashboard" +msgid "Insights for Ansible Automation Platform dashboard" msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#~ msgid "Insights for Ansible dashboard" +#~ msgstr "" + #: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "Insights システム ID" @@ -4314,7 +4335,7 @@ msgstr "ソースを含むインベントリーはコピーできません。" #: components/HostForm/HostForm.jsx:28 #: components/JobList/JobListItem.jsx:180 #: components/LaunchPrompt/steps/InventoryStep.jsx:107 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 #: components/Lookup/InventoryLookup.jsx:85 #: components/Lookup/InventoryLookup.jsx:94 #: components/Lookup/InventoryLookup.jsx:131 @@ -4339,11 +4360,11 @@ msgstr "ソースを含むインベントリーはコピーできません。" #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 msgid "Inventory" msgstr "インベントリー" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 msgid "Inventory (Name)" msgstr "インベントリー (名前)" @@ -4425,7 +4446,7 @@ msgstr "" msgid "Items" msgstr "項目" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "ページ別の項目" @@ -4528,13 +4549,13 @@ msgid "Job Templates with credentials that prompt for passwords cannot be select msgstr "" #: components/JobList/JobList.jsx:185 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:108 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 #: screens/Template/shared/JobTemplateForm.jsx:226 msgid "Job Type" msgstr "ジョブタイプ" @@ -4591,15 +4612,15 @@ msgstr "7 月" msgid "June" msgstr "6 月" -#: components/Search/AdvancedSearch.jsx:127 +#: components/Search/AdvancedSearch.jsx:132 msgid "Key" msgstr "キー" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.jsx:123 msgid "Key select" msgstr "キー選択" -#: components/Search/AdvancedSearch.jsx:121 +#: components/Search/AdvancedSearch.jsx:126 msgid "Key typeahead" msgstr "キー先行入力" @@ -4670,9 +4691,9 @@ msgstr "ラベル名" #: components/TemplateList/TemplateListItem.jsx:306 #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:203 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 #: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:211 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 msgid "Labels" msgstr "ラベル" @@ -4765,8 +4786,8 @@ msgstr "" #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:233 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:242 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 msgid "Launch" msgstr "起動" @@ -4797,6 +4818,10 @@ msgstr "テンプレートの起動" msgid "Launch workflow" msgstr "ワークフローの起動" +#: components/LaunchPrompt/LaunchPrompt.jsx:105 +msgid "Launch | {0}" +msgstr "" + #: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "起動者" @@ -4810,7 +4835,11 @@ msgstr "起動者 (ユーザー名)" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -msgid "Learn more about Insights for Ansible" +#~ msgid "Learn more about Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" #: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 @@ -4821,11 +4850,11 @@ msgstr "" msgid "Legend" msgstr "凡例" -#: components/Search/AdvancedSearch.jsx:216 +#: components/Search/AdvancedSearch.jsx:239 msgid "Less than comparison." msgstr "Less than の比較条件" -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.jsx:245 msgid "Less than or equal to comparison." msgstr "Less than or equal to の比較条件" @@ -4849,8 +4878,9 @@ msgstr "Less than or equal to の比較条件" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 #: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:160 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 msgid "Limit" msgstr "制限" @@ -4886,8 +4916,8 @@ msgstr "ロギング" msgid "Logging settings" msgstr "ロギング設定" -#: components/AppContainer/AppContainer.jsx:168 -#: components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:176 +#: components/AppContainer/AppContainer.jsx:241 #: components/AppContainer/PageHeaderToolbar.jsx:166 msgid "Logout" msgstr "ログアウト" @@ -4897,15 +4927,15 @@ msgstr "ログアウト" msgid "Lookup modal" msgstr "ルックアップモーダル" -#: components/Search/AdvancedSearch.jsx:140 +#: components/Search/AdvancedSearch.jsx:150 msgid "Lookup select" msgstr "ルックアップ選択" -#: components/Search/AdvancedSearch.jsx:149 +#: components/Search/AdvancedSearch.jsx:159 msgid "Lookup type" msgstr "ルックアップタイプ" -#: components/Search/AdvancedSearch.jsx:143 +#: components/Search/AdvancedSearch.jsx:153 msgid "Lookup typeahead" msgstr "ルックアップの先行入力" @@ -4972,7 +5002,7 @@ msgstr "管理ジョブ" #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 #: screens/Project/ProjectList/ProjectList.jsx:149 #: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" msgstr "手動" @@ -5019,7 +5049,7 @@ msgstr "" msgid "Metrics" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" @@ -5077,7 +5107,7 @@ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 #: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "修正済み" @@ -5104,24 +5134,24 @@ msgstr "修正済み" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 #: screens/Credential/CredentialList/CredentialList.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 #: screens/Host/HostList/HostList.jsx:160 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:196 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 #: screens/Inventory/InventoryList/InventoryList.jsx:188 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:175 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 #: screens/Organization/OrganizationList/OrganizationList.jsx:149 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 #: screens/Project/ProjectList/ProjectList.jsx:161 #: screens/Team/TeamList/TeamList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 msgid "Modified By (Username)" msgstr "変更者 (ユーザー名)" @@ -5218,9 +5248,10 @@ msgstr "複数の選択オプション" #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 +#: components/OptionsList/OptionsList.jsx:72 #: components/PaginatedDataList/PaginatedDataList.jsx:77 #: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PaginatedTable/PaginatedTable.jsx:69 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 @@ -5258,8 +5289,8 @@ msgstr "複数の選択オプション" #: screens/Credential/CredentialList/CredentialList.jsx:142 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 #: screens/Credential/shared/CredentialForm.jsx:169 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 @@ -5289,8 +5320,9 @@ msgstr "複数の選択オプション" #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:187 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:202 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 @@ -5304,8 +5336,9 @@ msgstr "複数の選択オプション" #: screens/Inventory/InventoryList/InventoryList.jsx:194 #: screens/Inventory/InventoryList/InventoryList.jsx:202 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:181 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 #: screens/Inventory/InventorySources/InventorySourceList.jsx:217 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 @@ -5348,18 +5381,18 @@ msgstr "複数の選択オプション" #: screens/Team/TeamList/TeamListItem.jsx:33 #: screens/Team/shared/TeamForm.jsx:35 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:88 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 #: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:112 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 @@ -5375,7 +5408,7 @@ msgstr "複数の選択オプション" msgid "Name" msgstr "名前" -#: components/AppContainer/AppContainer.jsx:181 +#: components/AppContainer/AppContainer.jsx:189 msgid "Navigation" msgstr "ナビゲーション" @@ -5401,10 +5434,10 @@ msgstr "新規" #: components/AdHocCommands/AdHocCommandsWizard.jsx:80 #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:120 -#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: components/LaunchPrompt/LaunchPrompt.jsx:135 +#: components/Schedule/shared/SchedulePromptableFields.jsx:138 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:61 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "次へ" @@ -5457,9 +5490,9 @@ msgstr "項目は見つかりません。" msgid "No result found" msgstr "結果が見つかりません" -#: components/Search/AdvancedSearch.jsx:99 -#: components/Search/AdvancedSearch.jsx:131 -#: components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:100 +#: components/Search/AdvancedSearch.jsx:136 +#: components/Search/AdvancedSearch.jsx:161 msgid "No results found" msgstr "結果が見つかりません" @@ -5473,7 +5506,7 @@ msgid "No survey questions found." msgstr "Survey の質問は見つかりません。" #: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "No {pluralizedItemName} Found" msgstr "{pluralizedItemName} は見つかりません" @@ -5516,7 +5549,7 @@ msgstr "設定されていません" msgid "Not configured for inventory sync." msgstr "インベントリーの同期に設定されていません。" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:229 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" @@ -5651,8 +5684,8 @@ msgstr "10 月" #: components/AdHocCommands/AdHocDetailsStep.jsx:213 #: components/HostToggle/HostToggle.jsx:56 #: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:184 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5669,8 +5702,8 @@ msgstr "オフ" #: components/AdHocCommands/AdHocDetailsStep.jsx:212 #: components/HostToggle/HostToggle.jsx:55 #: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5710,7 +5743,7 @@ msgstr "曜日" msgid "Only Group By" msgstr "グループ化のみ" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 msgid "OpenStack" msgstr "OpenStack" @@ -5719,7 +5752,7 @@ msgid "Option Details" msgstr "オプションの詳細" #: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:214 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5748,9 +5781,9 @@ msgstr "必要に応じて、ステータスの更新を Webhook サービスに #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 #: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 msgid "Options" msgstr "オプション" @@ -5789,14 +5822,14 @@ msgstr "オプション" #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 #: screens/User/UserTeams/UserTeamList.jsx:183 #: screens/User/UserTeams/UserTeamList.jsx:242 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "組織" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Organization (Name)" msgstr "組織 (名前)" @@ -5823,7 +5856,7 @@ msgstr "組織が見つかりません。" msgid "Organizations" msgstr "組織" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 msgid "Other prompts" msgstr "他のプロンプト" @@ -5872,7 +5905,7 @@ msgstr "Pagerduty サブドメイン" msgid "Pagerduty subdomain" msgstr "Pagerduty サブドメイン" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "ページネーション" @@ -5912,7 +5945,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:235 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 msgid "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." msgstr "追加のコマンドライン変数を Playbook に渡します。これは、ansible-playbook の -e または --extra-vars コマンドラインパラメーターです。YAML または JSON のいずれかを使用してキーと値のペアを指定します。構文のサンプルについては Ansible Tower ドキュメントを参照してください。" @@ -6009,7 +6042,7 @@ msgstr "" #: components/TemplateList/TemplateList.jsx:211 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "Playbook 名" @@ -6026,7 +6059,7 @@ msgid "Please add survey questions." msgstr "Survey の質問を追加してください。" #: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.jsx:90 msgid "Please add {pluralizedItemName} to populate this list" msgstr "{pluralizedItemName} を追加してこのリストに入力してください。" @@ -6080,8 +6113,8 @@ msgstr "ポリシーインスタンスの最小値" msgid "Policy instance percentage" msgstr "ポリシーインスタンスの割合" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:64 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:70 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 msgid "Populate field from an external secret management system" msgstr "外部のシークレット管理システムからフィールドにデータを入力します" @@ -6221,12 +6254,16 @@ msgstr "プロンプト" msgid "Prompt Overrides" msgstr "プロンプトオーバーライド" -#: components/CodeEditor/VariablesField.jsx:219 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: components/CodeEditor/VariablesField.jsx:239 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" msgstr "起動プロンプト" +#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +msgid "Prompt | {0}" +msgstr "" + #: components/PromptDetail/PromptDetail.jsx:146 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 msgid "Prompted Values" @@ -6234,11 +6271,11 @@ msgstr "プロンプト値" #: components/LaunchPrompt/LaunchPrompt.jsx:107 #: components/Schedule/shared/SchedulePromptableFields.jsx:110 -msgid "Prompts" -msgstr "プロンプト" +#~ msgid "Prompts" +#~ msgstr "プロンプト" #: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6287,9 +6324,13 @@ msgstr "" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +#~ msgstr "" + #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 #: screens/Template/shared/JobTemplateForm.jsx:604 @@ -6358,15 +6399,15 @@ msgstr "受信者リスト" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 #: screens/Project/ProjectList/ProjectList.jsx:153 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" @@ -6386,11 +6427,11 @@ msgstr "リダイレクト URI" msgid "Redirect uris" msgstr "リダイレクト URI" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:266 msgid "Redirecting to dashboard" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:270 msgid "Redirecting to subscription detail" msgstr "" @@ -6431,7 +6472,7 @@ msgstr "一致するホスト名のみがインポートされる正規表現。 #: screens/Inventory/Inventories.jsx:79 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:161 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 msgid "Related Groups" msgstr "関連するグループ" @@ -6470,7 +6511,7 @@ msgstr "ホストパラメーターを使用した再起動" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 #: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "リモートアーカイブ" @@ -6588,15 +6629,15 @@ msgstr "戻る" msgid "Return to subscription management." msgstr "" -#: components/Search/AdvancedSearch.jsx:114 +#: components/Search/AdvancedSearch.jsx:118 msgid "Returns results that have values other than this one as well as other filters." msgstr "これ以外の値と他のフィルターが含まれる結果を返します。" -#: components/Search/AdvancedSearch.jsx:104 +#: components/Search/AdvancedSearch.jsx:106 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "このフィルターおよび他のフィルターを満たす結果を返します。何も選択されていない場合は、これがデフォルトのセットタイプです。" -#: components/Search/AdvancedSearch.jsx:109 +#: components/Search/AdvancedSearch.jsx:112 msgid "Returns results that satisfy this one or any other filters." msgstr "この 1 つまたは他のフィルターを満たす結果を返します。" @@ -6664,7 +6705,7 @@ msgstr "ロール" msgid "Roles" msgstr "ロール" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:96 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 #: components/Workflow/WorkflowLinkHelp.jsx:39 #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 @@ -6798,7 +6839,7 @@ msgstr "ログ集計機能をテストする前に、ログ集計を保存して msgid "Save link changes" msgstr "リンクの変更の保存" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:273 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:261 msgid "Save successful!" msgstr "" @@ -6874,12 +6915,12 @@ msgstr "検索" msgid "Search is disabled while the job is running" msgstr "" -#: components/Search/AdvancedSearch.jsx:247 -#: components/Search/Search.jsx:284 +#: components/Search/AdvancedSearch.jsx:275 +#: components/Search/Search.jsx:286 msgid "Search submit button" msgstr "検索送信ボタン" -#: components/Search/Search.jsx:274 +#: components/Search/Search.jsx:275 msgid "Search text input" msgstr "テキスト入力の検索" @@ -6893,14 +6934,14 @@ msgstr "第 2" msgid "Seconds" msgstr "秒" -#: components/LaunchPrompt/steps/PreviewStep.jsx:61 +#: components/LaunchPrompt/steps/PreviewStep.jsx:65 msgid "See errors on the left" msgstr "左側のエラーを参照してください" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 #: components/Lookup/Lookup.jsx:141 -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:33 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 msgid "Select" msgstr "選択" @@ -6911,11 +6952,11 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:232 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "グループの選択" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:258 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 msgid "Select Hosts" msgstr "ホストの選択" @@ -6973,7 +7014,7 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "ワークフローにブランチを選択してください。このブランチは、ブランチを求めるジョブテンプレートノードすべてに適用されます。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:185 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "ワークフローにブランチを選択してください。このブランチは、ブランチを求めるジョブテンプレートノードすべてに適用されます。" @@ -7083,7 +7124,7 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:137 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "ワークフローのインベントリーを選択してください。このインベントリーが、インベントリーをプロンプトするすべてのジョブテンプレートノードに適用されます。" @@ -7183,17 +7224,17 @@ msgstr "そのコマンドを実行するためにリモートホストへのア #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "このインベントリーソースの実行に使用するカスタム Python 仮想環境を選択します。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:204 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 msgid "Select the default execution environment for this organization to run on." msgstr "" #: screens/Organization/shared/OrganizationForm.jsx:96 -msgid "Select the default execution environment for this organization." -msgstr "" +#~ msgid "Select the default execution environment for this organization." +#~ msgstr "" #: screens/Project/shared/ProjectForm.jsx:196 -msgid "Select the default execution environment for this project." -msgstr "" +#~ msgid "Select the default execution environment for this project." +#~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:298 msgid "Select the execution environment for this job template." @@ -7253,6 +7294,7 @@ msgstr "{0} の選択" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 +#: components/CheckboxListItem/CheckboxListItem.jsx:31 #: components/OptionsList/OptionsList.jsx:51 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 @@ -7264,7 +7306,9 @@ msgstr "{0} の選択" #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 #: screens/Host/HostList/HostListItem.jsx:26 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 #: screens/Inventory/InventoryList/InventoryListItem.jsx:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 @@ -7326,15 +7370,15 @@ msgstr "インスタンスをオンラインまたはオフラインに設定し msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "クライアントデバイスのセキュリティーレベルに応じて「公開」または「機密」に設定します。" -#: components/Search/AdvancedSearch.jsx:97 +#: components/Search/AdvancedSearch.jsx:98 msgid "Set type" msgstr "タイプの設定" -#: components/Search/AdvancedSearch.jsx:88 +#: components/Search/AdvancedSearch.jsx:89 msgid "Set type select" msgstr "タイプ選択の設定" -#: components/Search/AdvancedSearch.jsx:91 +#: components/Search/AdvancedSearch.jsx:92 msgid "Set type typeahead" msgstr "タイプ先行入力の設定" @@ -7366,7 +7410,7 @@ msgstr "設定" msgid "Show" msgstr "表示" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:171 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 #: components/PromptDetail/PromptDetail.jsx:243 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 @@ -7384,6 +7428,10 @@ msgstr "すべてのグループの表示" msgid "Show changes" msgstr "変更の表示" +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Show description" +msgstr "" + #: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "簡易表示" @@ -7508,7 +7556,7 @@ msgstr "スマートホストフィルター" msgid "Smart inventory" msgstr "スマートインベントリー" -#: components/LaunchPrompt/steps/PreviewStep.jsx:58 +#: components/LaunchPrompt/steps/PreviewStep.jsx:62 msgid "Some of the previous step(s) have errors" msgstr "前のステップのいくつかにエラーがあります" @@ -7532,7 +7580,7 @@ msgstr "質問の順序の並べ替え" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 #: screens/Inventory/shared/InventorySourceForm.jsx:134 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "ソース" @@ -7545,7 +7593,7 @@ msgstr "ソース" #: screens/Job/JobDetail/JobDetail.jsx:215 #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:137 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 #: screens/Template/shared/JobTemplateForm.jsx:308 msgid "Source Control Branch" msgstr "ソースコントロールブランチ" @@ -7582,7 +7630,7 @@ msgstr "ソースコントロールのタイプ" #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 #: screens/Project/ProjectList/ProjectList.jsx:157 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "ソースコントロールの URL" @@ -7606,7 +7654,7 @@ msgstr "ソース変数" msgid "Source Workflow Job" msgstr "ソースワークフローのジョブ" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:182 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Source control branch" msgstr "ソースコントロールのブランチ" @@ -7623,7 +7671,7 @@ msgstr "発信元の電話番号" msgid "Source variables" msgstr "ソース変数" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Sourced from a project" msgstr "プロジェクトから取得" @@ -7745,9 +7793,9 @@ msgstr "ステータス" msgid "Stdout" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:39 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:52 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:230 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:38 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:51 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:218 msgid "Submit" msgstr "" @@ -7764,7 +7812,7 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:213 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:201 msgid "Subscription" msgstr "" @@ -7772,7 +7820,7 @@ msgstr "" msgid "Subscription Details" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:200 msgid "Subscription Management" msgstr "" @@ -7800,7 +7848,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 #: screens/Project/ProjectList/ProjectList.jsx:151 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "Subversion" @@ -8141,6 +8189,14 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "Grafana サーバーのベース URL。/api/annotations エンドポイントは、ベース Grafana URL に自動的に追加されます。" +#: screens/Organization/shared/OrganizationForm.jsx:96 +msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:196 +msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." +msgstr "" + #: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 msgid "" "The first fetches all references. The second\n" @@ -8331,9 +8387,16 @@ msgstr "" msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" -"Red Hat Insights for Ansible." +"Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#~ msgid "" +#~ "This data is used to enhance\n" +#~ "future releases of the Software and to provide\n" +#~ "Red Hat Insights for Ansible." +#~ msgstr "" + #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 msgid "" "This data is used to enhance\n" @@ -8421,7 +8484,7 @@ msgstr "このフィールドは、指定された認証情報を使用して外 msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:64 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" @@ -8492,7 +8555,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "このワークフローには、ノードが構成されていません。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:255 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8577,6 +8640,7 @@ msgid "Toggle expand/collapse event lines" msgstr "イベント行の展開/折りたたみを切り替え" #: components/HostToggle/HostToggle.jsx:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 msgid "Toggle host" msgstr "ホストの切り替え" @@ -8646,7 +8710,7 @@ msgstr "トークン" msgid "Tools" msgstr "ツール" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.jsx:129 msgid "Top Pagination" msgstr "" @@ -8741,7 +8805,7 @@ msgstr "Twilio" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 #: screens/Team/TeamRoles/TeamRolesList.jsx:181 #: screens/Template/Survey/SurveyListItem.jsx:117 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 #: screens/User/UserRoles/UserRolesList.jsx:155 #: screens/User/UserRoles/UserRolesListItem.jsx:21 @@ -8915,7 +8979,7 @@ msgid "User analytics" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:220 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:208 msgid "User and Insights analytics" msgstr "" @@ -8970,7 +9034,7 @@ msgstr "" msgid "Users" msgstr "ユーザー" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 msgid "VMware vCenter" msgstr "VMware vCenter" @@ -8991,9 +9055,9 @@ msgstr "VMware vCenter" #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 #: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:233 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 msgid "Variables" msgstr "変数" @@ -9014,7 +9078,7 @@ msgid "Verbose" msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:145 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 #: components/PromptDetail/PromptDetail.jsx:191 #: components/PromptDetail/PromptInventorySourceDetail.jsx:100 #: components/PromptDetail/PromptJobTemplateDetail.jsx:134 @@ -9327,14 +9391,14 @@ msgstr "Webhook" msgid "Webhook Credential" msgstr "Webhook の認証情報" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:177 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 msgid "Webhook Credentials" msgstr "Webhook の認証情報" #: components/PromptDetail/PromptJobTemplateDetail.jsx:153 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 #: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook Key" msgstr "Webhook キー" @@ -9342,7 +9406,7 @@ msgstr "Webhook キー" #: components/PromptDetail/PromptJobTemplateDetail.jsx:146 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 #: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "Webhook サービス" @@ -9350,14 +9414,14 @@ msgstr "Webhook サービス" #: components/PromptDetail/PromptJobTemplateDetail.jsx:149 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 #: screens/Template/shared/WebhookSubForm.jsx:163 #: screens/Template/shared/WebhookSubForm.jsx:173 msgid "Webhook URL" msgstr "Webhook URL" #: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:269 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 msgid "Webhook details" msgstr "Webhook の詳細" @@ -9603,11 +9667,11 @@ msgstr "" #~ msgid "You may apply a number of possible variables in the message. Refer to the" #~ msgstr "" -#: components/AppContainer/AppContainer.jsx:237 +#: components/AppContainer/AppContainer.jsx:245 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "非アクティブのため、{0} 秒でログアウトします。" -#: components/AppContainer/AppContainer.jsx:213 +#: components/AppContainer/AppContainer.jsx:221 msgid "Your session is about to expire" msgstr "セッションの有効期限が近づいています" @@ -9631,8 +9695,6 @@ msgstr "新規 Webhook URL は保存時に生成されます。" #: screens/Host/HostGroups/HostGroupItem.jsx:45 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:68 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:58 #: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 msgid "actions" @@ -9647,7 +9709,7 @@ msgstr "" msgid "approved" msgstr "承認" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "brand logo" msgstr "" @@ -9777,7 +9839,7 @@ msgstr "インベントリー" #~ msgid "isolated instance" #~ msgstr "分離インスタンス" -#: components/Pagination/Pagination.jsx:23 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "項目" @@ -9817,15 +9879,15 @@ msgstr "/" msgid "option to the" msgstr "オプション" -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "ページ" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "ページ" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "ページ別" @@ -9871,7 +9933,7 @@ msgid "social login" msgstr "ソーシャルログイン" #: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:193 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 msgid "source control branch" msgstr "" @@ -10003,7 +10065,7 @@ msgstr "{0} ソースが同期に失敗しました。" msgid "{0}: {1}" msgstr "{0}: {1}" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "{brandName} logo" msgstr "" @@ -10056,6 +10118,6 @@ msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedTable/PaginatedTable.jsx:76 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/nl/messages.po b/awx/ui_next/src/locales/nl/messages.po index 6e4a277d8c..90e07f5819 100644 --- a/awx/ui_next/src/locales/nl/messages.po +++ b/awx/ui_next/src/locales/nl/messages.po @@ -19,7 +19,7 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:90 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:92 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 msgid "(Prompt on launch)" msgstr "" @@ -27,11 +27,11 @@ msgstr "" msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:60 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 msgid "- Enable Concurrent Jobs" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:65 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 msgid "- Enable Webhooks" msgstr "" @@ -40,7 +40,7 @@ msgid "/ (project root)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:132 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 #: components/PromptDetail/PromptDetail.jsx:95 #: components/PromptDetail/PromptInventorySourceDetail.jsx:32 #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 @@ -61,7 +61,7 @@ msgid "1 (Info)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:133 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 #: components/PromptDetail/PromptDetail.jsx:96 #: components/PromptDetail/PromptInventorySourceDetail.jsx:33 #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 @@ -77,7 +77,7 @@ msgid "2 (Debug)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 #: components/PromptDetail/PromptDetail.jsx:97 #: components/PromptDetail/PromptInventorySourceDetail.jsx:34 #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 @@ -88,7 +88,7 @@ msgid "2 (More Verbose)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 #: components/PromptDetail/PromptDetail.jsx:98 #: components/PromptDetail/PromptInventorySourceDetail.jsx:35 #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 @@ -99,7 +99,7 @@ msgid "3 (Debug)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 #: components/PromptDetail/PromptDetail.jsx:99 #: components/PromptDetail/PromptInventorySourceDetail.jsx:36 #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 @@ -206,6 +206,8 @@ msgstr "" #: screens/Host/HostList/HostListItem.jsx:42 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 @@ -214,6 +216,8 @@ msgstr "" #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 #: screens/Inventory/InventoryList/InventoryList.jsx:206 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 #: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 @@ -235,10 +239,12 @@ msgstr "" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 #: components/TemplateList/TemplateListItem.jsx:233 #: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:119 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 msgid "Activity" msgstr "" @@ -306,11 +312,11 @@ msgstr "" msgid "Add container group" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 msgid "Add existing group" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 msgid "Add existing host" msgstr "" @@ -326,11 +332,11 @@ msgstr "" msgid "Add job template" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:130 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 msgid "Add new group" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:148 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 msgid "Add new host" msgstr "" @@ -368,11 +374,11 @@ msgstr "" msgid "Advanced" msgstr "" -#: components/Search/AdvancedSearch.jsx:254 +#: components/Search/AdvancedSearch.jsx:282 msgid "Advanced search documentation" msgstr "" -#: components/Search/AdvancedSearch.jsx:237 +#: components/Search/AdvancedSearch.jsx:264 msgid "Advanced search value input" msgstr "" @@ -447,7 +453,7 @@ msgstr "" msgid "Always" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 msgid "Amazon EC2" msgstr "" @@ -455,7 +461,7 @@ msgstr "" msgid "An error occurred" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 msgid "An inventory must be selected" msgstr "" @@ -469,7 +475,7 @@ msgstr "" #~ msgid "Ansible Environment" #~ msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 msgid "Ansible Tower" msgstr "" @@ -675,10 +681,10 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:125 #: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:118 -#: components/Schedule/shared/SchedulePromptableFields.jsx:121 +#: components/LaunchPrompt/LaunchPrompt.jsx:133 +#: components/Schedule/shared/SchedulePromptableFields.jsx:136 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:72 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" @@ -740,7 +746,7 @@ msgstr "" #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" msgstr "" @@ -863,14 +869,14 @@ msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:125 #: components/FormActionGroup/FormActionGroup.jsx:24 #: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 #: components/Lookup/Lookup.jsx:150 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 -#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: components/Schedule/shared/SchedulePromptableFields.jsx:137 #: screens/Credential/shared/CredentialForm.jsx:341 #: screens/Credential/shared/CredentialForm.jsx:346 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 @@ -878,7 +884,7 @@ msgstr "" #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 #: screens/Setting/shared/RevertAllAlert.jsx:32 @@ -951,7 +957,7 @@ msgstr "" msgid "Cancel selected jobs" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:79 msgid "Cancel subscription edit" msgstr "" @@ -995,23 +1001,23 @@ msgstr "" msgid "Capacity" msgstr "" -#: components/Search/AdvancedSearch.jsx:171 +#: components/Search/AdvancedSearch.jsx:185 msgid "Case-insensitive version of contains" msgstr "" -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.jsx:209 msgid "Case-insensitive version of endswith." msgstr "" -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.jsx:173 msgid "Case-insensitive version of exact." msgstr "" -#: components/Search/AdvancedSearch.jsx:201 +#: components/Search/AdvancedSearch.jsx:221 msgid "Case-insensitive version of regex." msgstr "" -#: components/Search/AdvancedSearch.jsx:181 +#: components/Search/AdvancedSearch.jsx:197 msgid "Case-insensitive version of startswith." msgstr "" @@ -1038,16 +1044,16 @@ msgstr "" msgid "Channel" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 #: screens/Template/shared/JobTemplateForm.jsx:181 msgid "Check" msgstr "" -#: components/Search/AdvancedSearch.jsx:226 +#: components/Search/AdvancedSearch.jsx:251 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "" -#: components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:257 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "" @@ -1071,7 +1077,7 @@ msgstr "" msgid "Choose a Webhook Service" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:93 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 #: screens/Template/shared/JobTemplateForm.jsx:174 msgid "Choose a job type" msgstr "" @@ -1294,12 +1300,12 @@ msgstr "" msgid "Container group not found." msgstr "" -#: components/LaunchPrompt/LaunchPrompt.jsx:113 -#: components/Schedule/shared/SchedulePromptableFields.jsx:116 +#: components/LaunchPrompt/LaunchPrompt.jsx:128 +#: components/Schedule/shared/SchedulePromptableFields.jsx:131 msgid "Content Loading" msgstr "" -#: components/AppContainer/AppContainer.jsx:225 +#: components/AppContainer/AppContainer.jsx:233 msgid "Continue" msgstr "" @@ -1313,7 +1319,7 @@ msgstr "" #~ msgid "Control the level of output Ansible will produce for inventory source update jobs." #~ msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:148 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." @@ -1389,7 +1395,7 @@ msgstr "" #~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:225 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Create" msgstr "" @@ -1543,7 +1549,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:182 #: screens/Team/TeamDetail/TeamDetail.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:191 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 #: screens/User/UserDetail/UserDetail.jsx:77 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 #: screens/User/UserTokenList/UserTokenList.jsx:134 @@ -1573,24 +1579,24 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 #: screens/Credential/CredentialList/CredentialList.jsx:132 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 #: screens/Host/HostList/HostList.jsx:156 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 #: screens/Inventory/InventoryList/InventoryList.jsx:184 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 #: screens/Organization/OrganizationList/OrganizationList.jsx:145 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 #: screens/Project/ProjectList/ProjectList.jsx:165 #: screens/Team/TeamList/TeamList.jsx:142 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 msgid "Created By (Username)" msgstr "" @@ -1692,7 +1698,7 @@ msgstr "" msgid "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}" msgstr "" -#: components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:34 msgid "Current page" msgstr "" @@ -1822,7 +1828,7 @@ msgstr "" #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 #: screens/Template/Survey/SurveyList.jsx:104 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1908,7 +1914,7 @@ msgstr "" msgid "Delete Workflow Approval" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 msgid "Delete Workflow Job Template" msgstr "" @@ -2067,10 +2073,10 @@ msgstr "" #: screens/Team/shared/TeamForm.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 #: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 #: screens/User/UserTeams/UserTeamList.jsx:184 @@ -2179,7 +2185,7 @@ msgstr "" #: screens/Setting/Settings.jsx:110 #: screens/Setting/Settings.jsx:113 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:55 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 #: screens/Team/Team.jsx:55 #: screens/Team/Teams.jsx:28 #: screens/Template/Template.jsx:144 @@ -2228,7 +2234,7 @@ msgstr "" msgid "Disassociate group from host?" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:228 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 msgid "Disassociate host from group?" msgstr "" @@ -2236,7 +2242,7 @@ msgstr "" msgid "Disassociate instance from instance group?" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:207 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 msgid "Disassociate related group(s)?" msgstr "" @@ -2275,8 +2281,8 @@ msgstr "" #: components/CodeEditor/VariablesDetail.jsx:112 #: components/CodeEditor/VariablesDetail.jsx:118 -#: components/CodeEditor/VariablesField.jsx:126 -#: components/CodeEditor/VariablesField.jsx:132 +#: components/CodeEditor/VariablesField.jsx:138 +#: components/CodeEditor/VariablesField.jsx:144 msgid "Done" msgstr "" @@ -2366,14 +2372,14 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:100 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2433,15 +2439,16 @@ msgstr "" #: screens/Host/HostGroups/HostGroupItem.jsx:50 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 msgid "Edit Group" msgstr "" #: screens/Host/HostList/HostListItem.jsx:46 #: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:74 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 msgid "Edit Host" msgstr "" @@ -2580,7 +2587,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:261 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Concurrent Jobs" msgstr "" @@ -2599,12 +2606,12 @@ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:558 #: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 msgid "Enable Webhook" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:247 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Enable Webhook for this workflow job template." msgstr "" @@ -2701,7 +2708,7 @@ msgstr "" msgid "End did not match an expected value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:215 msgid "End user license agreement" msgstr "" @@ -2883,7 +2890,7 @@ msgstr "" #: components/JobList/JobList.jsx:281 #: components/JobList/JobList.jsx:292 #: components/LaunchButton/LaunchButton.jsx:173 -#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 @@ -2891,10 +2898,10 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 #: components/Schedule/ScheduleList/ScheduleList.jsx:239 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:76 +#: components/Schedule/shared/SchedulePromptableFields.jsx:74 #: components/TemplateList/TemplateList.jsx:278 #: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: contexts/Config.jsx:74 +#: contexts/Config.jsx:64 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 #: screens/Application/ApplicationsList/ApplicationsList.jsx:191 @@ -2908,14 +2915,14 @@ msgstr "" #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:265 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 #: screens/Inventory/InventoryList/InventoryList.jsx:265 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:239 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 #: screens/Inventory/InventorySources/InventorySourceList.jsx:245 #: screens/Inventory/InventorySources/InventorySourceList.jsx:258 @@ -2938,7 +2945,7 @@ msgstr "" #: screens/Team/TeamRoles/TeamRolesList.jsx:235 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 @@ -2984,7 +2991,7 @@ msgstr "" msgid "Events" msgstr "" -#: components/Search/AdvancedSearch.jsx:156 +#: components/Search/AdvancedSearch.jsx:167 msgid "Exact match (default lookup if not specified)." msgstr "" @@ -3024,7 +3031,7 @@ msgstr "" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 #: components/Lookup/ExecutionEnvironmentLookup.jsx:152 #: components/Lookup/ExecutionEnvironmentLookup.jsx:174 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3077,7 +3084,7 @@ msgid "Expand" msgstr "" #: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:226 +#: components/CodeEditor/VariablesField.jsx:246 msgid "Expand input" msgstr "" @@ -3183,9 +3190,9 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:268 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:243 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 #: screens/User/UserTeams/UserTeamList.jsx:268 msgid "Failed to associate." msgstr "" @@ -3389,7 +3396,7 @@ msgstr "" msgid "Failed to delete workflow approval." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:268 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 msgid "Failed to delete workflow job template." msgstr "" @@ -3408,11 +3415,11 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:250 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 msgid "Failed to disassociate one or more hosts." msgstr "" @@ -3434,7 +3441,7 @@ msgstr "" msgid "Failed to launch job." msgstr "" -#: contexts/Config.jsx:78 +#: contexts/Config.jsx:68 msgid "Failed to retrieve configuration." msgstr "" @@ -3509,11 +3516,11 @@ msgstr "" msgid "February" msgstr "" -#: components/Search/AdvancedSearch.jsx:166 +#: components/Search/AdvancedSearch.jsx:179 msgid "Field contains value." msgstr "" -#: components/Search/AdvancedSearch.jsx:186 +#: components/Search/AdvancedSearch.jsx:203 msgid "Field ends with value." msgstr "" @@ -3521,11 +3528,11 @@ msgstr "" msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" -#: components/Search/AdvancedSearch.jsx:196 +#: components/Search/AdvancedSearch.jsx:215 msgid "Field matches the given regular expression." msgstr "" -#: components/Search/AdvancedSearch.jsx:176 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field starts with value." msgstr "" @@ -3541,7 +3548,7 @@ msgstr "" msgid "File upload rejected. Please select a single .json file." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "File, directory or script" msgstr "" @@ -3580,7 +3587,7 @@ msgstr "" msgid "First name" msgstr "" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.jsx:266 msgid "First, select a key" msgstr "" @@ -3600,7 +3607,7 @@ msgid "" "executing the playbook." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:111 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" @@ -3671,7 +3678,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 #: screens/Project/ProjectList/ProjectList.jsx:150 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "" @@ -3732,23 +3739,23 @@ msgstr "" msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 msgid "Google Compute Engine" msgstr "" @@ -3774,11 +3781,11 @@ msgstr "" msgid "Grafana URL" msgstr "" -#: components/Search/AdvancedSearch.jsx:206 +#: components/Search/AdvancedSearch.jsx:227 msgid "Greater than comparison." msgstr "" -#: components/Search/AdvancedSearch.jsx:211 +#: components/Search/AdvancedSearch.jsx:233 msgid "Greater than or equal to comparison." msgstr "" @@ -3803,7 +3810,7 @@ msgstr "" #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:226 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 msgid "Groups" msgstr "" @@ -3826,6 +3833,11 @@ msgstr "" msgid "Hide" msgstr "" +#: components/LaunchPrompt/LaunchPrompt.jsx:110 +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Hide description" +msgstr "" + #: components/NotificationList/NotificationList.jsx:195 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "Hipchat" @@ -3927,8 +3939,8 @@ msgstr "" #: screens/Inventory/Inventories.jsx:77 #: screens/Inventory/Inventory.jsx:65 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:182 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:252 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 #: screens/Inventory/SmartInventory.jsx:71 @@ -4073,7 +4085,7 @@ msgstr "" #~ msgid "If enabled, run this playbook as an administrator." #~ msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" @@ -4105,7 +4117,7 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" @@ -4218,13 +4230,22 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -msgid "Insights for Ansible" +#~ msgid "Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +msgid "Insights for Ansible Automation Platform" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -msgid "Insights for Ansible dashboard" +msgid "Insights for Ansible Automation Platform dashboard" msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#~ msgid "Insights for Ansible dashboard" +#~ msgstr "" + #: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "" @@ -4323,7 +4344,7 @@ msgstr "" #: components/HostForm/HostForm.jsx:28 #: components/JobList/JobListItem.jsx:180 #: components/LaunchPrompt/steps/InventoryStep.jsx:107 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 #: components/Lookup/InventoryLookup.jsx:85 #: components/Lookup/InventoryLookup.jsx:94 #: components/Lookup/InventoryLookup.jsx:131 @@ -4348,11 +4369,11 @@ msgstr "" #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 msgid "Inventory" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 msgid "Inventory (Name)" msgstr "" @@ -4434,7 +4455,7 @@ msgstr "" msgid "Items" msgstr "" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" @@ -4537,13 +4558,13 @@ msgid "Job Templates with credentials that prompt for passwords cannot be select msgstr "" #: components/JobList/JobList.jsx:185 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:108 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 #: screens/Template/shared/JobTemplateForm.jsx:226 msgid "Job Type" msgstr "" @@ -4600,15 +4621,15 @@ msgstr "" msgid "June" msgstr "" -#: components/Search/AdvancedSearch.jsx:127 +#: components/Search/AdvancedSearch.jsx:132 msgid "Key" msgstr "" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.jsx:123 msgid "Key select" msgstr "" -#: components/Search/AdvancedSearch.jsx:121 +#: components/Search/AdvancedSearch.jsx:126 msgid "Key typeahead" msgstr "" @@ -4679,9 +4700,9 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:306 #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:203 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 #: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:211 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 msgid "Labels" msgstr "" @@ -4774,8 +4795,8 @@ msgstr "" #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:233 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:242 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 msgid "Launch" msgstr "" @@ -4806,6 +4827,10 @@ msgstr "" msgid "Launch workflow" msgstr "" +#: components/LaunchPrompt/LaunchPrompt.jsx:105 +msgid "Launch | {0}" +msgstr "" + #: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "" @@ -4819,7 +4844,11 @@ msgstr "" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -msgid "Learn more about Insights for Ansible" +#~ msgid "Learn more about Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" #: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 @@ -4830,11 +4859,11 @@ msgstr "" msgid "Legend" msgstr "" -#: components/Search/AdvancedSearch.jsx:216 +#: components/Search/AdvancedSearch.jsx:239 msgid "Less than comparison." msgstr "" -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.jsx:245 msgid "Less than or equal to comparison." msgstr "" @@ -4858,8 +4887,9 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 #: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:160 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 msgid "Limit" msgstr "" @@ -4895,8 +4925,8 @@ msgstr "" msgid "Logging settings" msgstr "" -#: components/AppContainer/AppContainer.jsx:168 -#: components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:176 +#: components/AppContainer/AppContainer.jsx:241 #: components/AppContainer/PageHeaderToolbar.jsx:166 msgid "Logout" msgstr "" @@ -4906,15 +4936,15 @@ msgstr "" msgid "Lookup modal" msgstr "" -#: components/Search/AdvancedSearch.jsx:140 +#: components/Search/AdvancedSearch.jsx:150 msgid "Lookup select" msgstr "" -#: components/Search/AdvancedSearch.jsx:149 +#: components/Search/AdvancedSearch.jsx:159 msgid "Lookup type" msgstr "" -#: components/Search/AdvancedSearch.jsx:143 +#: components/Search/AdvancedSearch.jsx:153 msgid "Lookup typeahead" msgstr "" @@ -4981,7 +5011,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 #: screens/Project/ProjectList/ProjectList.jsx:149 #: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" msgstr "" @@ -5028,7 +5058,7 @@ msgstr "" msgid "Metrics" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 msgid "Microsoft Azure Resource Manager" msgstr "" @@ -5086,7 +5116,7 @@ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 #: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" @@ -5113,24 +5143,24 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 #: screens/Credential/CredentialList/CredentialList.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 #: screens/Host/HostList/HostList.jsx:160 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:196 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 #: screens/Inventory/InventoryList/InventoryList.jsx:188 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:175 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 #: screens/Organization/OrganizationList/OrganizationList.jsx:149 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 #: screens/Project/ProjectList/ProjectList.jsx:161 #: screens/Team/TeamList/TeamList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 msgid "Modified By (Username)" msgstr "" @@ -5227,9 +5257,10 @@ msgstr "" #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 +#: components/OptionsList/OptionsList.jsx:72 #: components/PaginatedDataList/PaginatedDataList.jsx:77 #: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PaginatedTable/PaginatedTable.jsx:69 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 @@ -5267,8 +5298,8 @@ msgstr "" #: screens/Credential/CredentialList/CredentialList.jsx:142 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 #: screens/Credential/shared/CredentialForm.jsx:169 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 @@ -5298,8 +5329,9 @@ msgstr "" #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:187 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:202 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 @@ -5313,8 +5345,9 @@ msgstr "" #: screens/Inventory/InventoryList/InventoryList.jsx:194 #: screens/Inventory/InventoryList/InventoryList.jsx:202 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:181 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 #: screens/Inventory/InventorySources/InventorySourceList.jsx:217 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 @@ -5357,18 +5390,18 @@ msgstr "" #: screens/Team/TeamList/TeamListItem.jsx:33 #: screens/Team/shared/TeamForm.jsx:35 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:88 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 #: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:112 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 @@ -5384,7 +5417,7 @@ msgstr "" msgid "Name" msgstr "" -#: components/AppContainer/AppContainer.jsx:181 +#: components/AppContainer/AppContainer.jsx:189 msgid "Navigation" msgstr "" @@ -5410,10 +5443,10 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:80 #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:120 -#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: components/LaunchPrompt/LaunchPrompt.jsx:135 +#: components/Schedule/shared/SchedulePromptableFields.jsx:138 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:61 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" @@ -5466,9 +5499,9 @@ msgstr "" msgid "No result found" msgstr "" -#: components/Search/AdvancedSearch.jsx:99 -#: components/Search/AdvancedSearch.jsx:131 -#: components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:100 +#: components/Search/AdvancedSearch.jsx:136 +#: components/Search/AdvancedSearch.jsx:161 msgid "No results found" msgstr "" @@ -5482,7 +5515,7 @@ msgid "No survey questions found." msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "No {pluralizedItemName} Found" msgstr "" @@ -5525,7 +5558,7 @@ msgstr "" msgid "Not configured for inventory sync." msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:229 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" @@ -5660,8 +5693,8 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:213 #: components/HostToggle/HostToggle.jsx:56 #: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:184 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5678,8 +5711,8 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:212 #: components/HostToggle/HostToggle.jsx:55 #: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5719,7 +5752,7 @@ msgstr "" msgid "Only Group By" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 msgid "OpenStack" msgstr "" @@ -5728,7 +5761,7 @@ msgid "Option Details" msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:214 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5757,9 +5790,9 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 #: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 msgid "Options" msgstr "" @@ -5798,14 +5831,14 @@ msgstr "" #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 #: screens/User/UserTeams/UserTeamList.jsx:183 #: screens/User/UserTeams/UserTeamList.jsx:242 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Organization (Name)" msgstr "" @@ -5832,7 +5865,7 @@ msgstr "" msgid "Organizations" msgstr "" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 msgid "Other prompts" msgstr "" @@ -5881,7 +5914,7 @@ msgstr "" msgid "Pagerduty subdomain" msgstr "" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" @@ -5921,7 +5954,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:235 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 msgid "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." msgstr "" @@ -6018,7 +6051,7 @@ msgstr "" #: components/TemplateList/TemplateList.jsx:211 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "" @@ -6035,7 +6068,7 @@ msgid "Please add survey questions." msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.jsx:90 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" @@ -6089,8 +6122,8 @@ msgstr "" msgid "Policy instance percentage" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:64 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:70 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 msgid "Populate field from an external secret management system" msgstr "" @@ -6230,12 +6263,16 @@ msgstr "" msgid "Prompt Overrides" msgstr "" -#: components/CodeEditor/VariablesField.jsx:219 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: components/CodeEditor/VariablesField.jsx:239 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" msgstr "" +#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +msgid "Prompt | {0}" +msgstr "" + #: components/PromptDetail/PromptDetail.jsx:146 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 msgid "Prompted Values" @@ -6243,11 +6280,11 @@ msgstr "" #: components/LaunchPrompt/LaunchPrompt.jsx:107 #: components/Schedule/shared/SchedulePromptableFields.jsx:110 -msgid "Prompts" -msgstr "" +#~ msgid "Prompts" +#~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6296,9 +6333,13 @@ msgstr "" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +#~ msgstr "" + #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 #: screens/Template/shared/JobTemplateForm.jsx:604 @@ -6367,15 +6408,15 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 #: screens/Project/ProjectList/ProjectList.jsx:153 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 msgid "Red Hat Satellite 6" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 msgid "Red Hat Virtualization" msgstr "" @@ -6395,11 +6436,11 @@ msgstr "" msgid "Redirect uris" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:266 msgid "Redirecting to dashboard" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:270 msgid "Redirecting to subscription detail" msgstr "" @@ -6440,7 +6481,7 @@ msgstr "" #: screens/Inventory/Inventories.jsx:79 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:161 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 msgid "Related Groups" msgstr "" @@ -6479,7 +6520,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 #: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "" @@ -6597,15 +6638,15 @@ msgstr "" msgid "Return to subscription management." msgstr "" -#: components/Search/AdvancedSearch.jsx:114 +#: components/Search/AdvancedSearch.jsx:118 msgid "Returns results that have values other than this one as well as other filters." msgstr "" -#: components/Search/AdvancedSearch.jsx:104 +#: components/Search/AdvancedSearch.jsx:106 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "" -#: components/Search/AdvancedSearch.jsx:109 +#: components/Search/AdvancedSearch.jsx:112 msgid "Returns results that satisfy this one or any other filters." msgstr "" @@ -6673,7 +6714,7 @@ msgstr "" msgid "Roles" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:96 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 #: components/Workflow/WorkflowLinkHelp.jsx:39 #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 @@ -6807,7 +6848,7 @@ msgstr "" msgid "Save link changes" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:273 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:261 msgid "Save successful!" msgstr "" @@ -6883,12 +6924,12 @@ msgstr "" msgid "Search is disabled while the job is running" msgstr "" -#: components/Search/AdvancedSearch.jsx:247 -#: components/Search/Search.jsx:284 +#: components/Search/AdvancedSearch.jsx:275 +#: components/Search/Search.jsx:286 msgid "Search submit button" msgstr "" -#: components/Search/Search.jsx:274 +#: components/Search/Search.jsx:275 msgid "Search text input" msgstr "" @@ -6902,14 +6943,14 @@ msgstr "" msgid "Seconds" msgstr "" -#: components/LaunchPrompt/steps/PreviewStep.jsx:61 +#: components/LaunchPrompt/steps/PreviewStep.jsx:65 msgid "See errors on the left" msgstr "" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 #: components/Lookup/Lookup.jsx:141 -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:33 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 msgid "Select" msgstr "" @@ -6920,11 +6961,11 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:232 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:258 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 msgid "Select Hosts" msgstr "" @@ -6982,7 +7023,7 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:185 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" @@ -7092,7 +7133,7 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:137 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" @@ -7192,17 +7233,17 @@ msgstr "" #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:204 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 msgid "Select the default execution environment for this organization to run on." msgstr "" #: screens/Organization/shared/OrganizationForm.jsx:96 -msgid "Select the default execution environment for this organization." -msgstr "" +#~ msgid "Select the default execution environment for this organization." +#~ msgstr "" #: screens/Project/shared/ProjectForm.jsx:196 -msgid "Select the default execution environment for this project." -msgstr "" +#~ msgid "Select the default execution environment for this project." +#~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:298 msgid "Select the execution environment for this job template." @@ -7262,6 +7303,7 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 +#: components/CheckboxListItem/CheckboxListItem.jsx:31 #: components/OptionsList/OptionsList.jsx:51 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 @@ -7273,7 +7315,9 @@ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 #: screens/Host/HostList/HostListItem.jsx:26 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 #: screens/Inventory/InventoryList/InventoryListItem.jsx:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 @@ -7335,15 +7379,15 @@ msgstr "" msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" -#: components/Search/AdvancedSearch.jsx:97 +#: components/Search/AdvancedSearch.jsx:98 msgid "Set type" msgstr "" -#: components/Search/AdvancedSearch.jsx:88 +#: components/Search/AdvancedSearch.jsx:89 msgid "Set type select" msgstr "" -#: components/Search/AdvancedSearch.jsx:91 +#: components/Search/AdvancedSearch.jsx:92 msgid "Set type typeahead" msgstr "" @@ -7375,7 +7419,7 @@ msgstr "" msgid "Show" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:171 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 #: components/PromptDetail/PromptDetail.jsx:243 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 @@ -7393,6 +7437,10 @@ msgstr "" msgid "Show changes" msgstr "" +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Show description" +msgstr "" + #: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "" @@ -7517,7 +7565,7 @@ msgstr "" msgid "Smart inventory" msgstr "" -#: components/LaunchPrompt/steps/PreviewStep.jsx:58 +#: components/LaunchPrompt/steps/PreviewStep.jsx:62 msgid "Some of the previous step(s) have errors" msgstr "" @@ -7541,7 +7589,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 #: screens/Inventory/shared/InventorySourceForm.jsx:134 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "" @@ -7554,7 +7602,7 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:215 #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:137 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 #: screens/Template/shared/JobTemplateForm.jsx:308 msgid "Source Control Branch" msgstr "" @@ -7591,7 +7639,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 #: screens/Project/ProjectList/ProjectList.jsx:157 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "" @@ -7615,7 +7663,7 @@ msgstr "" msgid "Source Workflow Job" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:182 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Source control branch" msgstr "" @@ -7632,7 +7680,7 @@ msgstr "" msgid "Source variables" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Sourced from a project" msgstr "" @@ -7754,9 +7802,9 @@ msgstr "" msgid "Stdout" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:39 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:52 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:230 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:38 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:51 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:218 msgid "Submit" msgstr "" @@ -7773,7 +7821,7 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:213 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:201 msgid "Subscription" msgstr "" @@ -7781,7 +7829,7 @@ msgstr "" msgid "Subscription Details" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:200 msgid "Subscription Management" msgstr "" @@ -7809,7 +7857,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 #: screens/Project/ProjectList/ProjectList.jsx:151 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "" @@ -8150,6 +8198,14 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "" +#: screens/Organization/shared/OrganizationForm.jsx:96 +msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:196 +msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." +msgstr "" + #: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 msgid "" "The first fetches all references. The second\n" @@ -8340,9 +8396,16 @@ msgstr "" msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" -"Red Hat Insights for Ansible." +"Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#~ msgid "" +#~ "This data is used to enhance\n" +#~ "future releases of the Software and to provide\n" +#~ "Red Hat Insights for Ansible." +#~ msgstr "" + #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 msgid "" "This data is used to enhance\n" @@ -8430,7 +8493,7 @@ msgstr "" msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:64 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" @@ -8501,7 +8564,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:255 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8586,6 +8649,7 @@ msgid "Toggle expand/collapse event lines" msgstr "" #: components/HostToggle/HostToggle.jsx:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 msgid "Toggle host" msgstr "" @@ -8655,7 +8719,7 @@ msgstr "" msgid "Tools" msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.jsx:129 msgid "Top Pagination" msgstr "" @@ -8750,7 +8814,7 @@ msgstr "" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 #: screens/Team/TeamRoles/TeamRolesList.jsx:181 #: screens/Template/Survey/SurveyListItem.jsx:117 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 #: screens/User/UserRoles/UserRolesList.jsx:155 #: screens/User/UserRoles/UserRolesListItem.jsx:21 @@ -8924,7 +8988,7 @@ msgid "User analytics" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:220 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:208 msgid "User and Insights analytics" msgstr "" @@ -8979,7 +9043,7 @@ msgstr "" msgid "Users" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 msgid "VMware vCenter" msgstr "" @@ -9000,9 +9064,9 @@ msgstr "" #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 #: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:233 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 msgid "Variables" msgstr "" @@ -9023,7 +9087,7 @@ msgid "Verbose" msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:145 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 #: components/PromptDetail/PromptDetail.jsx:191 #: components/PromptDetail/PromptInventorySourceDetail.jsx:100 #: components/PromptDetail/PromptJobTemplateDetail.jsx:134 @@ -9336,14 +9400,14 @@ msgstr "" msgid "Webhook Credential" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:177 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 msgid "Webhook Credentials" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:153 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 #: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook Key" msgstr "" @@ -9351,7 +9415,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:146 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 #: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "" @@ -9359,14 +9423,14 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:149 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 #: screens/Template/shared/WebhookSubForm.jsx:163 #: screens/Template/shared/WebhookSubForm.jsx:173 msgid "Webhook URL" msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:269 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 msgid "Webhook details" msgstr "" @@ -9612,11 +9676,11 @@ msgstr "" #~ msgid "You may apply a number of possible variables in the message. Refer to the" #~ msgstr "" -#: components/AppContainer/AppContainer.jsx:237 +#: components/AppContainer/AppContainer.jsx:245 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "" -#: components/AppContainer/AppContainer.jsx:213 +#: components/AppContainer/AppContainer.jsx:221 msgid "Your session is about to expire" msgstr "" @@ -9640,8 +9704,6 @@ msgstr "" #: screens/Host/HostGroups/HostGroupItem.jsx:45 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:68 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:58 #: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 msgid "actions" @@ -9656,7 +9718,7 @@ msgstr "" msgid "approved" msgstr "" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "brand logo" msgstr "" @@ -9790,7 +9852,7 @@ msgstr "" #~ msgid "isolated instance" #~ msgstr "" -#: components/Pagination/Pagination.jsx:23 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" @@ -9834,15 +9896,15 @@ msgstr "" #~ msgid "or attributes of the job such as" #~ msgstr "" -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" @@ -9888,7 +9950,7 @@ msgid "social login" msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:193 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 msgid "source control branch" msgstr "" @@ -10020,7 +10082,7 @@ msgstr "" msgid "{0}: {1}" msgstr "" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "{brandName} logo" msgstr "" @@ -10089,7 +10151,7 @@ msgstr "" #~ msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedTable/PaginatedTable.jsx:76 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/zh/messages.po b/awx/ui_next/src/locales/zh/messages.po index 049590f8c6..31232aff2e 100644 --- a/awx/ui_next/src/locales/zh/messages.po +++ b/awx/ui_next/src/locales/zh/messages.po @@ -18,7 +18,7 @@ msgstr "(限制为前 10)" #: components/TemplateList/TemplateListItem.jsx:90 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:92 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 msgid "(Prompt on launch)" msgstr "(启动时提示)" @@ -26,11 +26,11 @@ msgstr "(启动时提示)" msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "* 此字段将使用指定的凭证从外部 secret 管理系统检索。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:60 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 msgid "- Enable Concurrent Jobs" msgstr "- 启用并发作业" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:65 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 msgid "- Enable Webhooks" msgstr "- 启用 Webhook" @@ -39,7 +39,7 @@ msgid "/ (project root)" msgstr "/ (project root)" #: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:132 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 #: components/PromptDetail/PromptDetail.jsx:95 #: components/PromptDetail/PromptInventorySourceDetail.jsx:32 #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 @@ -60,7 +60,7 @@ msgid "1 (Info)" msgstr "1(信息)" #: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:133 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 #: components/PromptDetail/PromptDetail.jsx:96 #: components/PromptDetail/PromptInventorySourceDetail.jsx:33 #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 @@ -76,7 +76,7 @@ msgid "2 (Debug)" msgstr "2(调试)" #: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 #: components/PromptDetail/PromptDetail.jsx:97 #: components/PromptDetail/PromptInventorySourceDetail.jsx:34 #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 @@ -87,7 +87,7 @@ msgid "2 (More Verbose)" msgstr "2(更多详细内容)" #: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 #: components/PromptDetail/PromptDetail.jsx:98 #: components/PromptDetail/PromptInventorySourceDetail.jsx:35 #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 @@ -98,7 +98,7 @@ msgid "3 (Debug)" msgstr "3(调试)" #: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 #: components/PromptDetail/PromptDetail.jsx:99 #: components/PromptDetail/PromptInventorySourceDetail.jsx:36 #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 @@ -205,6 +205,8 @@ msgstr "操作" #: screens/Host/HostList/HostListItem.jsx:42 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 @@ -213,6 +215,8 @@ msgstr "操作" #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 #: screens/Inventory/InventoryList/InventoryList.jsx:206 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 #: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 @@ -234,10 +238,12 @@ msgstr "操作" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 #: components/TemplateList/TemplateListItem.jsx:233 #: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:119 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 msgid "Activity" msgstr "活动" @@ -305,11 +311,11 @@ msgstr "在这两个节点间添加新节点" msgid "Add container group" msgstr "添加容器组" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 msgid "Add existing group" msgstr "添加现有组" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 msgid "Add existing host" msgstr "添加现有主机" @@ -325,11 +331,11 @@ msgstr "添加清单" msgid "Add job template" msgstr "添加作业模板" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:130 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 msgid "Add new group" msgstr "添加新组" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:148 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 msgid "Add new host" msgstr "添加新主机" @@ -367,11 +373,11 @@ msgstr "管理" msgid "Advanced" msgstr "高级" -#: components/Search/AdvancedSearch.jsx:254 +#: components/Search/AdvancedSearch.jsx:282 msgid "Advanced search documentation" msgstr "" -#: components/Search/AdvancedSearch.jsx:237 +#: components/Search/AdvancedSearch.jsx:264 msgid "Advanced search value input" msgstr "高级搜索值输入" @@ -446,7 +452,7 @@ msgstr "允许的 URI 列表,以空格分开" msgid "Always" msgstr "始终" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 msgid "Amazon EC2" msgstr "Amazon EC2" @@ -454,7 +460,7 @@ msgstr "Amazon EC2" msgid "An error occurred" msgstr "发生错误" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 msgid "An inventory must be selected" msgstr "必须选择一个清单" @@ -468,7 +474,7 @@ msgstr "必须选择一个清单" #~ msgid "Ansible Environment" #~ msgstr "Ansible 环境" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 msgid "Ansible Tower" msgstr "Ansible Tower" @@ -674,10 +680,10 @@ msgstr "Azure AD 设置" #: components/AdHocCommands/AdHocCommandsWizard.jsx:125 #: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:118 -#: components/Schedule/shared/SchedulePromptableFields.jsx:121 +#: components/LaunchPrompt/LaunchPrompt.jsx:133 +#: components/Schedule/shared/SchedulePromptableFields.jsx:136 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:72 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" @@ -739,7 +745,7 @@ msgstr "返回到调度" #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" msgstr "返回到设置" @@ -862,14 +868,14 @@ msgstr "缓存超时(秒)" #: components/DisassociateButton/DisassociateButton.jsx:125 #: components/FormActionGroup/FormActionGroup.jsx:24 #: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 #: components/Lookup/Lookup.jsx:150 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 -#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: components/Schedule/shared/SchedulePromptableFields.jsx:137 #: screens/Credential/shared/CredentialForm.jsx:341 #: screens/Credential/shared/CredentialForm.jsx:346 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 @@ -877,7 +883,7 @@ msgstr "缓存超时(秒)" #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 #: screens/Setting/shared/RevertAllAlert.jsx:32 @@ -950,7 +956,7 @@ msgstr "" msgid "Cancel selected jobs" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:79 msgid "Cancel subscription edit" msgstr "" @@ -994,23 +1000,23 @@ msgstr "" msgid "Capacity" msgstr "容量" -#: components/Search/AdvancedSearch.jsx:171 +#: components/Search/AdvancedSearch.jsx:185 msgid "Case-insensitive version of contains" msgstr "包含不区分大小写的版本。" -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.jsx:209 msgid "Case-insensitive version of endswith." msgstr "结尾不区分大小写的版本。" -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.jsx:173 msgid "Case-insensitive version of exact." msgstr "完全相同不区分大小写的版本。" -#: components/Search/AdvancedSearch.jsx:201 +#: components/Search/AdvancedSearch.jsx:221 msgid "Case-insensitive version of regex." msgstr "regex 不区分大小写的版本。" -#: components/Search/AdvancedSearch.jsx:181 +#: components/Search/AdvancedSearch.jsx:197 msgid "Case-insensitive version of startswith." msgstr "开头不区分大小写的版本。" @@ -1037,16 +1043,16 @@ msgstr "更改" msgid "Channel" msgstr "频道" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 #: screens/Template/shared/JobTemplateForm.jsx:181 msgid "Check" msgstr "检查" -#: components/Search/AdvancedSearch.jsx:226 +#: components/Search/AdvancedSearch.jsx:251 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "检查给定字段或相关对象是否为 null;需要布尔值。" -#: components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:257 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "检查给定字段的值是否出现在提供的列表中;需要一个以逗号分隔的项目列表。" @@ -1070,7 +1076,7 @@ msgstr "选择源控制类型" msgid "Choose a Webhook Service" msgstr "选择 Webhook 服务" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:93 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 #: screens/Template/shared/JobTemplateForm.jsx:174 msgid "Choose a job type" msgstr "选择作业类型" @@ -1293,12 +1299,12 @@ msgstr "容器组" msgid "Container group not found." msgstr "未找到容器组。" -#: components/LaunchPrompt/LaunchPrompt.jsx:113 -#: components/Schedule/shared/SchedulePromptableFields.jsx:116 +#: components/LaunchPrompt/LaunchPrompt.jsx:128 +#: components/Schedule/shared/SchedulePromptableFields.jsx:131 msgid "Content Loading" msgstr "内容加载" -#: components/AppContainer/AppContainer.jsx:225 +#: components/AppContainer/AppContainer.jsx:233 msgid "Continue" msgstr "继续" @@ -1312,7 +1318,7 @@ msgstr "" #~ msgid "Control the level of output Ansible will produce for inventory source update jobs." #~ msgstr "控制 Ansible 为清单源更新作业生成的输出级别。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:148 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." @@ -1388,7 +1394,7 @@ msgstr "" #~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:225 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Create" msgstr "创建" @@ -1542,7 +1548,7 @@ msgstr "创建用户令牌" #: screens/Project/ProjectDetail/ProjectDetail.jsx:182 #: screens/Team/TeamDetail/TeamDetail.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:191 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 #: screens/User/UserDetail/UserDetail.jsx:77 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 #: screens/User/UserTokenList/UserTokenList.jsx:134 @@ -1572,24 +1578,24 @@ msgstr "已创建" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 #: screens/Credential/CredentialList/CredentialList.jsx:132 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 #: screens/Host/HostList/HostList.jsx:156 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 #: screens/Inventory/InventoryList/InventoryList.jsx:184 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 #: screens/Organization/OrganizationList/OrganizationList.jsx:145 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 #: screens/Project/ProjectList/ProjectList.jsx:165 #: screens/Team/TeamList/TeamList.jsx:142 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 msgid "Created By (Username)" msgstr "创建者(用户名)" @@ -1691,7 +1697,7 @@ msgstr "凭证" msgid "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}" msgstr "" -#: components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:34 msgid "Current page" msgstr "当前页" @@ -1821,7 +1827,7 @@ msgstr "定义系统级的特性和功能" #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 #: screens/Template/Survey/SurveyList.jsx:104 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1907,7 +1913,7 @@ msgstr "删除用户令牌" msgid "Delete Workflow Approval" msgstr "删除工作流批准" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 msgid "Delete Workflow Job Template" msgstr "删除工作流作业模板" @@ -2066,10 +2072,10 @@ msgstr "" #: screens/Team/shared/TeamForm.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 #: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 #: screens/User/UserTeams/UserTeamList.jsx:184 @@ -2178,7 +2184,7 @@ msgstr "目标频道或用户" #: screens/Setting/Settings.jsx:110 #: screens/Setting/Settings.jsx:113 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:55 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 #: screens/Team/Team.jsx:55 #: screens/Team/Teams.jsx:28 #: screens/Template/Template.jsx:144 @@ -2227,7 +2233,7 @@ msgstr "解除关联" msgid "Disassociate group from host?" msgstr "从主机中解除关联组?" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:228 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 msgid "Disassociate host from group?" msgstr "从组中解除关联主机?" @@ -2235,7 +2241,7 @@ msgstr "从组中解除关联主机?" msgid "Disassociate instance from instance group?" msgstr "从实例组中解除关联实例?" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:207 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 msgid "Disassociate related group(s)?" msgstr "解除关联相关的组?" @@ -2274,8 +2280,8 @@ msgstr "" #: components/CodeEditor/VariablesDetail.jsx:112 #: components/CodeEditor/VariablesDetail.jsx:118 -#: components/CodeEditor/VariablesField.jsx:126 -#: components/CodeEditor/VariablesField.jsx:132 +#: components/CodeEditor/VariablesField.jsx:138 +#: components/CodeEditor/VariablesField.jsx:144 msgid "Done" msgstr "" @@ -2365,14 +2371,14 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:100 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2432,15 +2438,16 @@ msgstr "" #: screens/Host/HostGroups/HostGroupItem.jsx:50 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 msgid "Edit Group" msgstr "编辑组" #: screens/Host/HostList/HostListItem.jsx:46 #: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:74 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 msgid "Edit Host" msgstr "编辑主机" @@ -2579,7 +2586,7 @@ msgstr "电子邮件选项" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:261 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Concurrent Jobs" msgstr "启用并发作业" @@ -2598,12 +2605,12 @@ msgstr "启用权限升级" #: screens/Template/shared/JobTemplateForm.jsx:558 #: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 msgid "Enable Webhook" msgstr "启用 Webhook" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:247 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Enable Webhook for this workflow job template." msgstr "为此工作流作业模板启用 Webhook。" @@ -2692,7 +2699,7 @@ msgstr "结束日期/时间" msgid "End did not match an expected value" msgstr "结束与预期值不匹配" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:215 msgid "End user license agreement" msgstr "" @@ -2874,7 +2881,7 @@ msgstr "" #: components/JobList/JobList.jsx:281 #: components/JobList/JobList.jsx:292 #: components/LaunchButton/LaunchButton.jsx:173 -#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 @@ -2882,10 +2889,10 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 #: components/Schedule/ScheduleList/ScheduleList.jsx:239 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:76 +#: components/Schedule/shared/SchedulePromptableFields.jsx:74 #: components/TemplateList/TemplateList.jsx:278 #: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: contexts/Config.jsx:74 +#: contexts/Config.jsx:64 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 #: screens/Application/ApplicationsList/ApplicationsList.jsx:191 @@ -2899,14 +2906,14 @@ msgstr "" #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:265 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 #: screens/Inventory/InventoryList/InventoryList.jsx:265 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:239 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 #: screens/Inventory/InventorySources/InventorySourceList.jsx:245 #: screens/Inventory/InventorySources/InventorySourceList.jsx:258 @@ -2929,7 +2936,7 @@ msgstr "" #: screens/Team/TeamRoles/TeamRolesList.jsx:235 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 @@ -2975,7 +2982,7 @@ msgstr "事件摘要不可用" msgid "Events" msgstr "事件" -#: components/Search/AdvancedSearch.jsx:156 +#: components/Search/AdvancedSearch.jsx:167 msgid "Exact match (default lookup if not specified)." msgstr "完全匹配(如果没有指定,则默认查找)。" @@ -3015,7 +3022,7 @@ msgstr "当父节点具有成功状态时执行。" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 #: components/Lookup/ExecutionEnvironmentLookup.jsx:152 #: components/Lookup/ExecutionEnvironmentLookup.jsx:174 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -3068,7 +3075,7 @@ msgid "Expand" msgstr "展开" #: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:226 +#: components/CodeEditor/VariablesField.jsx:246 msgid "Expand input" msgstr "" @@ -3174,9 +3181,9 @@ msgstr "关联角色失败" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:268 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:243 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 #: screens/User/UserTeams/UserTeamList.jsx:268 msgid "Failed to associate." msgstr "关联失败。" @@ -3380,7 +3387,7 @@ msgstr "删除用户失败。" msgid "Failed to delete workflow approval." msgstr "删除工作流批准失败。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:268 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 msgid "Failed to delete workflow job template." msgstr "删除工作流任务模板失败。" @@ -3399,11 +3406,11 @@ msgstr "拒绝工作流批准失败。" #: screens/Host/HostGroups/HostGroupsList.jsx:250 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "解除关联一个或多个组关联。" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 msgid "Failed to disassociate one or more hosts." msgstr "解除关联一个或多个主机失败。" @@ -3425,7 +3432,7 @@ msgstr "获取自定义登录配置设置失败。系统默认设置会被显示 msgid "Failed to launch job." msgstr "启动作业失败。" -#: contexts/Config.jsx:78 +#: contexts/Config.jsx:68 msgid "Failed to retrieve configuration." msgstr "获取配置失败。" @@ -3500,11 +3507,11 @@ msgstr "false" msgid "February" msgstr "2 月" -#: components/Search/AdvancedSearch.jsx:166 +#: components/Search/AdvancedSearch.jsx:179 msgid "Field contains value." msgstr "字段包含值。" -#: components/Search/AdvancedSearch.jsx:186 +#: components/Search/AdvancedSearch.jsx:203 msgid "Field ends with value." msgstr "字段以值结尾。" @@ -3512,11 +3519,11 @@ msgstr "字段以值结尾。" msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "用于传递自定义 Kubernetes 或 OpenShift Pod 规格的字段。" -#: components/Search/AdvancedSearch.jsx:196 +#: components/Search/AdvancedSearch.jsx:215 msgid "Field matches the given regular expression." msgstr "字段与给出的正则表达式匹配。" -#: components/Search/AdvancedSearch.jsx:176 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field starts with value." msgstr "字段以值开头。" @@ -3532,7 +3539,7 @@ msgstr "" msgid "File upload rejected. Please select a single .json file." msgstr "上传文件被拒绝。请选择单个 .json 文件。" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "File, directory or script" msgstr "文件、目录或脚本" @@ -3571,7 +3578,7 @@ msgstr "首次运行" msgid "First name" msgstr "" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.jsx:266 msgid "First, select a key" msgstr "首先,选择一个密钥" @@ -3591,7 +3598,7 @@ msgid "" "executing the playbook." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:111 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" @@ -3662,7 +3669,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 #: screens/Project/ProjectList/ProjectList.jsx:150 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "Git" @@ -3723,23 +3730,23 @@ msgstr "" msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "前往第一页" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "进入最后页" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "进入下一页" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "进入上一页" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 msgid "Google Compute Engine" msgstr "Google Compute Engine" @@ -3765,11 +3772,11 @@ msgstr "Grafana API 密钥" msgid "Grafana URL" msgstr "Grafana URL" -#: components/Search/AdvancedSearch.jsx:206 +#: components/Search/AdvancedSearch.jsx:227 msgid "Greater than comparison." msgstr "大于比较。" -#: components/Search/AdvancedSearch.jsx:211 +#: components/Search/AdvancedSearch.jsx:233 msgid "Greater than or equal to comparison." msgstr "大于或等于比较。" @@ -3794,7 +3801,7 @@ msgstr "组类型" #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:226 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 msgid "Groups" msgstr "组" @@ -3817,6 +3824,11 @@ msgstr "帮助" msgid "Hide" msgstr "隐藏" +#: components/LaunchPrompt/LaunchPrompt.jsx:110 +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Hide description" +msgstr "" + #: components/NotificationList/NotificationList.jsx:195 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "Hipchat" @@ -3918,8 +3930,8 @@ msgstr "此作业的主机状态信息不可用。" #: screens/Inventory/Inventories.jsx:77 #: screens/Inventory/Inventory.jsx:65 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:182 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:252 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 #: screens/Inventory/SmartInventory.jsx:71 @@ -4064,7 +4076,7 @@ msgstr "" #~ msgid "If enabled, run this playbook as an administrator." #~ msgstr "如果启用,则以管理员身份运行此 playbook。" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" @@ -4096,7 +4108,7 @@ msgstr "" #~ msgid "If enabled, simultaneous runs of this job template will be allowed." #~ msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "如果启用,将允许同时运行此工作流作业模板。" @@ -4209,13 +4221,22 @@ msgstr "Insights 凭证" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -msgid "Insights for Ansible" +#~ msgid "Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +msgid "Insights for Ansible Automation Platform" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -msgid "Insights for Ansible dashboard" +msgid "Insights for Ansible Automation Platform dashboard" msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#~ msgid "Insights for Ansible dashboard" +#~ msgstr "" + #: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "Insights 系统 ID" @@ -4314,7 +4335,7 @@ msgstr "无法复制含有源的清单" #: components/HostForm/HostForm.jsx:28 #: components/JobList/JobListItem.jsx:180 #: components/LaunchPrompt/steps/InventoryStep.jsx:107 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 #: components/Lookup/InventoryLookup.jsx:85 #: components/Lookup/InventoryLookup.jsx:94 #: components/Lookup/InventoryLookup.jsx:131 @@ -4339,11 +4360,11 @@ msgstr "无法复制含有源的清单" #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 msgid "Inventory" msgstr "清单" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 msgid "Inventory (Name)" msgstr "清单(名称)" @@ -4425,7 +4446,7 @@ msgstr "" msgid "Items" msgstr "项" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "每页的项" @@ -4528,13 +4549,13 @@ msgid "Job Templates with credentials that prompt for passwords cannot be select msgstr "" #: components/JobList/JobList.jsx:185 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:108 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 #: screens/Template/shared/JobTemplateForm.jsx:226 msgid "Job Type" msgstr "作业类型" @@ -4591,15 +4612,15 @@ msgstr "7 月" msgid "June" msgstr "6 月" -#: components/Search/AdvancedSearch.jsx:127 +#: components/Search/AdvancedSearch.jsx:132 msgid "Key" msgstr "密钥" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.jsx:123 msgid "Key select" msgstr "键选择" -#: components/Search/AdvancedSearch.jsx:121 +#: components/Search/AdvancedSearch.jsx:126 msgid "Key typeahead" msgstr "键 typeahead" @@ -4670,9 +4691,9 @@ msgstr "标签名称" #: components/TemplateList/TemplateListItem.jsx:306 #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:203 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 #: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:211 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 msgid "Labels" msgstr "标签" @@ -4765,8 +4786,8 @@ msgstr "" #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:233 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:242 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 msgid "Launch" msgstr "启动" @@ -4797,6 +4818,10 @@ msgstr "启动模板" msgid "Launch workflow" msgstr "启动工作流" +#: components/LaunchPrompt/LaunchPrompt.jsx:105 +msgid "Launch | {0}" +msgstr "" + #: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "启动者" @@ -4810,7 +4835,11 @@ msgstr "启动者(用户名)" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -msgid "Learn more about Insights for Ansible" +#~ msgid "Learn more about Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" #: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 @@ -4821,11 +4850,11 @@ msgstr "" msgid "Legend" msgstr "图例" -#: components/Search/AdvancedSearch.jsx:216 +#: components/Search/AdvancedSearch.jsx:239 msgid "Less than comparison." msgstr "小于比较。" -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.jsx:245 msgid "Less than or equal to comparison." msgstr "小于或等于比较。" @@ -4849,8 +4878,9 @@ msgstr "小于或等于比较。" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 #: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:160 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 msgid "Limit" msgstr "限制" @@ -4886,8 +4916,8 @@ msgstr "日志记录" msgid "Logging settings" msgstr "日志设置" -#: components/AppContainer/AppContainer.jsx:168 -#: components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:176 +#: components/AppContainer/AppContainer.jsx:241 #: components/AppContainer/PageHeaderToolbar.jsx:166 msgid "Logout" msgstr "退出" @@ -4897,15 +4927,15 @@ msgstr "退出" msgid "Lookup modal" msgstr "查找 modal" -#: components/Search/AdvancedSearch.jsx:140 +#: components/Search/AdvancedSearch.jsx:150 msgid "Lookup select" msgstr "查找选择" -#: components/Search/AdvancedSearch.jsx:149 +#: components/Search/AdvancedSearch.jsx:159 msgid "Lookup type" msgstr "查找类型" -#: components/Search/AdvancedSearch.jsx:143 +#: components/Search/AdvancedSearch.jsx:153 msgid "Lookup typeahead" msgstr "查找 typeahead" @@ -4972,7 +5002,7 @@ msgstr "管理作业" #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 #: screens/Project/ProjectList/ProjectList.jsx:149 #: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" msgstr "手动" @@ -5019,7 +5049,7 @@ msgstr "" msgid "Metrics" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" @@ -5077,7 +5107,7 @@ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 #: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "修改" @@ -5104,24 +5134,24 @@ msgstr "修改" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 #: screens/Credential/CredentialList/CredentialList.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 #: screens/Host/HostList/HostList.jsx:160 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:196 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 #: screens/Inventory/InventoryList/InventoryList.jsx:188 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:175 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 #: screens/Organization/OrganizationList/OrganizationList.jsx:149 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 #: screens/Project/ProjectList/ProjectList.jsx:161 #: screens/Team/TeamList/TeamList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 msgid "Modified By (Username)" msgstr "修改者(用户名)" @@ -5218,9 +5248,10 @@ msgstr "多项选择选项" #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 +#: components/OptionsList/OptionsList.jsx:72 #: components/PaginatedDataList/PaginatedDataList.jsx:77 #: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PaginatedTable/PaginatedTable.jsx:69 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 @@ -5258,8 +5289,8 @@ msgstr "多项选择选项" #: screens/Credential/CredentialList/CredentialList.jsx:142 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 #: screens/Credential/shared/CredentialForm.jsx:169 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 @@ -5289,8 +5320,9 @@ msgstr "多项选择选项" #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:187 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:202 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 @@ -5304,8 +5336,9 @@ msgstr "多项选择选项" #: screens/Inventory/InventoryList/InventoryList.jsx:194 #: screens/Inventory/InventoryList/InventoryList.jsx:202 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:181 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 #: screens/Inventory/InventorySources/InventorySourceList.jsx:217 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 @@ -5348,18 +5381,18 @@ msgstr "多项选择选项" #: screens/Team/TeamList/TeamListItem.jsx:33 #: screens/Team/shared/TeamForm.jsx:35 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:88 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 #: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:112 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 @@ -5375,7 +5408,7 @@ msgstr "多项选择选项" msgid "Name" msgstr "名称" -#: components/AppContainer/AppContainer.jsx:181 +#: components/AppContainer/AppContainer.jsx:189 msgid "Navigation" msgstr "导航" @@ -5401,10 +5434,10 @@ msgstr "新" #: components/AdHocCommands/AdHocCommandsWizard.jsx:80 #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:120 -#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: components/LaunchPrompt/LaunchPrompt.jsx:135 +#: components/Schedule/shared/SchedulePromptableFields.jsx:138 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:61 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "下一" @@ -5457,9 +5490,9 @@ msgstr "没有找到项。" msgid "No result found" msgstr "未找到结果" -#: components/Search/AdvancedSearch.jsx:99 -#: components/Search/AdvancedSearch.jsx:131 -#: components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:100 +#: components/Search/AdvancedSearch.jsx:136 +#: components/Search/AdvancedSearch.jsx:161 msgid "No results found" msgstr "没有找到结果" @@ -5473,7 +5506,7 @@ msgid "No survey questions found." msgstr "没有找到问卷调查问题" #: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "No {pluralizedItemName} Found" msgstr "未找到 {pluralizedItemName}。" @@ -5516,7 +5549,7 @@ msgstr "没有配置" msgid "Not configured for inventory sync." msgstr "没有为清单同步配置。" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:229 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" @@ -5651,8 +5684,8 @@ msgstr "10 月" #: components/AdHocCommands/AdHocDetailsStep.jsx:213 #: components/HostToggle/HostToggle.jsx:56 #: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:184 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5669,8 +5702,8 @@ msgstr "关" #: components/AdHocCommands/AdHocDetailsStep.jsx:212 #: components/HostToggle/HostToggle.jsx:55 #: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5710,7 +5743,7 @@ msgstr "于日" msgid "Only Group By" msgstr "唯一分组标准" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 msgid "OpenStack" msgstr "OpenStack" @@ -5719,7 +5752,7 @@ msgid "Option Details" msgstr "选项详情" #: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:214 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5748,9 +5781,9 @@ msgstr "(可选)选择要用来向 Webhook 服务发回状态更新的凭证 #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 #: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 msgid "Options" msgstr "选项" @@ -5789,14 +5822,14 @@ msgstr "选项" #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 #: screens/User/UserTeams/UserTeamList.jsx:183 #: screens/User/UserTeams/UserTeamList.jsx:242 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "机构" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Organization (Name)" msgstr "机构(名称)" @@ -5823,7 +5856,7 @@ msgstr "未找到机构。" msgid "Organizations" msgstr "机构" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 msgid "Other prompts" msgstr "其他提示" @@ -5872,7 +5905,7 @@ msgstr "Pagerduty 子域" msgid "Pagerduty subdomain" msgstr "Pagerduty 子域" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "分页" @@ -5912,7 +5945,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:235 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 msgid "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." msgstr "向 playbook 传递额外的命令行变量。这是 ansible-playbook 的 -e 或 --extra-vars 命令行参数。使用 YAML 或 JSON 提供键/值对。示例语法请参阅 Ansible Tower 文档。" @@ -6009,7 +6042,7 @@ msgstr "" #: components/TemplateList/TemplateList.jsx:211 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "Playbook 名称" @@ -6026,7 +6059,7 @@ msgid "Please add survey questions." msgstr "请添加问卷调查问题" #: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.jsx:90 msgid "Please add {pluralizedItemName} to populate this list" msgstr "请添加 {pluralizedItemName} 来填充此列表" @@ -6080,8 +6113,8 @@ msgstr "策略实例最小值" msgid "Policy instance percentage" msgstr "策略实例百分比" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:64 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:70 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 msgid "Populate field from an external secret management system" msgstr "从外部 secret 管理系统填充字段" @@ -6221,12 +6254,16 @@ msgstr "提示" msgid "Prompt Overrides" msgstr "提示覆盖" -#: components/CodeEditor/VariablesField.jsx:219 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: components/CodeEditor/VariablesField.jsx:239 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" msgstr "启动时提示" +#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +msgid "Prompt | {0}" +msgstr "" + #: components/PromptDetail/PromptDetail.jsx:146 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 msgid "Prompted Values" @@ -6234,11 +6271,11 @@ msgstr "提示的值" #: components/LaunchPrompt/LaunchPrompt.jsx:107 #: components/Schedule/shared/SchedulePromptableFields.jsx:110 -msgid "Prompts" -msgstr "提示" +#~ msgid "Prompts" +#~ msgstr "提示" #: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6287,9 +6324,13 @@ msgstr "" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +#~ msgstr "" + #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 #: screens/Template/shared/JobTemplateForm.jsx:604 @@ -6358,15 +6399,15 @@ msgstr "接收者列表" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 #: screens/Project/ProjectList/ProjectList.jsx:153 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" @@ -6386,11 +6427,11 @@ msgstr "重定向 URI" msgid "Redirect uris" msgstr "重定向 URI" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:266 msgid "Redirecting to dashboard" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:270 msgid "Redirecting to subscription detail" msgstr "" @@ -6431,7 +6472,7 @@ msgstr "仅导入主机名与这个正则表达式匹配的主机。该过滤器 #: screens/Inventory/Inventories.jsx:79 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:161 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 msgid "Related Groups" msgstr "相关组" @@ -6470,7 +6511,7 @@ msgstr "使用主机参数重新启动" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 #: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "远程归档" @@ -6588,15 +6629,15 @@ msgstr "返回" msgid "Return to subscription management." msgstr "" -#: components/Search/AdvancedSearch.jsx:114 +#: components/Search/AdvancedSearch.jsx:118 msgid "Returns results that have values other than this one as well as other filters." msgstr "返回具有这个以外的值和其他过滤器的结果。" -#: components/Search/AdvancedSearch.jsx:104 +#: components/Search/AdvancedSearch.jsx:106 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "返回满足这个及其他过滤器的结果。如果没有进行选择,这是默认的集合类型。" -#: components/Search/AdvancedSearch.jsx:109 +#: components/Search/AdvancedSearch.jsx:112 msgid "Returns results that satisfy this one or any other filters." msgstr "返回满足这个或任何其他过滤器的结果。" @@ -6664,7 +6705,7 @@ msgstr "角色" msgid "Roles" msgstr "角色" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:96 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 #: components/Workflow/WorkflowLinkHelp.jsx:39 #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 @@ -6798,7 +6839,7 @@ msgstr "在测试日志聚合器前保存并启用日志聚合。" msgid "Save link changes" msgstr "保存链路更改" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:273 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:261 msgid "Save successful!" msgstr "" @@ -6874,12 +6915,12 @@ msgstr "搜索" msgid "Search is disabled while the job is running" msgstr "" -#: components/Search/AdvancedSearch.jsx:247 -#: components/Search/Search.jsx:284 +#: components/Search/AdvancedSearch.jsx:275 +#: components/Search/Search.jsx:286 msgid "Search submit button" msgstr "搜索提交按钮" -#: components/Search/Search.jsx:274 +#: components/Search/Search.jsx:275 msgid "Search text input" msgstr "搜索文本输入" @@ -6893,14 +6934,14 @@ msgstr "秒" msgid "Seconds" msgstr "秒" -#: components/LaunchPrompt/steps/PreviewStep.jsx:61 +#: components/LaunchPrompt/steps/PreviewStep.jsx:65 msgid "See errors on the left" msgstr "在左侧查看错误" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 #: components/Lookup/Lookup.jsx:141 -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:33 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 msgid "Select" msgstr "选择" @@ -6911,11 +6952,11 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:232 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "选择组" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:258 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 msgid "Select Hosts" msgstr "选择主机" @@ -6973,7 +7014,7 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "为工作流选择分支。此分支应用于提示分支的所有作业模板节点" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:185 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "为工作流选择分支。此分支应用于提示分支的所有作业模板节点。" @@ -7083,7 +7124,7 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:137 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "为工作流选择清单。此清单应用于提示清单的所有作业模板节点。" @@ -7183,17 +7224,17 @@ msgstr "选择要在访问远程主机时用来运行命令的凭证。选择包 #~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." #~ msgstr "选择要运行此清单源同步的自定义 Python 虚拟环境。" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:204 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 msgid "Select the default execution environment for this organization to run on." msgstr "" #: screens/Organization/shared/OrganizationForm.jsx:96 -msgid "Select the default execution environment for this organization." -msgstr "" +#~ msgid "Select the default execution environment for this organization." +#~ msgstr "" #: screens/Project/shared/ProjectForm.jsx:196 -msgid "Select the default execution environment for this project." -msgstr "" +#~ msgid "Select the default execution environment for this project." +#~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:298 msgid "Select the execution environment for this job template." @@ -7253,6 +7294,7 @@ msgstr "选择 {0}" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 +#: components/CheckboxListItem/CheckboxListItem.jsx:31 #: components/OptionsList/OptionsList.jsx:51 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 @@ -7264,7 +7306,9 @@ msgstr "选择 {0}" #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 #: screens/Host/HostList/HostListItem.jsx:26 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 #: screens/Inventory/InventoryList/InventoryListItem.jsx:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 @@ -7326,15 +7370,15 @@ msgstr "设置实例在线或离线。如果离线,则不会将作业分配给 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "根据客户端设备的安全情况,设置为公共或机密。" -#: components/Search/AdvancedSearch.jsx:97 +#: components/Search/AdvancedSearch.jsx:98 msgid "Set type" msgstr "设置类型" -#: components/Search/AdvancedSearch.jsx:88 +#: components/Search/AdvancedSearch.jsx:89 msgid "Set type select" msgstr "设置类型选项" -#: components/Search/AdvancedSearch.jsx:91 +#: components/Search/AdvancedSearch.jsx:92 msgid "Set type typeahead" msgstr "设置类型 typeahead" @@ -7366,7 +7410,7 @@ msgstr "设置" msgid "Show" msgstr "显示" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:171 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 #: components/PromptDetail/PromptDetail.jsx:243 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 @@ -7384,6 +7428,10 @@ msgstr "显示所有组" msgid "Show changes" msgstr "显示更改" +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Show description" +msgstr "" + #: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "显示更少" @@ -7508,7 +7556,7 @@ msgstr "智能主机过滤器" msgid "Smart inventory" msgstr "智能清单" -#: components/LaunchPrompt/steps/PreviewStep.jsx:58 +#: components/LaunchPrompt/steps/PreviewStep.jsx:62 msgid "Some of the previous step(s) have errors" msgstr "前面的一些步骤有错误" @@ -7532,7 +7580,7 @@ msgstr "排序问题顺序" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 #: screens/Inventory/shared/InventorySourceForm.jsx:134 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "源" @@ -7545,7 +7593,7 @@ msgstr "源" #: screens/Job/JobDetail/JobDetail.jsx:215 #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:137 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 #: screens/Template/shared/JobTemplateForm.jsx:308 msgid "Source Control Branch" msgstr "源控制分支" @@ -7582,7 +7630,7 @@ msgstr "源控制类型" #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 #: screens/Project/ProjectList/ProjectList.jsx:157 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "源控制 URL" @@ -7606,7 +7654,7 @@ msgstr "源变量" msgid "Source Workflow Job" msgstr "源工作流作业" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:182 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Source control branch" msgstr "源控制分支" @@ -7623,7 +7671,7 @@ msgstr "源电话号码" msgid "Source variables" msgstr "源变量" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Sourced from a project" msgstr "来自项目的源" @@ -7745,9 +7793,9 @@ msgstr "状态" msgid "Stdout" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:39 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:52 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:230 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:38 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:51 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:218 msgid "Submit" msgstr "" @@ -7764,7 +7812,7 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:213 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:201 msgid "Subscription" msgstr "" @@ -7772,7 +7820,7 @@ msgstr "" msgid "Subscription Details" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:200 msgid "Subscription Management" msgstr "" @@ -7800,7 +7848,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 #: screens/Project/ProjectList/ProjectList.jsx:151 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "Subversion" @@ -8141,6 +8189,14 @@ msgstr "" #~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." #~ msgstr "Grafana 服务器的基本 URL - /api/annotations 端点将自动添加到基本 Grafana URL。" +#: screens/Organization/shared/OrganizationForm.jsx:96 +msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:196 +msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." +msgstr "" + #: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 msgid "" "The first fetches all references. The second\n" @@ -8331,9 +8387,16 @@ msgstr "" msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" -"Red Hat Insights for Ansible." +"Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#~ msgid "" +#~ "This data is used to enhance\n" +#~ "future releases of the Software and to provide\n" +#~ "Red Hat Insights for Ansible." +#~ msgstr "" + #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 msgid "" "This data is used to enhance\n" @@ -8421,7 +8484,7 @@ msgstr "此字段将使用指定的凭证从外部 secret 管理系统检索。" msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:64 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" @@ -8492,7 +8555,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "此工作流没有配置任何节点。" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:255 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8577,6 +8640,7 @@ msgid "Toggle expand/collapse event lines" msgstr "切换展开/折叠事件行" #: components/HostToggle/HostToggle.jsx:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 msgid "Toggle host" msgstr "切换主机" @@ -8646,7 +8710,7 @@ msgstr "令牌" msgid "Tools" msgstr "工具" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.jsx:129 msgid "Top Pagination" msgstr "" @@ -8741,7 +8805,7 @@ msgstr "Twilio" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 #: screens/Team/TeamRoles/TeamRolesList.jsx:181 #: screens/Template/Survey/SurveyListItem.jsx:117 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 #: screens/User/UserRoles/UserRolesList.jsx:155 #: screens/User/UserRoles/UserRolesListItem.jsx:21 @@ -8915,7 +8979,7 @@ msgid "User analytics" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:220 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:208 msgid "User and Insights analytics" msgstr "" @@ -8970,7 +9034,7 @@ msgstr "" msgid "Users" msgstr "用户" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 msgid "VMware vCenter" msgstr "VMware vCenter" @@ -8991,9 +9055,9 @@ msgstr "VMware vCenter" #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 #: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:233 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 msgid "Variables" msgstr "变量" @@ -9014,7 +9078,7 @@ msgid "Verbose" msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:145 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 #: components/PromptDetail/PromptDetail.jsx:191 #: components/PromptDetail/PromptInventorySourceDetail.jsx:100 #: components/PromptDetail/PromptJobTemplateDetail.jsx:134 @@ -9327,14 +9391,14 @@ msgstr "Webhook" msgid "Webhook Credential" msgstr "Webhook 凭证" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:177 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 msgid "Webhook Credentials" msgstr "Webhook 凭证" #: components/PromptDetail/PromptJobTemplateDetail.jsx:153 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 #: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook Key" msgstr "Webhook 密钥" @@ -9342,7 +9406,7 @@ msgstr "Webhook 密钥" #: components/PromptDetail/PromptJobTemplateDetail.jsx:146 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 #: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "Webhook 服务" @@ -9350,14 +9414,14 @@ msgstr "Webhook 服务" #: components/PromptDetail/PromptJobTemplateDetail.jsx:149 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 #: screens/Template/shared/WebhookSubForm.jsx:163 #: screens/Template/shared/WebhookSubForm.jsx:173 msgid "Webhook URL" msgstr "Webhook URL" #: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:269 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 msgid "Webhook details" msgstr "Webhook 详情" @@ -9603,11 +9667,11 @@ msgstr "" #~ msgid "You may apply a number of possible variables in the message. Refer to the" #~ msgstr "" -#: components/AppContainer/AppContainer.jsx:237 +#: components/AppContainer/AppContainer.jsx:245 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "因不活跃,您将在 {0} 秒内登出。" -#: components/AppContainer/AppContainer.jsx:213 +#: components/AppContainer/AppContainer.jsx:221 msgid "Your session is about to expire" msgstr "您的会话即将到期" @@ -9631,8 +9695,6 @@ msgstr "在保存时会生成一个新的 WEBHOOK url" #: screens/Host/HostGroups/HostGroupItem.jsx:45 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:68 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:58 #: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 msgid "actions" @@ -9647,7 +9709,7 @@ msgstr "" msgid "approved" msgstr "批准" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "brand logo" msgstr "" @@ -9777,7 +9839,7 @@ msgstr "清单(inventory)" #~ msgid "isolated instance" #~ msgstr "隔离的实例" -#: components/Pagination/Pagination.jsx:23 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "项" @@ -9817,15 +9879,15 @@ msgstr "的" msgid "option to the" msgstr "选项" -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "页" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "页" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "按页面" @@ -9871,7 +9933,7 @@ msgid "social login" msgstr "社交登录" #: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:193 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 msgid "source control branch" msgstr "" @@ -10003,7 +10065,7 @@ msgstr "{0} 同步失败的源。" msgid "{0}: {1}" msgstr "{0}: {1}" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "{brandName} logo" msgstr "" @@ -10056,6 +10118,6 @@ msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedTable/PaginatedTable.jsx:76 msgid "{pluralizedItemName} List" msgstr "" diff --git a/awx/ui_next/src/locales/zu/messages.po b/awx/ui_next/src/locales/zu/messages.po index 06aa5799a4..b255c9943d 100644 --- a/awx/ui_next/src/locales/zu/messages.po +++ b/awx/ui_next/src/locales/zu/messages.po @@ -19,7 +19,7 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:90 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:92 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:93 msgid "(Prompt on launch)" msgstr "" @@ -27,11 +27,11 @@ msgstr "" msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:60 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:61 msgid "- Enable Concurrent Jobs" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:65 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:66 msgid "- Enable Webhooks" msgstr "" @@ -40,7 +40,7 @@ msgid "/ (project root)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:25 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:132 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 #: components/PromptDetail/PromptDetail.jsx:95 #: components/PromptDetail/PromptInventorySourceDetail.jsx:32 #: components/PromptDetail/PromptJobTemplateDetail.jsx:42 @@ -61,7 +61,7 @@ msgid "1 (Info)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:26 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:133 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 #: components/PromptDetail/PromptDetail.jsx:96 #: components/PromptDetail/PromptInventorySourceDetail.jsx:33 #: components/PromptDetail/PromptJobTemplateDetail.jsx:43 @@ -77,7 +77,7 @@ msgid "2 (Debug)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:27 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:134 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 #: components/PromptDetail/PromptDetail.jsx:97 #: components/PromptDetail/PromptInventorySourceDetail.jsx:34 #: components/PromptDetail/PromptJobTemplateDetail.jsx:44 @@ -88,7 +88,7 @@ msgid "2 (More Verbose)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:28 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:135 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 #: components/PromptDetail/PromptDetail.jsx:98 #: components/PromptDetail/PromptInventorySourceDetail.jsx:35 #: components/PromptDetail/PromptJobTemplateDetail.jsx:45 @@ -99,7 +99,7 @@ msgid "3 (Debug)" msgstr "" #: components/AdHocCommands/AdHocCommands.jsx:29 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 #: components/PromptDetail/PromptDetail.jsx:99 #: components/PromptDetail/PromptInventorySourceDetail.jsx:36 #: components/PromptDetail/PromptJobTemplateDetail.jsx:46 @@ -202,6 +202,8 @@ msgstr "" #: screens/Host/HostList/HostListItem.jsx:42 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:244 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:213 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:48 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:39 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:144 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:38 @@ -210,6 +212,8 @@ msgstr "" #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:123 #: screens/Inventory/InventoryList/InventoryList.jsx:206 #: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:220 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:40 #: screens/Inventory/InventorySources/InventorySourceList.jsx:220 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:94 #: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 @@ -231,10 +235,12 @@ msgstr "" #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:49 #: components/TemplateList/TemplateListItem.jsx:233 #: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:212 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:45 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 #: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:100 #: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:119 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:120 msgid "Activity" msgstr "" @@ -302,11 +308,11 @@ msgstr "" msgid "Add container group" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:132 msgid "Add existing group" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:150 msgid "Add existing host" msgstr "" @@ -322,11 +328,11 @@ msgstr "" msgid "Add job template" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:130 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:133 msgid "Add new group" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:148 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:151 msgid "Add new host" msgstr "" @@ -360,11 +366,11 @@ msgstr "" msgid "Advanced" msgstr "" -#: components/Search/AdvancedSearch.jsx:254 +#: components/Search/AdvancedSearch.jsx:282 msgid "Advanced search documentation" msgstr "" -#: components/Search/AdvancedSearch.jsx:237 +#: components/Search/AdvancedSearch.jsx:264 msgid "Advanced search value input" msgstr "" @@ -430,7 +436,7 @@ msgstr "" msgid "Always" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:99 msgid "Amazon EC2" msgstr "" @@ -438,11 +444,11 @@ msgstr "" msgid "An error occurred" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:35 msgid "An inventory must be selected" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:106 msgid "Ansible Tower" msgstr "" @@ -636,10 +642,10 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:125 #: components/AddRole/AddResourceRole.jsx:285 -#: components/LaunchPrompt/LaunchPrompt.jsx:118 -#: components/Schedule/shared/SchedulePromptableFields.jsx:121 +#: components/LaunchPrompt/LaunchPrompt.jsx:133 +#: components/Schedule/shared/SchedulePromptableFields.jsx:136 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:91 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:73 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:72 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" @@ -701,7 +707,7 @@ msgstr "" #: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:29 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:54 msgid "Back to Settings" msgstr "" @@ -816,14 +822,14 @@ msgstr "" #: components/DisassociateButton/DisassociateButton.jsx:125 #: components/FormActionGroup/FormActionGroup.jsx:24 #: components/FormActionGroup/FormActionGroup.jsx:29 -#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/LaunchPrompt/LaunchPrompt.jsx:134 #: components/Lookup/HostFilterLookup.jsx:326 #: components/Lookup/Lookup.jsx:150 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:281 #: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 #: components/Schedule/shared/ScheduleForm.jsx:633 #: components/Schedule/shared/ScheduleForm.jsx:638 -#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: components/Schedule/shared/SchedulePromptableFields.jsx:137 #: screens/Credential/shared/CredentialForm.jsx:341 #: screens/Credential/shared/CredentialForm.jsx:346 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:101 @@ -831,7 +837,7 @@ msgstr "" #: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:107 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:63 #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:66 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:83 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:92 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:98 #: screens/Setting/shared/RevertAllAlert.jsx:32 @@ -904,7 +910,7 @@ msgstr "" msgid "Cancel selected jobs" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:80 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:79 msgid "Cancel subscription edit" msgstr "" @@ -944,23 +950,23 @@ msgstr "" msgid "Capacity" msgstr "" -#: components/Search/AdvancedSearch.jsx:171 +#: components/Search/AdvancedSearch.jsx:185 msgid "Case-insensitive version of contains" msgstr "" -#: components/Search/AdvancedSearch.jsx:191 +#: components/Search/AdvancedSearch.jsx:209 msgid "Case-insensitive version of endswith." msgstr "" -#: components/Search/AdvancedSearch.jsx:161 +#: components/Search/AdvancedSearch.jsx:173 msgid "Case-insensitive version of exact." msgstr "" -#: components/Search/AdvancedSearch.jsx:201 +#: components/Search/AdvancedSearch.jsx:221 msgid "Case-insensitive version of regex." msgstr "" -#: components/Search/AdvancedSearch.jsx:181 +#: components/Search/AdvancedSearch.jsx:197 msgid "Case-insensitive version of startswith." msgstr "" @@ -983,16 +989,16 @@ msgstr "" msgid "Channel" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:102 #: screens/Template/shared/JobTemplateForm.jsx:181 msgid "Check" msgstr "" -#: components/Search/AdvancedSearch.jsx:226 +#: components/Search/AdvancedSearch.jsx:251 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "" -#: components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:257 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "" @@ -1016,7 +1022,7 @@ msgstr "" msgid "Choose a Webhook Service" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:93 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:95 #: screens/Template/shared/JobTemplateForm.jsx:174 msgid "Choose a job type" msgstr "" @@ -1219,12 +1225,12 @@ msgstr "" msgid "Container group not found." msgstr "" -#: components/LaunchPrompt/LaunchPrompt.jsx:113 -#: components/Schedule/shared/SchedulePromptableFields.jsx:116 +#: components/LaunchPrompt/LaunchPrompt.jsx:128 +#: components/Schedule/shared/SchedulePromptableFields.jsx:131 msgid "Content Loading" msgstr "" -#: components/AppContainer/AppContainer.jsx:225 +#: components/AppContainer/AppContainer.jsx:233 msgid "Continue" msgstr "" @@ -1234,7 +1240,7 @@ msgid "" "will produce for inventory source update jobs." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:148 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:150 msgid "" "Control the level of output ansible\n" "will produce as the playbook executes." @@ -1305,7 +1311,7 @@ msgstr "" #~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:382 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:225 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:224 msgid "Create" msgstr "" @@ -1459,7 +1465,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:182 #: screens/Team/TeamDetail/TeamDetail.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:263 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:191 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:193 #: screens/User/UserDetail/UserDetail.jsx:77 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 #: screens/User/UserTokenList/UserTokenList.jsx:134 @@ -1489,24 +1495,24 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 #: screens/Credential/CredentialList/CredentialList.jsx:132 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:98 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:101 #: screens/Host/HostGroups/HostGroupsList.jsx:163 #: screens/Host/HostList/HostList.jsx:156 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:195 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:167 #: screens/Inventory/InventoryList/InventoryList.jsx:184 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:176 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 #: screens/Organization/OrganizationList/OrganizationList.jsx:145 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 #: screens/Project/ProjectList/ProjectList.jsx:165 #: screens/Team/TeamList/TeamList.jsx:142 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:100 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:113 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 msgid "Created By (Username)" msgstr "" @@ -1604,7 +1610,7 @@ msgstr "" msgid "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}" msgstr "" -#: components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:34 msgid "Current page" msgstr "" @@ -1734,7 +1740,7 @@ msgstr "" #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:396 #: screens/Template/Survey/SurveyList.jsx:104 #: screens/Template/Survey/SurveyToolbar.jsx:73 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:259 #: screens/User/UserDetail/UserDetail.jsx:99 #: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 #: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 @@ -1812,7 +1818,7 @@ msgstr "" msgid "Delete Workflow Approval" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:253 msgid "Delete Workflow Job Template" msgstr "" @@ -1967,10 +1973,10 @@ msgstr "" #: screens/Team/shared/TeamForm.jsx:43 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 #: screens/Template/Survey/SurveyQuestionForm.jsx:166 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:116 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 #: screens/Template/shared/JobTemplateForm.jsx:221 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:119 #: screens/User/UserOrganizations/UserOrganizationList.jsx:65 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:15 #: screens/User/UserTeams/UserTeamList.jsx:184 @@ -2079,7 +2085,7 @@ msgstr "" #: screens/Setting/Settings.jsx:110 #: screens/Setting/Settings.jsx:113 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:55 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:61 #: screens/Team/Team.jsx:55 #: screens/Team/Teams.jsx:28 #: screens/Template/Template.jsx:144 @@ -2128,7 +2134,7 @@ msgstr "" msgid "Disassociate group from host?" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:228 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:238 msgid "Disassociate host from group?" msgstr "" @@ -2136,7 +2142,7 @@ msgstr "" msgid "Disassociate instance from instance group?" msgstr "" -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:207 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:212 msgid "Disassociate related group(s)?" msgstr "" @@ -2171,8 +2177,8 @@ msgstr "" #: components/CodeEditor/VariablesDetail.jsx:112 #: components/CodeEditor/VariablesDetail.jsx:118 -#: components/CodeEditor/VariablesField.jsx:126 -#: components/CodeEditor/VariablesField.jsx:132 +#: components/CodeEditor/VariablesField.jsx:138 +#: components/CodeEditor/VariablesField.jsx:144 msgid "Done" msgstr "" @@ -2253,14 +2259,14 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:158 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 #: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:100 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:105 #: screens/Team/TeamDetail/TeamDetail.jsx:51 #: screens/Team/TeamDetail/TeamDetail.jsx:55 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:365 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:367 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 #: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:231 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 #: screens/User/UserDetail/UserDetail.jsx:88 msgid "Edit" @@ -2320,15 +2326,16 @@ msgstr "" #: screens/Host/HostGroups/HostGroupItem.jsx:50 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:46 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:42 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:47 msgid "Edit Group" msgstr "" #: screens/Host/HostList/HostListItem.jsx:46 #: screens/Host/HostList/HostListItem.jsx:50 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:74 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:59 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:62 msgid "Edit Host" msgstr "" @@ -2467,7 +2474,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:64 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:30 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:261 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 msgid "Enable Concurrent Jobs" msgstr "" @@ -2486,12 +2493,12 @@ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:558 #: screens/Template/shared/JobTemplateForm.jsx:561 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:243 msgid "Enable Webhook" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:247 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:246 msgid "Enable Webhook for this workflow job template." msgstr "" @@ -2580,7 +2587,7 @@ msgstr "" msgid "End did not match an expected value" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:227 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:215 msgid "End user license agreement" msgstr "" @@ -2734,7 +2741,7 @@ msgstr "" #: components/JobList/JobList.jsx:281 #: components/JobList/JobList.jsx:292 #: components/LaunchButton/LaunchButton.jsx:173 -#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/LaunchPrompt/LaunchPrompt.jsx:71 #: components/NotificationList/NotificationList.jsx:246 #: components/PaginatedDataList/ToolbarDeleteButton.jsx:205 #: components/ResourceAccessList/ResourceAccessList.jsx:231 @@ -2742,10 +2749,10 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:403 #: components/Schedule/ScheduleList/ScheduleList.jsx:239 #: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:67 -#: components/Schedule/shared/SchedulePromptableFields.jsx:76 +#: components/Schedule/shared/SchedulePromptableFields.jsx:74 #: components/TemplateList/TemplateList.jsx:278 #: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: contexts/Config.jsx:74 +#: contexts/Config.jsx:64 #: screens/Application/ApplicationDetails/ApplicationDetails.jsx:135 #: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 #: screens/Application/ApplicationsList/ApplicationsList.jsx:191 @@ -2759,14 +2766,14 @@ msgstr "" #: screens/InstanceGroup/Instances/InstanceListItem.jsx:229 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:146 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:76 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:265 #: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:276 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:287 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 #: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:114 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:252 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:180 #: screens/Inventory/InventoryList/InventoryList.jsx:265 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:239 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:251 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:290 #: screens/Inventory/InventorySources/InventorySourceList.jsx:245 #: screens/Inventory/InventorySources/InventorySourceList.jsx:258 @@ -2789,7 +2796,7 @@ msgstr "" #: screens/Team/TeamRoles/TeamRolesList.jsx:235 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 #: screens/Template/TemplateSurvey.jsx:130 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:267 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 @@ -2835,7 +2842,7 @@ msgstr "" msgid "Events" msgstr "" -#: components/Search/AdvancedSearch.jsx:156 +#: components/Search/AdvancedSearch.jsx:167 msgid "Exact match (default lookup if not specified)." msgstr "" @@ -2875,7 +2882,7 @@ msgstr "" #: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 #: components/Lookup/ExecutionEnvironmentLookup.jsx:152 #: components/Lookup/ExecutionEnvironmentLookup.jsx:174 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 msgid "Execution Environment" msgstr "" @@ -2928,7 +2935,7 @@ msgid "Expand" msgstr "" #: components/CodeEditor/VariablesDetail.jsx:195 -#: components/CodeEditor/VariablesField.jsx:226 +#: components/CodeEditor/VariablesField.jsx:246 msgid "Expand input" msgstr "" @@ -3034,9 +3041,9 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:249 #: screens/InstanceGroup/Instances/InstanceList.jsx:234 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:268 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:256 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:243 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:255 #: screens/User/UserTeams/UserTeamList.jsx:268 msgid "Failed to associate." msgstr "" @@ -3240,7 +3247,7 @@ msgstr "" msgid "Failed to delete workflow approval." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:268 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:270 msgid "Failed to delete workflow job template." msgstr "" @@ -3259,11 +3266,11 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:250 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:257 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:256 msgid "Failed to disassociate one or more groups." msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:279 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:290 msgid "Failed to disassociate one or more hosts." msgstr "" @@ -3285,7 +3292,7 @@ msgstr "" msgid "Failed to launch job." msgstr "" -#: contexts/Config.jsx:78 +#: contexts/Config.jsx:68 msgid "Failed to retrieve configuration." msgstr "" @@ -3360,11 +3367,11 @@ msgstr "" msgid "February" msgstr "" -#: components/Search/AdvancedSearch.jsx:166 +#: components/Search/AdvancedSearch.jsx:179 msgid "Field contains value." msgstr "" -#: components/Search/AdvancedSearch.jsx:186 +#: components/Search/AdvancedSearch.jsx:203 msgid "Field ends with value." msgstr "" @@ -3372,11 +3379,11 @@ msgstr "" msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" -#: components/Search/AdvancedSearch.jsx:196 +#: components/Search/AdvancedSearch.jsx:215 msgid "Field matches the given regular expression." msgstr "" -#: components/Search/AdvancedSearch.jsx:176 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field starts with value." msgstr "" @@ -3392,7 +3399,7 @@ msgstr "" msgid "File upload rejected. Please select a single .json file." msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "File, directory or script" msgstr "" @@ -3431,7 +3438,7 @@ msgstr "" msgid "First name" msgstr "" -#: components/Search/AdvancedSearch.jsx:239 +#: components/Search/AdvancedSearch.jsx:266 msgid "First, select a key" msgstr "" @@ -3451,7 +3458,7 @@ msgid "" "executing the playbook." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:111 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:113 msgid "" "For job templates, select run to execute the playbook.\n" "Select check to only check playbook syntax, test environment setup,\n" @@ -3517,7 +3524,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 #: screens/Project/ProjectList/ProjectList.jsx:150 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:98 msgid "Git" msgstr "" @@ -3578,23 +3585,23 @@ msgstr "" msgid "Globally available execution environment can not be reassigned to a specific Organization" msgstr "" -#: components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: components/Pagination/Pagination.jsx:31 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:100 msgid "Google Compute Engine" msgstr "" @@ -3620,11 +3627,11 @@ msgstr "" msgid "Grafana URL" msgstr "" -#: components/Search/AdvancedSearch.jsx:206 +#: components/Search/AdvancedSearch.jsx:227 msgid "Greater than comparison." msgstr "" -#: components/Search/AdvancedSearch.jsx:211 +#: components/Search/AdvancedSearch.jsx:233 msgid "Greater than or equal to comparison." msgstr "" @@ -3649,7 +3656,7 @@ msgstr "" #: screens/Inventory/InventoryHost/InventoryHost.jsx:83 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:239 #: screens/Inventory/InventoryList/InventoryListItem.jsx:104 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:226 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:238 #: util/getRelatedResourceDeleteDetails.js:125 msgid "Groups" msgstr "" @@ -3672,6 +3679,11 @@ msgstr "" msgid "Hide" msgstr "" +#: components/LaunchPrompt/LaunchPrompt.jsx:110 +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Hide description" +msgstr "" + #: components/NotificationList/NotificationList.jsx:195 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "Hipchat" @@ -3773,8 +3785,8 @@ msgstr "" #: screens/Inventory/Inventories.jsx:77 #: screens/Inventory/Inventory.jsx:65 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:68 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:182 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:252 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:185 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 #: screens/Inventory/InventoryHosts/InventoryHostList.jsx:151 #: screens/Inventory/SmartInventory.jsx:71 @@ -3905,7 +3917,7 @@ msgid "" "administrator." msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 msgid "" "If enabled, show the changes made\n" "by Ansible tasks, where supported. This is equivalent to Ansible’s\n" @@ -3929,7 +3941,7 @@ msgid "" "template will be allowed." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:260 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:259 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" @@ -4034,13 +4046,22 @@ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 -msgid "Insights for Ansible" +#~ msgid "Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:82 +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:83 +msgid "Insights for Ansible Automation Platform" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 -msgid "Insights for Ansible dashboard" +msgid "Insights for Ansible Automation Platform dashboard" msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:122 +#~ msgid "Insights for Ansible dashboard" +#~ msgstr "" + #: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "" @@ -4139,7 +4160,7 @@ msgstr "" #: components/HostForm/HostForm.jsx:28 #: components/JobList/JobListItem.jsx:180 #: components/LaunchPrompt/steps/InventoryStep.jsx:107 -#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:48 #: components/Lookup/InventoryLookup.jsx:85 #: components/Lookup/InventoryLookup.jsx:94 #: components/Lookup/InventoryLookup.jsx:131 @@ -4164,11 +4185,11 @@ msgstr "" #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:157 msgid "Inventory" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 msgid "Inventory (Name)" msgstr "" @@ -4250,7 +4271,7 @@ msgstr "" msgid "Items" msgstr "" -#: components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" @@ -4353,13 +4374,13 @@ msgid "Job Templates with credentials that prompt for passwords cannot be select msgstr "" #: components/JobList/JobList.jsx:185 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:108 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:110 #: components/PromptDetail/PromptDetail.jsx:151 #: components/PromptDetail/PromptJobTemplateDetail.jsx:85 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:283 #: screens/Job/JobDetail/JobDetail.jsx:156 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:154 #: screens/Template/shared/JobTemplateForm.jsx:226 msgid "Job Type" msgstr "" @@ -4416,15 +4437,15 @@ msgstr "" msgid "June" msgstr "" -#: components/Search/AdvancedSearch.jsx:127 +#: components/Search/AdvancedSearch.jsx:132 msgid "Key" msgstr "" -#: components/Search/AdvancedSearch.jsx:118 +#: components/Search/AdvancedSearch.jsx:123 msgid "Key select" msgstr "" -#: components/Search/AdvancedSearch.jsx:121 +#: components/Search/AdvancedSearch.jsx:126 msgid "Key typeahead" msgstr "" @@ -4495,9 +4516,9 @@ msgstr "" #: components/TemplateList/TemplateListItem.jsx:306 #: screens/Job/JobDetail/JobDetail.jsx:277 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:291 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:203 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 #: screens/Template/shared/JobTemplateForm.jsx:368 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:211 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:210 msgid "Labels" msgstr "" @@ -4590,8 +4611,8 @@ msgstr "" #: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:57 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:233 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:242 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:244 msgid "Launch" msgstr "" @@ -4622,6 +4643,10 @@ msgstr "" msgid "Launch workflow" msgstr "" +#: components/LaunchPrompt/LaunchPrompt.jsx:105 +msgid "Launch | {0}" +msgstr "" + #: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "" @@ -4635,7 +4660,11 @@ msgstr "" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 -msgid "Learn more about Insights for Ansible" +#~ msgid "Learn more about Insights for Ansible" +#~ msgstr "" + +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:131 +msgid "Learn more about Insights for Ansible Automation Platform" msgstr "" #: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:77 @@ -4646,11 +4675,11 @@ msgstr "" msgid "Legend" msgstr "" -#: components/Search/AdvancedSearch.jsx:216 +#: components/Search/AdvancedSearch.jsx:239 msgid "Less than comparison." msgstr "" -#: components/Search/AdvancedSearch.jsx:221 +#: components/Search/AdvancedSearch.jsx:245 msgid "Less than or equal to comparison." msgstr "" @@ -4674,8 +4703,9 @@ msgstr "" #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:311 #: screens/Job/JobDetail/JobDetail.jsx:221 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 #: screens/Template/shared/JobTemplateForm.jsx:417 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:160 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:159 msgid "Limit" msgstr "" @@ -4711,8 +4741,8 @@ msgstr "" msgid "Logging settings" msgstr "" -#: components/AppContainer/AppContainer.jsx:168 -#: components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:176 +#: components/AppContainer/AppContainer.jsx:241 #: components/AppContainer/PageHeaderToolbar.jsx:166 msgid "Logout" msgstr "" @@ -4722,15 +4752,15 @@ msgstr "" msgid "Lookup modal" msgstr "" -#: components/Search/AdvancedSearch.jsx:140 +#: components/Search/AdvancedSearch.jsx:150 msgid "Lookup select" msgstr "" -#: components/Search/AdvancedSearch.jsx:149 +#: components/Search/AdvancedSearch.jsx:159 msgid "Lookup type" msgstr "" -#: components/Search/AdvancedSearch.jsx:143 +#: components/Search/AdvancedSearch.jsx:153 msgid "Lookup typeahead" msgstr "" @@ -4797,7 +4827,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:147 #: screens/Project/ProjectList/ProjectList.jsx:149 #: screens/Project/ProjectList/ProjectListItem.jsx:154 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Manual" msgstr "" @@ -4844,7 +4874,7 @@ msgstr "" msgid "Metrics" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:101 msgid "Microsoft Azure Resource Manager" msgstr "" @@ -4894,7 +4924,7 @@ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:196 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:198 #: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" @@ -4921,24 +4951,24 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 #: screens/Credential/CredentialList/CredentialList.jsx:136 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:102 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:140 #: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:105 #: screens/Host/HostGroups/HostGroupsList.jsx:167 #: screens/Host/HostList/HostList.jsx:160 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:196 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:199 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:171 #: screens/Inventory/InventoryList/InventoryList.jsx:188 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:175 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 #: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 #: screens/Organization/OrganizationList/OrganizationList.jsx:149 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 #: screens/Project/ProjectList/ProjectList.jsx:161 #: screens/Team/TeamList/TeamList.jsx:146 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:109 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:113 msgid "Modified By (Username)" msgstr "" @@ -5035,9 +5065,10 @@ msgstr "" #: components/NotificationList/NotificationList.jsx:181 #: components/NotificationList/NotificationList.jsx:218 #: components/NotificationList/NotificationListItem.jsx:25 +#: components/OptionsList/OptionsList.jsx:72 #: components/PaginatedDataList/PaginatedDataList.jsx:77 #: components/PaginatedDataList/PaginatedDataList.jsx:86 -#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PaginatedTable/PaginatedTable.jsx:69 #: components/PromptDetail/PromptDetail.jsx:109 #: components/ResourceAccessList/ResourceAccessListItem.jsx:57 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 @@ -5075,8 +5106,8 @@ msgstr "" #: screens/Credential/CredentialList/CredentialList.jsx:142 #: screens/Credential/CredentialList/CredentialListItem.jsx:55 #: screens/Credential/shared/CredentialForm.jsx:169 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:73 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:93 #: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 #: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:183 @@ -5106,8 +5137,9 @@ msgstr "" #: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 #: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 #: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:187 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:202 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:190 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:205 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:211 #: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:34 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 #: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:143 @@ -5121,8 +5153,9 @@ msgstr "" #: screens/Inventory/InventoryList/InventoryList.jsx:194 #: screens/Inventory/InventoryList/InventoryList.jsx:202 #: screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:181 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:171 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:219 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:194 #: screens/Inventory/InventorySources/InventorySourceList.jsx:217 #: screens/Inventory/InventorySources/InventorySourceListItem.jsx:64 @@ -5165,18 +5198,18 @@ msgstr "" #: screens/Team/TeamList/TeamListItem.jsx:33 #: screens/Team/shared/TeamForm.jsx:35 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:115 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:70 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:71 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:91 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:161 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:88 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:96 #: screens/Template/shared/JobTemplateForm.jsx:213 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:112 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:111 #: screens/User/UserOrganizations/UserOrganizationList.jsx:60 #: screens/User/UserOrganizations/UserOrganizationList.jsx:64 #: screens/User/UserOrganizations/UserOrganizationListItem.jsx:10 @@ -5192,7 +5225,7 @@ msgstr "" msgid "Name" msgstr "" -#: components/AppContainer/AppContainer.jsx:181 +#: components/AppContainer/AppContainer.jsx:189 msgid "Navigation" msgstr "" @@ -5218,10 +5251,10 @@ msgstr "" #: components/AdHocCommands/AdHocCommandsWizard.jsx:80 #: components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: components/LaunchPrompt/LaunchPrompt.jsx:120 -#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: components/LaunchPrompt/LaunchPrompt.jsx:135 +#: components/Schedule/shared/SchedulePromptableFields.jsx:138 #: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:62 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:61 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" @@ -5274,9 +5307,9 @@ msgstr "" msgid "No result found" msgstr "" -#: components/Search/AdvancedSearch.jsx:99 -#: components/Search/AdvancedSearch.jsx:131 -#: components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:100 +#: components/Search/AdvancedSearch.jsx:136 +#: components/Search/AdvancedSearch.jsx:161 msgid "No results found" msgstr "" @@ -5290,7 +5323,7 @@ msgid "No survey questions found." msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:94 -#: components/PaginatedTable/PaginatedTable.jsx:78 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "No {pluralizedItemName} Found" msgstr "" @@ -5333,7 +5366,7 @@ msgstr "" msgid "Not configured for inventory sync." msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:229 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:239 msgid "" "Note that only hosts directly in this group can\n" "be disassociated. Hosts in sub-groups must be disassociated\n" @@ -5448,8 +5481,8 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:213 #: components/HostToggle/HostToggle.jsx:56 #: components/InstanceToggle/InstanceToggle.jsx:51 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:184 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:186 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5466,8 +5499,8 @@ msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:212 #: components/HostToggle/HostToggle.jsx:55 #: components/InstanceToggle/InstanceToggle.jsx:50 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:181 #: components/LaunchPrompt/steps/OtherPromptsStep.jsx:183 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 #: components/PromptDetail/PromptDetail.jsx:244 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 @@ -5507,7 +5540,7 @@ msgstr "" msgid "Only Group By" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 msgid "OpenStack" msgstr "" @@ -5516,7 +5549,7 @@ msgid "Option Details" msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:371 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:214 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:213 msgid "" "Optional labels that describe this job template,\n" "such as 'dev' or 'test'. Labels can be used to group and filter\n" @@ -5540,9 +5573,9 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:164 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:190 #: screens/Template/shared/JobTemplateForm.jsx:527 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:237 msgid "Options" msgstr "" @@ -5581,14 +5614,14 @@ msgstr "" #: screens/Team/TeamList/TeamListItem.jsx:38 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:125 #: screens/User/UserTeams/UserTeamList.jsx:183 #: screens/User/UserTeams/UserTeamList.jsx:242 #: screens/User/UserTeams/UserTeamListItem.jsx:23 msgid "Organization" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Organization (Name)" msgstr "" @@ -5615,7 +5648,7 @@ msgstr "" msgid "Organizations" msgstr "" -#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:83 msgid "Other prompts" msgstr "" @@ -5664,7 +5697,7 @@ msgstr "" msgid "Pagerduty subdomain" msgstr "" -#: components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" @@ -5704,7 +5737,7 @@ msgid "" "documentation for example syntax." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:235 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:234 msgid "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." msgstr "" @@ -5801,7 +5834,7 @@ msgstr "" #: components/TemplateList/TemplateList.jsx:211 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 msgid "Playbook name" msgstr "" @@ -5818,7 +5851,7 @@ msgid "Please add survey questions." msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:93 -#: components/PaginatedTable/PaginatedTable.jsx:91 +#: components/PaginatedTable/PaginatedTable.jsx:90 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" @@ -5872,8 +5905,8 @@ msgstr "" msgid "Policy instance percentage" msgstr "" -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:64 -#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:70 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:56 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:62 msgid "Populate field from an external secret management system" msgstr "" @@ -6009,12 +6042,16 @@ msgstr "" msgid "Prompt Overrides" msgstr "" -#: components/CodeEditor/VariablesField.jsx:219 -#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: components/CodeEditor/VariablesField.jsx:239 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:46 #: screens/Credential/CredentialDetail/CredentialDetail.jsx:168 msgid "Prompt on launch" msgstr "" +#: components/Schedule/shared/SchedulePromptableFields.jsx:108 +msgid "Prompt | {0}" +msgstr "" + #: components/PromptDetail/PromptDetail.jsx:146 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:279 msgid "Prompted Values" @@ -6022,11 +6059,11 @@ msgstr "" #: components/LaunchPrompt/LaunchPrompt.jsx:107 #: components/Schedule/shared/SchedulePromptableFields.jsx:110 -msgid "Prompts" -msgstr "" +#~ msgid "Prompts" +#~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:420 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:163 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:162 msgid "" "Provide a host pattern to further constrain\n" "the list of hosts that will be managed or affected by the\n" @@ -6065,9 +6102,13 @@ msgstr "" #~ msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 -msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:94 +#~ msgid "Provide your Red Hat or Red Hat Satellite credentials to enable Insights for Ansible." +#~ msgstr "" + #: components/PromptDetail/PromptJobTemplateDetail.jsx:142 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 #: screens/Template/shared/JobTemplateForm.jsx:604 @@ -6136,15 +6177,15 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 #: screens/Project/ProjectList/ProjectList.jsx:153 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 msgid "Red Hat Insights" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:103 msgid "Red Hat Satellite 6" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:105 msgid "Red Hat Virtualization" msgstr "" @@ -6164,11 +6205,11 @@ msgstr "" msgid "Redirect uris" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:278 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:266 msgid "Redirecting to dashboard" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:282 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:270 msgid "Redirecting to subscription detail" msgstr "" @@ -6205,7 +6246,7 @@ msgstr "" #: screens/Inventory/Inventories.jsx:79 #: screens/Inventory/InventoryGroup/InventoryGroup.jsx:63 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:161 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:166 msgid "Related Groups" msgstr "" @@ -6244,7 +6285,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 #: screens/Project/ProjectList/ProjectList.jsx:152 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:100 msgid "Remote Archive" msgstr "" @@ -6358,15 +6399,15 @@ msgstr "" msgid "Return to subscription management." msgstr "" -#: components/Search/AdvancedSearch.jsx:114 +#: components/Search/AdvancedSearch.jsx:118 msgid "Returns results that have values other than this one as well as other filters." msgstr "" -#: components/Search/AdvancedSearch.jsx:104 +#: components/Search/AdvancedSearch.jsx:106 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "" -#: components/Search/AdvancedSearch.jsx:109 +#: components/Search/AdvancedSearch.jsx:112 msgid "Returns results that satisfy this one or any other filters." msgstr "" @@ -6434,7 +6475,7 @@ msgstr "" msgid "Roles" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:96 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:98 #: components/Workflow/WorkflowLinkHelp.jsx:39 #: screens/Credential/shared/ExternalTestModal.jsx:89 #: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 @@ -6568,7 +6609,7 @@ msgstr "" msgid "Save link changes" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:273 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:261 msgid "Save successful!" msgstr "" @@ -6644,12 +6685,12 @@ msgstr "" msgid "Search is disabled while the job is running" msgstr "" -#: components/Search/AdvancedSearch.jsx:247 -#: components/Search/Search.jsx:284 +#: components/Search/AdvancedSearch.jsx:275 +#: components/Search/Search.jsx:286 msgid "Search submit button" msgstr "" -#: components/Search/Search.jsx:274 +#: components/Search/Search.jsx:275 msgid "Search text input" msgstr "" @@ -6663,14 +6704,14 @@ msgstr "" msgid "Seconds" msgstr "" -#: components/LaunchPrompt/steps/PreviewStep.jsx:61 +#: components/LaunchPrompt/steps/PreviewStep.jsx:65 msgid "See errors on the left" msgstr "" #: components/JobList/JobListItem.jsx:68 #: components/Lookup/HostFilterLookup.jsx:318 #: components/Lookup/Lookup.jsx:141 -#: components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:33 #: screens/Setting/Subscription/SubscriptionEdit/SubscriptionModal.jsx:89 msgid "Select" msgstr "" @@ -6681,11 +6722,11 @@ msgstr "" #: screens/Host/HostGroups/HostGroupsList.jsx:238 #: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:232 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:244 msgid "Select Groups" msgstr "" -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:258 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:269 msgid "Select Hosts" msgstr "" @@ -6739,7 +6780,7 @@ msgstr "" msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:185 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:184 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" @@ -6849,7 +6890,7 @@ msgstr "" msgid "Select an instance and a metric to show chart" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:137 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:136 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" @@ -6937,17 +6978,17 @@ msgstr "" msgid "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." msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:204 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:203 msgid "Select the default execution environment for this organization to run on." msgstr "" #: screens/Organization/shared/OrganizationForm.jsx:96 -msgid "Select the default execution environment for this organization." -msgstr "" +#~ msgid "Select the default execution environment for this organization." +#~ msgstr "" #: screens/Project/shared/ProjectForm.jsx:196 -msgid "Select the default execution environment for this project." -msgstr "" +#~ msgid "Select the default execution environment for this project." +#~ msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:298 msgid "Select the execution environment for this job template." @@ -6994,6 +7035,7 @@ msgstr "" #: components/AddRole/AddResourceRole.jsx:243 #: components/AddRole/AddResourceRole.jsx:260 #: components/AddRole/SelectRoleStep.jsx:27 +#: components/CheckboxListItem/CheckboxListItem.jsx:31 #: components/OptionsList/OptionsList.jsx:51 #: components/Schedule/ScheduleList/ScheduleListItem.jsx:75 #: components/TemplateList/TemplateListItem.jsx:124 @@ -7005,7 +7047,9 @@ msgstr "" #: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:55 #: screens/Host/HostList/HostListItem.jsx:26 #: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:61 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:38 #: screens/Inventory/InventoryList/InventoryListItem.jsx:77 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:33 #: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:104 #: screens/Organization/OrganizationList/OrganizationListItem.jsx:42 #: screens/Project/ProjectList/ProjectListItem.jsx:120 @@ -7067,15 +7111,15 @@ msgstr "" msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" -#: components/Search/AdvancedSearch.jsx:97 +#: components/Search/AdvancedSearch.jsx:98 msgid "Set type" msgstr "" -#: components/Search/AdvancedSearch.jsx:88 +#: components/Search/AdvancedSearch.jsx:89 msgid "Set type select" msgstr "" -#: components/Search/AdvancedSearch.jsx:91 +#: components/Search/AdvancedSearch.jsx:92 msgid "Set type typeahead" msgstr "" @@ -7107,7 +7151,7 @@ msgstr "" msgid "Show" msgstr "" -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:171 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:173 #: components/PromptDetail/PromptDetail.jsx:243 #: components/PromptDetail/PromptJobTemplateDetail.jsx:136 #: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:314 @@ -7125,6 +7169,10 @@ msgstr "" msgid "Show changes" msgstr "" +#: components/Schedule/shared/SchedulePromptableFields.jsx:113 +msgid "Show description" +msgstr "" + #: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "" @@ -7244,7 +7292,7 @@ msgstr "" msgid "Smart inventory" msgstr "" -#: components/LaunchPrompt/steps/PreviewStep.jsx:58 +#: components/LaunchPrompt/steps/PreviewStep.jsx:62 msgid "Some of the previous step(s) have errors" msgstr "" @@ -7268,7 +7316,7 @@ msgstr "" #: components/PromptDetail/PromptInventorySourceDetail.jsx:84 #: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:196 #: screens/Inventory/shared/InventorySourceForm.jsx:134 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "Source" msgstr "" @@ -7281,7 +7329,7 @@ msgstr "" #: screens/Job/JobDetail/JobDetail.jsx:215 #: screens/Project/ProjectDetail/ProjectDetail.jsx:150 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:137 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:138 #: screens/Template/shared/JobTemplateForm.jsx:308 msgid "Source Control Branch" msgstr "" @@ -7318,7 +7366,7 @@ msgstr "" #: screens/Project/ProjectDetail/ProjectDetail.jsx:149 #: screens/Project/ProjectList/ProjectList.jsx:157 #: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 msgid "Source Control URL" msgstr "" @@ -7342,7 +7390,7 @@ msgstr "" msgid "Source Workflow Job" msgstr "" -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:182 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Source control branch" msgstr "" @@ -7359,7 +7407,7 @@ msgstr "" msgid "Source variables" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Sourced from a project" msgstr "" @@ -7473,9 +7521,9 @@ msgstr "" msgid "Stdout" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:39 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:52 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:230 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:38 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:51 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:218 msgid "Submit" msgstr "" @@ -7492,7 +7540,7 @@ msgstr "" #: screens/Setting/SettingList.jsx:131 #: screens/Setting/Settings.jsx:106 #: screens/Setting/Subscription/SubscriptionDetail/SubscriptionDetail.jsx:78 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:213 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:201 msgid "Subscription" msgstr "" @@ -7500,7 +7548,7 @@ msgstr "" msgid "Subscription Details" msgstr "" -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:212 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:200 msgid "Subscription Management" msgstr "" @@ -7528,7 +7576,7 @@ msgstr "" #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 #: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 #: screens/Project/ProjectList/ProjectList.jsx:151 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:99 msgid "Subversion" msgstr "" @@ -7852,6 +7900,14 @@ msgid "" "Grafana URL." msgstr "" +#: screens/Organization/shared/OrganizationForm.jsx:96 +msgid "The execution environment that will be used for jobs inside of this organization. This will be used a fallback when an execution environment has not been explicitly assigned at the project, job template or workflow level." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:196 +msgid "The execution environment that will be used for jobs that use this project. This will be used as fallback when an execution environment has not been explicitly assigned at the job template or workflow level." +msgstr "" + #: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:73 msgid "" "The first fetches all references. The second\n" @@ -8022,9 +8078,16 @@ msgstr "" msgid "" "This data is used to enhance\n" "future releases of the Software and to provide\n" -"Red Hat Insights for Ansible." +"Insights for Ansible Automation Platform." msgstr "" +#: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:85 +#~ msgid "" +#~ "This data is used to enhance\n" +#~ "future releases of the Software and to provide\n" +#~ "Red Hat Insights for Ansible." +#~ msgstr "" + #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:73 msgid "" "This data is used to enhance\n" @@ -8112,7 +8175,7 @@ msgstr "" msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" msgstr "" -#: components/LaunchPrompt/steps/useInventoryStep.jsx:64 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:59 msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." msgstr "" @@ -8179,7 +8242,7 @@ msgstr "" msgid "This workflow does not have any nodes configured." msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:255 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:257 msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" msgstr "" @@ -8256,6 +8319,7 @@ msgid "Toggle expand/collapse event lines" msgstr "" #: components/HostToggle/HostToggle.jsx:64 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:51 msgid "Toggle host" msgstr "" @@ -8325,7 +8389,7 @@ msgstr "" msgid "Tools" msgstr "" -#: components/PaginatedTable/PaginatedTable.jsx:130 +#: components/PaginatedTable/PaginatedTable.jsx:129 msgid "Top Pagination" msgstr "" @@ -8420,7 +8484,7 @@ msgstr "" #: screens/Team/TeamRoles/TeamRoleListItem.jsx:17 #: screens/Team/TeamRoles/TeamRolesList.jsx:181 #: screens/Template/Survey/SurveyListItem.jsx:117 -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:94 #: screens/User/UserDetail/UserDetail.jsx:70 #: screens/User/UserRoles/UserRolesList.jsx:155 #: screens/User/UserRoles/UserRolesListItem.jsx:21 @@ -8588,7 +8652,7 @@ msgid "User analytics" msgstr "" #: screens/Setting/Subscription/SubscriptionEdit/AnalyticsStep.jsx:45 -#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:220 +#: screens/Setting/Subscription/SubscriptionEdit/SubscriptionEdit.jsx:208 msgid "User and Insights analytics" msgstr "" @@ -8643,7 +8707,7 @@ msgstr "" msgid "Users" msgstr "" -#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:102 msgid "VMware vCenter" msgstr "" @@ -8664,9 +8728,9 @@ msgstr "" #: screens/Inventory/shared/SmartInventoryForm.jsx:96 #: screens/Job/JobDetail/JobDetail.jsx:339 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:354 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:218 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:220 #: screens/Template/shared/JobTemplateForm.jsx:388 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:233 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:232 msgid "Variables" msgstr "" @@ -8687,7 +8751,7 @@ msgid "Verbose" msgstr "" #: components/AdHocCommands/AdHocDetailsStep.jsx:136 -#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:145 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:147 #: components/PromptDetail/PromptDetail.jsx:191 #: components/PromptDetail/PromptInventorySourceDetail.jsx:100 #: components/PromptDetail/PromptJobTemplateDetail.jsx:134 @@ -9000,14 +9064,14 @@ msgstr "" msgid "Webhook Credential" msgstr "" -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:177 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:179 msgid "Webhook Credentials" msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:153 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:78 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:246 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:175 #: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook Key" msgstr "" @@ -9015,7 +9079,7 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:146 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:77 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:236 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:164 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 #: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "" @@ -9023,14 +9087,14 @@ msgstr "" #: components/PromptDetail/PromptJobTemplateDetail.jsx:149 #: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 #: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:242 -#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 #: screens/Template/shared/WebhookSubForm.jsx:163 #: screens/Template/shared/WebhookSubForm.jsx:173 msgid "Webhook URL" msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:630 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:269 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:268 msgid "Webhook details" msgstr "" @@ -9266,11 +9330,11 @@ msgstr "" #~ msgid "You may apply a number of possible variables in the message. Refer to the" #~ msgstr "" -#: components/AppContainer/AppContainer.jsx:237 +#: components/AppContainer/AppContainer.jsx:245 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "" -#: components/AppContainer/AppContainer.jsx:213 +#: components/AppContainer/AppContainer.jsx:221 msgid "Your session is about to expire" msgstr "" @@ -9294,8 +9358,6 @@ msgstr "" #: screens/Host/HostGroups/HostGroupItem.jsx:45 #: screens/InstanceGroup/Instances/InstanceListItem.jsx:214 -#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:68 -#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:58 #: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 #: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:107 msgid "actions" @@ -9310,7 +9372,7 @@ msgstr "" msgid "approved" msgstr "" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "brand logo" msgstr "" @@ -9436,7 +9498,7 @@ msgstr "" #~ msgid "isolated instance" #~ msgstr "" -#: components/Pagination/Pagination.jsx:23 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" @@ -9480,15 +9542,15 @@ msgstr "" #~ msgid "or attributes of the job such as" #~ msgstr "" -#: components/Pagination/Pagination.jsx:24 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "" -#: components/Pagination/Pagination.jsx:25 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" @@ -9534,7 +9596,7 @@ msgid "social login" msgstr "" #: screens/Template/shared/JobTemplateForm.jsx:320 -#: screens/Template/shared/WorkflowJobTemplateForm.jsx:193 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:192 msgid "source control branch" msgstr "" @@ -9666,7 +9728,7 @@ msgstr "" msgid "{0}: {1}" msgstr "" -#: components/AppContainer/AppContainer.jsx:142 +#: components/AppContainer/AppContainer.jsx:150 msgid "{brandName} logo" msgstr "" @@ -9719,6 +9781,6 @@ msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" #: components/PaginatedDataList/PaginatedDataList.jsx:92 -#: components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedTable/PaginatedTable.jsx:76 msgid "{pluralizedItemName} List" msgstr ""