From 385c4a16db9ee91042e2cbe7c090988a7661f4c1 Mon Sep 17 00:00:00 2001 From: Alex Corey Date: Tue, 6 Apr 2021 17:32:29 -0400 Subject: [PATCH] updates the method of loading locales --- awx/ui_next/package-lock.json | 14 +- awx/ui_next/src/App.jsx | 44 +- awx/ui_next/src/i18nLoader.js | 31 + awx/ui_next/src/locales/en/messages.po | 8624 +++++++++++++---------- awx/ui_next/src/locales/es/messages.po | 8300 ++++++++++++---------- awx/ui_next/src/locales/fr/messages.po | 8300 ++++++++++++---------- awx/ui_next/src/locales/ja/messages.po | 8300 ++++++++++++---------- awx/ui_next/src/locales/nl/messages.po | 8300 ++++++++++++---------- awx/ui_next/src/locales/zh/messages.po | 8300 ++++++++++++---------- awx/ui_next/src/locales/zu/messages.po | 8846 ++++++++++++++++++++++++ 10 files changed, 37549 insertions(+), 21510 deletions(-) create mode 100644 awx/ui_next/src/i18nLoader.js create mode 100644 awx/ui_next/src/locales/zu/messages.po diff --git a/awx/ui_next/package-lock.json b/awx/ui_next/package-lock.json index 61fa41b98c..0bfeda7fd0 100644 --- a/awx/ui_next/package-lock.json +++ b/awx/ui_next/package-lock.json @@ -5389,6 +5389,11 @@ "q": "^1.1.2" } }, + "codemirror": { + "version": "5.60.0", + "resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.60.0.tgz", + "integrity": "sha512-AEL7LhFOlxPlCL8IdTcJDblJm8yrAGib7I+DErJPdZd4l6imx8IMgKK3RblVgBQqz3TZJR4oknQ03bz+uNjBYA==" + }, "collection-visit": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", @@ -6670,6 +6675,12 @@ } } }, + "diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "dev": true + }, "diff-match-patch": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/diff-match-patch/-/diff-match-patch-1.0.5.tgz", @@ -11743,8 +11754,7 @@ "lodash.get": { "version": "4.4.2", "resolved": "https://registry.npmjs.org/lodash.get/-/lodash.get-4.4.2.tgz", - "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=", - "dev": true + "integrity": "sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=" }, "lodash.isequal": { "version": "4.5.0", diff --git a/awx/ui_next/src/App.jsx b/awx/ui_next/src/App.jsx index ec7c17d6af..fa1de507cb 100644 --- a/awx/ui_next/src/App.jsx +++ b/awx/ui_next/src/App.jsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { useEffect } from 'react'; import { useRouteMatch, useLocation, @@ -10,20 +10,13 @@ import { import { I18nProvider } from '@lingui/react'; import { i18n } from '@lingui/core'; -import { en, es, fr, nl, zh, ja, zu } from 'make-plural/plurals'; import AppContainer from './components/AppContainer'; import Background from './components/Background'; import NotFound from './screens/NotFound'; import Login from './screens/Login'; -import japanese from './locales/ja/messages'; -import english from './locales/en/messages'; -import zulu from './locales/zu/messages'; -import french from './locales/fr/messages'; -import dutch from './locales/nl/messages'; -import chinese from './locales/zh/messages'; -import spanish from './locales/es/messages'; import { isAuthenticated } from './util/auth'; +import { locales, dynamicActivate } from './i18nLoader'; import { getLanguageWithoutRegionCode } from './util/language'; @@ -80,42 +73,19 @@ const ProtectedRoute = ({ children, ...rest }) => ); function App() { - const catalogs = { - en: english, - ja: japanese, - zu: zulu, - fr: french, - es: spanish, - zh: chinese, - nl: dutch, - }; let language = getLanguageWithoutRegionCode(navigator); - if (!Object.keys(catalogs).includes(language)) { + if (!Object.keys(locales).includes(language)) { // If there isn't a string catalog available for the browser's // preferred language, default to one that has strings. language = 'en'; } const { hash, search, pathname } = useLocation(); - - i18n.loadLocaleData('en', { plurals: en }); - i18n.loadLocaleData('es', { plurals: es }); - i18n.loadLocaleData('fr', { plurals: fr }); - i18n.loadLocaleData('nl', { plurals: nl }); - i18n.loadLocaleData('zh', { plurals: zh }); - i18n.loadLocaleData('ja', { plurals: ja }); - i18n.loadLocaleData('zu', { plurals: zu }); - i18n.load({ - en: english.messages, - ja: japanese.messages, - zu: zulu.messages, - fr: french.messages, - nl: dutch.messages, - zh: chinese.messages, - es: spanish.messages, - }); + useEffect(() => { + dynamicActivate(language); + }, [language]); i18n.activate(language); return ( - + diff --git a/awx/ui_next/src/i18nLoader.js b/awx/ui_next/src/i18nLoader.js new file mode 100644 index 0000000000..0e04e37187 --- /dev/null +++ b/awx/ui_next/src/i18nLoader.js @@ -0,0 +1,31 @@ +import { i18n } from '@lingui/core'; +import { en, fr, es, nl, ja, zh, zu } from 'make-plural/plurals'; + +export const locales = { + en: 'English', + ja: 'Japanese', + zu: 'Zulu', + fr: 'French', + es: 'Spanish', + zh: 'Chinese', + nl: 'Dutch', +}; + +i18n.loadLocaleData({ + en: { plurals: en }, + fr: { plurals: fr }, + es: { plurals: es }, + nl: { plurals: nl }, + ja: { plurals: ja }, + zh: { plurals: zh }, + zu: { plurals: zu }, +}); + +/** + * We do a dynamic import of just the catalog that we need + * @param locale any locale string + */ +export async function dynamicActivate(locale) { + const { messages } = await import(`./locales/${locale}/messages`); + i18n.load(locale, messages); +} diff --git a/awx/ui_next/src/locales/en/messages.po b/awx/ui_next/src/locales/en/messages.po index 4385ecdd82..bc875f7171 100644 --- a/awx/ui_next/src/locales/en/messages.po +++ b/awx/ui_next/src/locales/en/messages.po @@ -17,103 +17,103 @@ msgstr "" #~ msgid "404" #~ msgstr "" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 msgid "(Limited to first 10)" msgstr "(Limited to first 10)" -#: src/components/TemplateList/TemplateListItem.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:147 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:90 +#: components/TemplateList/TemplateListItem.jsx:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:91 msgid "(Prompt on launch)" msgstr "(Prompt on launch)" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:244 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 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." -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:58 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:59 msgid "- Enable Concurrent Jobs" msgstr "- Enable Concurrent Jobs" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:63 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:64 msgid "- Enable Webhooks" msgstr "- Enable Webhooks" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 msgid "/ (project root)" msgstr "/ (project root)" -#: src/components/AdHocCommands/AdHocCommands.jsx:26 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: src/components/PromptDetail/PromptDetail.jsx:95 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:31 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:40 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocCommands.jsx:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/PromptDetail/PromptDetail.jsx:95 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 +#: screens/Template/shared/JobTemplateForm.jsx:180 msgid "0 (Normal)" msgstr "0 (Normal)" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:98 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:81 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 msgid "0 (Warning)" msgstr "0 (Warning)" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:99 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 msgid "1 (Info)" msgstr "1 (Info)" -#: src/components/AdHocCommands/AdHocCommands.jsx:27 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: src/components/PromptDetail/PromptDetail.jsx:96 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:41 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:101 -#: src/screens/Template/shared/JobTemplateForm.jsx:174 +#: components/AdHocCommands/AdHocCommands.jsx:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 +#: components/PromptDetail/PromptDetail.jsx:96 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 +#: screens/Template/shared/JobTemplateForm.jsx:181 msgid "1 (Verbose)" msgstr "1 (Verbose)" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:100 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 msgid "2 (Debug)" msgstr "2 (Debug)" -#: src/components/AdHocCommands/AdHocCommands.jsx:28 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: src/components/PromptDetail/PromptDetail.jsx:97 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:102 -#: src/screens/Template/shared/JobTemplateForm.jsx:175 +#: components/AdHocCommands/AdHocCommands.jsx:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 +#: components/PromptDetail/PromptDetail.jsx:97 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 +#: screens/Template/shared/JobTemplateForm.jsx:182 msgid "2 (More Verbose)" msgstr "2 (More Verbose)" -#: src/components/AdHocCommands/AdHocCommands.jsx:29 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 -#: src/components/PromptDetail/PromptDetail.jsx:98 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:103 -#: src/screens/Template/shared/JobTemplateForm.jsx:176 +#: components/AdHocCommands/AdHocCommands.jsx:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 +#: components/PromptDetail/PromptDetail.jsx:98 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:183 msgid "3 (Debug)" msgstr "3 (Debug)" -#: src/components/AdHocCommands/AdHocCommands.jsx:30 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 -#: src/components/PromptDetail/PromptDetail.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:177 +#: components/AdHocCommands/AdHocCommands.jsx:30 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 +#: components/PromptDetail/PromptDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 +#: screens/Template/shared/JobTemplateForm.jsx:184 msgid "4 (Connection Debug)" msgstr "4 (Connection Debug)" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:105 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 msgid "5 (WinRM Debug)" msgstr "5 (WinRM Debug)" @@ -125,19 +125,34 @@ msgstr "5 (WinRM Debug)" #~ msgid "> edit" #~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 -msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." -msgstr "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +msgid "" +"A refspec to fetch (passed to the Ansible git\n" +"module). This parameter allows access to references via\n" +"the branch field not otherwise available." +msgstr "" +"A refspec to fetch (passed to the Ansible git\n" +"module). This parameter allows access to references via\n" +"the branch field not otherwise available." -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#~ msgstr "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." + +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281 +msgid "ALL" +msgstr "ALL" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 msgid "API Service/Integration Key" msgstr "API Service/Integration Key" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 msgid "API Token" msgstr "API Token" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 msgid "API service/integration key" msgstr "API service/integration key" @@ -145,7 +160,7 @@ msgstr "API service/integration key" #~ msgid "AWX Logo" #~ msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:129 +#: components/AppContainer/PageHeaderToolbar.jsx:129 msgid "About" msgstr "" @@ -153,206 +168,209 @@ msgstr "" #~ msgid "AboutModal Logo" #~ msgstr "" -#: src/routeConfig.js:92 -#: src/screens/ActivityStream/ActivityStream.jsx:176 -#: src/screens/Credential/Credential.jsx:60 -#: src/screens/Credential/Credentials.jsx:29 -#: src/screens/Inventory/Inventories.jsx:58 -#: src/screens/Inventory/Inventory.jsx:63 -#: src/screens/Inventory/SmartInventory.jsx:70 -#: src/screens/Organization/Organization.jsx:123 -#: src/screens/Organization/Organizations.jsx:32 -#: src/screens/Project/Project.jsx:106 -#: src/screens/Project/Projects.jsx:30 -#: src/screens/Team/Team.jsx:56 -#: src/screens/Team/Teams.jsx:31 -#: src/screens/Template/Template.jsx:132 -#: src/screens/Template/Templates.jsx:46 -#: src/screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:93 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Credential/Credential.jsx:60 +#: screens/Credential/Credentials.jsx:29 +#: screens/Inventory/Inventories.jsx:58 +#: screens/Inventory/Inventory.jsx:63 +#: screens/Inventory/SmartInventory.jsx:70 +#: screens/Organization/Organization.jsx:124 +#: screens/Organization/Organizations.jsx:32 +#: screens/Project/Project.jsx:106 +#: screens/Project/Projects.jsx:30 +#: screens/Team/Team.jsx:56 +#: screens/Team/Teams.jsx:31 +#: screens/Template/Template.jsx:145 +#: screens/Template/Templates.jsx:46 +#: screens/Template/WorkflowJobTemplate.jsx:122 msgid "Access" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:71 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:79 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "Access Token Expiration" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 msgid "Account SID" msgstr "Account SID" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 msgid "Account token" msgstr "Account token" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:52 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 msgid "Action" msgstr "Action" -#: src/components/JobList/JobList.jsx:245 -#: src/components/JobList/JobListItem.jsx:80 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:176 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:112 -#: src/components/TemplateList/TemplateList.jsx:222 -#: src/components/TemplateList/TemplateListItem.jsx:131 -#: src/screens/ActivityStream/ActivityStream.jsx:253 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:47 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: src/screens/Credential/CredentialList/CredentialList.jsx:153 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:172 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 -#: src/screens/Host/HostList/HostList.jsx:170 -#: src/screens/Host/HostList/HostListItem.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:233 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:198 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:112 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:183 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:157 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:44 -#: src/screens/Project/ProjectList/ProjectList.jsx:173 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:125 -#: src/screens/Team/TeamList/TeamList.jsx:156 -#: src/screens/Team/TeamList/TeamListItem.jsx:54 -#: src/screens/User/UserList/UserList.jsx:172 -#: src/screens/User/UserList/UserListItem.jsx:79 +#: components/JobList/JobList.jsx:223 +#: components/JobList/JobListItem.jsx:80 +#: components/Schedule/ScheduleList/ScheduleList.jsx:176 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112 +#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateListItem.jsx:156 +#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStreamListItem.jsx:49 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 +#: screens/Credential/CredentialList/CredentialList.jsx:145 +#: screens/Credential/CredentialList/CredentialListItem.jsx:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:78 +#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostListItem.jsx:48 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 +#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/Organization/OrganizationList/OrganizationList.jsx:161 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 +#: screens/Project/ProjectList/ProjectList.jsx:178 +#: screens/Project/ProjectList/ProjectListItem.jsx:152 +#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/User/UserList/UserList.jsx:172 +#: screens/User/UserList/UserListItem.jsx:79 msgid "Actions" msgstr "Actions" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: src/components/TemplateList/TemplateListItem.jsx:201 -#: src/screens/Host/HostDetail/HostDetail.jsx:77 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:87 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 +#: components/TemplateList/TemplateListItem.jsx:229 +#: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 msgid "Activity" msgstr "Activity" -#: src/routeConfig.js:49 -#: src/screens/ActivityStream/ActivityStream.jsx:119 -#: src/screens/Setting/Settings.jsx:44 +#: routeConfig.js:50 +#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "Activity Stream" -#: src/screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.jsx:114 msgid "Activity Stream settings" msgstr "Activity Stream settings" -#: src/screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:122 msgid "Activity Stream type selector" msgstr "Activity Stream type selector" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 msgid "Actor" msgstr "Actor" -#: src/components/AddDropDownButton/AddDropDownButton.jsx:39 -#: src/components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:160 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:164 +#: components/AddDropDownButton/AddDropDownButton.jsx:39 +#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 msgid "Add Link" msgstr "Add Link" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:66 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 msgid "Add Node" msgstr "Add Node" -#: src/screens/Template/Templates.jsx:50 +#: screens/Template/Templates.jsx:50 msgid "Add Question" msgstr "Add Question" -#: src/components/AddRole/AddResourceRole.jsx:174 +#: components/AddRole/AddResourceRole.jsx:185 msgid "Add Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:171 +#: components/AddRole/AddResourceRole.jsx:182 msgid "Add Team Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:168 +#: components/AddRole/AddResourceRole.jsx:179 msgid "Add User Roles" msgstr "" -#: src/components/Workflow/WorkflowStartNode.jsx:57 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:189 +#: components/Workflow/WorkflowStartNode.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:195 msgid "Add a new node" msgstr "Add a new node" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 msgid "Add a new node between these two nodes" msgstr "Add a new node between these two nodes" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 msgid "Add container group" msgstr "Add container group" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 msgid "Add existing group" msgstr "Add existing group" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 msgid "Add existing host" msgstr "Add existing host" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 msgid "Add instance group" msgstr "Add instance group" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:129 +#: screens/Inventory/InventoryList/InventoryList.jsx:135 msgid "Add inventory" msgstr "Add inventory" -#: src/components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:141 msgid "Add job template" msgstr "Add job template" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 msgid "Add new group" msgstr "Add new group" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 msgid "Add new host" msgstr "Add new host" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 msgid "Add resource type" msgstr "Add resource type" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:130 +#: screens/Inventory/InventoryList/InventoryList.jsx:136 msgid "Add smart inventory" msgstr "Add smart inventory" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:171 msgid "Add team permissions" msgstr "Add team permissions" -#: src/screens/User/UserRoles/UserRolesList.jsx:182 +#: screens/User/UserRoles/UserRolesList.jsx:182 msgid "Add user permissions" msgstr "Add user permissions" -#: src/components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:142 msgid "Add workflow template" msgstr "Add workflow template" #: src/screens/ActivityStream/ActivityStream.jsx:187 -msgid "Adminisration" -msgstr "Adminisration" +#~ msgid "Adminisration" +#~ msgstr "Adminisration" -#: src/routeConfig.js:113 +#: routeConfig.js:114 +#: screens/ActivityStream/ActivityStream.jsx:187 msgid "Administration" msgstr "" @@ -360,70 +378,93 @@ msgstr "" #~ msgid "Admins" #~ msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:86 +#: components/DataListToolbar/DataListToolbar.jsx:86 +#: screens/Job/JobOutput/JobOutput.jsx:671 msgid "Advanced" msgstr "Advanced" -#: src/components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.jsx:246 msgid "Advanced search value input" msgstr "Advanced search value input" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203 +msgid "" +"After every project update where the SCM revision\n" +"changes, refresh the inventory from the selected source\n" +"before executing job tasks. This is intended for static content,\n" +"like the Ansible inventory .ini file format." +msgstr "" +"After every project update where the SCM revision\n" +"changes, refresh the inventory from the selected source\n" +"before executing job tasks. This is intended for static content,\n" +"like the Ansible inventory .ini file format." + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177 -msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." -msgstr "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." +#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." +#~ msgstr "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:520 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 msgid "After number of occurrences" msgstr "After number of occurrences" -#: src/components/AlertModal/AlertModal.jsx:77 +#: components/AlertModal/AlertModal.jsx:77 msgid "Alert modal" msgstr "Alert modal" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:39 +#: components/LaunchButton/ReLaunchDropDown.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:244 msgid "All" msgstr "All" -#: src/screens/Dashboard/Dashboard.jsx:226 +#: screens/Dashboard/Dashboard.jsx:226 msgid "All job types" msgstr "All job types" -#: src/components/PromptDetail/PromptProjectDetail.jsx:45 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:46 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:74 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 msgid "Allow Branch Override" msgstr "Allow Branch Override" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:60 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 msgid "Allow Provisioning Callbacks" msgstr "Allow Provisioning Callbacks" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 -msgid "Allow changing the Source Control branch or revision in a job template that uses this project." -msgstr "Allow changing the Source Control branch or revision in a job template that uses this project." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +msgid "" +"Allow changing the Source Control branch or revision in a job\n" +"template that uses this project." +msgstr "" +"Allow changing the Source Control branch or revision in a job\n" +"template that uses this project." -#: src/screens/Application/shared/ApplicationForm.jsx:119 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#~ msgstr "Allow changing the Source Control branch or revision in a job template that uses this project." + +#: screens/Application/shared/ApplicationForm.jsx:119 msgid "Allowed URIs list, space separated" msgstr "Allowed URIs list, space separated" -#: src/components/Workflow/WorkflowLegend.jsx:126 -#: src/components/Workflow/WorkflowLinkHelp.jsx:24 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 +#: components/Workflow/WorkflowLegend.jsx:126 +#: components/Workflow/WorkflowLinkHelp.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 msgid "Always" msgstr "Always" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 msgid "Amazon EC2" msgstr "Amazon EC2" -#: src/components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.jsx:12 msgid "An error occurred" msgstr "An error occurred" -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:34 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 msgid "An inventory must be selected" msgstr "An inventory must be selected" @@ -434,73 +475,78 @@ msgstr "An inventory must be selected" #: src/screens/Organization/shared/OrganizationForm.jsx:82 #: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128 #: src/screens/Project/shared/ProjectForm.jsx:274 -msgid "Ansible Environment" -msgstr "" +#~ msgid "Ansible Environment" +#~ msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Ansible Tower" msgstr "Ansible Tower" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 msgid "Ansible Tower Documentation." msgstr "Ansible Tower Documentation." #: src/components/About/About.jsx:58 -msgid "Ansible Version" -msgstr "" +#~ msgid "Ansible Version" +#~ msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204 -msgid "Ansible environment" -msgstr "Ansible environment" +#~ msgid "Ansible environment" +#~ msgstr "Ansible environment" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:33 +#: screens/Template/Survey/SurveyQuestionForm.jsx:33 msgid "Answer type" msgstr "Answer type" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:130 +#: screens/Template/Survey/SurveyQuestionForm.jsx:130 msgid "Answer variable name" msgstr "Answer variable name" -#: src/components/Lookup/ApplicationLookup.jsx:65 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: src/screens/User/shared/UserTokenForm.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:241 +msgid "Any" +msgstr "Any" + +#: components/Lookup/ApplicationLookup.jsx:65 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:52 +#: screens/User/shared/UserTokenForm.jsx:44 msgid "Application" msgstr "Application" -#: src/screens/User/Users.jsx:38 +#: screens/User/Users.jsx:38 msgid "Application Name" msgstr "Application Name" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:42 +#: screens/User/UserTokenList/UserTokenListItem.jsx:42 msgid "Application access token" msgstr "Application access token" -#: src/screens/Application/Applications.jsx:67 -#: src/screens/Application/Applications.jsx:70 +#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.jsx:70 msgid "Application information" msgstr "Application information" -#: src/screens/User/UserTokenList/UserTokenList.jsx:111 -#: src/screens/User/UserTokenList/UserTokenList.jsx:122 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.jsx:111 +#: screens/User/UserTokenList/UserTokenList.jsx:122 +#: screens/User/UserTokenList/UserTokenListItem.jsx:47 msgid "Application name" msgstr "Application name" -#: src/screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.jsx:93 msgid "Application not found." msgstr "Application not found." -#: src/components/Lookup/ApplicationLookup.jsx:74 -#: src/routeConfig.js:137 -#: src/screens/Application/Applications.jsx:25 -#: src/screens/Application/Applications.jsx:35 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: components/Lookup/ApplicationLookup.jsx:74 +#: routeConfig.js:138 +#: screens/Application/Applications.jsx:25 +#: screens/Application/Applications.jsx:35 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: util/getRelatedResourceDeleteDetails.js:233 msgid "Applications" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:204 +#: screens/ActivityStream/ActivityStream.jsx:204 msgid "Applications & Tokens" msgstr "Applications & Tokens" @@ -508,105 +554,106 @@ msgstr "Applications & Tokens" #~ msgid "Apply roles" #~ msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:40 -#: src/components/NotificationList/NotificationListItem.jsx:41 -#: src/components/Workflow/WorkflowLegend.jsx:110 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:55 +#: components/NotificationList/NotificationListItem.jsx:40 +#: components/NotificationList/NotificationListItem.jsx:41 +#: components/Workflow/WorkflowLegend.jsx:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:83 msgid "Approval" msgstr "Approval" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:190 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:195 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:59 msgid "Approve" msgstr "Approve" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 msgid "Approved" msgstr "Approved" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 msgid "Approved by {0} - {1}" msgstr "Approved by {0} - {1}" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 msgid "April" msgstr "April" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116 -msgid "Are you sure you want to delete the {0} below?" -msgstr "Are you sure you want to delete the {0} below?" +#~ msgid "Are you sure you want to delete the {0} below?" +#~ msgstr "Are you sure you want to delete the {0} below?" -#: src/components/DeleteButton/DeleteButton.jsx:53 +#: components/DeleteButton/DeleteButton.jsx:127 msgid "Are you sure you want to delete:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "Are you sure you want to exit the Workflow Creator without saving your changes?" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:41 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "Are you sure you want to remove all the nodes in this workflow?" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 msgid "Are you sure you want to remove the node below:" msgstr "Are you sure you want to remove the node below:" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 msgid "Are you sure you want to remove this link?" msgstr "Are you sure you want to remove this link?" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:51 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 msgid "Are you sure you want to remove this node?" msgstr "Are you sure you want to remove this node?" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:53 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:64 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobDetail/JobDetail.jsx:461 +#: screens/Job/JobOutput/JobOutput.jsx:812 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "Are you sure you want to submit the request to cancel this job?" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:108 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:110 +#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.jsx:110 msgid "Arguments" msgstr "Arguments" -#: src/screens/Job/JobDetail/JobDetail.jsx:347 +#: screens/Job/JobDetail/JobDetail.jsx:378 msgid "Artifacts" msgstr "Artifacts" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: src/screens/User/UserTeams/UserTeamList.jsx:204 +#: screens/InstanceGroup/Instances/InstanceList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:204 msgid "Associate" msgstr "Associate" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 msgid "Associate role error" msgstr "Associate role error" -#: src/components/AssociateModal/AssociateModal.jsx:99 +#: components/AssociateModal/AssociateModal.jsx:99 msgid "Association modal" msgstr "Association modal" -#: src/components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "At least one value must be selected for this field." -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 msgid "August" msgstr "August" -#: src/screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.jsx:55 msgid "Authentication" msgstr "" @@ -614,269 +661,319 @@ msgstr "" #~ msgid "Authentication Settings" #~ msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:92 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:86 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "Authorization Code Expiration" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 -#: src/screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "Authorization grant type" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:89 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:89 msgid "Auto" msgstr "Auto" -#: src/screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.jsx:47 msgid "Azure AD" msgstr "Azure AD" -#: src/screens/Setting/SettingList.jsx:62 +#: screens/Setting/SettingList.jsx:62 msgid "Azure AD settings" msgstr "Azure AD settings" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:111 -#: src/components/AddRole/AddResourceRole.jsx:275 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:111 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:120 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:139 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:142 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:111 +#: components/AddRole/AddResourceRole.jsx:286 +#: components/LaunchPrompt/LaunchPrompt.jsx:118 +#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" msgstr "Back" -#: src/screens/Credential/Credential.jsx:52 +#: screens/Credential/Credential.jsx:52 msgid "Back to Credentials" msgstr "Back to Credentials" -#: src/components/ContentError/ContentError.jsx:48 +#: components/ContentError/ContentError.jsx:48 msgid "Back to Dashboard." msgstr "Back to Dashboard." -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 msgid "Back to Groups" msgstr "Back to Groups" -#: src/screens/Host/Host.jsx:45 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.jsx:45 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 msgid "Back to Hosts" msgstr "Back to Hosts" -#: src/screens/Inventory/Inventory.jsx:56 -#: src/screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.jsx:56 +#: screens/Inventory/SmartInventory.jsx:63 msgid "Back to Inventories" msgstr "Back to Inventories" -#: src/screens/Job/Job.jsx:57 +#: screens/Job/Job.jsx:97 msgid "Back to Jobs" msgstr "Back to Jobs" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.jsx:76 msgid "Back to Notifications" msgstr "Back to Notifications" -#: src/screens/Organization/Organization.jsx:116 +#: screens/Organization/Organization.jsx:117 msgid "Back to Organizations" msgstr "Back to Organizations" -#: src/screens/Project/Project.jsx:99 +#: screens/Project/Project.jsx:99 msgid "Back to Projects" msgstr "Back to Projects" -#: src/components/Schedule/Schedule.jsx:60 +#: components/Schedule/Schedule.jsx:61 msgid "Back to Schedules" msgstr "Back to Schedules" -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:104 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:108 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 msgid "Back to Settings" msgstr "Back to Settings" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.jsx:81 msgid "Back to Sources" msgstr "Back to Sources" -#: src/screens/Team/Team.jsx:49 +#: screens/Team/Team.jsx:49 msgid "Back to Teams" msgstr "Back to Teams" -#: src/screens/Template/Template.jsx:125 -#: src/screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.jsx:138 +#: screens/Template/WorkflowJobTemplate.jsx:115 msgid "Back to Templates" msgstr "Back to Templates" -#: src/screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.jsx:47 msgid "Back to Tokens" msgstr "Back to Tokens" -#: src/screens/User/User.jsx:57 +#: screens/User/User.jsx:57 msgid "Back to Users" msgstr "Back to Users" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.jsx:69 msgid "Back to Workflow Approvals" msgstr "Back to Workflow Approvals" -#: src/screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.jsx:71 msgid "Back to applications" msgstr "Back to applications" -#: src/screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.jsx:55 msgid "Back to credential types" msgstr "Back to credential types" -#: src/screens/InstanceGroup/ContainerGroup.jsx:56 -#: src/screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +msgid "Back to execution environments" +msgstr "Back to execution environments" + +#: screens/InstanceGroup/ContainerGroup.jsx:56 +#: screens/InstanceGroup/InstanceGroup.jsx:57 msgid "Back to instance groups" msgstr "Back to instance groups" -#: src/screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.jsx:98 msgid "Back to management jobs" msgstr "Back to management jobs" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 -msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." -msgstr "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +msgid "" +"Base path used for locating playbooks. Directories\n" +"found inside this path will be listed in the playbook directory drop-down.\n" +"Together the base path and selected playbook directory provide the full\n" +"path used to locate playbooks." +msgstr "" +"Base path used for locating playbooks. Directories\n" +"found inside this path will be listed in the playbook directory drop-down.\n" +"Together the base path and selected playbook directory provide the full\n" +"path used to locate playbooks." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#~ msgstr "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 msgid "Basic auth password" msgstr "Basic auth password" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 -msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." -msgstr "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +msgid "" +"Branch to checkout. In addition to branches,\n" +"you can input tags, commit hashes, and arbitrary refs. Some\n" +"commit hashes and refs may not be available unless you also\n" +"provide a custom refspec." +msgstr "" +"Branch to checkout. In addition to branches,\n" +"you can input tags, commit hashes, and arbitrary refs. Some\n" +"commit hashes and refs may not be available unless you also\n" +"provide a custom refspec." -#: src/components/About/About.jsx:42 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#~ msgstr "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." + +#: components/About/About.jsx:37 msgid "Brand Image" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: src/components/PromptDetail/PromptProjectDetail.jsx:88 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:124 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:104 +#: components/PromptDetail/PromptProjectDetail.jsx:94 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:126 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 msgid "Cache Timeout" msgstr "Cache Timeout" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235 msgid "Cache timeout" msgstr "Cache timeout" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:194 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:237 msgid "Cache timeout (seconds)" msgstr "Cache timeout (seconds)" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:112 -#: src/components/AddRole/AddResourceRole.jsx:276 -#: src/components/AssociateModal/AssociateModal.jsx:113 -#: src/components/AssociateModal/AssociateModal.jsx:118 -#: src/components/DeleteButton/DeleteButton.jsx:46 -#: src/components/DeleteButton/DeleteButton.jsx:49 -#: src/components/DisassociateButton/DisassociateButton.jsx:122 -#: src/components/DisassociateButton/DisassociateButton.jsx:125 -#: src/components/FormActionGroup/FormActionGroup.jsx:22 -#: src/components/FormActionGroup/FormActionGroup.jsx:27 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:112 -#: src/components/Lookup/HostFilterLookup.jsx:322 -#: src/components/Lookup/Lookup.jsx:148 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:167 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:40 -#: src/components/Schedule/shared/ScheduleForm.jsx:564 -#: src/components/Schedule/shared/ScheduleForm.jsx:569 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:121 -#: src/screens/Credential/shared/CredentialForm.jsx:292 -#: src/screens/Credential/shared/CredentialForm.jsx:297 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:99 -#: src/screens/Credential/shared/ExternalTestModal.jsx:97 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 -#: src/screens/Setting/shared/RevertAllAlert.jsx:32 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:38 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:44 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:209 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:212 -#: src/screens/Template/Survey/SurveyList.jsx:117 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:29 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:37 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:43 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:38 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 -#: src/screens/User/UserRoles/UserRolesList.jsx:209 -#: src/screens/User/UserRoles/UserRolesList.jsx:212 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:112 +#: components/AddRole/AddResourceRole.jsx:287 +#: components/AssociateModal/AssociateModal.jsx:115 +#: components/AssociateModal/AssociateModal.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:123 +#: components/DisassociateButton/DisassociateButton.jsx:125 +#: components/DisassociateButton/DisassociateButton.jsx:128 +#: components/FormActionGroup/FormActionGroup.jsx:24 +#: components/FormActionGroup/FormActionGroup.jsx:29 +#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/Lookup/HostFilterLookup.jsx:329 +#: components/Lookup/Lookup.jsx:150 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46 +#: components/Schedule/shared/ScheduleForm.jsx:641 +#: components/Schedule/shared/ScheduleForm.jsx:646 +#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: screens/Credential/shared/CredentialForm.jsx:299 +#: screens/Credential/shared/CredentialForm.jsx:304 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:103 +#: screens/Credential/shared/ExternalTestModal.jsx:99 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:109 +#: screens/Job/JobDetail/JobDetail.jsx:411 +#: screens/Job/JobDetail/JobDetail.jsx:416 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 +#: screens/Setting/shared/RevertAllAlert.jsx:32 +#: screens/Setting/shared/RevertFormActionGroup.jsx:38 +#: screens/Setting/shared/RevertFormActionGroup.jsx:44 +#: screens/Team/TeamRoles/TeamRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.jsx:214 +#: screens/Template/Survey/SurveyList.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/User/UserRoles/UserRolesList.jsx:214 msgid "Cancel" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:675 -#: src/screens/Job/JobOutput/JobOutput.jsx:676 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:171 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:174 +#: screens/Job/JobDetail/JobDetail.jsx:436 +#: screens/Job/JobDetail/JobDetail.jsx:437 +#: screens/Job/JobOutput/JobOutput.jsx:787 +#: screens/Job/JobOutput/JobOutput.jsx:788 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:186 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:190 msgid "Cancel Job" msgstr "Cancel Job" -#: src/screens/Job/JobOutput/JobOutput.jsx:683 -#: src/screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobDetail/JobDetail.jsx:444 +#: screens/Job/JobDetail/JobDetail.jsx:447 +#: screens/Job/JobOutput/JobOutput.jsx:795 +#: screens/Job/JobOutput/JobOutput.jsx:798 msgid "Cancel job" msgstr "Cancel job" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 msgid "Cancel link changes" msgstr "Cancel link changes" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 msgid "Cancel link removal" msgstr "Cancel link removal" -#: src/components/Lookup/Lookup.jsx:146 +#: components/Lookup/Lookup.jsx:148 msgid "Cancel lookup" msgstr "Cancel lookup" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:26 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 msgid "Cancel node removal" msgstr "Cancel node removal" -#: src/screens/Setting/shared/RevertAllAlert.jsx:28 +#: screens/Setting/shared/RevertAllAlert.jsx:29 msgid "Cancel revert" msgstr "Cancel revert" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:65 +#: components/JobList/JobListCancelButton.jsx:79 +msgid "Cancel selected job" +msgstr "Cancel selected job" + +#: components/JobList/JobListCancelButton.jsx:80 +msgid "Cancel selected jobs" +msgstr "Cancel selected jobs" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:66 msgid "Cancel sync" msgstr "Cancel sync" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:58 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:58 msgid "Cancel sync process" msgstr "Cancel sync process" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:61 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:62 msgid "Cancel sync source" msgstr "Cancel sync source" -#: src/components/JobList/JobList.jsx:228 -#: src/components/Workflow/WorkflowNodeHelp.jsx:95 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 +#: components/JobList/JobList.jsx:206 +#: components/Workflow/WorkflowNodeHelp.jsx:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 msgid "Canceled" msgstr "Canceled" +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +msgid "" +"Cannot enable log aggregator without providing\n" +"logging aggregator host and logging aggregator type." +msgstr "" +"Cannot enable log aggregator without providing\n" +"logging aggregator host and logging aggregator type." + #: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 -msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." -msgstr "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#~ msgstr "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." #: src/pages/Organizations/Organizations.jsx:77 #~ msgid "Cannot find organization with ID" @@ -890,187 +987,206 @@ msgstr "Cannot enable log aggregator without providing logging aggregator host a #~ msgid "Cannot find route {0}." #~ msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:232 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 msgid "Capacity" msgstr "Capacity" -#: src/components/Search/AdvancedSearch.jsx:175 +#: components/Search/AdvancedSearch.jsx:176 msgid "Case-insensitive version of contains" msgstr "Case-insensitive version of contains" -#: src/components/Search/AdvancedSearch.jsx:195 +#: components/Search/AdvancedSearch.jsx:196 msgid "Case-insensitive version of endswith." msgstr "Case-insensitive version of endswith." -#: src/components/Search/AdvancedSearch.jsx:165 +#: components/Search/AdvancedSearch.jsx:166 msgid "Case-insensitive version of exact." msgstr "Case-insensitive version of exact." -#: src/components/Search/AdvancedSearch.jsx:205 +#: components/Search/AdvancedSearch.jsx:206 msgid "Case-insensitive version of regex." msgstr "Case-insensitive version of regex." -#: src/components/Search/AdvancedSearch.jsx:185 +#: components/Search/AdvancedSearch.jsx:186 msgid "Case-insensitive version of startswith." msgstr "Case-insensitive version of startswith." -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 -msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." -msgstr "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +msgid "" +"Change PROJECTS_ROOT when deploying\n" +"{brandName} to change this location." +msgstr "" +"Change PROJECTS_ROOT when deploying\n" +"{brandName} to change this location." -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#~ msgstr "Change PROJECTS_ROOT when deploying {brandName} to change this location." + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 msgid "Changed" msgstr "Changed" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:55 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:56 msgid "Changes" msgstr "Changes" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 msgid "Channel" msgstr "Channel" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:168 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 +#: screens/Template/shared/JobTemplateForm.jsx:175 msgid "Check" msgstr "Check" -#: src/components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:232 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." -#: src/components/Search/AdvancedSearch.jsx:238 +#: components/Search/AdvancedSearch.jsx:239 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." -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 msgid "Choose a .json file" msgstr "Choose a .json file" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 msgid "Choose a Notification Type" msgstr "Choose a Notification Type" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 msgid "Choose a Playbook Directory" msgstr "Choose a Playbook Directory" -#: src/screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:223 msgid "Choose a Source Control Type" msgstr "Choose a Source Control Type" -#: src/screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.jsx:102 msgid "Choose a Webhook Service" msgstr "Choose a Webhook Service" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 -#: src/screens/Template/shared/JobTemplateForm.jsx:161 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 +#: screens/Template/shared/JobTemplateForm.jsx:168 msgid "Choose a job type" msgstr "Choose a job type" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:88 +#: components/AdHocCommands/AdHocDetailsStep.jsx:88 msgid "Choose a module" msgstr "Choose a module" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:130 +#: screens/Inventory/shared/InventorySourceForm.jsx:144 msgid "Choose a source" msgstr "Choose a source" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 msgid "Choose an HTTP method" msgstr "Choose an HTTP method" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 -msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." -msgstr "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#: screens/Template/Survey/SurveyQuestionForm.jsx:37 +msgid "" +"Choose an answer type or format you want as the prompt for the user.\n" +"Refer to the Ansible Tower Documentation for more additional\n" +"information about each option." +msgstr "" +"Choose an answer type or format you want as the prompt for the user.\n" +"Refer to the Ansible Tower Documentation for more additional\n" +"information about each option." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 +#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#~ msgstr "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 msgid "Choose an email option" msgstr "Choose an email option" -#: src/components/AddRole/SelectRoleStep.jsx:23 +#: components/AddRole/SelectRoleStep.jsx:23 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." -#: src/components/AddRole/SelectResourceStep.jsx:82 +#: components/AddRole/SelectResourceStep.jsx:82 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." -#: src/components/AddRole/AddResourceRole.jsx:185 +#: components/AddRole/AddResourceRole.jsx:196 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." -#: src/components/PromptDetail/PromptProjectDetail.jsx:37 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:64 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: components/PromptDetail/PromptProjectDetail.jsx:38 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 msgid "Clean" msgstr "Clean" -#: src/components/DataListToolbar/DataListToolbar.jsx:65 +#: components/DataListToolbar/DataListToolbar.jsx:65 +#: screens/Job/JobOutput/JobOutput.jsx:715 msgid "Clear all filters" msgstr "Clear all filters" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "Click an available node to create a new link. Click outside the graph to cancel." -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 msgid "Click the Edit button below to reconfigure the node." msgstr "Click the Edit button below to reconfigure the node." -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:73 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "Click this button to verify connection to the secret management system using the selected credential and specified inputs." -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:147 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:153 msgid "Click to create a new link to this node." msgstr "Click to create a new link to this node." -#: src/components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.jsx:168 msgid "Click to view job details" msgstr "Click to view job details" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 -#: src/screens/Application/Applications.jsx:89 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 +#: screens/Application/Applications.jsx:89 msgid "Client ID" msgstr "Client ID" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 msgid "Client Identifier" msgstr "Client Identifier" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 msgid "Client identifier" msgstr "Client identifier" -#: src/screens/Application/Applications.jsx:102 +#: screens/Application/Applications.jsx:102 msgid "Client secret" msgstr "Client secret" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 -#: src/screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 +#: screens/Application/shared/ApplicationForm.jsx:128 msgid "Client type" msgstr "Client type" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:106 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:171 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:173 msgid "Close" msgstr "" -#: src/components/CredentialChip/CredentialChip.jsx:12 +#: components/CredentialChip/CredentialChip.jsx:12 msgid "Cloud" msgstr "Cloud" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:40 +#: components/ExpandCollapse/ExpandCollapse.jsx:41 msgid "Collapse" msgstr "" -#: src/components/JobList/JobList.jsx:208 -#: src/components/JobList/JobListItem.jsx:34 -#: src/screens/Job/JobDetail/JobDetail.jsx:80 -#: src/screens/Job/JobOutput/HostEventModal.jsx:137 +#: components/JobList/JobList.jsx:186 +#: components/JobList/JobListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:99 +#: screens/Job/JobOutput/HostEventModal.jsx:137 msgid "Command" msgstr "Command" @@ -1081,117 +1197,154 @@ msgstr "Command" #: src/screens/Template/Template.jsx:151 #: src/screens/Template/Templates.jsx:48 #: src/screens/Template/WorkflowJobTemplate.jsx:145 -msgid "Completed Jobs" -msgstr "Completed Jobs" +#~ msgid "Completed Jobs" +#~ msgstr "Completed Jobs" #: src/screens/Inventory/Inventories.jsx:59 #: src/screens/Inventory/Inventories.jsx:73 #: src/screens/Inventory/SmartInventory.jsx:73 -msgid "Completed jobs" -msgstr "Completed jobs" +#~ msgid "Completed jobs" +#~ msgstr "Completed jobs" -#: src/screens/Template/shared/JobTemplateForm.jsx:550 +#: screens/Template/shared/JobTemplateForm.jsx:580 msgid "Concurrent Jobs" msgstr "Concurrent Jobs" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:97 +#: components/DeleteButton/DeleteButton.jsx:107 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:95 msgid "Confirm Delete" msgstr "Confirm Delete" -#: src/screens/User/shared/UserForm.jsx:96 +#: screens/User/shared/UserForm.jsx:96 msgid "Confirm Password" msgstr "Confirm Password" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:34 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:35 msgid "Confirm delete" msgstr "Confirm delete" -#: src/screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.jsx:202 msgid "Confirm disassociate" msgstr "Confirm disassociate" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 msgid "Confirm link removal" msgstr "Confirm link removal" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 msgid "Confirm node removal" msgstr "Confirm node removal" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 msgid "Confirm removal of all nodes" msgstr "Confirm removal of all nodes" -#: src/screens/Setting/shared/RevertAllAlert.jsx:19 +#: screens/Setting/shared/RevertAllAlert.jsx:20 msgid "Confirm revert all" msgstr "Confirm revert all" -#: src/screens/Job/JobDetail/JobDetail.jsx:234 +#: screens/Job/JobDetail/JobDetail.jsx:265 msgid "Container Group" msgstr "Container Group" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 msgid "Container group" msgstr "Container group" -#: src/screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.jsx:81 msgid "Container group not found." msgstr "Container group not found." -#: src/components/LaunchPrompt/LaunchPrompt.jsx:106 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:115 +#: components/LaunchPrompt/LaunchPrompt.jsx:113 +#: components/Schedule/shared/SchedulePromptableFields.jsx:117 msgid "Content Loading" msgstr "Content Loading" -#: src/components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:234 msgid "Continue" msgstr "Continue" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +msgid "" +"Control the level of output Ansible\n" +"will produce for inventory source update jobs." +msgstr "" +"Control the level of output Ansible\n" +"will produce for inventory source update jobs." + #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92 -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." +#~ 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:152 +msgid "" +"Control the level of output ansible\n" +"will produce as the playbook executes." +msgstr "" +"Control the level of output ansible\n" +"will produce as the playbook executes." + +#: screens/Template/shared/JobTemplateForm.jsx:444 +msgid "" +"Control the level of output ansible will\n" +"produce as the playbook executes." +msgstr "" +"Control the level of output ansible will\n" +"produce as the playbook executes." #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 #: src/screens/Template/shared/JobTemplateForm.jsx:414 -msgid "Control the level of output ansible will produce as the playbook executes." -msgstr "Control the level of output ansible will produce as the playbook executes." +#~ msgid "Control the level of output ansible will produce as the playbook executes." +#~ msgstr "Control the level of output ansible will produce as the playbook executes." -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:61 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 msgid "Controller" msgstr "Controller" -#: src/components/CopyButton/CopyButton.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:205 +msgid "Convergence" +msgstr "Convergence" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:236 +msgid "Convergence select" +msgstr "Convergence select" + +#: components/CopyButton/CopyButton.jsx:41 msgid "Copy" msgstr "Copy" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:76 +#: screens/Credential/CredentialList/CredentialListItem.jsx:77 msgid "Copy Credential" msgstr "Copy Credential" -#: src/components/CopyButton/CopyButton.jsx:46 +#: components/CopyButton/CopyButton.jsx:48 msgid "Copy Error" msgstr "Copy Error" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:95 +msgid "Copy Execution Environment" +msgstr "Copy Execution Environment" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:135 msgid "Copy Inventory" msgstr "Copy Inventory" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:147 msgid "Copy Notification Template" msgstr "Copy Notification Template" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:147 +#: screens/Project/ProjectList/ProjectListItem.jsx:175 msgid "Copy Project" msgstr "Copy Project" -#: src/components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.jsx:209 msgid "Copy Template" msgstr "Copy Template" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:121 +#: screens/Project/ProjectList/ProjectListItem.jsx:147 msgid "Copy full revision to clipboard." msgstr "Copy full revision to clipboard." @@ -1199,503 +1352,572 @@ msgstr "Copy full revision to clipboard." #~ msgid "Copyright 2018 Red Hat, Inc." #~ msgstr "" -#: src/components/About/About.jsx:40 +#: components/About/About.jsx:35 msgid "Copyright 2019 Red Hat, Inc." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:353 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/JobTemplateForm.jsx:383 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:223 msgid "Create" msgstr "Create" -#: src/screens/Application/Applications.jsx:26 -#: src/screens/Application/Applications.jsx:36 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:24 +msgid "Create Execution environments" +msgstr "Create Execution environments" + +#: screens/Application/Applications.jsx:26 +#: screens/Application/Applications.jsx:36 msgid "Create New Application" msgstr "Create New Application" -#: src/screens/Credential/Credentials.jsx:14 -#: src/screens/Credential/Credentials.jsx:25 +#: screens/Credential/Credentials.jsx:14 +#: screens/Credential/Credentials.jsx:25 msgid "Create New Credential" msgstr "Create New Credential" -#: src/screens/Host/Hosts.jsx:16 -#: src/screens/Host/Hosts.jsx:26 +#: screens/Host/Hosts.jsx:16 +#: screens/Host/Hosts.jsx:26 msgid "Create New Host" msgstr "Create New Host" -#: src/screens/Template/Templates.jsx:17 +#: screens/Template/Templates.jsx:17 msgid "Create New Job Template" msgstr "Create New Job Template" -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:23 +#: screens/NotificationTemplate/NotificationTemplates.jsx:14 +#: screens/NotificationTemplate/NotificationTemplates.jsx:23 msgid "Create New Notification Template" msgstr "Create New Notification Template" -#: src/screens/Organization/Organizations.jsx:17 -#: src/screens/Organization/Organizations.jsx:28 +#: screens/Organization/Organizations.jsx:17 +#: screens/Organization/Organizations.jsx:28 msgid "Create New Organization" msgstr "" -#: src/screens/Project/Projects.jsx:15 -#: src/screens/Project/Projects.jsx:26 +#: screens/Project/Projects.jsx:15 +#: screens/Project/Projects.jsx:26 msgid "Create New Project" msgstr "Create New Project" -#: src/screens/Inventory/Inventories.jsx:114 -#: src/screens/ManagementJob/ManagementJobs.jsx:26 -#: src/screens/Project/Projects.jsx:35 -#: src/screens/Template/Templates.jsx:53 +#: screens/Inventory/Inventories.jsx:112 +#: screens/ManagementJob/ManagementJobs.jsx:26 +#: screens/Project/Projects.jsx:35 +#: screens/Template/Templates.jsx:53 msgid "Create New Schedule" msgstr "Create New Schedule" -#: src/screens/Team/Teams.jsx:15 -#: src/screens/Team/Teams.jsx:26 +#: screens/Team/Teams.jsx:15 +#: screens/Team/Teams.jsx:26 msgid "Create New Team" msgstr "Create New Team" -#: src/screens/User/Users.jsx:16 -#: src/screens/User/Users.jsx:28 +#: screens/User/Users.jsx:16 +#: screens/User/Users.jsx:28 msgid "Create New User" msgstr "Create New User" -#: src/screens/Template/Templates.jsx:19 +#: screens/Template/Templates.jsx:19 msgid "Create New Workflow Template" msgstr "Create New Workflow Template" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.jsx:29 msgid "Create a new Smart Inventory with the applied filter" msgstr "Create a new Smart Inventory with the applied filter" -#: src/screens/InstanceGroup/InstanceGroups.jsx:18 -#: src/screens/InstanceGroup/InstanceGroups.jsx:30 +#: screens/InstanceGroup/InstanceGroups.jsx:18 +#: screens/InstanceGroup/InstanceGroups.jsx:30 msgid "Create container group" msgstr "Create container group" -#: src/screens/InstanceGroup/InstanceGroups.jsx:17 -#: src/screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.jsx:17 +#: screens/InstanceGroup/InstanceGroups.jsx:28 msgid "Create instance group" msgstr "Create instance group" -#: src/screens/CredentialType/CredentialTypes.jsx:24 +#: screens/CredentialType/CredentialTypes.jsx:24 msgid "Create new credential Type" msgstr "Create new credential Type" -#: src/screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.jsx:14 msgid "Create new credential type" msgstr "Create new credential type" -#: src/screens/Inventory/Inventories.jsx:79 -#: src/screens/Inventory/Inventories.jsx:97 +#: screens/Inventory/Inventories.jsx:77 +#: screens/Inventory/Inventories.jsx:95 msgid "Create new group" msgstr "Create new group" -#: src/screens/Inventory/Inventories.jsx:64 -#: src/screens/Inventory/Inventories.jsx:91 +#: screens/Inventory/Inventories.jsx:64 +#: screens/Inventory/Inventories.jsx:89 msgid "Create new host" msgstr "Create new host" -#: src/screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.jsx:17 msgid "Create new inventory" msgstr "Create new inventory" -#: src/screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.jsx:18 msgid "Create new smart inventory" msgstr "Create new smart inventory" -#: src/screens/Inventory/Inventories.jsx:101 +#: screens/Inventory/Inventories.jsx:99 msgid "Create new source" msgstr "Create new source" -#: src/screens/User/Users.jsx:36 +#: screens/User/Users.jsx:36 msgid "Create user token" msgstr "Create user token" -#: src/components/Lookup/ApplicationLookup.jsx:93 -#: src/components/Lookup/HostFilterLookup.jsx:349 -#: src/components/PromptDetail/PromptDetail.jsx:133 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:57 -#: src/screens/Host/HostDetail/HostDetail.jsx:93 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:63 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:114 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:324 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:141 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:47 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:271 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: src/screens/User/UserDetail/UserDetail.jsx:82 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: src/screens/User/UserTokenList/UserTokenList.jsx:134 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/HostFilterLookup.jsx:356 +#: components/PromptDetail/PromptDetail.jsx:133 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 +#: screens/Host/HostDetail/HostDetail.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:117 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:355 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:145 +#: screens/Team/TeamDetail/TeamDetail.jsx:47 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:183 +#: screens/User/UserDetail/UserDetail.jsx:82 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 +#: screens/User/UserTokenList/UserTokenList.jsx:134 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 msgid "Created" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:96 -#: src/components/AddRole/AddResourceRole.jsx:148 -#: src/components/AssociateModal/AssociateModal.jsx:142 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:82 -#: src/components/Lookup/CredentialLookup.jsx:153 -#: src/components/Lookup/InventoryLookup.jsx:114 -#: src/components/Lookup/InventoryLookup.jsx:167 -#: src/components/Lookup/MultiCredentialsLookup.jsx:181 -#: src/components/Lookup/OrganizationLookup.jsx:109 -#: src/components/Lookup/ProjectLookup.jsx:129 -#: src/components/NotificationList/NotificationList.jsx:206 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: src/components/TemplateList/TemplateList.jsx:205 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 -#: src/screens/Credential/CredentialList/CredentialList.jsx:141 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:163 -#: src/screens/Host/HostList/HostList.jsx:156 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:176 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:142 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: src/screens/Project/ProjectList/ProjectList.jsx:161 -#: src/screens/Team/TeamList/TeamList.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: components/AdHocCommands/AdHocCredentialStep.jsx:96 +#: components/AddRole/AddResourceRole.jsx:159 +#: components/AssociateModal/AssociateModal.jsx:144 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:179 +#: components/LaunchPrompt/steps/InventoryStep.jsx:91 +#: components/Lookup/CredentialLookup.jsx:153 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:167 +#: components/Lookup/MultiCredentialsLookup.jsx:181 +#: components/Lookup/OrganizationLookup.jsx:111 +#: components/Lookup/ProjectLookup.jsx:129 +#: components/NotificationList/NotificationList.jsx:206 +#: components/Schedule/ScheduleList/ScheduleList.jsx:201 +#: components/TemplateList/TemplateList.jsx:210 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: 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:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 +#: screens/Inventory/InventoryList/InventoryList.jsx:182 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 +#: screens/Organization/OrganizationList/OrganizationList.jsx:146 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 +#: screens/Project/ProjectList/ProjectList.jsx:166 +#: 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:105 msgid "Created By (Username)" msgstr "Created By (Username)" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:146 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "Created by (username)" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:109 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:53 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:110 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: util/getRelatedResourceDeleteDetails.js:191 msgid "Credential" msgstr "Credential" -#: src/components/Lookup/InstanceGroupsLookup.jsx:96 +#: util/getRelatedResourceDeleteDetails.js:81 +msgid "Credential Input Sources" +msgstr "Credential Input Sources" + +#: components/Lookup/InstanceGroupsLookup.jsx:96 msgid "Credential Name" msgstr "Credential Name" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:214 -#: src/screens/Credential/shared/CredentialForm.jsx:148 -#: src/screens/Credential/shared/CredentialForm.jsx:152 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:229 +#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:152 msgid "Credential Type" msgstr "Credential Type" -#: src/routeConfig.js:117 -#: src/screens/ActivityStream/ActivityStream.jsx:189 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:118 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:164 -#: src/screens/CredentialType/CredentialTypes.jsx:13 -#: src/screens/CredentialType/CredentialTypes.jsx:23 +#: routeConfig.js:118 +#: screens/ActivityStream/ActivityStream.jsx:189 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/CredentialType/CredentialTypes.jsx:13 +#: screens/CredentialType/CredentialTypes.jsx:23 msgid "Credential Types" msgstr "" -#: src/screens/Credential/Credential.jsx:79 +#: screens/Credential/Credential.jsx:79 msgid "Credential not found." msgstr "Credential not found." -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 msgid "Credential passwords" msgstr "Credential passwords" #: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60 -msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." -msgstr "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgstr "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." -#: src/screens/CredentialType/CredentialType.jsx:75 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." +msgstr "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:136 +msgid "Credential to authenticate with a protected container registry." +msgstr "Credential to authenticate with a protected container registry." + +#: screens/CredentialType/CredentialType.jsx:75 msgid "Credential type not found." msgstr "Credential type not found." -#: src/components/JobList/JobListItem.jsx:123 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:162 -#: src/components/LaunchPrompt/steps/useCredentialsStep.jsx:31 -#: src/components/Lookup/MultiCredentialsLookup.jsx:126 -#: src/components/Lookup/MultiCredentialsLookup.jsx:198 -#: src/components/PromptDetail/PromptDetail.jsx:163 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:178 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 -#: src/components/TemplateList/TemplateListItem.jsx:207 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: src/routeConfig.js:70 -#: src/screens/ActivityStream/ActivityStream.jsx:164 -#: src/screens/Credential/CredentialList/CredentialList.jsx:182 -#: src/screens/Credential/Credentials.jsx:13 -#: src/screens/Credential/Credentials.jsx:24 -#: src/screens/Job/JobDetail/JobDetail.jsx:262 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:283 -#: src/screens/Template/shared/JobTemplateForm.jsx:321 +#: components/JobList/JobListItem.jsx:124 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:196 +#: components/LaunchPrompt/steps/useCredentialsStep.jsx:65 +#: components/Lookup/MultiCredentialsLookup.jsx:126 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/PromptDetail/PromptDetail.jsx:163 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:184 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 +#: components/TemplateList/TemplateListItem.jsx:235 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 +#: routeConfig.js:71 +#: screens/ActivityStream/ActivityStream.jsx:164 +#: screens/Credential/CredentialList/CredentialList.jsx:176 +#: screens/Credential/Credentials.jsx:13 +#: screens/Credential/Credentials.jsx:24 +#: screens/Job/JobDetail/JobDetail.jsx:293 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293 +#: screens/Template/shared/JobTemplateForm.jsx:351 +#: util/getRelatedResourceDeleteDetails.js:98 msgid "Credentials" msgstr "" -#: src/components/Pagination/Pagination.jsx:36 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:58 +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:34 msgid "Current page" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:88 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:86 msgid "Custom pod spec" msgstr "Custom pod spec" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 +#: components/TemplateList/TemplateListItem.jsx:145 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93 +#: screens/Project/ProjectList/ProjectListItem.jsx:109 +msgid "Custom virtual environment {0} must be replaced by an execution environment." +msgstr "Custom virtual environment {0} must be replaced by an execution environment." + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:54 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." +msgstr "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 msgid "Customize messages…" msgstr "Customize messages…" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:72 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:73 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:70 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:71 msgid "Customize pod specification" msgstr "Customize pod specification" -#: src/screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:125 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:314 msgid "DELETED" msgstr "DELETED" -#: src/routeConfig.js:34 -#: src/screens/Dashboard/Dashboard.jsx:122 +#: routeConfig.js:35 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Dashboard" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:144 +#: screens/ActivityStream/ActivityStream.jsx:144 msgid "Dashboard (all activity)" msgstr "Dashboard (all activity)" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 msgid "Data retention period" msgstr "Data retention period" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:353 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:457 -#: src/components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/ScheduleForm.jsx:165 msgid "Day" msgstr "Day" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 -#: src/components/Schedule/shared/ScheduleForm.jsx:176 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 +#: components/Schedule/shared/ScheduleForm.jsx:176 msgid "Days of Data to Keep" msgstr "Days of Data to Keep" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: screens/Job/JobOutput/JobOutput.jsx:663 +msgid "Debug" +msgstr "Debug" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 msgid "December" msgstr "December" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: src/screens/Template/Survey/SurveyListItem.jsx:119 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 +#: screens/Template/Survey/SurveyListItem.jsx:121 msgid "Default" msgstr "Default" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:193 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:201 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:208 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:234 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +msgid "Default Execution Environment" +msgstr "Default Execution Environment" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.jsx:201 +#: screens/Template/Survey/SurveyQuestionForm.jsx:208 +#: screens/Template/Survey/SurveyQuestionForm.jsx:234 msgid "Default answer" msgstr "Default answer" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:85 +#: screens/Template/Survey/SurveyQuestionForm.jsx:85 msgid "Default choice must be answered from the choices listed." msgstr "Default choice must be answered from the choices listed." -#: src/screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.jsx:106 msgid "Define system-level features and functions" msgstr "Define system-level features and functions" -#: src/components/DeleteButton/DeleteButton.jsx:22 -#: src/components/DeleteButton/DeleteButton.jsx:26 -#: src/components/DeleteButton/DeleteButton.jsx:37 -#: src/components/DeleteButton/DeleteButton.jsx:41 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:108 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:130 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:137 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:141 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:159 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:37 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:410 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:130 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:261 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:129 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:168 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:70 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:73 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:82 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:103 -#: src/screens/Job/JobDetail/JobDetail.jsx:374 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:368 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:158 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:171 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:72 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:393 -#: src/screens/Template/Survey/SurveyList.jsx:106 -#: src/screens/Template/Survey/SurveyToolbar.jsx:72 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 -#: src/screens/User/UserDetail/UserDetail.jsx:103 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:216 +#: components/DeleteButton/DeleteButton.jsx:76 +#: components/DeleteButton/DeleteButton.jsx:81 +#: components/DeleteButton/DeleteButton.jsx:90 +#: components/DeleteButton/DeleteButton.jsx:94 +#: components/DeleteButton/DeleteButton.jsx:114 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:287 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:140 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:74 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:101 +#: screens/Job/JobDetail/JobDetail.jsx:427 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:369 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:180 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Team/TeamDetail/TeamDetail.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:414 +#: screens/Template/Survey/SurveyList.jsx:107 +#: screens/Template/Survey/SurveyToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:254 +#: screens/User/UserDetail/UserDetail.jsx:104 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 msgid "Delete" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:129 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:128 msgid "Delete All Groups and Hosts" msgstr "Delete All Groups and Hosts" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:257 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:279 msgid "Delete Credential" msgstr "Delete Credential" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131 +msgid "Delete Execution Environment" +msgstr "Delete Execution Environment" + #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 -msgid "Delete Group?" -msgstr "Delete Group?" +#~ msgid "Delete Group?" +#~ msgstr "Delete Group?" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91 -msgid "Delete Groups?" -msgstr "Delete Groups?" +#~ msgid "Delete Groups?" +#~ msgstr "Delete Groups?" -#: src/screens/Host/HostDetail/HostDetail.jsx:122 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:112 +#: screens/Host/HostDetail/HostDetail.jsx:123 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113 msgid "Delete Host" msgstr "Delete Host" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 msgid "Delete Inventory" msgstr "Delete Inventory" -#: src/screens/Job/JobDetail/JobDetail.jsx:371 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:186 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:189 +#: screens/Job/JobDetail/JobDetail.jsx:423 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:201 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:205 msgid "Delete Job" msgstr "Delete Job" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 msgid "Delete Job Template" msgstr "Delete Job Template" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:364 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:365 msgid "Delete Notification" msgstr "Delete Notification" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:154 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 msgid "Delete Organization" msgstr "Delete Organization" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:172 msgid "Delete Project" msgstr "Delete Project" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "Delete Questions" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Delete Schedule" msgstr "Delete Schedule" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "Delete Survey" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:68 +#: screens/Team/TeamDetail/TeamDetail.jsx:69 msgid "Delete Team" msgstr "Delete Team" -#: src/screens/User/UserDetail/UserDetail.jsx:99 +#: screens/User/UserDetail/UserDetail.jsx:100 msgid "Delete User" msgstr "Delete User" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 msgid "Delete User Token" msgstr "Delete User Token" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:212 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 msgid "Delete Workflow Approval" msgstr "Delete Workflow Approval" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:246 msgid "Delete Workflow Job Template" msgstr "Delete Workflow Job Template" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 msgid "Delete all nodes" msgstr "Delete all nodes" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 msgid "Delete application" msgstr "Delete application" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:82 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 msgid "Delete credential type" msgstr "Delete credential type" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:232 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:244 msgid "Delete error" msgstr "Delete error" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:100 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:141 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 msgid "Delete instance group" msgstr "Delete instance group" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288 msgid "Delete inventory source" msgstr "Delete inventory source" -#: src/components/PromptDetail/PromptProjectDetail.jsx:39 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: components/PromptDetail/PromptProjectDetail.jsx:40 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:68 msgid "Delete on Update" msgstr "Delete on Update" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:164 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 msgid "Delete smart inventory" msgstr "Delete smart inventory" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 -msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." -msgstr "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +msgid "" +"Delete the local repository in its entirety prior to\n" +"performing an update. Depending on the size of the\n" +"repository this may significantly increase the amount\n" +"of time required to complete an update." +msgstr "" +"Delete the local repository in its entirety prior to\n" +"performing an update. Depending on the size of the\n" +"repository this may significantly increase the amount\n" +"of time required to complete an update." -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#~ msgstr "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 msgid "Delete this link" msgstr "Delete this link" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:227 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:233 msgid "Delete this node" msgstr "Delete this node" @@ -1707,1822 +1929,2215 @@ msgstr "Delete this node" #~ msgid "Delete {itemName}" #~ msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:113 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162 msgid "Delete {pluralizedItemName}?" msgstr "Delete {pluralizedItemName}?" -#: src/components/DetailList/DeletedDetail.jsx:15 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 +#: components/DetailList/DeletedDetail.jsx:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 msgid "Deleted" msgstr "Deleted" -#: src/components/TemplateList/TemplateList.jsx:259 -#: src/screens/Credential/CredentialList/CredentialList.jsx:190 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:245 -#: src/screens/Project/ProjectList/ProjectList.jsx:223 +#: components/TemplateList/TemplateList.jsx:269 +#: screens/Credential/CredentialList/CredentialList.jsx:189 +#: screens/Inventory/InventoryList/InventoryList.jsx:255 +#: screens/Project/ProjectList/ProjectList.jsx:233 msgid "Deletion Error" msgstr "Deletion Error" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:195 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:252 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259 msgid "Deletion error" msgstr "Deletion error" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 msgid "Denied" msgstr "Denied" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 msgid "Denied by {0} - {1}" msgstr "Denied by {0} - {1}" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:198 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:203 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:59 msgid "Deny" msgstr "Deny" -#: src/components/HostForm/HostForm.jsx:95 -#: src/components/Lookup/ApplicationLookup.jsx:83 -#: src/components/Lookup/ApplicationLookup.jsx:101 -#: src/components/NotificationList/NotificationList.jsx:186 -#: src/components/PromptDetail/PromptDetail.jsx:110 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: src/components/Schedule/shared/ScheduleForm.jsx:110 -#: src/components/TemplateList/TemplateList.jsx:189 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:126 -#: src/screens/Application/shared/ApplicationForm.jsx:62 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:198 -#: src/screens/Credential/CredentialList/CredentialList.jsx:137 -#: src/screens/Credential/shared/CredentialForm.jsx:126 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:45 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:128 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: src/screens/Host/HostDetail/HostDetail.jsx:81 -#: src/screens/Host/HostList/HostList.jsx:152 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:73 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:172 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:191 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: src/screens/Inventory/shared/InventoryForm.jsx:55 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:49 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:110 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:61 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:126 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:89 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:138 -#: src/screens/Organization/shared/OrganizationForm.jsx:60 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:86 -#: src/screens/Project/ProjectList/ProjectList.jsx:138 -#: src/screens/Project/shared/ProjectForm.jsx:168 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:38 -#: src/screens/Team/TeamList/TeamList.jsx:134 -#: src/screens/Team/shared/TeamForm.jsx:43 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:168 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:124 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:109 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:133 -#: src/screens/Template/shared/JobTemplateForm.jsx:208 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:107 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:48 -#: src/screens/User/UserTokenList/UserTokenList.jsx:116 -#: src/screens/User/shared/UserTokenForm.jsx:59 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 +#: screens/Job/JobOutput/JobOutput.jsx:665 +msgid "Deprecated" +msgstr "Deprecated" + +#: components/HostForm/HostForm.jsx:95 +#: components/Lookup/ApplicationLookup.jsx:83 +#: components/Lookup/ApplicationLookup.jsx:101 +#: components/NotificationList/NotificationList.jsx:186 +#: components/PromptDetail/PromptDetail.jsx:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 +#: components/Schedule/ScheduleList/ScheduleList.jsx:197 +#: components/Schedule/shared/ScheduleForm.jsx:110 +#: components/TemplateList/TemplateList.jsx:194 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/shared/ApplicationForm.jsx:62 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211 +#: screens/Credential/CredentialList/CredentialList.jsx:129 +#: screens/Credential/shared/CredentialForm.jsx:126 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/Host/HostDetail/HostDetail.jsx:81 +#: screens/Host/HostList/HostList.jsx:152 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 +#: screens/Inventory/InventoryList/InventoryList.jsx:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 +#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryGroupForm.jsx:49 +#: screens/Inventory/shared/InventorySourceForm.jsx:113 +#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 +#: screens/Organization/OrganizationList/OrganizationList.jsx:142 +#: screens/Organization/shared/OrganizationForm.jsx:68 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 +#: screens/Project/ProjectList/ProjectList.jsx:143 +#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Team/TeamDetail/TeamDetail.jsx:38 +#: screens/Team/TeamList/TeamList.jsx:134 +#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 +#: screens/Template/Survey/SurveyQuestionForm.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:163 +#: screens/Template/shared/JobTemplateForm.jsx:215 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:118 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 +#: screens/User/UserTokenList/UserTokenList.jsx:116 +#: screens/User/shared/UserTokenForm.jsx:59 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 msgid "Description" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 msgid "Destination Channels" msgstr "Destination Channels" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 msgid "Destination Channels or Users" msgstr "Destination Channels or Users" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 msgid "Destination SMS Number(s)" msgstr "Destination SMS Number(s)" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 msgid "Destination SMS number(s)" msgstr "Destination SMS number(s)" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 msgid "Destination channels" msgstr "Destination channels" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 msgid "Destination channels or users" msgstr "Destination channels or users" -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 msgid "Detail coming soon :)" msgstr "Detail coming soon :)" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:60 -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:70 -#: src/components/ErrorDetail/ErrorDetail.jsx:73 -#: src/components/Schedule/Schedule.jsx:67 -#: src/screens/Application/Application/Application.jsx:77 -#: src/screens/Application/Applications.jsx:39 -#: src/screens/Credential/Credential.jsx:58 -#: src/screens/Credential/Credentials.jsx:28 -#: src/screens/CredentialType/CredentialType.jsx:62 -#: src/screens/CredentialType/CredentialTypes.jsx:29 -#: src/screens/Host/Host.jsx:52 -#: src/screens/Host/Hosts.jsx:29 -#: src/screens/InstanceGroup/ContainerGroup.jsx:63 -#: src/screens/InstanceGroup/InstanceGroup.jsx:64 -#: src/screens/InstanceGroup/InstanceGroups.jsx:33 -#: src/screens/InstanceGroup/InstanceGroups.jsx:42 -#: src/screens/Inventory/Inventories.jsx:60 -#: src/screens/Inventory/Inventories.jsx:104 -#: src/screens/Inventory/Inventory.jsx:62 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:88 -#: src/screens/Inventory/SmartInventory.jsx:69 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: src/screens/Job/Job.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:113 -#: src/screens/Job/Jobs.jsx:29 -#: src/screens/ManagementJob/ManagementJobs.jsx:29 -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:27 -#: src/screens/Organization/Organization.jsx:122 -#: src/screens/Organization/Organizations.jsx:31 -#: src/screens/Project/Project.jsx:105 -#: src/screens/Project/Projects.jsx:29 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: src/screens/Setting/Settings.jsx:45 -#: src/screens/Setting/Settings.jsx:48 -#: src/screens/Setting/Settings.jsx:52 -#: src/screens/Setting/Settings.jsx:55 -#: src/screens/Setting/Settings.jsx:58 -#: src/screens/Setting/Settings.jsx:61 -#: src/screens/Setting/Settings.jsx:66 -#: src/screens/Setting/Settings.jsx:69 -#: src/screens/Setting/Settings.jsx:72 -#: src/screens/Setting/Settings.jsx:75 -#: src/screens/Setting/Settings.jsx:84 -#: src/screens/Setting/Settings.jsx:85 -#: src/screens/Setting/Settings.jsx:86 -#: src/screens/Setting/Settings.jsx:87 -#: src/screens/Setting/Settings.jsx:88 -#: src/screens/Setting/Settings.jsx:89 -#: src/screens/Setting/Settings.jsx:98 -#: src/screens/Setting/Settings.jsx:101 -#: src/screens/Setting/Settings.jsx:104 -#: src/screens/Setting/Settings.jsx:107 -#: src/screens/Setting/Settings.jsx:110 -#: src/screens/Setting/Settings.jsx:113 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:55 -#: src/screens/Team/Team.jsx:55 -#: src/screens/Team/Teams.jsx:29 -#: src/screens/Template/Template.jsx:131 -#: src/screens/Template/Templates.jsx:44 -#: src/screens/Template/WorkflowJobTemplate.jsx:121 -#: src/screens/User/User.jsx:63 -#: src/screens/User/UserToken/UserToken.jsx:54 -#: src/screens/User/Users.jsx:31 -#: src/screens/User/Users.jsx:41 -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:21 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:60 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:70 +#: components/ErrorDetail/ErrorDetail.jsx:73 +#: components/Schedule/Schedule.jsx:68 +#: screens/Application/Application/Application.jsx:77 +#: screens/Application/Applications.jsx:39 +#: screens/Credential/Credential.jsx:58 +#: screens/Credential/Credentials.jsx:28 +#: screens/CredentialType/CredentialType.jsx:62 +#: screens/CredentialType/CredentialTypes.jsx:29 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:30 +#: screens/Host/Host.jsx:52 +#: screens/Host/Hosts.jsx:29 +#: screens/InstanceGroup/ContainerGroup.jsx:63 +#: screens/InstanceGroup/InstanceGroup.jsx:64 +#: screens/InstanceGroup/InstanceGroups.jsx:33 +#: screens/InstanceGroup/InstanceGroups.jsx:42 +#: screens/Inventory/Inventories.jsx:60 +#: screens/Inventory/Inventories.jsx:102 +#: screens/Inventory/Inventory.jsx:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 +#: screens/Inventory/InventorySource/InventorySource.jsx:88 +#: screens/Inventory/SmartInventory.jsx:69 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 +#: screens/Job/Job.jsx:103 +#: screens/Job/JobOutput/HostEventModal.jsx:113 +#: screens/Job/Jobs.jsx:29 +#: screens/ManagementJob/ManagementJobs.jsx:29 +#: screens/NotificationTemplate/NotificationTemplate.jsx:83 +#: screens/NotificationTemplate/NotificationTemplates.jsx:27 +#: screens/Organization/Organization.jsx:123 +#: screens/Organization/Organizations.jsx:31 +#: screens/Project/Project.jsx:105 +#: screens/Project/Projects.jsx:29 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:115 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 +#: screens/Setting/Settings.jsx:45 +#: screens/Setting/Settings.jsx:48 +#: screens/Setting/Settings.jsx:52 +#: screens/Setting/Settings.jsx:55 +#: screens/Setting/Settings.jsx:58 +#: screens/Setting/Settings.jsx:61 +#: screens/Setting/Settings.jsx:66 +#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.jsx:72 +#: screens/Setting/Settings.jsx:75 +#: screens/Setting/Settings.jsx:84 +#: screens/Setting/Settings.jsx:85 +#: screens/Setting/Settings.jsx:86 +#: screens/Setting/Settings.jsx:87 +#: screens/Setting/Settings.jsx:88 +#: screens/Setting/Settings.jsx:89 +#: screens/Setting/Settings.jsx:98 +#: screens/Setting/Settings.jsx:101 +#: screens/Setting/Settings.jsx:104 +#: screens/Setting/Settings.jsx:107 +#: 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/Team/Team.jsx:55 +#: screens/Team/Teams.jsx:29 +#: screens/Template/Template.jsx:144 +#: screens/Template/Templates.jsx:44 +#: screens/Template/WorkflowJobTemplate.jsx:121 +#: screens/User/User.jsx:63 +#: screens/User/UserToken/UserToken.jsx:54 +#: screens/User/Users.jsx:31 +#: screens/User/Users.jsx:41 +#: screens/WorkflowApproval/WorkflowApproval.jsx:76 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.jsx:111 msgid "Details tab" msgstr "Details tab" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 msgid "Disable SSL Verification" msgstr "Disable SSL Verification" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 msgid "Disable SSL verification" msgstr "Disable SSL verification" -#: src/components/DisassociateButton/DisassociateButton.jsx:60 -#: src/components/DisassociateButton/DisassociateButton.jsx:87 -#: src/components/DisassociateButton/DisassociateButton.jsx:94 -#: src/components/DisassociateButton/DisassociateButton.jsx:98 -#: src/components/DisassociateButton/DisassociateButton.jsx:117 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:204 -#: src/screens/User/UserRoles/UserRolesList.jsx:204 +#: components/DisassociateButton/DisassociateButton.jsx:60 +#: components/DisassociateButton/DisassociateButton.jsx:87 +#: components/DisassociateButton/DisassociateButton.jsx:95 +#: components/DisassociateButton/DisassociateButton.jsx:99 +#: components/DisassociateButton/DisassociateButton.jsx:119 +#: screens/Team/TeamRoles/TeamRolesList.jsx:205 +#: screens/User/UserRoles/UserRolesList.jsx:205 msgid "Disassociate" msgstr "Disassociate" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:211 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 +#: screens/Host/HostGroups/HostGroupsList.jsx:211 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 msgid "Disassociate group from host?" msgstr "Disassociate group from host?" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 msgid "Disassociate host from group?" msgstr "Disassociate host from group?" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:191 +#: screens/InstanceGroup/Instances/InstanceList.jsx:191 msgid "Disassociate instance from instance group?" msgstr "Disassociate instance from instance group?" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 msgid "Disassociate related group(s)?" msgstr "Disassociate related group(s)?" -#: src/screens/User/UserTeams/UserTeamList.jsx:212 +#: screens/User/UserTeams/UserTeamList.jsx:212 msgid "Disassociate related team(s)?" msgstr "Disassociate related team(s)?" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:192 -#: src/screens/User/UserRoles/UserRolesList.jsx:192 +#: screens/Team/TeamRoles/TeamRolesList.jsx:192 +#: screens/User/UserRoles/UserRolesList.jsx:192 msgid "Disassociate role" msgstr "Disassociate role" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:195 -#: src/screens/User/UserRoles/UserRolesList.jsx:195 +#: screens/Team/TeamRoles/TeamRolesList.jsx:195 +#: screens/User/UserRoles/UserRolesList.jsx:195 msgid "Disassociate role!" msgstr "Disassociate role!" -#: src/components/DisassociateButton/DisassociateButton.jsx:19 +#: components/DisassociateButton/DisassociateButton.jsx:19 msgid "Disassociate?" msgstr "Disassociate?" -#: src/screens/Template/shared/JobTemplateForm.jsx:429 -msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." -msgstr "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#: screens/Template/shared/JobTemplateForm.jsx:459 +msgid "" +"Divide the work done by this job template\n" +"into the specified number of job slices, each running the\n" +"same tasks against a portion of the inventory." +msgstr "" +"Divide the work done by this job template\n" +"into the specified number of job slices, each running the\n" +"same tasks against a portion of the inventory." -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:161 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:163 +#: src/screens/Template/shared/JobTemplateForm.jsx:429 +#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#~ msgstr "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." + +#: components/CodeEditor/VariablesDetail.jsx:114 +#: components/CodeEditor/VariablesDetail.jsx:120 +#: components/CodeEditor/VariablesField.jsx:63 +#: components/CodeEditor/VariablesField.jsx:69 +msgid "Done" +msgstr "Done" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:172 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:177 msgid "Download Output" msgstr "Download Output" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 msgid "E-mail" msgstr "E-mail" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 msgid "E-mail options" msgstr "E-mail options" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:220 +#: screens/Template/Survey/SurveyQuestionForm.jsx:220 msgid "Each answer choice must be on a separate line." msgstr "Each answer choice must be on a separate line." +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175 +msgid "" +"Each time a job runs using this inventory,\n" +"refresh the inventory from the selected source before\n" +"executing job tasks." +msgstr "" +"Each time a job runs using this inventory,\n" +"refresh the inventory from the selected source before\n" +"executing job tasks." + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168 -msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." -msgstr "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgstr "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 +msgid "" +"Each time a job runs using this project, update the\n" +"revision of the project prior to starting the job." +msgstr "" +"Each time a job runs using this project, update the\n" +"revision of the project prior to starting the job." #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 -msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." -msgstr "Each time a job runs using this project, update the revision of the project prior to starting the job." +#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." +#~ msgstr "Each time a job runs using this project, update the revision of the project prior to starting the job." -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:400 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:117 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:119 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:251 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:75 -#: src/screens/Host/HostDetail/HostDetail.jsx:116 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:120 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:67 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:106 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:158 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:355 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:357 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:125 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:143 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:147 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:158 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:87 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:79 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:142 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:79 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:96 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:160 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:14 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:100 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:141 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:79 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:80 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:99 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:57 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:61 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:373 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:207 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:207 -#: src/screens/User/UserDetail/UserDetail.jsx:92 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125 +#: screens/Host/HostDetail/HostDetail.jsx:117 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:137 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:163 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:15 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:150 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Team/TeamDetail/TeamDetail.jsx:58 +#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 +#: screens/User/UserDetail/UserDetail.jsx:93 msgid "Edit" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:67 +#: screens/Credential/CredentialList/CredentialListItem.jsx:64 +#: screens/Credential/CredentialList/CredentialListItem.jsx:68 msgid "Edit Credential" msgstr "Edit Credential" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:38 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:43 msgid "Edit Credential Plugin Configuration" msgstr "Edit Credential Plugin Configuration" -#: src/screens/Application/Applications.jsx:38 -#: src/screens/Credential/Credentials.jsx:27 -#: src/screens/Host/Hosts.jsx:28 -#: src/screens/ManagementJob/ManagementJobs.jsx:32 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:26 -#: src/screens/Organization/Organizations.jsx:30 -#: src/screens/Project/Projects.jsx:28 -#: src/screens/Project/Projects.jsx:40 -#: src/screens/Setting/Settings.jsx:46 -#: src/screens/Setting/Settings.jsx:49 -#: src/screens/Setting/Settings.jsx:53 -#: src/screens/Setting/Settings.jsx:56 -#: src/screens/Setting/Settings.jsx:59 -#: src/screens/Setting/Settings.jsx:62 -#: src/screens/Setting/Settings.jsx:67 -#: src/screens/Setting/Settings.jsx:70 -#: src/screens/Setting/Settings.jsx:73 -#: src/screens/Setting/Settings.jsx:76 -#: src/screens/Setting/Settings.jsx:90 -#: src/screens/Setting/Settings.jsx:91 -#: src/screens/Setting/Settings.jsx:92 -#: src/screens/Setting/Settings.jsx:93 -#: src/screens/Setting/Settings.jsx:94 -#: src/screens/Setting/Settings.jsx:95 -#: src/screens/Setting/Settings.jsx:99 -#: src/screens/Setting/Settings.jsx:102 -#: src/screens/Setting/Settings.jsx:105 -#: src/screens/Setting/Settings.jsx:108 -#: src/screens/Setting/Settings.jsx:111 -#: src/screens/Setting/Settings.jsx:114 -#: src/screens/Team/Teams.jsx:28 -#: src/screens/Template/Templates.jsx:45 -#: src/screens/User/Users.jsx:30 +#: screens/Application/Applications.jsx:38 +#: screens/Credential/Credentials.jsx:27 +#: screens/Host/Hosts.jsx:28 +#: screens/ManagementJob/ManagementJobs.jsx:32 +#: screens/NotificationTemplate/NotificationTemplates.jsx:26 +#: screens/Organization/Organizations.jsx:30 +#: screens/Project/Projects.jsx:28 +#: screens/Project/Projects.jsx:40 +#: screens/Setting/Settings.jsx:46 +#: screens/Setting/Settings.jsx:49 +#: screens/Setting/Settings.jsx:53 +#: screens/Setting/Settings.jsx:56 +#: screens/Setting/Settings.jsx:59 +#: screens/Setting/Settings.jsx:62 +#: screens/Setting/Settings.jsx:67 +#: screens/Setting/Settings.jsx:70 +#: screens/Setting/Settings.jsx:73 +#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.jsx:90 +#: screens/Setting/Settings.jsx:91 +#: screens/Setting/Settings.jsx:92 +#: screens/Setting/Settings.jsx:93 +#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.jsx:95 +#: screens/Setting/Settings.jsx:99 +#: screens/Setting/Settings.jsx:102 +#: screens/Setting/Settings.jsx:105 +#: screens/Setting/Settings.jsx:108 +#: screens/Setting/Settings.jsx:111 +#: screens/Setting/Settings.jsx:114 +#: screens/Team/Teams.jsx:28 +#: screens/Template/Templates.jsx:45 +#: screens/User/Users.jsx:30 msgid "Edit Details" msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:50 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:58 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:85 +msgid "Edit Execution Environment" +msgstr "Edit Execution Environment" + +#: screens/Host/HostGroups/HostGroupItem.jsx:50 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:59 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:67 msgid "Edit Group" msgstr "Edit Group" -#: src/screens/Host/HostList/HostListItem.jsx:52 -#: src/screens/Host/HostList/HostListItem.jsx:55 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 +#: screens/Host/HostList/HostListItem.jsx:52 +#: screens/Host/HostList/HostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:78 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 msgid "Edit Host" msgstr "Edit Host" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:115 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:119 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:115 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:120 msgid "Edit Inventory" msgstr "Edit Inventory" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 msgid "Edit Link" msgstr "Edit Link" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:204 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 msgid "Edit Node" msgstr "Edit Node" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:137 msgid "Edit Notification Template" msgstr "Edit Notification Template" -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:47 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:50 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:74 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:78 msgid "Edit Organization" msgstr "Edit Organization" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:134 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:138 +#: screens/Project/ProjectList/ProjectListItem.jsx:161 +#: screens/Project/ProjectList/ProjectListItem.jsx:166 msgid "Edit Project" msgstr "Edit Project" -#: src/screens/Template/Templates.jsx:51 +#: screens/Template/Templates.jsx:51 msgid "Edit Question" msgstr "Edit Question" -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:116 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: src/screens/Template/Templates.jsx:58 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:116 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:120 +#: screens/Template/Templates.jsx:58 msgid "Edit Schedule" msgstr "Edit Schedule" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:98 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:126 msgid "Edit Source" msgstr "Edit Source" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:42 -#: src/screens/Team/TeamList/TeamListItem.jsx:57 -#: src/screens/Team/TeamList/TeamListItem.jsx:60 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 +#: screens/Team/TeamList/TeamListItem.jsx:57 +#: screens/Team/TeamList/TeamListItem.jsx:61 msgid "Edit Team" msgstr "Edit Team" -#: src/components/TemplateList/TemplateListItem.jsx:167 -#: src/components/TemplateList/TemplateListItem.jsx:172 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:109 +#: components/TemplateList/TemplateListItem.jsx:194 +#: components/TemplateList/TemplateListItem.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:133 msgid "Edit Template" msgstr "Edit Template" -#: src/screens/User/UserList/UserListItem.jsx:82 -#: src/screens/User/UserList/UserListItem.jsx:85 +#: screens/User/UserList/UserListItem.jsx:82 +#: screens/User/UserList/UserListItem.jsx:86 msgid "Edit User" msgstr "Edit User" -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:50 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:50 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:54 msgid "Edit application" msgstr "Edit application" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:44 msgid "Edit credential type" msgstr "Edit credential type" -#: src/screens/CredentialType/CredentialTypes.jsx:27 -#: src/screens/InstanceGroup/InstanceGroups.jsx:38 -#: src/screens/InstanceGroup/InstanceGroups.jsx:48 -#: src/screens/Inventory/Inventories.jsx:61 -#: src/screens/Inventory/Inventories.jsx:67 -#: src/screens/Inventory/Inventories.jsx:82 -#: src/screens/Inventory/Inventories.jsx:107 +#: screens/CredentialType/CredentialTypes.jsx:27 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:27 +#: screens/InstanceGroup/InstanceGroups.jsx:38 +#: screens/InstanceGroup/InstanceGroups.jsx:48 +#: screens/Inventory/Inventories.jsx:61 +#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.jsx:105 msgid "Edit details" msgstr "Edit details" -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 msgid "Edit form coming soon :)" msgstr "Edit form coming soon :)" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:108 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:109 msgid "Edit instance group" msgstr "Edit instance group" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 msgid "Edit this link" msgstr "Edit this link" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:199 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:205 msgid "Edit this node" msgstr "Edit this node" -#: src/components/Workflow/WorkflowNodeHelp.jsx:146 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:123 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: components/Workflow/WorkflowNodeHelp.jsx:146 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:130 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 msgid "Elapsed" msgstr "Elapsed" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:122 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:129 msgid "Elapsed Time" msgstr "Elapsed Time" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:124 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:131 msgid "Elapsed time that the job ran" msgstr "Elapsed time that the job ran" -#: src/components/NotificationList/NotificationList.jsx:193 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 -#: src/screens/User/UserDetail/UserDetail.jsx:64 -#: src/screens/User/shared/UserForm.jsx:77 +#: components/NotificationList/NotificationList.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 +#: screens/User/UserDetail/UserDetail.jsx:64 +#: screens/User/shared/UserForm.jsx:77 msgid "Email" msgstr "Email" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 msgid "Email Options" msgstr "Email Options" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:63 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:128 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:265 msgid "Enable Concurrent Jobs" msgstr "Enable Concurrent Jobs" -#: src/screens/Template/shared/JobTemplateForm.jsx:557 +#: screens/Template/shared/JobTemplateForm.jsx:587 msgid "Enable Fact Storage" msgstr "Enable Fact Storage" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 msgid "Enable HTTPS certificate verification" msgstr "Enable HTTPS certificate verification" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:57 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 msgid "Enable Privilege Escalation" msgstr "Enable Privilege Escalation" -#: src/screens/Template/shared/JobTemplateForm.jsx:531 -#: src/screens/Template/shared/JobTemplateForm.jsx:534 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:216 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:219 +#: screens/Template/shared/JobTemplateForm.jsx:561 +#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 msgid "Enable Webhook" msgstr "Enable Webhook" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:223 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Enable Webhook for this workflow job template." msgstr "Enable Webhook for this workflow job template." -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 msgid "Enable Webhooks" msgstr "Enable Webhooks" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 msgid "Enable external logging" msgstr "Enable external logging" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 msgid "Enable log system tracking facts individually" msgstr "Enable log system tracking facts individually" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:236 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:239 +#: components/AdHocCommands/AdHocDetailsStep.jsx:236 +#: components/AdHocCommands/AdHocDetailsStep.jsx:239 msgid "Enable privilege escalation" msgstr "Enable privilege escalation" -#: src/screens/Setting/SettingList.jsx:57 +#: screens/Setting/SettingList.jsx:57 msgid "Enable simplified login for your {brandName} applications" msgstr "Enable simplified login for your {brandName} applications" -#: src/screens/Template/shared/JobTemplateForm.jsx:537 +#: screens/Template/shared/JobTemplateForm.jsx:567 msgid "Enable webhook for this template." msgstr "Enable webhook for this template." -#: src/components/Lookup/HostFilterLookup.jsx:94 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 +#: components/Lookup/HostFilterLookup.jsx:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 msgid "Enabled" msgstr "Enabled" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267 msgid "Enabled Value" msgstr "Enabled Value" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:231 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254 msgid "Enabled Variable" msgstr "Enabled Variable" +#: screens/Template/shared/JobTemplateForm.jsx:547 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact BRAND_NAME\n" +"and request a configuration update using this job\n" +"template." +msgstr "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact BRAND_NAME\n" +"and request a configuration update using this job\n" +"template." + +#: components/AdHocCommands/AdHocDetailsStep.jsx:244 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact {brandName}\n" +"and request a configuration update using this job\n" +"template" +msgstr "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact {brandName}\n" +"and request a configuration update using this job\n" +"template" + #: src/screens/Template/shared/JobTemplateForm.jsx:517 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." -msgstr "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#~ msgstr "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." #: src/components/AdHocCommands/AdHocDetailsStep.jsx:244 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" -msgstr "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" +#~ msgstr "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:149 -#: src/screens/Setting/shared/SettingDetail.jsx:75 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:154 +#: screens/Setting/shared/SettingDetail.jsx:75 msgid "Encrypted" msgstr "Encrypted" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:504 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 msgid "End" msgstr "End" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:562 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 msgid "End date/time" msgstr "End date/time" -#: src/components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:96 msgid "End did not match an expected value" msgstr "End did not match an expected value" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:31 +#: screens/Host/HostList/SmartInventoryButton.jsx:31 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "Enter at least one search filter to create a new Smart Inventory" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:39 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:39 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." -#: src/screens/Inventory/shared/InventoryForm.jsx:85 +#: screens/Inventory/shared/SmartInventoryForm.jsx:100 +msgid "" +"Enter inventory variables using either JSON or YAML syntax.\n" +"Use the radio button to toggle between the two. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" +"Enter inventory variables using either JSON or YAML syntax.\n" +"Use the radio button to toggle between the two. Refer to the\n" +"Ansible Tower documentation for example syntax." + +#: screens/Inventory/shared/InventoryForm.jsx:85 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" #: src/screens/Inventory/shared/SmartInventoryForm.jsx:100 -msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." -msgstr "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." +#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 msgid "Enter one Annotation Tag per line, without commas." msgstr "Enter one Annotation Tag per line, without commas." +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +msgid "" +"Enter one IRC channel or username per line. The pound\n" +"symbol (#) for channels, and the at (@) symbol for users, are not\n" +"required." +msgstr "" +"Enter one IRC channel or username per line. The pound\n" +"symbol (#) for channels, and the at (@) symbol for users, are not\n" +"required." + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 -msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." -msgstr "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgstr "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +msgid "" +"Enter one Slack channel per line. The pound symbol (#)\n" +"is required for channels." +msgstr "" +"Enter one Slack channel per line. The pound symbol (#)\n" +"is required for channels." #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 -msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." -msgstr "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgstr "Enter one Slack channel per line. The pound symbol (#) is required for channels." + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +msgid "" +"Enter one email address per line to create a recipient\n" +"list for this type of notification." +msgstr "" +"Enter one email address per line to create a recipient\n" +"list for this type of notification." #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 -msgid "Enter one email address per line to create a recipient list for this type of notification." -msgstr "Enter one email address per line to create a recipient list for this type of notification." +#~ msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgstr "Enter one email address per line to create a recipient list for this type of notification." + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +msgid "" +"Enter one phone number per line to specify where to\n" +"route SMS messages." +msgstr "" +"Enter one phone number per line to specify where to\n" +"route SMS messages." #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 -msgid "Enter one phone number per line to specify where to route SMS messages." -msgstr "Enter one phone number per line to specify where to route SMS messages." +#~ msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgstr "Enter one phone number per line to specify where to route SMS messages." + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +msgid "" +"Enter the number associated with the \"Messaging\n" +"Service\" in Twilio in the format +18005550199." +msgstr "" +"Enter the number associated with the \"Messaging\n" +"Service\" in Twilio in the format +18005550199." #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 -msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." -msgstr "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." +#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." +#~ msgstr "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:37 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." #: src/screens/Job/JobDetail/JobDetail.jsx:224 -msgid "Environment" -msgstr "Environment" +#~ msgid "Environment" +#~ msgstr "Environment" -#: src/components/JobList/JobList.jsx:227 -#: src/components/Workflow/WorkflowNodeHelp.jsx:92 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:198 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:255 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/JobList/JobList.jsx:205 +#: components/Workflow/WorkflowNodeHelp.jsx:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:161 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262 +#: screens/Job/JobOutput/JobOutput.jsx:668 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Error" msgstr "Error" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:431 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:432 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 msgid "Error message" msgstr "Error message" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:440 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:441 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 msgid "Error message body" msgstr "Error message body" -#: src/components/AdHocCommands/AdHocCommands.jsx:98 -#: src/components/AppContainer/AppContainer.jsx:215 -#: src/components/CopyButton/CopyButton.jsx:49 -#: src/components/HostToggle/HostToggle.jsx:73 -#: src/components/InstanceToggle/InstanceToggle.jsx:69 -#: src/components/JobList/JobList.jsx:288 -#: src/components/JobList/JobList.jsx:299 -#: src/components/LaunchButton/LaunchButton.jsx:150 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:66 -#: src/components/NotificationList/NotificationList.jsx:248 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:234 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:418 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:241 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:77 -#: src/components/TemplateList/TemplateList.jsx:262 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:191 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:269 -#: src/screens/Credential/CredentialList/CredentialList.jsx:193 -#: src/screens/Host/HostDetail/HostDetail.jsx:60 -#: src/screens/Host/HostDetail/HostDetail.jsx:131 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:243 -#: src/screens/Host/HostList/HostList.jsx:222 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:232 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:83 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:121 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:246 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:289 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:235 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:84 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:95 -#: src/screens/Login/Login.jsx:270 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:376 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:206 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:199 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:180 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: src/screens/Project/ProjectList/ProjectList.jsx:224 -#: src/screens/Project/shared/ProjectSyncButton.jsx:40 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:80 -#: src/screens/Team/TeamList/TeamList.jsx:205 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:229 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:402 -#: src/screens/Template/TemplateSurvey.jsx:126 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:164 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:179 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:291 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:586 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:293 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:304 -#: src/screens/User/UserDetail/UserDetail.jsx:111 -#: src/screens/User/UserList/UserList.jsx:197 -#: src/screens/User/UserRoles/UserRolesList.jsx:229 -#: src/screens/User/UserTeams/UserTeamList.jsx:257 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:89 -#: src/screens/User/UserTokenList/UserTokenList.jsx:191 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:235 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:246 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:596 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:598 +msgid "Error saving the workflow!" +msgstr "Error saving the workflow!" + +#: components/AdHocCommands/AdHocCommands.jsx:98 +#: components/AppContainer/AppContainer.jsx:214 +#: components/CopyButton/CopyButton.jsx:51 +#: components/DeleteButton/DeleteButton.jsx:57 +#: components/HostToggle/HostToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:69 +#: components/JobList/JobList.jsx:266 +#: components/JobList/JobList.jsx:277 +#: components/LaunchButton/LaunchButton.jsx:162 +#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/NotificationList/NotificationList.jsx:248 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204 +#: components/ResourceAccessList/ResourceAccessList.jsx:236 +#: components/ResourceAccessList/ResourceAccessList.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419 +#: components/Schedule/ScheduleList/ScheduleList.jsx:241 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 +#: components/Schedule/shared/SchedulePromptableFields.jsx:77 +#: components/TemplateList/TemplateList.jsx:272 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:139 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialList/CredentialList.jsx:192 +#: screens/Host/HostDetail/HostDetail.jsx:60 +#: screens/Host/HostDetail/HostDetail.jsx:132 +#: screens/Host/HostGroups/HostGroupsList.jsx:243 +#: screens/Host/HostList/HostList.jsx:222 +#: screens/InstanceGroup/Instances/InstanceList.jsx:232 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:148 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:84 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 +#: screens/Inventory/InventoryList/InventoryList.jsx:256 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:234 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:247 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:97 +#: screens/Login/Login.jsx:184 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:377 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:189 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 +#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/shared/ProjectSyncButton.jsx:41 +#: screens/Team/TeamDetail/TeamDetail.jsx:81 +#: screens/Team/TeamList/TeamList.jsx:205 +#: screens/Team/TeamRoles/TeamRolesList.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:423 +#: screens/Template/TemplateSurvey.jsx:126 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:331 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:342 +#: screens/User/UserDetail/UserDetail.jsx:112 +#: screens/User/UserList/UserList.jsx:197 +#: screens/User/UserRoles/UserRolesList.jsx:231 +#: screens/User/UserTeams/UserTeamList.jsx:257 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 +#: screens/User/UserTokenList/UserTokenList.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 msgid "Error!" msgstr "Error!" -#: src/components/CodeMirrorInput/VariablesDetail.jsx:115 +#: components/CodeEditor/VariablesDetail.jsx:103 msgid "Error:" msgstr "Error:" -#: src/screens/ActivityStream/ActivityStream.jsx:252 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/ActivityStream/ActivityStream.jsx:258 +#: screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/Job/JobOutput/JobOutput.jsx:635 msgid "Event" msgstr "Event" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:34 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 msgid "Event detail" msgstr "Event detail" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 msgid "Event detail modal" msgstr "Event detail modal" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:564 +#: screens/ActivityStream/ActivityStreamDescription.jsx:564 msgid "Event summary not available" msgstr "Event summary not available" -#: src/screens/ActivityStream/ActivityStream.jsx:221 +#: screens/ActivityStream/ActivityStream.jsx:227 msgid "Events" msgstr "Events" -#: src/components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.jsx:160 msgid "Exact match (default lookup if not specified)." msgstr "Exact match (default lookup if not specified)." -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 msgid "Example URLs for GIT Source Control include:" msgstr "Example URLs for GIT Source Control include:" -#: src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 msgid "Example URLs for Remote Archive Source Control include:" msgstr "Example URLs for Remote Archive Source Control include:" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 msgid "Example URLs for Subversion Source Control include:" msgstr "Example URLs for Subversion Source Control include:" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 msgid "Examples include:" msgstr "Examples include:" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 msgid "Execute regardless of the parent node's final state." msgstr "Execute regardless of the parent node's final state." -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 msgid "Execute when the parent node results in a failure state." msgstr "Execute when the parent node results in a failure state." -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 msgid "Execute when the parent node results in a successful state." msgstr "Execute when the parent node results in a successful state." -#: src/screens/Job/JobDetail/JobDetail.jsx:225 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:135 +msgid "Execution Environment" +msgstr "Execution Environment" + +#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: routeConfig.js:143 +#: screens/ActivityStream/ActivityStream.jsx:210 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/Organization/Organization.jsx:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 +#: screens/Organization/Organizations.jsx:38 +#: util/getRelatedResourceDeleteDetails.js:88 +#: util/getRelatedResourceDeleteDetails.js:212 +msgid "Execution Environments" +msgstr "Execution Environments" + +#: screens/Job/JobDetail/JobDetail.jsx:256 msgid "Execution Node" msgstr "Execution Node" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:22 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:25 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:41 +msgid "Execution environment image" +msgstr "Execution environment image" + +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:33 +msgid "Execution environment name" +msgstr "Execution environment name" + +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +msgid "Execution environment not found." +msgstr "Execution environment not found." + +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +msgid "Execution environments" +msgstr "Execution environments" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 msgid "Exit Without Saving" msgstr "Exit Without Saving" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:50 +#: components/ExpandCollapse/ExpandCollapse.jsx:52 msgid "Expand" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 +#: components/CodeEditor/VariablesDetail.jsx:214 +#: components/CodeEditor/VariablesField.jsx:165 +msgid "Expand input" +msgstr "Expand input" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "Expected at least one of client_email, project_id or private_key to be present in the file." -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:65 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 +#: screens/User/UserTokenList/UserTokenListItem.jsx:65 msgid "Expiration" msgstr "Expiration" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:58 -#: src/screens/User/UserTokenList/UserTokenList.jsx:130 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:66 -#: src/screens/User/UserTokens/UserTokens.jsx:90 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 +#: screens/User/UserTokenList/UserTokenList.jsx:130 +#: screens/User/UserTokenList/UserTokenListItem.jsx:66 +#: screens/User/UserTokens/UserTokens.jsx:90 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 msgid "Expires" msgstr "Expires" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 msgid "Expires on {0}" msgstr "Expires on {0}" -#: src/components/JobList/JobListItem.jsx:167 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.jsx:168 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 msgid "Explanation" msgstr "Explanation" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:112 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:116 msgid "External Secret Management System" msgstr "External Secret Management System" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:309 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:310 +#: components/AdHocCommands/AdHocDetailsStep.jsx:309 +#: components/AdHocCommands/AdHocDetailsStep.jsx:310 msgid "Extra variables" msgstr "Extra variables" -#: src/components/Sparkline/Sparkline.jsx:35 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:61 +#: components/Sparkline/Sparkline.jsx:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49 +#: screens/Project/ProjectList/ProjectListItem.jsx:69 msgid "FINISHED:" msgstr "FINISHED:" -#: src/screens/Host/Host.jsx:57 -#: src/screens/Host/HostFacts/HostFacts.jsx:39 -#: src/screens/Host/Hosts.jsx:30 -#: src/screens/Inventory/Inventories.jsx:75 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Host/Host.jsx:57 +#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/Hosts.jsx:30 +#: screens/Inventory/Inventories.jsx:73 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 msgid "Facts" msgstr "Facts" -#: src/components/JobList/JobList.jsx:226 -#: src/components/Workflow/WorkflowNodeHelp.jsx:89 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:111 +#: components/JobList/JobList.jsx:204 +#: components/Workflow/WorkflowNodeHelp.jsx:89 +#: screens/Dashboard/shared/ChartTooltip.jsx:66 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:118 msgid "Failed" msgstr "Failed" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:110 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:117 msgid "Failed Host Count" msgstr "Failed Host Count" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:112 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:119 msgid "Failed Hosts" msgstr "Failed Hosts" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:50 -#: src/screens/Dashboard/Dashboard.jsx:135 +#: components/LaunchButton/ReLaunchDropDown.jsx:50 +#: screens/Dashboard/Dashboard.jsx:135 msgid "Failed hosts" msgstr "Failed hosts" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 msgid "Failed to approve one or more workflow approval." msgstr "Failed to approve one or more workflow approval." -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:238 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 msgid "Failed to approve workflow approval." msgstr "Failed to approve workflow approval." -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:240 +msgid "Failed to assign roles properly" +msgstr "Failed to assign roles properly" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 msgid "Failed to associate role" msgstr "Failed to associate role" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:247 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:236 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 -#: src/screens/User/UserTeams/UserTeamList.jsx:261 +#: screens/Host/HostGroups/HostGroupsList.jsx:247 +#: screens/InstanceGroup/Instances/InstanceList.jsx:236 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 +#: screens/User/UserTeams/UserTeamList.jsx:261 msgid "Failed to associate." msgstr "Failed to associate." -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:98 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:100 msgid "Failed to cancel inventory source sync." msgstr "Failed to cancel inventory source sync." -#: src/components/JobList/JobList.jsx:302 +#: components/JobList/JobList.jsx:280 msgid "Failed to cancel one or more jobs." msgstr "Failed to cancel one or more jobs." -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:84 +#: screens/Credential/CredentialList/CredentialListItem.jsx:85 msgid "Failed to copy credential." msgstr "Failed to copy credential." -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:103 +msgid "Failed to copy execution environment" +msgstr "Failed to copy execution environment" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:143 msgid "Failed to copy inventory." msgstr "Failed to copy inventory." -#: src/screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/ProjectList/ProjectListItem.jsx:183 msgid "Failed to copy project." msgstr "Failed to copy project." -#: src/components/TemplateList/TemplateListItem.jsx:186 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:145 +#: components/TemplateList/TemplateListItem.jsx:214 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:155 msgid "Failed to copy template." msgstr "Failed to copy template." -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:141 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:142 msgid "Failed to delete application." msgstr "Failed to delete application." -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:298 msgid "Failed to delete credential." msgstr "Failed to delete credential." -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:88 msgid "Failed to delete group {0}." msgstr "Failed to delete group {0}." -#: src/screens/Host/HostDetail/HostDetail.jsx:134 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:124 +#: screens/Host/HostDetail/HostDetail.jsx:135 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:125 msgid "Failed to delete host." msgstr "Failed to delete host." -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:293 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306 msgid "Failed to delete inventory source {name}." msgstr "Failed to delete inventory source {name}." -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:141 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:151 msgid "Failed to delete inventory." msgstr "Failed to delete inventory." -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:426 msgid "Failed to delete job template." msgstr "Failed to delete job template." -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:380 msgid "Failed to delete notification." msgstr "Failed to delete notification." -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 msgid "Failed to delete one or more applications." msgstr "Failed to delete one or more applications." -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:201 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 msgid "Failed to delete one or more credential types." msgstr "Failed to delete one or more credential types." -#: src/screens/Credential/CredentialList/CredentialList.jsx:196 +#: screens/Credential/CredentialList/CredentialList.jsx:195 msgid "Failed to delete one or more credentials." msgstr "Failed to delete one or more credentials." -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:152 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 +msgid "Failed to delete one or more execution environments" +msgstr "Failed to delete one or more execution environments" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:151 msgid "Failed to delete one or more groups." msgstr "Failed to delete one or more groups." -#: src/screens/Host/HostList/HostList.jsx:225 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 +#: screens/Host/HostList/HostList.jsx:225 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 msgid "Failed to delete one or more hosts." msgstr "Failed to delete one or more hosts." -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:258 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Failed to delete one or more instance groups." msgstr "Failed to delete one or more instance groups." -#: src/screens/Inventory/InventoryList/InventoryList.jsx:249 +#: screens/Inventory/InventoryList/InventoryList.jsx:259 msgid "Failed to delete one or more inventories." msgstr "Failed to delete one or more inventories." -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:238 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:250 msgid "Failed to delete one or more inventory sources." msgstr "Failed to delete one or more inventory sources." -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 msgid "Failed to delete one or more job templates." msgstr "Failed to delete one or more job templates." -#: src/components/JobList/JobList.jsx:291 +#: components/JobList/JobList.jsx:269 msgid "Failed to delete one or more jobs." msgstr "Failed to delete one or more jobs." -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 msgid "Failed to delete one or more notification template." msgstr "Failed to delete one or more notification template." -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:202 +#: screens/Organization/OrganizationList/OrganizationList.jsx:211 msgid "Failed to delete one or more organizations." msgstr "Failed to delete one or more organizations." -#: src/screens/Project/ProjectList/ProjectList.jsx:227 +#: screens/Project/ProjectList/ProjectList.jsx:237 msgid "Failed to delete one or more projects." msgstr "Failed to delete one or more projects." -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:244 +#: components/Schedule/ScheduleList/ScheduleList.jsx:244 msgid "Failed to delete one or more schedules." msgstr "Failed to delete one or more schedules." -#: src/screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:208 msgid "Failed to delete one or more teams." msgstr "Failed to delete one or more teams." -#: src/components/TemplateList/TemplateList.jsx:265 +#: components/TemplateList/TemplateList.jsx:275 msgid "Failed to delete one or more templates." msgstr "Failed to delete one or more templates." -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 msgid "Failed to delete one or more tokens." msgstr "Failed to delete one or more tokens." -#: src/screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.jsx:194 msgid "Failed to delete one or more user tokens." msgstr "Failed to delete one or more user tokens." -#: src/screens/User/UserList/UserList.jsx:200 +#: screens/User/UserList/UserList.jsx:200 msgid "Failed to delete one or more users." msgstr "Failed to delete one or more users." -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 msgid "Failed to delete one or more workflow approval." msgstr "Failed to delete one or more workflow approval." -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:182 msgid "Failed to delete organization." msgstr "Failed to delete organization." -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:183 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:192 msgid "Failed to delete project." msgstr "Failed to delete project." -#: src/components/ResourceAccessList/ResourceAccessList.jsx:237 +#: components/ResourceAccessList/ResourceAccessList.jsx:251 msgid "Failed to delete role" msgstr "Failed to delete role" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:232 -#: src/screens/User/UserRoles/UserRolesList.jsx:232 +#: screens/Team/TeamRoles/TeamRolesList.jsx:234 +#: screens/User/UserRoles/UserRolesList.jsx:234 msgid "Failed to delete role." msgstr "Failed to delete role." -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:421 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:422 msgid "Failed to delete schedule." msgstr "Failed to delete schedule." -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:180 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:181 msgid "Failed to delete smart inventory." msgstr "Failed to delete smart inventory." -#: src/screens/Team/TeamDetail/TeamDetail.jsx:83 +#: screens/Team/TeamDetail/TeamDetail.jsx:84 msgid "Failed to delete team." msgstr "Failed to delete team." -#: src/screens/User/UserDetail/UserDetail.jsx:114 +#: screens/User/UserDetail/UserDetail.jsx:115 msgid "Failed to delete user." msgstr "Failed to delete user." -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 msgid "Failed to delete workflow approval." msgstr "Failed to delete workflow approval." -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:238 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 msgid "Failed to delete workflow job template." msgstr "Failed to delete workflow job template." -#: src/screens/Host/HostDetail/HostDetail.jsx:63 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.jsx:63 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 msgid "Failed to delete {name}." msgstr "Failed to delete {name}." -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Failed to deny one or more workflow approval." msgstr "Failed to deny one or more workflow approval." -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:249 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 msgid "Failed to deny workflow approval." msgstr "Failed to deny workflow approval." -#: src/screens/Host/HostGroups/HostGroupsList.jsx:248 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 +#: screens/Host/HostGroups/HostGroupsList.jsx:248 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 msgid "Failed to disassociate one or more groups." msgstr "Failed to disassociate one or more groups." -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 msgid "Failed to disassociate one or more hosts." msgstr "Failed to disassociate one or more hosts." -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:237 +#: screens/InstanceGroup/Instances/InstanceList.jsx:237 msgid "Failed to disassociate one or more instances." msgstr "Failed to disassociate one or more instances." -#: src/screens/User/UserTeams/UserTeamList.jsx:262 +#: screens/User/UserTeams/UserTeamList.jsx:262 msgid "Failed to disassociate one or more teams." msgstr "Failed to disassociate one or more teams." -#: src/screens/Login/Login.jsx:274 +#: screens/Login/Login.jsx:189 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "Failed to fetch custom login configuration settings. System defaults will be shown instead." -#: src/components/AdHocCommands/AdHocCommands.jsx:106 -#: src/components/LaunchButton/LaunchButton.jsx:153 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: components/AdHocCommands/AdHocCommands.jsx:106 +#: components/LaunchButton/LaunchButton.jsx:165 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 msgid "Failed to launch job." msgstr "Failed to launch job." -#: src/components/AppContainer/AppContainer.jsx:218 +#: components/AppContainer/AppContainer.jsx:217 msgid "Failed to retrieve configuration." msgstr "Failed to retrieve configuration." -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:296 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:334 msgid "Failed to retrieve full node resource object." msgstr "Failed to retrieve full node resource object." -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:345 msgid "Failed to retrieve node credentials." msgstr "Failed to retrieve node credentials." -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:87 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:167 +msgid "Failed to send test notification." +msgstr "Failed to send test notification." + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:89 msgid "Failed to sync inventory source." msgstr "Failed to sync inventory source." -#: src/screens/Project/shared/ProjectSyncButton.jsx:43 +#: screens/Project/shared/ProjectSyncButton.jsx:44 msgid "Failed to sync project." msgstr "Failed to sync project." -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:225 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:237 msgid "Failed to sync some or all inventory sources." msgstr "Failed to sync some or all inventory sources." -#: src/components/HostToggle/HostToggle.jsx:77 +#: components/HostToggle/HostToggle.jsx:77 msgid "Failed to toggle host." msgstr "Failed to toggle host." -#: src/components/InstanceToggle/InstanceToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:73 msgid "Failed to toggle instance." msgstr "Failed to toggle instance." -#: src/components/NotificationList/NotificationList.jsx:252 +#: components/NotificationList/NotificationList.jsx:252 msgid "Failed to toggle notification." msgstr "Failed to toggle notification." -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 msgid "Failed to toggle schedule." msgstr "Failed to toggle schedule." -#: src/screens/Template/TemplateSurvey.jsx:129 +#: screens/Template/TemplateSurvey.jsx:129 msgid "Failed to update survey." msgstr "Failed to update survey." -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 msgid "Failed to user token." msgstr "Failed to user token." -#: src/components/NotificationList/NotificationListItem.jsx:83 -#: src/components/NotificationList/NotificationListItem.jsx:84 +#: components/NotificationList/NotificationListItem.jsx:83 +#: components/NotificationList/NotificationListItem.jsx:84 msgid "Failure" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 msgid "False" msgstr "False" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 msgid "February" msgstr "February" -#: src/components/Search/AdvancedSearch.jsx:170 +#: components/Search/AdvancedSearch.jsx:171 msgid "Field contains value." msgstr "Field contains value." -#: src/components/Search/AdvancedSearch.jsx:190 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field ends with value." msgstr "Field ends with value." -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:84 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:82 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "Field for passing a custom Kubernetes or OpenShift Pod specification." -#: src/components/Search/AdvancedSearch.jsx:200 +#: components/Search/AdvancedSearch.jsx:201 msgid "Field matches the given regular expression." msgstr "Field matches the given regular expression." -#: src/components/Search/AdvancedSearch.jsx:180 +#: components/Search/AdvancedSearch.jsx:181 msgid "Field starts with value." msgstr "Field starts with value." -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 msgid "Fifth" msgstr "Fifth" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 +#: screens/Job/JobOutput/JobOutput.jsx:652 +msgid "File Difference" +msgstr "File Difference" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 msgid "File upload rejected. Please select a single .json file." msgstr "File upload rejected. Please select a single .json file." -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 msgid "File, directory or script" msgstr "File, directory or script" -#: src/components/JobList/JobList.jsx:243 -#: src/components/JobList/JobListItem.jsx:77 +#: components/JobList/JobList.jsx:221 +#: components/JobList/JobListItem.jsx:77 msgid "Finish Time" msgstr "Finish Time" -#: src/screens/Job/JobDetail/JobDetail.jsx:156 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.jsx:157 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 msgid "Finished" msgstr "Finished" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 msgid "First" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:119 -#: src/components/AddRole/AddResourceRole.jsx:133 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:130 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:163 -#: src/screens/User/UserDetail/UserDetail.jsx:65 -#: src/screens/User/UserList/UserList.jsx:123 -#: src/screens/User/UserList/UserList.jsx:166 -#: src/screens/User/UserList/UserListItem.jsx:62 -#: src/screens/User/UserList/UserListItem.jsx:65 -#: src/screens/User/shared/UserForm.jsx:109 +#: components/AddRole/AddResourceRole.jsx:130 +#: components/AddRole/AddResourceRole.jsx:144 +#: components/ResourceAccessList/ResourceAccessList.jsx:132 +#: components/ResourceAccessList/ResourceAccessList.jsx:165 +#: screens/User/UserDetail/UserDetail.jsx:65 +#: screens/User/UserList/UserList.jsx:123 +#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserListItem.jsx:62 +#: screens/User/UserList/UserListItem.jsx:65 +#: screens/User/shared/UserForm.jsx:109 msgid "First Name" msgstr "First Name" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 msgid "First Run" msgstr "First Run" -#: src/components/Search/AdvancedSearch.jsx:248 +#: components/Search/AdvancedSearch.jsx:249 msgid "First, select a key" msgstr "First, select a key" -#: src/components/Workflow/WorkflowTools.jsx:89 +#: components/Workflow/WorkflowTools.jsx:89 msgid "Fit the graph to the available screen size" msgstr "Fit the graph to the available screen size" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:64 +#: screens/Template/Survey/SurveyQuestionForm.jsx:64 msgid "Float" msgstr "Float" +#: screens/Template/shared/JobTemplateForm.jsx:223 +msgid "" +"For job templates, select run to execute\n" +"the playbook. Select check to only check playbook syntax,\n" +"test environment setup, and report problems without\n" +"executing the playbook." +msgstr "" +"For job templates, select run to execute\n" +"the playbook. Select check to only check playbook syntax,\n" +"test environment setup, and report problems without\n" +"executing the playbook." + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 +msgid "" +"For job templates, select run to execute the playbook.\n" +"Select check to only check playbook syntax, test environment setup,\n" +"and report problems without executing the playbook." +msgstr "" +"For job templates, select run to execute the playbook.\n" +"Select check to only check playbook syntax, test environment setup,\n" +"and report problems without executing the playbook." + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 #: src/screens/Template/shared/JobTemplateForm.jsx:216 -msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." -msgstr "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." +#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." +#~ msgstr "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 msgid "For more information, refer to the" msgstr "For more information, refer to the" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:192 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:193 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:214 -#: src/screens/Template/shared/JobTemplateForm.jsx:374 +#: components/AdHocCommands/AdHocDetailsStep.jsx:192 +#: components/AdHocCommands/AdHocDetailsStep.jsx:193 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:404 msgid "Forks" msgstr "Forks" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:411 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 msgid "Fourth" msgstr "Fourth" -#: src/components/Schedule/shared/ScheduleForm.jsx:186 +#: components/Schedule/shared/ScheduleForm.jsx:186 msgid "Frequency Details" msgstr "Frequency Details" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:212 -#: src/components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/buildRuleObj.js:69 msgid "Frequency did not match an expected value" msgstr "Frequency did not match an expected value" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:309 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 msgid "Fri" msgstr "Fri" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:314 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:450 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 msgid "Friday" msgstr "Friday" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:125 -#: src/screens/Organization/shared/OrganizationForm.jsx:105 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 +#: screens/Organization/shared/OrganizationForm.jsx:110 msgid "Galaxy Credentials" msgstr "Galaxy Credentials" -#: src/screens/Credential/shared/CredentialForm.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:55 msgid "Galaxy credentials must be owned by an Organization." msgstr "Galaxy credentials must be owned by an Organization." -#: src/components/Lookup/ProjectLookup.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: src/screens/Project/ProjectList/ProjectList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Job/JobOutput/JobOutput.jsx:660 +msgid "Gathering Facts" +msgstr "Gathering Facts" + +#: components/Lookup/ProjectLookup.jsx:114 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 +#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 msgid "Git" msgstr "Git" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 -#: src/screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:253 +#: screens/Template/shared/WebhookSubForm.jsx:108 msgid "GitHub" msgstr "GitHub" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: src/screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 +#: screens/Setting/Settings.jsx:51 msgid "GitHub Default" msgstr "GitHub Default" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: src/screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 +#: screens/Setting/Settings.jsx:60 msgid "GitHub Enterprise" msgstr "GitHub Enterprise" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: src/screens/Setting/Settings.jsx:64 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 +#: screens/Setting/Settings.jsx:64 msgid "GitHub Enterprise Organization" msgstr "GitHub Enterprise Organization" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: src/screens/Setting/Settings.jsx:68 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 +#: screens/Setting/Settings.jsx:68 msgid "GitHub Enterprise Team" msgstr "GitHub Enterprise Team" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: src/screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 +#: screens/Setting/Settings.jsx:54 msgid "GitHub Organization" msgstr "GitHub Organization" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: src/screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 +#: screens/Setting/Settings.jsx:57 msgid "GitHub Team" msgstr "GitHub Team" -#: src/screens/Setting/SettingList.jsx:66 +#: screens/Setting/SettingList.jsx:66 msgid "GitHub settings" msgstr "GitHub settings" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:244 -#: src/screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 +#: screens/Template/shared/WebhookSubForm.jsx:114 msgid "GitLab" msgstr "GitLab" -#: src/components/Pagination/Pagination.jsx:31 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +msgid "Global Default Execution Environment" +msgstr "Global Default Execution Environment" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:75 +msgid "Globally Available" +msgstr "Globally Available" + +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: src/components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: src/components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: src/components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 msgid "Google Compute Engine" msgstr "Google Compute Engine" -#: src/screens/Setting/SettingList.jsx:70 +#: screens/Setting/SettingList.jsx:70 msgid "Google OAuth 2 settings" msgstr "Google OAuth 2 settings" -#: src/screens/Setting/Settings.jsx:71 +#: screens/Setting/Settings.jsx:71 msgid "Google OAuth2" msgstr "Google OAuth2" -#: src/components/NotificationList/NotificationList.jsx:194 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 +#: components/NotificationList/NotificationList.jsx:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 msgid "Grafana" msgstr "Grafana" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 msgid "Grafana API key" msgstr "Grafana API key" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 msgid "Grafana URL" msgstr "Grafana URL" -#: src/components/Search/AdvancedSearch.jsx:210 +#: components/Search/AdvancedSearch.jsx:211 msgid "Greater than comparison." msgstr "Greater than comparison." -#: src/components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.jsx:216 msgid "Greater than or equal to comparison." msgstr "Greater than or equal to comparison." -#: src/components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.jsx:86 msgid "Group" msgstr "Group" -#: src/screens/Inventory/Inventories.jsx:85 +#: screens/Inventory/Inventories.jsx:83 msgid "Group details" msgstr "Group details" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 msgid "Group type" msgstr "Group type" -#: src/screens/Host/Host.jsx:62 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:230 -#: src/screens/Host/Hosts.jsx:31 -#: src/screens/Inventory/Inventories.jsx:76 -#: src/screens/Inventory/Inventories.jsx:78 -#: src/screens/Inventory/Inventory.jsx:64 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:108 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: screens/Host/Host.jsx:62 +#: screens/Host/HostGroups/HostGroupsList.jsx:230 +#: screens/Host/Hosts.jsx:31 +#: screens/Inventory/Inventories.jsx:74 +#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventory.jsx:64 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: util/getRelatedResourceDeleteDetails.js:143 msgid "Groups" msgstr "Groups" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 msgid "HTTP Headers" msgstr "HTTP Headers" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 msgid "HTTP Method" msgstr "HTTP Method" -#: src/components/AppContainer/PageHeaderToolbar.jsx:121 +#: components/AppContainer/PageHeaderToolbar.jsx:121 msgid "Help" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Hide" msgstr "Hide" -#: src/components/NotificationList/NotificationList.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:135 +#: components/NotificationList/NotificationList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Hipchat" msgstr "Hipchat" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 msgid "Host" msgstr "Host" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:143 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: src/screens/Template/shared/JobTemplateForm.jsx:592 +#: screens/Job/JobOutput/JobOutput.jsx:647 +msgid "Host Async Failure" +msgstr "Host Async Failure" + +#: screens/Job/JobOutput/JobOutput.jsx:646 +msgid "Host Async OK" +msgstr "Host Async OK" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239 +#: screens/Template/shared/JobTemplateForm.jsx:622 msgid "Host Config Key" msgstr "Host Config Key" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:94 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:101 msgid "Host Count" msgstr "Host Count" -#: src/screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.jsx:101 msgid "Host Details" msgstr "Host Details" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +#: screens/Job/JobOutput/JobOutput.jsx:638 +msgid "Host Failed" +msgstr "Host Failed" + +#: screens/Job/JobOutput/JobOutput.jsx:641 +msgid "Host Failure" +msgstr "Host Failure" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281 msgid "Host Filter" msgstr "Host Filter" -#: src/screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.jsx:120 msgid "Host Name" msgstr "Host Name" -#: src/screens/Inventory/Inventories.jsx:70 +#: screens/Job/JobOutput/JobOutput.jsx:640 +msgid "Host OK" +msgstr "Host OK" + +#: screens/Job/JobOutput/JobOutput.jsx:645 +msgid "Host Polling" +msgstr "Host Polling" + +#: screens/Job/JobOutput/JobOutput.jsx:651 +msgid "Host Retry" +msgstr "Host Retry" + +#: screens/Job/JobOutput/JobOutput.jsx:642 +msgid "Host Skipped" +msgstr "Host Skipped" + +#: screens/Job/JobOutput/JobOutput.jsx:639 +msgid "Host Started" +msgstr "Host Started" + +#: screens/Job/JobOutput/JobOutput.jsx:643 +msgid "Host Unreachable" +msgstr "Host Unreachable" + +#: screens/Inventory/Inventories.jsx:70 msgid "Host details" msgstr "Host details" -#: src/screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.jsx:102 msgid "Host details modal" msgstr "Host details modal" -#: src/screens/Host/Host.jsx:90 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.jsx:90 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 msgid "Host not found." msgstr "Host not found." -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:77 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:77 msgid "Host status information for this job is unavailable." msgstr "Host status information for this job is unavailable." -#: src/routeConfig.js:85 -#: src/screens/ActivityStream/ActivityStream.jsx:173 -#: src/screens/Dashboard/Dashboard.jsx:129 -#: src/screens/Host/HostList/HostList.jsx:142 -#: src/screens/Host/HostList/HostList.jsx:188 -#: src/screens/Host/Hosts.jsx:15 -#: src/screens/Host/Hosts.jsx:25 -#: src/screens/Inventory/Inventories.jsx:63 -#: src/screens/Inventory/Inventories.jsx:88 -#: src/screens/Inventory/Inventory.jsx:65 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 -#: src/screens/Inventory/SmartInventory.jsx:71 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:95 +#: routeConfig.js:86 +#: screens/ActivityStream/ActivityStream.jsx:173 +#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:188 +#: screens/Host/Hosts.jsx:15 +#: screens/Host/Hosts.jsx:25 +#: screens/Inventory/Inventories.jsx:63 +#: screens/Inventory/Inventories.jsx:86 +#: screens/Inventory/Inventory.jsx:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 +#: screens/Inventory/SmartInventory.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: util/getRelatedResourceDeleteDetails.js:147 msgid "Hosts" msgstr "Hosts" -#: src/components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.jsx:164 msgid "Hour" msgstr "Hour" -#: src/components/JobList/JobList.jsx:194 -#: src/components/Lookup/HostFilterLookup.jsx:82 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:155 -#: src/screens/User/UserRoles/UserRolesList.jsx:152 +#: components/JobList/JobList.jsx:172 +#: components/Lookup/HostFilterLookup.jsx:82 +#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:152 msgid "ID" msgstr "ID" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 msgid "ID of the Dashboard" msgstr "ID of the Dashboard" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 msgid "ID of the Panel" msgstr "ID of the Panel" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 msgid "ID of the dashboard (optional)" msgstr "ID of the dashboard (optional)" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 msgid "ID of the panel (optional)" msgstr "ID of the panel (optional)" -#: src/components/NotificationList/NotificationList.jsx:196 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:136 +#: components/NotificationList/NotificationList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "IRC" msgstr "IRC" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 msgid "IRC Nick" msgstr "IRC Nick" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 msgid "IRC Server Address" msgstr "IRC Server Address" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 msgid "IRC Server Port" msgstr "IRC Server Port" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 msgid "IRC nick" msgstr "IRC nick" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 msgid "IRC server address" msgstr "IRC server address" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 msgid "IRC server password" msgstr "IRC server password" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 msgid "IRC server port" msgstr "IRC server port" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 msgid "Icon URL" msgstr "Icon URL" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156 +msgid "" +"If checked, all variables for child groups\n" +"and hosts will be removed and replaced by those found\n" +"on the external source." +msgstr "" +"If checked, all variables for child groups\n" +"and hosts will be removed and replaced by those found\n" +"on the external source." + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 -msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." -msgstr "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgstr "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135 +msgid "" +"If checked, any hosts and groups that were\n" +"previously present on the external source but are now removed\n" +"will be removed from the Tower inventory. Hosts and groups\n" +"that were not managed by the inventory source will be promoted\n" +"to the next manually created group or if there is no manually\n" +"created group to promote them into, they will be left in the \"all\"\n" +"default group for the inventory." +msgstr "" +"If checked, any hosts and groups that were\n" +"previously present on the external source but are now removed\n" +"will be removed from the Tower inventory. Hosts and groups\n" +"that were not managed by the inventory source will be promoted\n" +"to the next manually created group or if there is no manually\n" +"created group to promote them into, they will be left in the \"all\"\n" +"default group for the inventory." #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 -msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." -msgstr "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgstr "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." + +#: screens/Template/shared/JobTemplateForm.jsx:537 +msgid "" +"If enabled, run this playbook as an\n" +"administrator." +msgstr "" +"If enabled, run this playbook as an\n" +"administrator." #: src/screens/Template/shared/JobTemplateForm.jsx:507 -msgid "If enabled, run this playbook as an administrator." -msgstr "If enabled, run this playbook as an administrator." +#~ msgid "If enabled, run this playbook as an administrator." +#~ msgstr "If enabled, run this playbook as an administrator." + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +msgid "" +"If enabled, show the changes made\n" +"by Ansible tasks, where supported. This is equivalent to Ansible’s\n" +"--diff mode." +msgstr "" +"If enabled, show the changes made\n" +"by Ansible tasks, where supported. This is equivalent to Ansible’s\n" +"--diff mode." + +#: screens/Template/shared/JobTemplateForm.jsx:478 +msgid "" +"If enabled, show the changes made by\n" +"Ansible tasks, where supported. This is equivalent\n" +"to Ansible's --diff mode." +msgstr "" +"If enabled, show the changes made by\n" +"Ansible tasks, where supported. This is equivalent\n" +"to Ansible's --diff mode." #: src/screens/Template/shared/JobTemplateForm.jsx:448 -msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." -msgstr "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." +#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." +#~ msgstr "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:216 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +#: components/AdHocCommands/AdHocDetailsStep.jsx:216 msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." -#: src/screens/Template/shared/JobTemplateForm.jsx:551 -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/JobTemplateForm.jsx:581 +msgid "" +"If enabled, simultaneous runs of this job\n" +"template will be allowed." +msgstr "" +"If enabled, simultaneous runs of this job\n" +"template will be allowed." -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: src/screens/Template/shared/JobTemplateForm.jsx:551 +#~ 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:263 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." -#: src/screens/Template/shared/JobTemplateForm.jsx:559 -msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." -msgstr "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#: screens/Template/shared/JobTemplateForm.jsx:589 +msgid "" +"If enabled, this will store gathered facts so they can\n" +"be viewed at the host level. Facts are persisted and\n" +"injected into the fact cache at runtime." +msgstr "" +"If enabled, this will store gathered facts so they can\n" +"be viewed at the host level. Facts are persisted and\n" +"injected into the fact cache at runtime." -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:52 +#: src/screens/Template/shared/JobTemplateForm.jsx:559 +#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#~ msgstr "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "If you only want to remove access for this particular user, please remove them from the team." +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +msgid "" +"If you want the Inventory Source to update on\n" +"launch and on project update, click on Update on launch, and also go to" +msgstr "" +"If you want the Inventory Source to update on\n" +"launch and on project update, click on Update on launch, and also go to" + #: src/pages/Organizations/components/DeleteRoleConfirmationModal.jsx:54 #~ msgid "If you {0} want to remove access for this particular user, please remove them from the team." #~ msgstr "" -#: src/components/HostToggle/HostToggle.jsx:18 -msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." -msgstr "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:64 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +msgid "Image" +msgstr "Image" -#: src/components/AppContainer/PageHeaderToolbar.jsx:104 -#: src/components/AppContainer/PageHeaderToolbar.jsx:114 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:76 +msgid "Image name" +msgstr "Image name" + +#: screens/Job/JobOutput/JobOutput.jsx:655 +msgid "Including File" +msgstr "Including File" + +#: components/HostToggle/HostToggle.jsx:18 +msgid "" +"Indicates if a host is available and should be included in running\n" +"jobs. For hosts that are part of an external inventory, this may be\n" +"reset by the inventory sync process." +msgstr "" +"Indicates if a host is available and should be included in running\n" +"jobs. For hosts that are part of an external inventory, this may be\n" +"reset by the inventory sync process." + +#: src/components/HostToggle/HostToggle.jsx:18 +#~ msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#~ msgstr "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." + +#: components/AppContainer/PageHeaderToolbar.jsx:104 +#: components/AppContainer/PageHeaderToolbar.jsx:114 msgid "Info" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.jsx:45 msgid "Initiated By" msgstr "Initiated By" -#: src/screens/ActivityStream/ActivityStream.jsx:240 -#: src/screens/ActivityStream/ActivityStream.jsx:250 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:43 +#: screens/ActivityStream/ActivityStream.jsx:246 +#: screens/ActivityStream/ActivityStream.jsx:256 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "Initiated by" -#: src/screens/ActivityStream/ActivityStream.jsx:230 +#: screens/ActivityStream/ActivityStream.jsx:236 msgid "Initiated by (username)" msgstr "Initiated by (username)" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:52 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:53 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:53 msgid "Injector configuration" msgstr "Injector configuration" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:47 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:43 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:43 msgid "Input configuration" msgstr "Input configuration" -#: src/screens/Inventory/shared/InventoryForm.jsx:71 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 msgid "Insights Credential" msgstr "Insights Credential" -#: src/components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "Insights system ID" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:136 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:137 msgid "Instance Filters" msgstr "Instance Filters" -#: src/screens/Job/JobDetail/JobDetail.jsx:228 +#: screens/Job/JobDetail/JobDetail.jsx:259 msgid "Instance Group" msgstr "Instance Group" -#: src/components/Lookup/InstanceGroupsLookup.jsx:71 -#: src/components/Lookup/InstanceGroupsLookup.jsx:77 -#: src/components/Lookup/InstanceGroupsLookup.jsx:109 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:212 -#: src/routeConfig.js:132 -#: src/screens/ActivityStream/ActivityStream.jsx:198 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:86 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:317 +#: components/Lookup/InstanceGroupsLookup.jsx:71 +#: components/Lookup/InstanceGroupsLookup.jsx:77 +#: components/Lookup/InstanceGroupsLookup.jsx:109 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:218 +#: routeConfig.js:133 +#: screens/ActivityStream/ActivityStream.jsx:198 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:327 msgid "Instance Groups" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.jsx:99 msgid "Instance ID" msgstr "Instance ID" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 -#: src/screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:86 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 +#: screens/InstanceGroup/InstanceGroups.jsx:27 msgid "Instance group" msgstr "Instance group" -#: src/screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.jsx:87 msgid "Instance group not found." msgstr "Instance group not found." -#: src/screens/InstanceGroup/InstanceGroups.jsx:16 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 +#: screens/InstanceGroup/InstanceGroups.jsx:16 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 msgid "Instance groups" msgstr "Instance groups" -#: src/screens/InstanceGroup/InstanceGroup.jsx:69 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:231 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 -#: src/screens/InstanceGroup/InstanceGroups.jsx:35 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:218 +#: screens/InstanceGroup/InstanceGroup.jsx:69 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 +#: screens/InstanceGroup/InstanceGroups.jsx:35 +#: screens/InstanceGroup/Instances/InstanceList.jsx:148 +#: screens/InstanceGroup/Instances/InstanceList.jsx:218 msgid "Instances" msgstr "Instances" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:63 +#: screens/Template/Survey/SurveyQuestionForm.jsx:63 msgid "Integer" msgstr "Integer" @@ -3530,73 +4145,76 @@ msgstr "Integer" #~ msgid "Integrations" #~ msgstr "" -#: src/util/validators.jsx:69 +#: util/validators.jsx:69 msgid "Invalid email address" msgstr "Invalid email address" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:151 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." -#: src/screens/Login/Login.jsx:110 +#: screens/Login/Login.jsx:118 msgid "Invalid username or password. Please try again." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: src/routeConfig.js:80 -#: src/screens/ActivityStream/ActivityStream.jsx:170 -#: src/screens/Dashboard/Dashboard.jsx:140 -#: src/screens/Inventory/Inventories.jsx:16 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:163 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 +#: routeConfig.js:81 +#: screens/ActivityStream/ActivityStream.jsx:170 +#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Inventory/Inventories.jsx:16 +#: screens/Inventory/InventoryList/InventoryList.jsx:169 +#: screens/Inventory/InventoryList/InventoryList.jsx:220 +#: util/getRelatedResourceDeleteDetails.js:67 +#: util/getRelatedResourceDeleteDetails.js:226 +#: util/getRelatedResourceDeleteDetails.js:294 msgid "Inventories" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:133 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:134 msgid "Inventories with sources cannot be copied" msgstr "Inventories with sources cannot be copied" -#: src/components/HostForm/HostForm.jsx:28 -#: src/components/JobList/JobListItem.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:98 -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:47 -#: src/components/Lookup/InventoryLookup.jsx:85 -#: src/components/Lookup/InventoryLookup.jsx:94 -#: src/components/Lookup/InventoryLookup.jsx:131 -#: src/components/Lookup/InventoryLookup.jsx:147 -#: src/components/Lookup/InventoryLookup.jsx:184 -#: src/components/PromptDetail/PromptDetail.jsx:183 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:77 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:105 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:116 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 -#: src/components/TemplateList/TemplateListItem.jsx:223 -#: src/components/TemplateList/TemplateListItem.jsx:232 -#: src/screens/Host/HostDetail/HostDetail.jsx:83 -#: src/screens/Host/HostList/HostList.jsx:169 -#: src/screens/Host/HostList/HostListItem.jsx:39 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:195 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:186 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:194 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:131 +#: components/HostForm/HostForm.jsx:28 +#: components/JobList/JobListItem.jsx:150 +#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/Lookup/InventoryLookup.jsx:85 +#: components/Lookup/InventoryLookup.jsx:94 +#: components/Lookup/InventoryLookup.jsx:131 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:184 +#: components/PromptDetail/PromptDetail.jsx:183 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:78 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:107 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 +#: components/TemplateList/TemplateListItem.jsx:251 +#: components/TemplateList/TemplateListItem.jsx:260 +#: screens/Host/HostDetail/HostDetail.jsx:83 +#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostListItem.jsx:39 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:196 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:200 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 msgid "Inventory" msgstr "Inventory" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Inventory (Name)" msgstr "Inventory (Name)" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:100 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:101 msgid "Inventory File" msgstr "Inventory File" -#: src/components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.jsx:90 msgid "Inventory ID" msgstr "Inventory ID" @@ -3605,52 +4223,69 @@ msgstr "Inventory ID" #~ msgid "Inventory Scripts" #~ msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:61 +#: screens/Job/JobDetail/JobDetail.jsx:212 +msgid "Inventory Source" +msgstr "Inventory Source" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:89 msgid "Inventory Source Sync" msgstr "Inventory Source Sync" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:157 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:176 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:163 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: util/getRelatedResourceDeleteDetails.js:74 +#: util/getRelatedResourceDeleteDetails.js:171 msgid "Inventory Sources" msgstr "Inventory Sources" -#: src/components/JobList/JobList.jsx:206 -#: src/components/JobList/JobListItem.jsx:32 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: src/components/Workflow/WorkflowLegend.jsx:100 -#: src/screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.jsx:184 +#: components/JobList/JobListItem.jsx:32 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 +#: components/Workflow/WorkflowLegend.jsx:100 +#: screens/Job/JobDetail/JobDetail.jsx:94 msgid "Inventory Sync" msgstr "Inventory Sync" -#: src/components/Workflow/WorkflowNodeHelp.jsx:59 +#: components/Workflow/WorkflowNodeHelp.jsx:59 msgid "Inventory Update" msgstr "Inventory Update" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:219 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 msgid "Inventory file" msgstr "Inventory file" -#: src/screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.jsx:91 msgid "Inventory not found." msgstr "Inventory not found." -#: src/screens/Dashboard/Dashboard.jsx:229 +#: screens/Dashboard/Dashboard.jsx:229 msgid "Inventory sync" msgstr "Inventory sync" -#: src/screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:146 msgid "Inventory sync failures" msgstr "Inventory sync failures" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:49 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 -#: src/screens/Job/JobDetail/JobDetail.jsx:119 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 +#: screens/Job/JobDetail/JobDetail.jsx:120 msgid "Isolated" msgstr "Isolated" -#: src/components/AssociateModal/AssociateModal.jsx:21 -#: src/components/Lookup/Lookup.jsx:129 +#: screens/Job/JobOutput/JobOutput.jsx:649 +msgid "Item Failed" +msgstr "Item Failed" + +#: screens/Job/JobOutput/JobOutput.jsx:648 +msgid "Item OK" +msgstr "Item OK" + +#: screens/Job/JobOutput/JobOutput.jsx:650 +msgid "Item Skipped" +msgstr "Item Skipped" + +#: components/AssociateModal/AssociateModal.jsx:21 msgid "Items" msgstr "Items" @@ -3658,7 +4293,7 @@ msgstr "Items" #~ msgid "Items Per Page" #~ msgstr "" -#: src/components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" @@ -3666,121 +4301,150 @@ msgstr "" #~ msgid "Items {itemMin} – {itemMax} of {count}" #~ msgstr "" -#: src/components/Sparkline/Sparkline.jsx:28 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:32 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:54 +#: components/Sparkline/Sparkline.jsx:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42 +#: screens/Project/ProjectList/ProjectListItem.jsx:62 msgid "JOB ID:" msgstr "JOB ID:" -#: src/screens/Job/JobOutput/HostEventModal.jsx:144 +#: screens/Job/JobOutput/HostEventModal.jsx:144 msgid "JSON" msgstr "JSON" -#: src/screens/Job/JobOutput/HostEventModal.jsx:145 +#: screens/Job/JobOutput/HostEventModal.jsx:145 msgid "JSON tab" msgstr "JSON tab" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 msgid "JSON:" msgstr "JSON:" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 msgid "January" msgstr "January" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 msgid "Job" msgstr "Job" -#: src/screens/Job/JobOutput/JobOutput.jsx:713 -#: src/screens/Job/JobOutput/JobOutput.jsx:714 +#: screens/Job/JobDetail/JobDetail.jsx:470 +#: screens/Job/JobDetail/JobDetail.jsx:471 +#: screens/Job/JobOutput/JobOutput.jsx:832 +#: screens/Job/JobOutput/JobOutput.jsx:833 msgid "Job Cancel Error" msgstr "Job Cancel Error" -#: src/screens/Job/JobDetail/JobDetail.jsx:383 -#: src/screens/Job/JobOutput/JobOutput.jsx:728 -#: src/screens/Job/JobOutput/JobOutput.jsx:729 +#: screens/Job/JobDetail/JobDetail.jsx:481 +#: screens/Job/JobOutput/JobOutput.jsx:821 +#: screens/Job/JobOutput/JobOutput.jsx:822 msgid "Job Delete Error" msgstr "Job Delete Error" -#: src/screens/Job/JobDetail/JobDetail.jsx:241 +#: screens/Job/JobDetail/JobDetail.jsx:272 msgid "Job Slice" msgstr "Job Slice" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 -#: src/screens/Template/shared/JobTemplateForm.jsx:428 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:148 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235 +#: screens/Template/shared/JobTemplateForm.jsx:458 msgid "Job Slicing" msgstr "Job Slicing" -#: src/components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.jsx:140 msgid "Job Status" msgstr "Job Status" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 -#: src/components/PromptDetail/PromptDetail.jsx:206 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:227 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 -#: src/screens/Job/JobDetail/JobDetail.jsx:290 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:332 -#: src/screens/Template/shared/JobTemplateForm.jsx:468 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 +#: components/PromptDetail/PromptDetail.jsx:206 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:233 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.jsx:321 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342 +#: screens/Template/shared/JobTemplateForm.jsx:498 msgid "Job Tags" msgstr "Job Tags" -#: src/components/TemplateList/TemplateList.jsx:196 -#: src/components/Workflow/WorkflowLegend.jsx:92 -#: src/components/Workflow/WorkflowNodeHelp.jsx:47 -#: src/screens/Job/JobDetail/JobDetail.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:67 +#: components/TemplateList/TemplateList.jsx:201 +#: components/Workflow/WorkflowLegend.jsx:92 +#: components/Workflow/WorkflowNodeHelp.jsx:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:33 +#: screens/Job/JobDetail/JobDetail.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:95 msgid "Job Template" msgstr "Job Template" -#: src/screens/Project/Project.jsx:117 -#: src/screens/Project/Projects.jsx:32 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:42 +msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" +msgstr "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" + +#: screens/Project/Project.jsx:117 +#: screens/Project/Projects.jsx:32 +#: util/getRelatedResourceDeleteDetails.js:56 +#: util/getRelatedResourceDeleteDetails.js:108 +#: util/getRelatedResourceDeleteDetails.js:157 msgid "Job Templates" msgstr "Job Templates" -#: src/components/JobList/JobList.jsx:202 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 -#: src/components/PromptDetail/PromptDetail.jsx:156 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:88 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 -#: src/screens/Job/JobDetail/JobDetail.jsx:191 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:169 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:128 -#: src/screens/Template/shared/JobTemplateForm.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:24 +msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." +msgstr "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useWorkflowNodeSteps.js:267 +msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" +msgstr "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" + +#: components/JobList/JobList.jsx:180 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 +#: components/PromptDetail/PromptDetail.jsx:156 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:90 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 +#: screens/Job/JobDetail/JobDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145 +#: screens/Template/shared/JobTemplateForm.jsx:220 msgid "Job Type" msgstr "Job Type" -#: src/screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:172 msgid "Job status" msgstr "Job status" -#: src/screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:170 msgid "Job status graph tab" msgstr "Job status graph tab" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 msgid "Job templates" msgstr "Job templates" -#: src/components/JobList/JobList.jsx:185 -#: src/components/JobList/JobList.jsx:262 -#: src/routeConfig.js:39 -#: src/screens/ActivityStream/ActivityStream.jsx:147 -#: src/screens/Dashboard/shared/LineChart.jsx:69 -#: src/screens/InstanceGroup/ContainerGroup.jsx:68 -#: src/screens/InstanceGroup/InstanceGroup.jsx:74 -#: src/screens/InstanceGroup/InstanceGroups.jsx:37 -#: src/screens/InstanceGroup/InstanceGroups.jsx:45 -#: src/screens/Job/Jobs.jsx:15 -#: src/screens/Job/Jobs.jsx:26 -#: src/screens/Setting/SettingList.jsx:92 -#: src/screens/Setting/Settings.jsx:74 +#: components/JobList/JobList.jsx:163 +#: components/JobList/JobList.jsx:240 +#: routeConfig.js:40 +#: screens/ActivityStream/ActivityStream.jsx:147 +#: screens/Dashboard/shared/LineChart.jsx:69 +#: screens/Host/Host.jsx:67 +#: screens/Host/Hosts.jsx:32 +#: screens/InstanceGroup/ContainerGroup.jsx:68 +#: screens/InstanceGroup/InstanceGroup.jsx:74 +#: screens/InstanceGroup/InstanceGroups.jsx:37 +#: screens/InstanceGroup/InstanceGroups.jsx:45 +#: screens/Inventory/Inventories.jsx:59 +#: screens/Inventory/Inventories.jsx:72 +#: screens/Inventory/Inventory.jsx:68 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 +#: screens/Inventory/SmartInventory.jsx:73 +#: screens/Job/Jobs.jsx:15 +#: screens/Job/Jobs.jsx:26 +#: screens/Setting/SettingList.jsx:92 +#: screens/Setting/Settings.jsx:74 +#: screens/Template/Template.jsx:164 +#: screens/Template/Templates.jsx:48 +#: screens/Template/WorkflowJobTemplate.jsx:145 msgid "Jobs" msgstr "" @@ -3788,260 +4452,265 @@ msgstr "" #~ msgid "Jobs Settings" #~ msgstr "" -#: src/screens/Setting/SettingList.jsx:99 +#: screens/Setting/SettingList.jsx:99 msgid "Jobs settings" msgstr "Jobs settings" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 msgid "July" msgstr "July" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 msgid "June" msgstr "June" -#: src/components/Search/AdvancedSearch.jsx:129 +#: components/Search/AdvancedSearch.jsx:130 msgid "Key" msgstr "Key" -#: src/components/Search/AdvancedSearch.jsx:120 +#: components/Search/AdvancedSearch.jsx:121 msgid "Key select" msgstr "Key select" -#: src/components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.jsx:124 msgid "Key typeahead" msgstr "Key typeahead" -#: src/screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.jsx:231 msgid "Keyword" msgstr "Keyword" -#: src/screens/User/UserDetail/UserDetail.jsx:51 -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserDetail/UserDetail.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "LDAP" msgstr "LDAP" -#: src/screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.jsx:79 msgid "LDAP 1" msgstr "LDAP 1" -#: src/screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.jsx:80 msgid "LDAP 2" msgstr "LDAP 2" -#: src/screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.jsx:81 msgid "LDAP 3" msgstr "LDAP 3" -#: src/screens/Setting/Settings.jsx:82 +#: screens/Setting/Settings.jsx:82 msgid "LDAP 4" msgstr "LDAP 4" -#: src/screens/Setting/Settings.jsx:83 +#: screens/Setting/Settings.jsx:83 msgid "LDAP 5" msgstr "LDAP 5" -#: src/screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.jsx:78 msgid "LDAP Default" msgstr "LDAP Default" -#: src/screens/Setting/SettingList.jsx:74 +#: screens/Setting/SettingList.jsx:74 msgid "LDAP settings" msgstr "LDAP settings" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 msgid "LDAP1" msgstr "LDAP1" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 msgid "LDAP2" msgstr "LDAP2" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 msgid "LDAP3" msgstr "LDAP3" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 msgid "LDAP4" msgstr "LDAP4" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 msgid "LDAP5" msgstr "LDAP5" -#: src/components/JobList/JobList.jsx:198 +#: components/JobList/JobList.jsx:176 msgid "Label Name" msgstr "Label Name" -#: src/components/JobList/JobListItem.jsx:135 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:194 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 -#: src/components/TemplateList/TemplateListItem.jsx:237 -#: src/screens/Job/JobDetail/JobDetail.jsx:275 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:299 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:178 -#: src/screens/Template/shared/JobTemplateForm.jsx:339 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: components/JobList/JobListItem.jsx:136 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:200 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 +#: components/TemplateList/TemplateListItem.jsx:265 +#: screens/Job/JobDetail/JobDetail.jsx:306 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195 +#: screens/Template/shared/JobTemplateForm.jsx:369 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209 msgid "Labels" msgstr "Labels" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:414 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 msgid "Last" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:78 +#: screens/User/UserDetail/UserDetail.jsx:78 msgid "Last Login" msgstr "Last Login" -#: src/components/PromptDetail/PromptDetail.jsx:140 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 -#: src/components/TemplateList/TemplateListItem.jsx:265 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:44 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:236 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:62 -#: src/screens/Host/HostDetail/HostDetail.jsx:99 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:68 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:328 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:146 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:49 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:276 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.jsx:140 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 +#: components/TemplateList/TemplateListItem.jsx:293 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:44 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:253 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 +#: screens/Host/HostDetail/HostDetail.jsx:99 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:122 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 +#: screens/Team/TeamDetail/TeamDetail.jsx:49 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:286 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 msgid "Last Modified" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:123 -#: src/components/AddRole/AddResourceRole.jsx:137 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:134 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:167 -#: src/screens/User/UserDetail/UserDetail.jsx:66 -#: src/screens/User/UserList/UserList.jsx:127 -#: src/screens/User/UserList/UserList.jsx:169 -#: src/screens/User/UserList/UserListItem.jsx:70 -#: src/screens/User/UserList/UserListItem.jsx:73 -#: src/screens/User/shared/UserForm.jsx:115 +#: components/AddRole/AddResourceRole.jsx:134 +#: components/AddRole/AddResourceRole.jsx:148 +#: components/ResourceAccessList/ResourceAccessList.jsx:136 +#: components/ResourceAccessList/ResourceAccessList.jsx:169 +#: screens/User/UserDetail/UserDetail.jsx:66 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:169 +#: screens/User/UserList/UserListItem.jsx:70 +#: screens/User/UserList/UserListItem.jsx:73 +#: screens/User/shared/UserForm.jsx:115 msgid "Last Name" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:220 -#: src/components/TemplateList/TemplateListItem.jsx:130 +#: components/TemplateList/TemplateList.jsx:225 +#: components/TemplateList/TemplateListItem.jsx:155 msgid "Last Ran" msgstr "Last Ran" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 msgid "Last Run" msgstr "Last Run" -#: src/components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.jsx:103 msgid "Last job" msgstr "Last job" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 msgid "Last job run" msgstr "Last job run" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:259 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 msgid "Last modified" msgstr "Last modified" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:377 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:214 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 +#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:237 msgid "Launch" msgstr "Launch" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 msgid "Launch Management Job" msgstr "Launch Management Job" -#: src/components/TemplateList/TemplateListItem.jsx:149 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:94 +#: components/TemplateList/TemplateListItem.jsx:175 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:117 msgid "Launch Template" msgstr "Launch Template" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:98 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:99 msgid "Launch management job" msgstr "Launch management job" -#: src/components/TemplateList/TemplateListItem.jsx:156 +#: components/TemplateList/TemplateListItem.jsx:183 msgid "Launch template" msgstr "Launch template" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 msgid "Launch workflow" msgstr "Launch workflow" -#: src/components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "Launched By" -#: src/components/JobList/JobList.jsx:214 +#: components/JobList/JobList.jsx:192 msgid "Launched By (Username)" msgstr "Launched By (Username)" -#: src/components/Workflow/WorkflowLegend.jsx:86 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:120 +msgid "Leave this field blank to make the execution environment globally available." +msgstr "Leave this field blank to make the execution environment globally available." + +#: components/Workflow/WorkflowLegend.jsx:86 msgid "Legend" msgstr "Legend" -#: src/components/Search/AdvancedSearch.jsx:220 +#: components/Search/AdvancedSearch.jsx:221 msgid "Less than comparison." msgstr "Less than comparison." -#: src/components/Search/AdvancedSearch.jsx:225 +#: components/Search/AdvancedSearch.jsx:226 msgid "Less than or equal to comparison." msgstr "Less than or equal to comparison." -#: src/screens/Setting/SettingList.jsx:137 -#: src/screens/Setting/Settings.jsx:96 +#: screens/Setting/SettingList.jsx:137 +#: screens/Setting/Settings.jsx:96 msgid "License" msgstr "" -#: src/screens/Setting/License/License.jsx:15 -#: src/screens/Setting/SettingList.jsx:142 +#: screens/Setting/License/License.jsx:15 +#: screens/Setting/SettingList.jsx:142 msgid "License settings" msgstr "License settings" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:170 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:171 -#: src/components/JobList/JobList.jsx:232 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: src/components/PromptDetail/PromptDetail.jsx:194 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 -#: src/screens/Job/JobDetail/JobDetail.jsx:222 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:215 -#: src/screens/Template/shared/JobTemplateForm.jsx:390 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:144 +#: components/AdHocCommands/AdHocDetailsStep.jsx:170 +#: components/AdHocCommands/AdHocDetailsStep.jsx:171 +#: components/JobList/JobList.jsx:210 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 +#: components/PromptDetail/PromptDetail.jsx:194 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:140 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 +#: screens/Job/JobDetail/JobDetail.jsx:250 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 +#: screens/Template/shared/JobTemplateForm.jsx:420 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:155 msgid "Limit" msgstr "Limit" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:219 msgid "Link to an available node" msgstr "Link to an available node" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 msgid "Loading" msgstr "Loading" @@ -4049,278 +4718,307 @@ msgstr "Loading" #~ msgid "Loading..." #~ msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 msgid "Local Time Zone" msgstr "Local Time Zone" -#: src/components/Schedule/shared/ScheduleForm.jsx:141 +#: components/Schedule/shared/ScheduleForm.jsx:141 msgid "Local time zone" msgstr "Local time zone" -#: src/screens/Login/Login.jsx:248 +#: screens/Login/Login.jsx:162 msgid "Log In" msgstr "Log In" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:14 +#: screens/Setting/shared/LoggingTestAlert.jsx:14 msgid "Log aggregator test sent successfully." msgstr "Log aggregator test sent successfully." -#: src/screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.jsx:97 msgid "Logging" msgstr "Logging" -#: src/screens/Setting/SettingList.jsx:118 +#: screens/Setting/SettingList.jsx:118 msgid "Logging settings" msgstr "Logging settings" -#: src/components/AppContainer/AppContainer.jsx:236 -#: src/components/AppContainer/PageHeaderToolbar.jsx:171 +#: components/AppContainer/AppContainer.jsx:242 +#: components/AppContainer/PageHeaderToolbar.jsx:171 msgid "Logout" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:307 -#: src/components/Lookup/Lookup.jsx:130 +#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/Lookup.jsx:130 msgid "Lookup modal" msgstr "Lookup modal" -#: src/components/Search/AdvancedSearch.jsx:142 +#: components/Search/AdvancedSearch.jsx:143 msgid "Lookup select" msgstr "Lookup select" -#: src/components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:152 msgid "Lookup type" msgstr "Lookup type" -#: src/components/Search/AdvancedSearch.jsx:145 +#: components/Search/AdvancedSearch.jsx:146 msgid "Lookup typeahead" msgstr "Lookup typeahead" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:30 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:52 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40 +#: screens/Project/ProjectList/ProjectListItem.jsx:60 msgid "MOST RECENT SYNC" msgstr "MOST RECENT SYNC" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:86 -#: src/screens/Job/JobDetail/JobDetail.jsx:247 +#: components/AdHocCommands/AdHocCredentialStep.jsx:67 +#: components/AdHocCommands/AdHocCredentialStep.jsx:68 +#: components/AdHocCommands/AdHocCredentialStep.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:278 msgid "Machine Credential" msgstr "Machine Credential" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:84 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:84 msgid "Machine credential" msgstr "Machine credential" -#: src/components/JobList/JobList.jsx:209 -#: src/components/JobList/JobListItem.jsx:35 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: src/screens/Job/JobDetail/JobDetail.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 +msgid "Managed by Tower" +msgstr "Managed by Tower" + +#: components/JobList/JobList.jsx:187 +#: components/JobList/JobListItem.jsx:35 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 +#: screens/Job/JobDetail/JobDetail.jsx:100 msgid "Management Job" msgstr "Management Job" -#: src/routeConfig.js:127 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:128 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 msgid "Management Jobs" msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:22 +#: screens/ManagementJob/ManagementJobs.jsx:22 msgid "Management job" msgstr "Management job" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:117 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:119 msgid "Management job launch error" msgstr "Management job launch error" -#: src/screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.jsx:132 msgid "Management job not found." msgstr "Management job not found." -#: src/screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.jsx:14 msgid "Management jobs" msgstr "Management jobs" -#: src/components/Lookup/ProjectLookup.jsx:113 -#: src/components/PromptDetail/PromptProjectDetail.jsx:69 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:90 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:102 -#: src/screens/Project/ProjectList/ProjectList.jsx:145 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: components/Lookup/ProjectLookup.jsx:113 +#: components/PromptDetail/PromptProjectDetail.jsx:75 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:104 +#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectListItem.jsx:134 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 msgid "Manual" msgstr "Manual" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 msgid "March" msgstr "March" -#: src/components/NotificationList/NotificationList.jsx:197 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:137 +#: components/NotificationList/NotificationList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 msgid "Mattermost" msgstr "Mattermost" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 -#: src/screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 +#: screens/Organization/shared/OrganizationForm.jsx:75 msgid "Max Hosts" msgstr "Max Hosts" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.jsx:175 msgid "Maximum" msgstr "Maximum" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:159 +#: screens/Template/Survey/SurveyQuestionForm.jsx:159 msgid "Maximum length" msgstr "Maximum length" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 msgid "May" msgstr "May" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:38 +#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 msgid "Members" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 msgid "Metadata" msgstr "Metadata" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 msgid "Microsoft Azure Resource Manager" msgstr "Microsoft Azure Resource Manager" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:169 +#: screens/Template/Survey/SurveyQuestionForm.jsx:169 msgid "Minimum" msgstr "Minimum" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:153 +#: screens/Template/Survey/SurveyQuestionForm.jsx:153 msgid "Minimum length" msgstr "Minimum length" +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 +msgid "" +"Minimum number of instances that will be automatically\n" +"assigned to this group when new instances come online." +msgstr "" +"Minimum number of instances that will be automatically\n" +"assigned to this group when new instances come online." + #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 -msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." -msgstr "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "Minimum number of instances that will be automatically assigned to this group when new instances come online." + +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 +msgid "" +"Minimum percentage of all instances that will be automatically\n" +"assigned to this group when new instances come online." +msgstr "" +"Minimum percentage of all instances that will be automatically\n" +"assigned to this group when new instances come online." #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 -msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." -msgstr "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." +#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." -#: src/components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.jsx:163 msgid "Minute" msgstr "Minute" -#: src/screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.jsx:100 msgid "Miscellaneous System" msgstr "Miscellaneous System" -#: src/screens/Setting/SettingList.jsx:110 +#: screens/Setting/SettingList.jsx:110 msgid "Miscellaneous System settings" msgstr "Miscellaneous System settings" -#: src/components/Workflow/WorkflowNodeHelp.jsx:104 +#: components/Workflow/WorkflowNodeHelp.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 msgid "Missing" msgstr "Missing" -#: src/components/Lookup/HostFilterLookup.jsx:353 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: src/screens/User/UserTokenList/UserTokenList.jsx:138 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 +msgid "Missing resource" +msgstr "Missing resource" + +#: components/Lookup/HostFilterLookup.jsx:360 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:100 -#: src/components/AddRole/AddResourceRole.jsx:152 -#: src/components/AssociateModal/AssociateModal.jsx:146 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: src/components/Lookup/CredentialLookup.jsx:157 -#: src/components/Lookup/InventoryLookup.jsx:118 -#: src/components/Lookup/InventoryLookup.jsx:171 -#: src/components/Lookup/MultiCredentialsLookup.jsx:185 -#: src/components/Lookup/OrganizationLookup.jsx:113 -#: src/components/Lookup/ProjectLookup.jsx:125 -#: src/components/NotificationList/NotificationList.jsx:210 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:205 -#: src/components/TemplateList/TemplateList.jsx:209 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 -#: src/screens/Credential/CredentialList/CredentialList.jsx:145 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:167 -#: src/screens/Host/HostList/HostList.jsx:160 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:180 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:146 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: src/screens/Project/ProjectList/ProjectList.jsx:157 -#: src/screens/Team/TeamList/TeamList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 +#: components/AdHocCommands/AdHocCredentialStep.jsx:100 +#: components/AddRole/AddResourceRole.jsx:163 +#: components/AssociateModal/AssociateModal.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:183 +#: components/LaunchPrompt/steps/InventoryStep.jsx:95 +#: components/Lookup/CredentialLookup.jsx:157 +#: components/Lookup/InventoryLookup.jsx:118 +#: components/Lookup/InventoryLookup.jsx:171 +#: components/Lookup/MultiCredentialsLookup.jsx:185 +#: components/Lookup/OrganizationLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:125 +#: components/NotificationList/NotificationList.jsx:210 +#: components/Schedule/ScheduleList/ScheduleList.jsx:205 +#: components/TemplateList/TemplateList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 +#: screens/Credential/CredentialList/CredentialList.jsx:137 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: 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:192 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 +#: screens/Organization/OrganizationList/OrganizationList.jsx:150 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 +#: screens/Project/ProjectList/ProjectList.jsx:162 +#: 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:109 msgid "Modified By (Username)" msgstr "Modified By (Username)" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:167 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "Modified by (username)" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.jsx:63 +#: screens/Job/JobOutput/HostEventModal.jsx:131 msgid "Module" msgstr "Module" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:269 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 msgid "Mon" msgstr "Mon" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:274 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:430 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 msgid "Monday" msgstr "Monday" -#: src/components/Schedule/shared/ScheduleForm.jsx:167 +#: components/Schedule/shared/ScheduleForm.jsx:167 msgid "Month" msgstr "Month" -#: src/components/Popover/Popover.jsx:39 +#: components/Popover/Popover.jsx:39 msgid "More information" msgstr "More information" -#: src/screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.jsx:63 msgid "More information for" msgstr "More information for" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:111 +#: screens/Template/Survey/SurveyPreviewModal.jsx:111 msgid "Multi-Select" msgstr "Multi-Select" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.jsx:90 msgid "Multiple Choice" msgstr "Multiple Choice" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:61 +#: screens/Template/Survey/SurveyQuestionForm.jsx:61 msgid "Multiple Choice (multiple select)" msgstr "Multiple Choice (multiple select)" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:56 +#: screens/Template/Survey/SurveyQuestionForm.jsx:56 msgid "Multiple Choice (single select)" msgstr "Multiple Choice (single select)" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:217 +#: screens/Template/Survey/SurveyQuestionForm.jsx:217 msgid "Multiple Choice Options" msgstr "Multiple Choice Options" @@ -4329,253 +5027,274 @@ msgstr "Multiple Choice Options" #~ msgid "My View" #~ msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:91 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:106 -#: src/components/AddRole/AddResourceRole.jsx:143 -#: src/components/AddRole/AddResourceRole.jsx:159 -#: src/components/AssociateModal/AssociateModal.jsx:137 -#: src/components/AssociateModal/AssociateModal.jsx:152 -#: src/components/HostForm/HostForm.jsx:87 -#: src/components/JobList/JobList.jsx:189 -#: src/components/JobList/JobList.jsx:238 -#: src/components/JobList/JobListItem.jsx:59 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:140 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:155 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:77 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:92 -#: src/components/Lookup/ApplicationLookup.jsx:78 -#: src/components/Lookup/ApplicationLookup.jsx:89 -#: src/components/Lookup/CredentialLookup.jsx:148 -#: src/components/Lookup/CredentialLookup.jsx:163 -#: src/components/Lookup/HostFilterLookup.jsx:77 -#: src/components/Lookup/HostFilterLookup.jsx:345 -#: src/components/Lookup/InstanceGroupsLookup.jsx:91 -#: src/components/Lookup/InstanceGroupsLookup.jsx:102 -#: src/components/Lookup/InventoryLookup.jsx:109 -#: src/components/Lookup/InventoryLookup.jsx:124 -#: src/components/Lookup/InventoryLookup.jsx:162 -#: src/components/Lookup/InventoryLookup.jsx:177 -#: src/components/Lookup/MultiCredentialsLookup.jsx:176 -#: src/components/Lookup/MultiCredentialsLookup.jsx:191 -#: src/components/Lookup/OrganizationLookup.jsx:104 -#: src/components/Lookup/OrganizationLookup.jsx:119 -#: src/components/Lookup/ProjectLookup.jsx:105 -#: src/components/Lookup/ProjectLookup.jsx:135 -#: src/components/NotificationList/NotificationList.jsx:181 -#: src/components/NotificationList/NotificationList.jsx:218 -#: src/components/NotificationList/NotificationListItem.jsx:25 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:77 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:86 -#: src/components/PaginatedTable/PaginatedTable.jsx:69 -#: src/components/PromptDetail/PromptDetail.jsx:109 -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:100 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:173 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:192 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:78 -#: src/components/Schedule/shared/ScheduleForm.jsx:102 -#: src/components/TemplateList/TemplateList.jsx:184 -#: src/components/TemplateList/TemplateList.jsx:217 -#: src/components/TemplateList/TemplateListItem.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: src/components/Workflow/WorkflowNodeHelp.jsx:132 -#: src/components/Workflow/WorkflowNodeHelp.jsx:158 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: src/screens/Application/Applications.jsx:84 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:32 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:161 -#: src/screens/Application/shared/ApplicationForm.jsx:54 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:193 -#: src/screens/Credential/CredentialList/CredentialList.jsx:132 -#: src/screens/Credential/CredentialList/CredentialList.jsx:151 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: src/screens/Credential/shared/CredentialForm.jsx:118 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:41 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:123 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:24 -#: src/screens/Host/HostDetail/HostDetail.jsx:74 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:158 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:173 -#: src/screens/Host/HostList/HostList.jsx:147 -#: src/screens/Host/HostList/HostList.jsx:168 -#: src/screens/Host/HostList/HostListItem.jsx:34 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:42 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:74 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:227 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:69 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:167 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:186 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:194 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:81 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:190 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: src/screens/Inventory/shared/InventoryForm.jsx:47 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:41 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:102 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:53 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:121 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:178 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:100 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:85 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:133 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:154 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:33 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: src/screens/Organization/shared/OrganizationForm.jsx:52 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:82 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: src/screens/Project/ProjectList/ProjectList.jsx:133 -#: src/screens/Project/ProjectList/ProjectList.jsx:169 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:88 -#: src/screens/Project/shared/ProjectForm.jsx:160 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:34 -#: src/screens/Team/TeamList/TeamList.jsx:129 -#: src/screens/Team/TeamList/TeamList.jsx:154 -#: src/screens/Team/TeamList/TeamListItem.jsx:40 -#: src/screens/Team/shared/TeamForm.jsx:35 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:167 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:128 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 -#: src/screens/Template/shared/JobTemplateForm.jsx:200 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:99 -#: src/screens/User/UserTeams/UserTeamList.jsx:230 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 +#: components/AdHocCommands/AdHocCredentialStep.jsx:91 +#: components/AdHocCommands/AdHocCredentialStep.jsx:106 +#: components/AddRole/AddResourceRole.jsx:154 +#: components/AddRole/AddResourceRole.jsx:170 +#: components/AssociateModal/AssociateModal.jsx:139 +#: components/AssociateModal/AssociateModal.jsx:154 +#: components/HostForm/HostForm.jsx:87 +#: components/JobList/JobList.jsx:167 +#: components/JobList/JobList.jsx:216 +#: components/JobList/JobListItem.jsx:59 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:174 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:189 +#: components/LaunchPrompt/steps/InventoryStep.jsx:86 +#: components/LaunchPrompt/steps/InventoryStep.jsx:101 +#: components/Lookup/ApplicationLookup.jsx:78 +#: components/Lookup/ApplicationLookup.jsx:89 +#: components/Lookup/CredentialLookup.jsx:148 +#: components/Lookup/CredentialLookup.jsx:163 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/Lookup/HostFilterLookup.jsx:77 +#: components/Lookup/HostFilterLookup.jsx:352 +#: components/Lookup/InstanceGroupsLookup.jsx:91 +#: components/Lookup/InstanceGroupsLookup.jsx:102 +#: components/Lookup/InventoryLookup.jsx:109 +#: components/Lookup/InventoryLookup.jsx:124 +#: components/Lookup/InventoryLookup.jsx:162 +#: components/Lookup/InventoryLookup.jsx:177 +#: components/Lookup/MultiCredentialsLookup.jsx:176 +#: components/Lookup/MultiCredentialsLookup.jsx:191 +#: components/Lookup/OrganizationLookup.jsx:106 +#: components/Lookup/OrganizationLookup.jsx:121 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:135 +#: components/NotificationList/NotificationList.jsx:181 +#: components/NotificationList/NotificationList.jsx:218 +#: components/NotificationList/NotificationListItem.jsx:25 +#: components/PaginatedDataList/PaginatedDataList.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PromptDetail/PromptDetail.jsx:109 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:100 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 +#: components/Schedule/ScheduleList/ScheduleList.jsx:173 +#: components/Schedule/ScheduleList/ScheduleList.jsx:192 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78 +#: components/Schedule/shared/ScheduleForm.jsx:102 +#: components/TemplateList/TemplateList.jsx:189 +#: components/TemplateList/TemplateList.jsx:222 +#: components/TemplateList/TemplateListItem.jsx:126 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 +#: components/Workflow/WorkflowNodeHelp.jsx:132 +#: components/Workflow/WorkflowNodeHelp.jsx:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 +#: screens/Application/Applications.jsx:84 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:32 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/shared/ApplicationForm.jsx:54 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205 +#: screens/Credential/CredentialList/CredentialList.jsx:124 +#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialListItem.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:118 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:24 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:59 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:23 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:68 +#: screens/Host/HostDetail/HostDetail.jsx:74 +#: screens/Host/HostGroups/HostGroupsList.jsx:158 +#: screens/Host/HostGroups/HostGroupsList.jsx:173 +#: screens/Host/HostList/HostList.jsx:147 +#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostListItem.jsx:34 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:77 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 +#: screens/InstanceGroup/Instances/InstanceList.jsx:155 +#: screens/InstanceGroup/Instances/InstanceList.jsx:162 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 +#: screens/Inventory/InventoryList/InventoryList.jsx:173 +#: screens/Inventory/InventoryList/InventoryList.jsx:192 +#: screens/Inventory/InventoryList/InventoryList.jsx:200 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:81 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 +#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryGroupForm.jsx:41 +#: screens/Inventory/shared/InventorySourceForm.jsx:105 +#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:107 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 +#: screens/Organization/OrganizationList/OrganizationList.jsx:137 +#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 +#: screens/Organization/shared/OrganizationForm.jsx:60 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:84 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:138 +#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectListItem.jsx:99 +#: screens/Project/shared/ProjectForm.jsx:167 +#: screens/Team/TeamDetail/TeamDetail.jsx:34 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamListItem.jsx:40 +#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: 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/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:158 +#: 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:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 +#: screens/Template/shared/JobTemplateForm.jsx:207 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:110 +#: screens/User/UserTeams/UserTeamList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 msgid "Name" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:185 +#: components/AppContainer/AppContainer.jsx:185 msgid "Navigation" msgstr "Navigation" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:509 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:106 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 +#: screens/Dashboard/shared/ChartTooltip.jsx:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 msgid "Never" msgstr "Never" -#: src/components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.jsx:98 msgid "Never Updated" msgstr "Never Updated" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 msgid "Never expires" msgstr "Never expires" -#: src/components/JobList/JobList.jsx:221 -#: src/components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.jsx:199 +#: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "New" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:79 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:113 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:122 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:79 +#: components/LaunchPrompt/LaunchPrompt.jsx:120 +#: components/Schedule/shared/SchedulePromptableFields.jsx:124 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:175 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:102 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:106 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 +#: components/Schedule/ScheduleList/ScheduleList.jsx:175 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:102 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:106 msgid "Next Run" msgstr "Next Run" -#: src/components/Search/Search.jsx:249 +#: components/Search/Search.jsx:257 msgid "No" msgstr "No" -#: src/screens/Job/JobOutput/HostEventModal.jsx:157 +#: screens/Job/JobOutput/JobOutput.jsx:656 +msgid "No Hosts Matched" +msgstr "No Hosts Matched" + +#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:657 +msgid "No Hosts Remaining" +msgstr "No Hosts Remaining" + +#: screens/Job/JobOutput/HostEventModal.jsx:157 msgid "No JSON Available" msgstr "No JSON Available" -#: src/screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.jsx:82 msgid "No Jobs" msgstr "No Jobs" -#: src/screens/Job/JobOutput/HostEventModal.jsx:193 +#: screens/Job/JobOutput/HostEventModal.jsx:193 msgid "No Standard Error Available" msgstr "No Standard Error Available" -#: src/screens/Job/JobOutput/HostEventModal.jsx:175 +#: screens/Job/JobOutput/HostEventModal.jsx:175 msgid "No Standard Out Available" msgstr "No Standard Out Available" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:65 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:65 msgid "No inventory sync failures." msgstr "No inventory sync failures." -#: src/components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.jsx:16 msgid "No items found." msgstr "No items found." -#: src/screens/Job/JobOutput/HostEventModal.jsx:133 +#: screens/Job/JobOutput/HostEventModal.jsx:133 msgid "No result found" msgstr "No result found" -#: src/components/Search/AdvancedSearch.jsx:95 -#: src/components/Search/AdvancedSearch.jsx:133 -#: src/components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.jsx:96 +#: components/Search/AdvancedSearch.jsx:134 +#: components/Search/AdvancedSearch.jsx:154 msgid "No results found" msgstr "No results found" -#: src/screens/Template/Survey/SurveyList.jsx:174 +#: screens/Template/Survey/SurveyList.jsx:176 msgid "No survey questions found." msgstr "No survey questions found." @@ -4583,272 +5302,346 @@ msgstr "No survey questions found." #~ msgid "No {0} Found" #~ msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:96 -#: src/components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:96 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "No {pluralizedItemName} Found" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:74 msgid "Node Type" msgstr "Node Type" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:74 msgid "Node type" msgstr "Node type" -#: src/components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.jsx:107 msgid "None" msgstr "None" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 msgid "None (Run Once)" msgstr "None (Run Once)" -#: src/components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/ScheduleForm.jsx:162 msgid "None (run once)" msgstr "None (run once)" -#: src/screens/User/UserDetail/UserDetail.jsx:46 -#: src/screens/User/UserList/UserListItem.jsx:30 -#: src/screens/User/shared/UserForm.jsx:29 +#: screens/User/UserDetail/UserDetail.jsx:46 +#: screens/User/UserList/UserListItem.jsx:30 +#: screens/User/shared/UserForm.jsx:29 msgid "Normal User" msgstr "Normal User" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Not Found" msgstr "Not Found" -#: src/screens/Setting/shared/SettingDetail.jsx:59 -#: src/screens/Setting/shared/SettingDetail.jsx:98 -#: src/screens/Setting/shared/SettingDetail.jsx:121 +#: screens/Setting/shared/SettingDetail.jsx:59 +#: screens/Setting/shared/SettingDetail.jsx:100 msgid "Not configured" msgstr "Not configured" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:68 msgid "Not configured for inventory sync." msgstr "Not configured for inventory sync." +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 +msgid "" +"Note that only hosts directly in this group can\n" +"be disassociated. Hosts in sub-groups must be disassociated\n" +"directly from the sub-group level that they belong." +msgstr "" +"Note that only hosts directly in this group can\n" +"be disassociated. Hosts in sub-groups must be disassociated\n" +"directly from the sub-group level that they belong." + #: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 -msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." -msgstr "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgstr "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." + +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s\n" +"children. This list shows all groups the host is associated\n" +"with directly and indirectly." +msgstr "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s\n" +"children. This list shows all groups the host is associated\n" +"with directly and indirectly." + +#: screens/Host/HostGroups/HostGroupsList.jsx:212 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s \n" +"children. This list shows all groups the host is associated \n" +"with directly and indirectly." +msgstr "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s \n" +"children. This list shows all groups the host is associated \n" +"with directly and indirectly." #: src/screens/Host/HostGroups/HostGroupsList.jsx:212 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." #: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "Note: This field assumes the remote name is \"origin\"." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +msgid "" +"Note: When using SSH protocol for GitHub or\n" +"Bitbucket, enter an SSH key only, do not enter a username\n" +"(other than git). Additionally, GitHub and Bitbucket do\n" +"not support password authentication when using SSH. GIT\n" +"read only protocol (git://) does not use username or\n" +"password information." +msgstr "" +"Note: When using SSH protocol for GitHub or\n" +"Bitbucket, enter an SSH key only, do not enter a username\n" +"(other than git). Additionally, GitHub and Bitbucket do\n" +"not support password authentication when using SSH. GIT\n" +"read only protocol (git://) does not use username or\n" +"password information." + #: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 -msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." -msgstr "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#~ msgstr "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." #: src/screens/Inventory/Inventories.jsx:120 -msgid "Notifcations" -msgstr "Notifcations" +#~ msgid "Notifcations" +#~ msgstr "Notifcations" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 msgid "Notification Color" msgstr "Notification Color" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:51 +#: screens/NotificationTemplate/NotificationTemplate.jsx:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 msgid "Notification Template not found." msgstr "Notification Template not found." -#: src/screens/ActivityStream/ActivityStream.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:171 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:13 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/ActivityStream/ActivityStream.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188 +#: screens/NotificationTemplate/NotificationTemplates.jsx:13 +#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: util/getRelatedResourceDeleteDetails.js:205 msgid "Notification Templates" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 msgid "Notification Type" msgstr "Notification Type" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 msgid "Notification color" msgstr "Notification color" -#: src/components/NotificationList/NotificationList.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:130 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:249 +msgid "Notification sent successfully" +msgstr "Notification sent successfully" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:253 +msgid "Notification timed out" +msgstr "Notification timed out" + +#: components/NotificationList/NotificationList.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:147 msgid "Notification type" msgstr "Notification type" -#: src/components/NotificationList/NotificationList.jsx:177 -#: src/routeConfig.js:122 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:104 -#: src/screens/ManagementJob/ManagementJob.jsx:115 -#: src/screens/ManagementJob/ManagementJobs.jsx:24 -#: src/screens/Organization/Organization.jsx:129 -#: src/screens/Organization/Organizations.jsx:35 -#: src/screens/Project/Project.jsx:111 -#: src/screens/Project/Projects.jsx:31 -#: src/screens/Template/Template.jsx:137 -#: src/screens/Template/Templates.jsx:47 -#: src/screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.jsx:177 +#: routeConfig.js:123 +#: screens/Inventory/Inventories.jsx:118 +#: screens/Inventory/InventorySource/InventorySource.jsx:104 +#: screens/ManagementJob/ManagementJob.jsx:115 +#: screens/ManagementJob/ManagementJobs.jsx:24 +#: screens/Organization/Organization.jsx:135 +#: screens/Organization/Organizations.jsx:35 +#: screens/Project/Project.jsx:111 +#: screens/Project/Projects.jsx:31 +#: screens/Template/Template.jsx:150 +#: screens/Template/Templates.jsx:47 +#: screens/Template/WorkflowJobTemplate.jsx:127 msgid "Notifications" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 msgid "November" msgstr "November" -#: src/components/Workflow/WorkflowNodeHelp.jsx:101 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.jsx:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "OK" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:543 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 msgid "Occurrences" msgstr "Occurrences" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 msgid "October" msgstr "October" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:225 -#: src/components/HostToggle/HostToggle.jsx:59 -#: src/components/InstanceToggle/InstanceToggle.jsx:59 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:53 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:225 +#: components/HostToggle/HostToggle.jsx:59 +#: components/InstanceToggle/InstanceToggle.jsx:59 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:53 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "Off" msgstr "Off" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: src/components/HostToggle/HostToggle.jsx:58 -#: src/components/InstanceToggle/InstanceToggle.jsx:58 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:96 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:52 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:224 +#: components/HostToggle/HostToggle.jsx:58 +#: components/InstanceToggle/InstanceToggle.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:96 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:52 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "On" msgstr "On" -#: src/components/Workflow/WorkflowLegend.jsx:122 -#: src/components/Workflow/WorkflowLinkHelp.jsx:30 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 +#: components/Workflow/WorkflowLegend.jsx:122 +#: components/Workflow/WorkflowLinkHelp.jsx:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 msgid "On Failure" msgstr "On Failure" -#: src/components/Workflow/WorkflowLegend.jsx:118 -#: src/components/Workflow/WorkflowLinkHelp.jsx:27 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:61 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 +#: components/Workflow/WorkflowLegend.jsx:118 +#: components/Workflow/WorkflowLinkHelp.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 msgid "On Success" msgstr "On Success" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 msgid "On date" msgstr "On date" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:255 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 msgid "On days" msgstr "On days" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:154 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:155 msgid "Only Group By" msgstr "Only Group By" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 msgid "OpenStack" msgstr "OpenStack" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 msgid "Option Details" msgstr "Option Details" +#: screens/Template/shared/JobTemplateForm.jsx:372 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:212 +msgid "" +"Optional labels that describe this job template,\n" +"such as 'dev' or 'test'. Labels can be used to group and filter\n" +"job templates and completed jobs." +msgstr "" +"Optional labels that describe this job template,\n" +"such as 'dev' or 'test'. Labels can be used to group and filter\n" +"job templates and completed jobs." + #: src/screens/Template/shared/JobTemplateForm.jsx:342 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187 -msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." -msgstr "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." +#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." +#~ msgstr "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." -#: src/screens/Template/shared/WebhookSubForm.jsx:218 +#: screens/Template/shared/WebhookSubForm.jsx:219 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "Optionally select the credential to use to send status updates back to the webhook service." -#: src/components/NotificationList/NotificationList.jsx:222 -#: src/components/NotificationList/NotificationListItem.jsx:34 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:166 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:174 -#: src/components/PromptDetail/PromptProjectDetail.jsx:86 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:137 -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:49 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:121 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:163 -#: src/screens/Template/shared/JobTemplateForm.jsx:500 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: components/NotificationList/NotificationList.jsx:222 +#: components/NotificationList/NotificationListItem.jsx:34 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:167 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:180 +#: components/PromptDetail/PromptProjectDetail.jsx:92 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141 +#: screens/Credential/shared/TypeInputsSubForm.jsx:49 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180 +#: screens/Template/shared/JobTemplateForm.jsx:530 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Options" msgstr "Options" -#: src/components/Lookup/ApplicationLookup.jsx:97 -#: src/components/Lookup/OrganizationLookup.jsx:81 -#: src/components/Lookup/OrganizationLookup.jsx:86 -#: src/components/Lookup/OrganizationLookup.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:63 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:73 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:91 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:101 -#: src/components/PromptDetail/PromptProjectDetail.jsx:55 -#: src/components/PromptDetail/PromptProjectDetail.jsx:65 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:37 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:163 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:204 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:76 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:197 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:100 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:89 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:40 -#: src/screens/Team/TeamList/TeamList.jsx:155 -#: src/screens/Team/TeamList/TeamListItem.jsx:45 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:172 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:182 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 -#: src/screens/User/UserTeams/UserTeamList.jsx:235 -#: src/screens/User/UserTeams/UserTeamListItem.jsx:42 +#: components/Lookup/ApplicationLookup.jsx:97 +#: components/Lookup/OrganizationLookup.jsx:82 +#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/OrganizationLookup.jsx:101 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:64 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:74 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:93 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:103 +#: components/PromptDetail/PromptProjectDetail.jsx:56 +#: components/PromptDetail/PromptProjectDetail.jsx:66 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:37 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:67 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 +#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:91 +#: screens/Team/TeamDetail/TeamDetail.jsx:40 +#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamListItem.jsx:45 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:123 +#: screens/User/UserTeams/UserTeamList.jsx:235 +#: screens/User/UserTeams/UserTeamListItem.jsx:42 msgid "Organization" msgstr "Organization" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 msgid "Organization (Name)" msgstr "Organization (Name)" @@ -4856,7 +5649,7 @@ msgstr "Organization (Name)" #~ msgid "Organization Add" #~ msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:138 msgid "Organization Name" msgstr "Organization Name" @@ -4864,20 +5657,22 @@ msgstr "Organization Name" #~ msgid "Organization detail tabs" #~ msgstr "" -#: src/screens/Organization/Organization.jsx:148 +#: screens/Organization/Organization.jsx:154 msgid "Organization not found." msgstr "Organization not found." -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: src/routeConfig.js:96 -#: src/screens/ActivityStream/ActivityStream.jsx:178 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:129 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:175 -#: src/screens/Organization/Organizations.jsx:16 -#: src/screens/Organization/Organizations.jsx:27 -#: src/screens/User/User.jsx:65 -#: src/screens/User/UserOrganizations/UserOrganizationsList.jsx:55 -#: src/screens/User/Users.jsx:34 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 +#: routeConfig.js:97 +#: screens/ActivityStream/ActivityStream.jsx:178 +#: screens/Organization/OrganizationList/OrganizationList.jsx:133 +#: screens/Organization/OrganizationList/OrganizationList.jsx:179 +#: screens/Organization/Organizations.jsx:16 +#: screens/Organization/Organizations.jsx:27 +#: screens/User/User.jsx:65 +#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55 +#: screens/User/Users.jsx:34 +#: util/getRelatedResourceDeleteDetails.js:256 +#: util/getRelatedResourceDeleteDetails.js:290 msgid "Organizations" msgstr "" @@ -4885,35 +5680,35 @@ msgstr "" #~ msgid "Organizations List" #~ msgstr "" -#: src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 msgid "Other prompts" msgstr "Other prompts" -#: src/screens/Job/Job.jsx:64 -#: src/screens/Job/Jobs.jsx:28 +#: screens/Job/Job.jsx:104 +#: screens/Job/Jobs.jsx:28 msgid "Output" msgstr "Output" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:47 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:114 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:129 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 msgid "Overwrite" msgstr "Overwrite" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:49 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 msgid "Overwrite Variables" msgstr "Overwrite Variables" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:137 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:150 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 msgid "Overwrite variables" msgstr "Overwrite variables" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 msgid "POST" msgstr "POST" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 msgid "PUT" msgstr "PUT" @@ -4929,77 +5724,88 @@ msgstr "PUT" #~ msgid "Page Number" #~ msgstr "" -#: src/components/NotificationList/NotificationList.jsx:198 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: components/NotificationList/NotificationList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 msgid "Pagerduty" msgstr "Pagerduty" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 msgid "Pagerduty Subdomain" msgstr "Pagerduty Subdomain" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 msgid "Pagerduty subdomain" msgstr "Pagerduty subdomain" -#: src/components/Pagination/Pagination.jsx:37 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:157 +#: components/Workflow/WorkflowTools.jsx:166 msgid "Pan Down" msgstr "Pan Down" -#: src/components/Workflow/WorkflowTools.jsx:130 +#: components/Workflow/WorkflowTools.jsx:133 msgid "Pan Left" msgstr "Pan Left" -#: src/components/Workflow/WorkflowTools.jsx:167 +#: components/Workflow/WorkflowTools.jsx:177 msgid "Pan Right" msgstr "Pan Right" -#: src/components/Workflow/WorkflowTools.jsx:140 +#: components/Workflow/WorkflowTools.jsx:144 msgid "Pan Up" msgstr "Pan Up" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:279 +#: components/AdHocCommands/AdHocDetailsStep.jsx:279 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "Pass extra command line changes. There are two ansible command line parameters:" -#: src/screens/Template/shared/JobTemplateForm.jsx:362 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:209 +#: screens/Template/shared/JobTemplateForm.jsx:392 +msgid "" +"Pass extra command line variables to the playbook. This is the\n" +"-e or --extra-vars command line parameter for ansible-playbook.\n" +"Provide key/value pairs using either YAML or JSON. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" +"Pass extra command line variables to the playbook. This is the\n" +"-e or --extra-vars command line parameter for ansible-playbook.\n" +"Provide key/value pairs using either YAML or JSON. Refer to the\n" +"Ansible Tower documentation for example syntax." + +#: 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." -#: src/screens/Login/Login.jsx:258 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:52 -#: src/screens/User/shared/UserForm.jsx:85 +#: screens/Login/Login.jsx:172 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 +#: screens/Template/Survey/SurveyQuestionForm.jsx:52 +#: screens/User/shared/UserForm.jsx:85 msgid "Password" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:204 +#: screens/Dashboard/Dashboard.jsx:204 msgid "Past month" msgstr "Past month" -#: src/screens/Dashboard/Dashboard.jsx:207 +#: screens/Dashboard/Dashboard.jsx:207 msgid "Past two weeks" msgstr "Past two weeks" -#: src/screens/Dashboard/Dashboard.jsx:210 +#: screens/Dashboard/Dashboard.jsx:210 msgid "Past week" msgstr "Past week" -#: src/components/JobList/JobList.jsx:222 -#: src/components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.jsx:200 +#: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "Pending" -#: src/components/AppContainer/PageHeaderToolbar.jsx:88 +#: components/AppContainer/PageHeaderToolbar.jsx:88 msgid "Pending Workflow Approvals" msgstr "Pending Workflow Approvals" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:109 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:109 msgid "Pending delete" msgstr "Pending delete" @@ -5007,58 +5813,74 @@ msgstr "Pending delete" #~ msgid "Per Page" #~ msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:310 +#: components/Lookup/HostFilterLookup.jsx:311 msgid "Perform a search to define a host filter" msgstr "Perform a search to define a host filter" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:43 msgid "Personal access token" msgstr "Personal access token" -#: src/screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.jsx:128 msgid "Play" msgstr "Play" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:82 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:89 msgid "Play Count" msgstr "Play Count" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: src/screens/Job/JobDetail/JobDetail.jsx:221 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 -#: src/screens/Template/shared/JobTemplateForm.jsx:300 +#: screens/Job/JobOutput/JobOutput.jsx:661 +msgid "Play Started" +msgstr "Play Started" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 +#: screens/Job/JobDetail/JobDetail.jsx:249 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 +#: screens/Template/shared/JobTemplateForm.jsx:330 msgid "Playbook" msgstr "Playbook" -#: src/components/PromptDetail/PromptProjectDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:139 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:97 +msgid "Playbook Check" +msgstr "Playbook Check" + +#: screens/Job/JobOutput/JobOutput.jsx:662 +msgid "Playbook Complete" +msgstr "Playbook Complete" + +#: components/PromptDetail/PromptProjectDetail.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:142 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 msgid "Playbook Directory" msgstr "Playbook Directory" -#: src/components/JobList/JobList.jsx:207 -#: src/components/JobList/JobListItem.jsx:33 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: src/screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.jsx:185 +#: components/JobList/JobListItem.jsx:33 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 +#: screens/Job/JobDetail/JobDetail.jsx:98 msgid "Playbook Run" msgstr "Playbook Run" -#: src/components/TemplateList/TemplateList.jsx:201 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Job/JobOutput/JobOutput.jsx:653 +msgid "Playbook Started" +msgstr "Playbook Started" + +#: components/TemplateList/TemplateList.jsx:206 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 msgid "Playbook name" msgstr "Playbook name" -#: src/screens/Dashboard/Dashboard.jsx:235 +#: screens/Dashboard/Dashboard.jsx:235 msgid "Playbook run" msgstr "Playbook run" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:83 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:90 msgid "Plays" msgstr "Plays" -#: src/screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.jsx:179 msgid "Please add survey questions." msgstr "Please add survey questions." @@ -5071,64 +5893,76 @@ msgstr "Please add survey questions." #~ msgid "Please add {0} {itemName} to populate this list" #~ msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:94 -#: src/components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:94 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "Please add {pluralizedItemName} to populate this list" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 msgid "Please click the Start button to begin." msgstr "Please click the Start button to begin." -#: src/util/validators.jsx:118 +#: util/validators.jsx:118 msgid "Please enter a valid URL" msgstr "Please enter a valid URL" -#: src/screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:22 msgid "Please enter a value." msgstr "Please enter a value." -#: src/components/Schedule/shared/ScheduleForm.jsx:507 +#: components/Schedule/shared/ScheduleForm.jsx:581 msgid "Please select a day number between 1 and 31." msgstr "Please select a day number between 1 and 31." -#: src/screens/Template/shared/JobTemplateForm.jsx:723 +#: screens/Template/shared/JobTemplateForm.jsx:755 msgid "Please select an Inventory or check the Prompt on Launch option." msgstr "Please select an Inventory or check the Prompt on Launch option." -#: src/components/Schedule/shared/ScheduleForm.jsx:497 +#: components/Schedule/shared/ScheduleForm.jsx:571 msgid "Please select an end date/time that comes after the start date/time." msgstr "Please select an end date/time that comes after the start date/time." -#: src/components/Lookup/HostFilterLookup.jsx:298 +#: components/Lookup/HostFilterLookup.jsx:299 msgid "Please select an organization before editing the host filter" msgstr "Please select an organization before editing the host filter" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:74 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 msgid "Pod spec override" msgstr "Pod spec override" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:88 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:91 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 msgid "Policy instance minimum" msgstr "Policy instance minimum" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:93 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:96 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 msgid "Policy instance percentage" msgstr "Policy instance percentage" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:54 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:61 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:71 msgid "Populate field from an external secret management system" msgstr "Populate field from an external secret management system" -#: src/components/Lookup/HostFilterLookup.jsx:287 -msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." -msgstr "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#: components/Lookup/HostFilterLookup.jsx:288 +msgid "" +"Populate the hosts for this inventory by using a search\n" +"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" +"Refer to the Ansible Tower documentation for further syntax and\n" +"examples." +msgstr "" +"Populate the hosts for this inventory by using a search\n" +"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" +"Refer to the Ansible Tower documentation for further syntax and\n" +"examples." -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: src/components/Lookup/HostFilterLookup.jsx:287 +#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#~ msgstr "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 msgid "Port" msgstr "Port" @@ -5136,9 +5970,17 @@ msgstr "Port" #~ msgid "Portal Mode" #~ msgstr "" -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: src/screens/Template/Survey/SurveyList.jsx:161 -#: src/screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:212 +msgid "Preconditions for running this node when there are multiple parents. Refer to the" +msgstr "Preconditions for running this node when there are multiple parents. Refer to the" + +#: components/CodeEditor/CodeEditor.jsx:176 +msgid "Press Enter to edit. Press ESC to stop editing." +msgstr "Press Enter to edit. Press ESC to stop editing." + +#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 +#: screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/Survey/SurveyList.jsx:165 msgid "Preview" msgstr "Preview" @@ -5150,663 +5992,749 @@ msgstr "Preview" #~ msgid "Primary Navigation" #~ msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 msgid "Private key passphrase" msgstr "Private key passphrase" -#: src/screens/Template/shared/JobTemplateForm.jsx:506 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Privilege Escalation" msgstr "Privilege Escalation" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 msgid "Privilege escalation password" msgstr "Privilege escalation password" -#: src/components/Lookup/ProjectLookup.jsx:86 -#: src/components/Lookup/ProjectLookup.jsx:91 -#: src/components/Lookup/ProjectLookup.jsx:144 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:92 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:121 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:129 -#: src/components/TemplateList/TemplateListItem.jsx:255 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:209 -#: src/screens/Job/JobDetail/JobDetail.jsx:211 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:207 +#: components/Lookup/ProjectLookup.jsx:86 +#: components/Lookup/ProjectLookup.jsx:91 +#: components/Lookup/ProjectLookup.jsx:144 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:89 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 +#: components/TemplateList/TemplateListItem.jsx:283 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217 +#: screens/Job/JobDetail/JobDetail.jsx:224 +#: screens/Job/JobDetail/JobDetail.jsx:239 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:205 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 msgid "Project" msgstr "Project" -#: src/components/PromptDetail/PromptProjectDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:134 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 +#: components/PromptDetail/PromptProjectDetail.jsx:100 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:137 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 msgid "Project Base Path" msgstr "Project Base Path" -#: src/components/Workflow/WorkflowLegend.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:73 +#: components/Workflow/WorkflowLegend.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:101 msgid "Project Sync" msgstr "Project Sync" -#: src/components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.jsx:55 msgid "Project Update" msgstr "Project Update" -#: src/screens/Project/Project.jsx:139 +#: screens/Project/Project.jsx:139 msgid "Project not found." msgstr "Project not found." -#: src/screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:157 msgid "Project sync failures" msgstr "Project sync failures" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: src/routeConfig.js:75 -#: src/screens/ActivityStream/ActivityStream.jsx:167 -#: src/screens/Dashboard/Dashboard.jsx:151 -#: src/screens/Project/ProjectList/ProjectList.jsx:128 -#: src/screens/Project/ProjectList/ProjectList.jsx:196 -#: src/screens/Project/Projects.jsx:14 -#: src/screens/Project/Projects.jsx:25 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 +#: routeConfig.js:76 +#: screens/ActivityStream/ActivityStream.jsx:167 +#: screens/Dashboard/Dashboard.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:133 +#: screens/Project/ProjectList/ProjectList.jsx:201 +#: screens/Project/Projects.jsx:14 +#: screens/Project/Projects.jsx:25 +#: util/getRelatedResourceDeleteDetails.js:60 +#: util/getRelatedResourceDeleteDetails.js:219 +#: util/getRelatedResourceDeleteDetails.js:249 msgid "Projects" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:137 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:136 msgid "Promote Child Groups and Hosts" msgstr "Promote Child Groups and Hosts" -#: src/components/Schedule/shared/ScheduleForm.jsx:557 -#: src/components/Schedule/shared/ScheduleForm.jsx:560 +#: components/Schedule/shared/ScheduleForm.jsx:633 +#: components/Schedule/shared/ScheduleForm.jsx:636 msgid "Prompt" msgstr "Prompt" -#: src/components/PromptDetail/PromptDetail.jsx:153 +#: components/PromptDetail/PromptDetail.jsx:153 msgid "Prompt Overrides" msgstr "Prompt Overrides" -#: src/components/CodeMirrorInput/VariablesField.jsx:74 -#: src/components/FieldWithPrompt/FieldWithPrompt.jsx:47 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:161 +#: components/CodeEditor/VariablesField.jsx:158 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167 msgid "Prompt on launch" msgstr "Prompt on launch" -#: src/components/PromptDetail/PromptDetail.jsx:150 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 +#: components/PromptDetail/PromptDetail.jsx:150 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 msgid "Prompted Values" msgstr "Prompted Values" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:100 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:109 +#: components/LaunchPrompt/LaunchPrompt.jsx:107 +#: components/Schedule/shared/SchedulePromptableFields.jsx:111 msgid "Prompts" msgstr "Prompts" +#: screens/Template/shared/JobTemplateForm.jsx:423 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:158 +msgid "" +"Provide a host pattern to further constrain\n" +"the list of hosts that will be managed or affected by the\n" +"playbook. Multiple patterns are allowed. Refer to Ansible\n" +"documentation for more information and examples on patterns." +msgstr "" +"Provide a host pattern to further constrain\n" +"the list of hosts that will be managed or affected by the\n" +"playbook. Multiple patterns are allowed. Refer to Ansible\n" +"documentation for more information and examples on patterns." + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +msgid "" +"Provide a host pattern to further constrain the list\n" +"of hosts that will be managed or affected by the playbook. Multiple\n" +"patterns are allowed. Refer to Ansible documentation for more\n" +"information and examples on patterns." +msgstr "" +"Provide a host pattern to further constrain the list\n" +"of hosts that will be managed or affected by the playbook. Multiple\n" +"patterns are allowed. Refer to Ansible documentation for more\n" +"information and examples on patterns." + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 #: src/screens/Template/shared/JobTemplateForm.jsx:393 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147 -msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." -msgstr "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." +#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." +#~ msgstr "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." -#: src/screens/Credential/shared/CredentialFormFields/CredentialField.jsx:97 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "Provide a value for this field or select the Prompt on launch option." -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 -msgid "Provide key/value pairs using either YAML or JSON." -msgstr "Provide key/value pairs using either YAML or JSON." +#: components/AdHocCommands/AdHocDetailsStep.jsx:284 +msgid "" +"Provide key/value pairs using either\n" +"YAML or JSON." +msgstr "" +"Provide key/value pairs using either\n" +"YAML or JSON." -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 -#: src/screens/Template/shared/JobTemplateForm.jsx:579 +#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 +#~ msgid "Provide key/value pairs using either YAML or JSON." +#~ msgstr "Provide key/value pairs using either YAML or JSON." + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:152 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Provisioning Callback URL" msgstr "Provisioning Callback URL" -#: src/screens/Template/shared/JobTemplateForm.jsx:574 +#: screens/Template/shared/JobTemplateForm.jsx:604 msgid "Provisioning Callback details" msgstr "Provisioning Callback details" -#: src/screens/Template/shared/JobTemplateForm.jsx:511 -#: src/screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:544 msgid "Provisioning Callbacks" msgstr "Provisioning Callbacks" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:116 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:93 +msgid "Pull" +msgstr "Pull" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:116 msgid "Question" msgstr "Question" -#: src/screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.jsx:103 msgid "RADIUS" msgstr "RADIUS" -#: src/screens/Setting/SettingList.jsx:78 +#: screens/Setting/SettingList.jsx:78 msgid "RADIUS settings" msgstr "RADIUS settings" -#: src/screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Read" msgstr "Read" -#: src/screens/Dashboard/Dashboard.jsx:177 +#: screens/Dashboard/Dashboard.jsx:177 msgid "Recent Jobs" msgstr "Recent Jobs" -#: src/screens/Dashboard/Dashboard.jsx:175 +#: screens/Dashboard/Dashboard.jsx:175 msgid "Recent Jobs list tab" msgstr "Recent Jobs list tab" -#: src/screens/Dashboard/Dashboard.jsx:183 +#: screens/Dashboard/Dashboard.jsx:183 msgid "Recent Templates" msgstr "Recent Templates" -#: src/screens/Dashboard/Dashboard.jsx:180 +#: screens/Dashboard/Dashboard.jsx:180 msgid "Recent Templates list tab" msgstr "Recent Templates list tab" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 msgid "Recipient List" msgstr "Recipient List" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 msgid "Recipient list" msgstr "Recipient list" -#: src/components/Lookup/ProjectLookup.jsx:117 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: src/screens/Project/ProjectList/ProjectList.jsx:149 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: components/Lookup/ProjectLookup.jsx:117 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 +#: screens/Project/ProjectList/ProjectList.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 msgid "Red Hat Insights" msgstr "Red Hat Insights" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 msgid "Red Hat Satellite 6" msgstr "Red Hat Satellite 6" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "Red Hat Virtualization" msgstr "Red Hat Virtualization" -#: src/screens/Application/shared/ApplicationForm.jsx:108 +#: screens/Application/shared/ApplicationForm.jsx:108 msgid "Redirect URIs" msgstr "Redirect URIs" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 msgid "Redirect uris" msgstr "Redirect uris" -#: src/screens/Template/shared/JobTemplateForm.jsx:383 -msgid "Refer to the Ansible documentation for details about the configuration file." -msgstr "Refer to the Ansible documentation for details about the configuration file." +#: screens/Template/shared/JobTemplateForm.jsx:413 +msgid "" +"Refer to the Ansible documentation for details\n" +"about the configuration file." +msgstr "" +"Refer to the Ansible documentation for details\n" +"about the configuration file." -#: src/screens/User/UserTokens/UserTokens.jsx:78 +#: src/screens/Template/shared/JobTemplateForm.jsx:383 +#~ msgid "Refer to the Ansible documentation for details about the configuration file." +#~ msgstr "Refer to the Ansible documentation for details about the configuration file." + +#: screens/User/UserTokens/UserTokens.jsx:78 msgid "Refresh Token" msgstr "Refresh Token" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:85 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "Refresh Token Expiration" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:118 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:119 msgid "Regions" msgstr "Regions" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:240 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +msgid "Registry credential" +msgstr "Registry credential" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:283 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." -#: src/screens/Inventory/Inventories.jsx:94 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 +#: screens/Inventory/Inventories.jsx:92 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 msgid "Related Groups" msgstr "Related Groups" -#: src/components/JobList/JobListItem.jsx:104 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:69 -#: src/screens/Job/JobDetail/JobDetail.jsx:360 -#: src/screens/Job/JobDetail/JobDetail.jsx:363 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:150 +#: components/JobList/JobListItem.jsx:105 +#: components/LaunchButton/ReLaunchDropDown.jsx:70 +#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:402 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:161 msgid "Relaunch" msgstr "Relaunch" -#: src/components/JobList/JobListItem.jsx:89 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:135 +#: components/JobList/JobListItem.jsx:89 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:142 msgid "Relaunch Job" msgstr "Relaunch Job" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:33 +#: components/LaunchButton/ReLaunchDropDown.jsx:33 msgid "Relaunch all hosts" msgstr "Relaunch all hosts" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:44 +#: components/LaunchButton/ReLaunchDropDown.jsx:44 msgid "Relaunch failed hosts" msgstr "Relaunch failed hosts" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:23 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:28 +#: components/LaunchButton/ReLaunchDropDown.jsx:23 +#: components/LaunchButton/ReLaunchDropDown.jsx:28 msgid "Relaunch on" msgstr "Relaunch on" -#: src/components/JobList/JobListItem.jsx:88 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:134 +#: components/JobList/JobListItem.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:141 msgid "Relaunch using host parameters" msgstr "Relaunch using host parameters" -#: src/components/Lookup/ProjectLookup.jsx:116 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: src/screens/Project/ProjectList/ProjectList.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: components/Lookup/ProjectLookup.jsx:116 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 +#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 msgid "Remote Archive" msgstr "Remote Archive" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:20 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:28 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 msgid "Remove" msgstr "Remove" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 msgid "Remove All Nodes" msgstr "Remove All Nodes" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 msgid "Remove Link" msgstr "Remove Link" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 msgid "Remove Node" msgstr "Remove Node" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "Remove any local modifications prior to performing an update." -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:23 msgid "Remove {0} Access" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:60 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:60 msgid "Remove {0} chip" msgstr "Remove {0} chip" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:47 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:49 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 msgid "Repeat Frequency" msgstr "Repeat Frequency" -#: src/screens/Template/Survey/SurveyListItem.jsx:104 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:143 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:45 +msgid "Replace" +msgstr "Replace" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:54 +msgid "Replace field with new value" +msgstr "Replace field with new value" + +#: screens/Template/Survey/SurveyListItem.jsx:106 +#: screens/Template/Survey/SurveyQuestionForm.jsx:143 msgid "Required" msgstr "Required" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 msgid "Resource deleted" msgstr "Resource deleted" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:21 +#: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Resource name" msgstr "Resource name" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:40 +#: screens/User/UserRoles/UserRolesListItem.jsx:40 msgid "Resource role" msgstr "Resource role" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:30 +#: screens/User/UserRoles/UserRolesListItem.jsx:30 msgid "Resource type" msgstr "Resource type" -#: src/routeConfig.js:61 -#: src/screens/ActivityStream/ActivityStream.jsx:156 +#: routeConfig.js:62 +#: screens/ActivityStream/ActivityStream.jsx:156 msgid "Resources" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:121 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:71 +#: components/TemplateList/TemplateListItem.jsx:133 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:81 msgid "Resources are missing from this template." msgstr "Resources are missing from this template." -#: src/screens/Setting/shared/RevertButton.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:44 msgid "Restore initial value." msgstr "Restore initial value." -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 -msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" -msgstr "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255 +msgid "" +"Retrieve the enabled state from the given dict of host variables.\n" +"The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +msgstr "" +"Retrieve the enabled state from the given dict of host variables.\n" +"The enabled variable may be specified using dot notation, e.g: 'foo.bar'" -#: src/components/JobList/JobListCancelButton.jsx:148 -#: src/components/JobList/JobListCancelButton.jsx:151 -#: src/screens/Job/JobOutput/JobOutput.jsx:692 -#: src/screens/Job/JobOutput/JobOutput.jsx:695 +#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 +#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#~ msgstr "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" + +#: components/JobList/JobListCancelButton.jsx:143 +#: components/JobList/JobListCancelButton.jsx:146 +#: screens/Job/JobDetail/JobDetail.jsx:453 +#: screens/Job/JobDetail/JobDetail.jsx:456 +#: screens/Job/JobOutput/JobOutput.jsx:804 +#: screens/Job/JobOutput/JobOutput.jsx:807 msgid "Return" msgstr "Return" -#: src/components/Search/AdvancedSearch.jsx:115 +#: components/Search/AdvancedSearch.jsx:116 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." -#: src/components/Search/AdvancedSearch.jsx:101 +#: components/Search/AdvancedSearch.jsx:102 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." -#: src/components/Search/AdvancedSearch.jsx:108 +#: components/Search/AdvancedSearch.jsx:109 msgid "Returns results that satisfy this one or any other filters." msgstr "Returns results that satisfy this one or any other filters." -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Revert" msgstr "Revert" -#: src/screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.jsx:23 msgid "Revert all" msgstr "Revert all" -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:28 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:34 +#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.jsx:34 msgid "Revert all to default" msgstr "Revert all to default" -#: src/screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:53 +msgid "Revert field to previously saved value" +msgstr "Revert field to previously saved value" + +#: screens/Setting/shared/RevertAllAlert.jsx:11 msgid "Revert settings" msgstr "Revert settings" -#: src/screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.jsx:43 msgid "Revert to factory default." msgstr "Revert to factory default." -#: src/screens/Job/JobDetail/JobDetail.jsx:220 -#: src/screens/Project/ProjectList/ProjectList.jsx:172 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:111 +#: screens/Job/JobDetail/JobDetail.jsx:248 +#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectListItem.jsx:137 msgid "Revision" msgstr "Revision" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 msgid "Revision #" msgstr "Revision #" -#: src/components/NotificationList/NotificationList.jsx:199 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 +#: components/NotificationList/NotificationList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Rocket.Chat" msgstr "Rocket.Chat" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:40 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: src/screens/User/UserList/UserList.jsx:171 -#: src/screens/User/UserList/UserListItem.jsx:78 -#: src/screens/User/UserRoles/UserRolesList.jsx:145 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:44 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.jsx:148 +#: screens/User/UserList/UserList.jsx:171 +#: screens/User/UserList/UserListItem.jsx:78 +#: screens/User/UserRoles/UserRolesList.jsx:145 +#: screens/User/UserRoles/UserRolesListItem.jsx:44 msgid "Role" msgstr "Role" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:141 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:154 -#: src/screens/Team/Team.jsx:57 -#: src/screens/Team/Teams.jsx:32 -#: src/screens/User/User.jsx:70 -#: src/screens/User/Users.jsx:32 +#: components/ResourceAccessList/ResourceAccessList.jsx:143 +#: components/ResourceAccessList/ResourceAccessList.jsx:156 +#: screens/Team/Team.jsx:57 +#: screens/Team/Teams.jsx:32 +#: screens/User/User.jsx:70 +#: screens/User/Users.jsx:32 msgid "Roles" msgstr "Roles" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 -#: src/components/Workflow/WorkflowLinkHelp.jsx:39 -#: src/screens/Credential/shared/ExternalTestModal.jsx:89 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:47 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: src/screens/Template/shared/JobTemplateForm.jsx:164 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/Workflow/WorkflowLinkHelp.jsx:39 +#: screens/Credential/shared/ExternalTestModal.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 +#: screens/Template/shared/JobTemplateForm.jsx:171 msgid "Run" msgstr "Run" -#: src/components/AdHocCommands/AdHocCommands.jsx:124 -#: src/components/AdHocCommands/AdHocCommands.jsx:127 -#: src/components/AdHocCommands/AdHocCommands.jsx:132 -#: src/components/AdHocCommands/AdHocCommands.jsx:136 +#: components/AdHocCommands/AdHocCommands.jsx:124 +#: components/AdHocCommands/AdHocCommands.jsx:127 +#: components/AdHocCommands/AdHocCommands.jsx:133 +#: components/AdHocCommands/AdHocCommands.jsx:137 msgid "Run Command" msgstr "Run Command" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:109 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:109 msgid "Run command" msgstr "Run command" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:227 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 msgid "Run every" msgstr "Run every" -#: src/components/Schedule/shared/ScheduleForm.jsx:157 +#: components/Schedule/shared/ScheduleForm.jsx:157 msgid "Run frequency" msgstr "Run frequency" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 msgid "Run on" msgstr "Run on" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 msgid "Run type" msgstr "Run type" -#: src/components/JobList/JobList.jsx:224 -#: src/components/TemplateList/TemplateListItem.jsx:93 -#: src/components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.jsx:202 +#: components/TemplateList/TemplateListItem.jsx:105 +#: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "Running" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:229 +#: screens/Job/JobOutput/JobOutput.jsx:654 +msgid "Running Handlers" +msgstr "Running Handlers" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236 msgid "Running Jobs" msgstr "Running Jobs" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:99 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:99 msgid "Running jobs" msgstr "Running jobs" -#: src/screens/Setting/Settings.jsx:106 +#: screens/Setting/Settings.jsx:106 msgid "SAML" msgstr "SAML" -#: src/screens/Setting/SettingList.jsx:82 +#: screens/Setting/SettingList.jsx:82 msgid "SAML settings" msgstr "SAML settings" -#: src/screens/Dashboard/Dashboard.jsx:232 +#: screens/Dashboard/Dashboard.jsx:232 msgid "SCM update" msgstr "SCM update" -#: src/screens/User/UserDetail/UserDetail.jsx:53 -#: src/screens/User/UserList/UserListItem.jsx:57 +#: screens/User/UserDetail/UserDetail.jsx:53 +#: screens/User/UserList/UserListItem.jsx:57 msgid "SOCIAL" msgstr "SOCIAL" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 msgid "SSH password" msgstr "SSH password" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 msgid "SSL Connection" msgstr "SSL Connection" -#: src/components/Workflow/workflowReducer.js:411 +#: components/Workflow/WorkflowStartNode.jsx:61 +#: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "START" -#: src/components/Sparkline/Sparkline.jsx:31 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:35 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:57 +#: components/Sparkline/Sparkline.jsx:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45 +#: screens/Project/ProjectList/ProjectListItem.jsx:65 msgid "STATUS:" msgstr "STATUS:" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:319 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 msgid "Sat" msgstr "Sat" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:324 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:455 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 msgid "Saturday" msgstr "Saturday" -#: src/components/AddRole/AddResourceRole.jsx:255 -#: src/components/AssociateModal/AssociateModal.jsx:104 -#: src/components/AssociateModal/AssociateModal.jsx:110 -#: src/components/FormActionGroup/FormActionGroup.jsx:13 -#: src/components/FormActionGroup/FormActionGroup.jsx:19 -#: src/components/Schedule/shared/ScheduleForm.jsx:544 -#: src/components/Schedule/shared/ScheduleForm.jsx:550 -#: src/components/Schedule/shared/useSchedulePromptSteps.js:47 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: src/screens/Credential/shared/CredentialForm.jsx:269 -#: src/screens/Credential/shared/CredentialForm.jsx:274 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:19 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:25 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:34 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:118 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:165 +#: components/AddRole/AddResourceRole.jsx:266 +#: components/AssociateModal/AssociateModal.jsx:105 +#: components/AssociateModal/AssociateModal.jsx:111 +#: components/FormActionGroup/FormActionGroup.jsx:14 +#: components/FormActionGroup/FormActionGroup.jsx:20 +#: components/Schedule/shared/ScheduleForm.jsx:619 +#: components/Schedule/shared/ScheduleForm.jsx:625 +#: components/Schedule/shared/useSchedulePromptSteps.js:46 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 +#: screens/Credential/shared/CredentialForm.jsx:274 +#: screens/Credential/shared/CredentialForm.jsx:279 +#: screens/Setting/shared/RevertFormActionGroup.jsx:19 +#: screens/Setting/shared/RevertFormActionGroup.jsx:25 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:166 msgid "Save" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:31 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 msgid "Save & Exit" msgstr "Save & Exit" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 msgid "Save and enable log aggregation before testing the log aggregator." msgstr "Save and enable log aggregation before testing the log aggregator." -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 msgid "Save link changes" msgstr "Save link changes" -#: src/screens/Project/Projects.jsx:38 -#: src/screens/Template/Templates.jsx:56 +#: screens/Project/Projects.jsx:38 +#: screens/Template/Templates.jsx:56 msgid "Schedule Details" msgstr "Schedule Details" -#: src/screens/Inventory/Inventories.jsx:117 +#: screens/Inventory/Inventories.jsx:115 msgid "Schedule details" msgstr "Schedule details" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 msgid "Schedule is active" msgstr "Schedule is active" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 msgid "Schedule is inactive" msgstr "Schedule is inactive" -#: src/components/Schedule/shared/ScheduleForm.jsx:460 +#: components/Schedule/shared/ScheduleForm.jsx:534 msgid "Schedule is missing rrule" msgstr "Schedule is missing rrule" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:231 -#: src/routeConfig.js:44 -#: src/screens/ActivityStream/ActivityStream.jsx:150 -#: src/screens/Inventory/Inventories.jsx:110 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:93 -#: src/screens/ManagementJob/ManagementJob.jsx:107 -#: src/screens/ManagementJob/ManagementJobs.jsx:25 -#: src/screens/Project/Project.jsx:123 -#: src/screens/Project/Projects.jsx:34 -#: src/screens/Schedule/AllSchedules.jsx:25 -#: src/screens/Template/Template.jsx:144 -#: src/screens/Template/Templates.jsx:52 -#: src/screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/ScheduleList/ScheduleList.jsx:231 +#: routeConfig.js:45 +#: screens/ActivityStream/ActivityStream.jsx:150 +#: screens/Inventory/Inventories.jsx:108 +#: screens/Inventory/InventorySource/InventorySource.jsx:93 +#: screens/ManagementJob/ManagementJob.jsx:107 +#: screens/ManagementJob/ManagementJobs.jsx:25 +#: screens/Project/Project.jsx:123 +#: screens/Project/Projects.jsx:34 +#: screens/Schedule/AllSchedules.jsx:25 +#: screens/Template/Template.jsx:157 +#: screens/Template/Templates.jsx:52 +#: screens/Template/WorkflowJobTemplate.jsx:134 msgid "Schedules" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: src/screens/User/UserTokenList/UserTokenList.jsx:126 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: src/screens/User/shared/UserTokenForm.jsx:68 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 +#: screens/User/UserTokenList/UserTokenList.jsx:126 +#: screens/User/UserTokenList/UserTokenListItem.jsx:61 +#: screens/User/UserTokenList/UserTokenListItem.jsx:62 +#: screens/User/shared/UserTokenForm.jsx:68 msgid "Scope" msgstr "Scope" -#: src/screens/Job/JobOutput/PageControls.jsx:57 +#: screens/Job/JobOutput/PageControls.jsx:61 msgid "Scroll first" msgstr "Scroll first" -#: src/screens/Job/JobOutput/PageControls.jsx:64 +#: screens/Job/JobOutput/PageControls.jsx:69 msgid "Scroll last" msgstr "Scroll last" -#: src/screens/Job/JobOutput/PageControls.jsx:50 +#: screens/Job/JobOutput/PageControls.jsx:53 msgid "Scroll next" msgstr "Scroll next" -#: src/screens/Job/JobOutput/PageControls.jsx:43 +#: screens/Job/JobOutput/PageControls.jsx:45 msgid "Scroll previous" msgstr "Scroll previous" -#: src/components/Lookup/HostFilterLookup.jsx:250 -#: src/components/Lookup/Lookup.jsx:106 +#: components/Lookup/HostFilterLookup.jsx:251 +#: components/Lookup/Lookup.jsx:106 msgid "Search" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:257 -#: src/components/Search/Search.jsx:273 +#: screens/Job/JobOutput/JobOutput.jsx:723 +msgid "Search is disabled while the job is running" +msgstr "Search is disabled while the job is running" + +#: components/Search/AdvancedSearch.jsx:258 +#: components/Search/Search.jsx:282 msgid "Search submit button" msgstr "Search submit button" -#: src/components/Search/Search.jsx:264 +#: components/Search/Search.jsx:272 msgid "Search text input" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:405 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 msgid "Second" msgstr "Second" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:104 -#: src/components/PromptDetail/PromptProjectDetail.jsx:89 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:125 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:105 +#: components/PromptDetail/PromptProjectDetail.jsx:95 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:127 msgid "Seconds" msgstr "Seconds" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:67 +#: components/LaunchPrompt/steps/PreviewStep.jsx:67 msgid "See errors on the left" msgstr "See errors on the left" -#: src/components/JobList/JobListItem.jsx:57 -#: src/components/Lookup/HostFilterLookup.jsx:319 -#: src/components/Lookup/Lookup.jsx:140 -#: src/components/Pagination/Pagination.jsx:35 +#: components/JobList/JobListItem.jsx:57 +#: components/Lookup/HostFilterLookup.jsx:321 +#: components/Lookup/Lookup.jsx:141 +#: components/Pagination/Pagination.jsx:33 msgid "Select" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:236 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 +#: screens/Host/HostGroups/HostGroupsList.jsx:236 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 msgid "Select Groups" msgstr "Select Groups" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 msgid "Select Hosts" msgstr "Select Hosts" -#: src/components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.jsx:38 msgid "Select Input" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:223 +#: screens/InstanceGroup/Instances/InstanceList.jsx:223 msgid "Select Instances" msgstr "Select Instances" -#: src/components/AssociateModal/AssociateModal.jsx:22 +#: components/AssociateModal/AssociateModal.jsx:22 msgid "Select Items" msgstr "Select Items" -#: src/components/AddRole/AddResourceRole.jsx:210 +#: components/AddRole/AddResourceRole.jsx:221 msgid "Select Items from List" msgstr "Select Items from List" -#: src/components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:255 msgid "Select Roles to Apply" msgstr "Select Roles to Apply" -#: src/screens/User/UserTeams/UserTeamList.jsx:249 +#: screens/User/UserTeams/UserTeamList.jsx:249 msgid "Select Teams" msgstr "Select Teams" @@ -5814,191 +6742,280 @@ msgstr "Select Teams" #~ msgid "Select Users Or Teams" #~ msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "Select a JSON formatted service account key to autopopulate the following fields." -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:50 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:78 msgid "Select a Node Type" msgstr "Select a Node Type" -#: src/components/AddRole/AddResourceRole.jsx:180 +#: components/AddRole/AddResourceRole.jsx:191 msgid "Select a Resource Type" msgstr "Select a Resource Type" -#: src/screens/Template/shared/JobTemplateForm.jsx:280 -msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." -msgstr "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#: screens/Template/shared/JobTemplateForm.jsx:310 +msgid "" +"Select a branch for the job template. This branch is applied to\n" +"all job template nodes that prompt for a branch." +msgstr "" +"Select a branch for the job template. This branch is applied to\n" +"all job template nodes that prompt for a branch." -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 +#: src/screens/Template/shared/JobTemplateForm.jsx:280 +#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#~ msgstr "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 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" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:170 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 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." -#: src/screens/Credential/shared/CredentialForm.jsx:162 +#: screens/Credential/shared/CredentialForm.jsx:162 msgid "Select a credential Type" msgstr "Select a credential Type" -#: src/components/JobList/JobListCancelButton.jsx:88 +#: components/JobList/JobListCancelButton.jsx:84 msgid "Select a job to cancel" msgstr "Select a job to cancel" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:81 +#: components/AdHocCommands/AdHocDetailsStep.jsx:81 msgid "Select a module" msgstr "Select a module" -#: src/screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.jsx:58 msgid "Select a playbook" msgstr "Select a playbook" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/Template/shared/JobTemplateForm.jsx:296 +msgid "Select a project before editing the execution environment." +msgstr "Select a project before editing the execution environment." + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 msgid "Select a row to approve" msgstr "Select a row to approve" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:110 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 msgid "Select a row to delete" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 msgid "Select a row to deny" msgstr "Select a row to deny" -#: src/components/DisassociateButton/DisassociateButton.jsx:62 +#: components/DisassociateButton/DisassociateButton.jsx:62 msgid "Select a row to disassociate" msgstr "Select a row to disassociate" -#: src/components/Schedule/shared/ScheduleForm.jsx:85 +#: components/Schedule/shared/ScheduleForm.jsx:85 msgid "Select a valid date and time for this field" msgstr "Select a valid date and time for this field" -#: src/components/HostForm/HostForm.jsx:23 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: src/components/Schedule/shared/ScheduleForm.jsx:91 -#: src/components/Schedule/shared/ScheduleForm.jsx:95 -#: src/screens/Credential/shared/CredentialForm.jsx:43 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:28 -#: src/screens/Inventory/shared/InventoryForm.jsx:24 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:33 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: src/screens/Project/shared/ProjectForm.jsx:101 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 -#: src/screens/Team/shared/TeamForm.jsx:20 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:28 -#: src/screens/Template/shared/JobTemplateForm.jsx:82 -#: src/screens/Template/shared/JobTemplateForm.jsx:140 -#: src/screens/User/shared/UserForm.jsx:49 +#: components/HostForm/HostForm.jsx:23 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 +#: components/Schedule/shared/ScheduleForm.jsx:91 +#: components/Schedule/shared/ScheduleForm.jsx:95 +#: screens/Credential/shared/CredentialForm.jsx:43 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:24 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 +#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 +#: screens/Project/shared/ProjectForm.jsx:100 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 +#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Template/Survey/SurveyQuestionForm.jsx:28 +#: screens/Template/shared/JobTemplateForm.jsx:83 +#: screens/Template/shared/JobTemplateForm.jsx:147 +#: screens/User/shared/UserForm.jsx:49 msgid "Select a value for this field" msgstr "Select a value for this field" -#: src/screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.jsx:132 msgid "Select a webhook service." msgstr "Select a webhook service." -#: src/components/DataListToolbar/DataListToolbar.jsx:74 -#: src/screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.jsx:74 +#: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:131 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." +#: screens/Project/shared/ProjectForm.jsx:200 +msgid "Select an organization before editing the default execution environment." +msgstr "Select an organization before editing the default execution environment." + +#: screens/Template/shared/JobTemplateForm.jsx:354 +msgid "" +"Select credentials that allow Tower to access the nodes this job will be ran\n" +"against. You can only select one credential of each type. For machine credentials (SSH),\n" +"checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" +"credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" +"credential(s) become the defaults that can be updated at run time." +msgstr "" +"Select credentials that allow Tower to access the nodes this job will be ran\n" +"against. You can only select one credential of each type. For machine credentials (SSH),\n" +"checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" +"credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" +"credential(s) become the defaults that can be updated at run time." + #: src/screens/Template/shared/JobTemplateForm.jsx:324 -msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." -msgstr "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgstr "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 +msgid "" +"Select from the list of directories found in\n" +"the Project Base Path. Together the base path and the playbook\n" +"directory provide the full path used to locate playbooks." +msgstr "" +"Select from the list of directories found in\n" +"the Project Base Path. Together the base path and the playbook\n" +"directory provide the full path used to locate playbooks." #: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 -msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." -msgstr "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." +#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." +#~ msgstr "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 msgid "Select items from list" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:215 -#: src/screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/Dashboard.jsx:215 +#: screens/Dashboard/Dashboard.jsx:216 msgid "Select job type" msgstr "Select job type" -#: src/screens/Dashboard/Dashboard.jsx:193 -#: src/screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/Dashboard.jsx:193 +#: screens/Dashboard/Dashboard.jsx:194 msgid "Select period" msgstr "Select period" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 msgid "Select roles to apply" msgstr "Select roles to apply" -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 msgid "Select source path" msgstr "Select source path" -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:91 +#: screens/Inventory/shared/SmartInventoryForm.jsx:91 msgid "Select the Instance Groups for this Inventory to run on." msgstr "Select the Instance Groups for this Inventory to run on." -#: src/screens/Organization/shared/OrganizationForm.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:463 +#: screens/Template/shared/JobTemplateForm.jsx:493 +msgid "" +"Select the Instance Groups for this Organization\n" +"to run on." +msgstr "" +"Select the Instance Groups for this Organization\n" +"to run on." + +#: screens/Organization/shared/OrganizationForm.jsx:90 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:47 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Select the application that this token will belong to." msgstr "Select the application that this token will belong to." -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:77 +#: components/AdHocCommands/AdHocCredentialStep.jsx:77 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 "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." #: src/screens/Inventory/shared/InventorySourceForm.jsx:146 -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." +#~ 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:201 +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:102 +msgid "Select the default execution environment for this organization." +msgstr "Select the default execution environment for this organization." + +#: screens/Project/shared/ProjectForm.jsx:197 +msgid "Select the default execution environment for this project." +msgstr "Select the default execution environment for this project." + +#: screens/Template/shared/JobTemplateForm.jsx:293 +msgid "Select the execution environment for this job template." +msgstr "Select the execution environment for this job template." + +#: components/Lookup/InventoryLookup.jsx:89 +#: screens/Template/shared/JobTemplateForm.jsx:255 +msgid "" +"Select the inventory containing the hosts\n" +"you want this job to manage." +msgstr "" +"Select the inventory containing the hosts\n" +"you want this job to manage." #: src/components/Lookup/InventoryLookup.jsx:89 #: src/screens/Template/shared/JobTemplateForm.jsx:248 -msgid "Select the inventory containing the hosts you want this job to manage." -msgstr "Select the inventory containing the hosts you want this job to manage." +#~ msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgstr "Select the inventory containing the hosts you want this job to manage." + +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +msgid "" +"Select the inventory file\n" +"to be synced by this source. You can select from\n" +"the dropdown or enter a file within the input." +msgstr "" +"Select the inventory file\n" +"to be synced by this source. You can select from\n" +"the dropdown or enter a file within the input." #: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 -msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." -msgstr "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." +#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." +#~ msgstr "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." -#: src/components/HostForm/HostForm.jsx:32 -#: src/components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.jsx:32 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "Select the inventory that this host will belong to." -#: src/screens/Project/shared/ProjectForm.jsx:277 -#: src/screens/Template/shared/JobTemplateForm.jsx:304 +#: screens/Template/shared/JobTemplateForm.jsx:334 msgid "Select the playbook to be executed by this job." msgstr "Select the playbook to be executed by this job." -#: src/screens/Template/shared/JobTemplateForm.jsx:264 -msgid "Select the project containing the playbook you want this job to execute." -msgstr "Select the project containing the playbook you want this job to execute." +#: screens/Template/shared/JobTemplateForm.jsx:272 +msgid "" +"Select the project containing the playbook\n" +"you want this job to execute." +msgstr "" +"Select the project containing the playbook\n" +"you want this job to execute." -#: src/components/Lookup/Lookup.jsx:129 +#: src/screens/Template/shared/JobTemplateForm.jsx:264 +#~ msgid "Select the project containing the playbook you want this job to execute." +#~ msgstr "Select the project containing the playbook you want this job to execute." + +#: components/Lookup/Lookup.jsx:129 msgid "Select {0}" msgstr "Select {0}" @@ -6006,554 +7023,605 @@ msgstr "Select {0}" #~ msgid "Select {header}" #~ msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:221 -#: src/components/AddRole/AddResourceRole.jsx:233 -#: src/components/AddRole/AddResourceRole.jsx:250 -#: src/components/AddRole/SelectRoleStep.jsx:31 -#: src/components/OptionsList/OptionsList.jsx:51 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:76 -#: src/components/TemplateList/TemplateListItem.jsx:112 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:30 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 -#: src/screens/Host/HostList/HostListItem.jsx:32 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:98 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:31 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:86 -#: src/screens/Team/TeamList/TeamListItem.jsx:38 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 +#: components/AddRole/AddResourceRole.jsx:232 +#: components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:261 +#: components/AddRole/SelectRoleStep.jsx:31 +#: components/OptionsList/OptionsList.jsx:51 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:76 +#: components/TemplateList/TemplateListItem.jsx:124 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:30 +#: screens/Credential/CredentialList/CredentialListItem.jsx:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 +#: screens/Host/HostList/HostListItem.jsx:32 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43 +#: screens/Project/ProjectList/ProjectListItem.jsx:97 +#: screens/Team/TeamList/TeamListItem.jsx:38 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 msgid "Selected" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:114 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:119 -#: src/components/Lookup/MultiCredentialsLookup.jsx:149 -#: src/components/Lookup/MultiCredentialsLookup.jsx:154 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:153 +#: components/Lookup/MultiCredentialsLookup.jsx:149 +#: components/Lookup/MultiCredentialsLookup.jsx:154 msgid "Selected Category" msgstr "Selected Category" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 msgid "Send a test log message to the configured log aggregator." msgstr "Send a test log message to the configured log aggregator." -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 msgid "Sender Email" msgstr "Sender Email" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 msgid "Sender e-mail" msgstr "Sender e-mail" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 msgid "September" msgstr "September" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 msgid "Service account JSON file" msgstr "Service account JSON file" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:52 -#: src/screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.jsx:56 +#: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "Set a value for this field" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 msgid "Set how many days of data should be retained." msgstr "Set how many days of data should be retained." -#: src/screens/Setting/SettingList.jsx:126 +#: screens/Setting/SettingList.jsx:126 msgid "Set preferences for data collection, logos, and logins" msgstr "Set preferences for data collection, logos, and logins" -#: src/components/InstanceToggle/InstanceToggle.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +msgid "Set source path to" +msgstr "Set source path to" + +#: components/InstanceToggle/InstanceToggle.jsx:50 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "Set the instance online or offline. If offline, jobs will not be assigned to this instance." -#: src/screens/Application/shared/ApplicationForm.jsx:132 +#: screens/Application/shared/ApplicationForm.jsx:132 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." -#: src/components/Search/AdvancedSearch.jsx:93 +#: components/Search/AdvancedSearch.jsx:94 msgid "Set type" msgstr "Set type" -#: src/components/Search/AdvancedSearch.jsx:84 +#: components/Search/AdvancedSearch.jsx:85 msgid "Set type select" msgstr "Set type select" -#: src/components/Search/AdvancedSearch.jsx:87 +#: components/Search/AdvancedSearch.jsx:88 msgid "Set type typeahead" msgstr "Set type typeahead" -#: src/components/Workflow/WorkflowTools.jsx:150 +#: components/Workflow/WorkflowTools.jsx:155 msgid "Set zoom to 100% and center graph" msgstr "Set zoom to 100% and center graph" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:45 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 msgid "Setting category" msgstr "Setting category" -#: src/screens/Setting/shared/RevertButton.jsx:47 +#: screens/Setting/shared/RevertButton.jsx:47 msgid "Setting matches factory default." msgstr "Setting matches factory default." -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 msgid "Setting name" msgstr "Setting name" -#: src/routeConfig.js:144 -#: src/routeConfig.js:148 -#: src/screens/ActivityStream/ActivityStream.jsx:207 -#: src/screens/ActivityStream/ActivityStream.jsx:209 -#: src/screens/Setting/Settings.jsx:43 +#: routeConfig.js:150 +#: routeConfig.js:154 +#: screens/ActivityStream/ActivityStream.jsx:213 +#: screens/ActivityStream/ActivityStream.jsx:215 +#: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Show" msgstr "Show" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 -#: src/components/PromptDetail/PromptDetail.jsx:251 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 -#: src/screens/Template/shared/JobTemplateForm.jsx:445 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/PromptDetail/PromptDetail.jsx:251 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:144 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232 +#: screens/Template/shared/JobTemplateForm.jsx:475 msgid "Show Changes" msgstr "Show Changes" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 msgid "Show all groups" msgstr "Show all groups" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:211 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:212 +#: components/AdHocCommands/AdHocDetailsStep.jsx:211 +#: components/AdHocCommands/AdHocDetailsStep.jsx:212 msgid "Show changes" msgstr "Show changes" -#: src/components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "Show less" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Show only root groups" msgstr "Show only root groups" -#: src/screens/Login/Login.jsx:133 +#: screens/Login/Login.jsx:208 msgid "Sign in with Azure AD" msgstr "Sign in with Azure AD" -#: src/screens/Login/Login.jsx:142 +#: screens/Login/Login.jsx:221 msgid "Sign in with GitHub" msgstr "Sign in with GitHub" -#: src/screens/Login/Login.jsx:172 +#: screens/Login/Login.jsx:263 msgid "Sign in with GitHub Enterprise" msgstr "Sign in with GitHub Enterprise" -#: src/screens/Login/Login.jsx:184 +#: screens/Login/Login.jsx:279 msgid "Sign in with GitHub Enterprise Organizations" msgstr "Sign in with GitHub Enterprise Organizations" -#: src/screens/Login/Login.jsx:196 +#: screens/Login/Login.jsx:296 msgid "Sign in with GitHub Enterprise Teams" msgstr "Sign in with GitHub Enterprise Teams" -#: src/screens/Login/Login.jsx:152 +#: screens/Login/Login.jsx:235 msgid "Sign in with GitHub Organizations" msgstr "Sign in with GitHub Organizations" -#: src/screens/Login/Login.jsx:162 +#: screens/Login/Login.jsx:249 msgid "Sign in with GitHub Teams" msgstr "Sign in with GitHub Teams" -#: src/screens/Login/Login.jsx:206 +#: screens/Login/Login.jsx:311 msgid "Sign in with Google" msgstr "Sign in with Google" -#: src/screens/Login/Login.jsx:220 +#: screens/Login/Login.jsx:329 msgid "Sign in with SAML" msgstr "Sign in with SAML" -#: src/screens/Login/Login.jsx:219 +#: screens/Login/Login.jsx:328 msgid "Sign in with SAML {samlIDP}" msgstr "Sign in with SAML {samlIDP}" -#: src/components/Search/Search.jsx:175 +#: components/Search/Search.jsx:177 msgid "Simple key select" msgstr "Simple key select" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 -#: src/components/PromptDetail/PromptDetail.jsx:229 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:242 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 -#: src/screens/Job/JobDetail/JobDetail.jsx:308 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:347 -#: src/screens/Template/shared/JobTemplateForm.jsx:484 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 +#: components/PromptDetail/PromptDetail.jsx:229 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 +#: screens/Job/JobDetail/JobDetail.jsx:339 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "Skip Tags" msgstr "Skip Tags" +#: screens/Template/shared/JobTemplateForm.jsx:517 +msgid "" +"Skip tags are useful when you have a\n" +"large playbook, and you want to skip specific parts of a\n" +"play or task. Use commas to separate multiple tags. Refer\n" +"to Ansible Tower documentation for details on the usage\n" +"of tags." +msgstr "" +"Skip tags are useful when you have a\n" +"large playbook, and you want to skip specific parts of a\n" +"play or task. Use commas to separate multiple tags. Refer\n" +"to Ansible Tower documentation for details on the usage\n" +"of tags." + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 +msgid "" +"Skip tags are useful when you have a large\n" +"playbook, and you want to skip specific parts of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" +"Skip tags are useful when you have a large\n" +"playbook, and you want to skip specific parts of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 #: src/screens/Template/shared/JobTemplateForm.jsx:487 -msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 msgid "Skipped" msgstr "Skipped" -#: src/components/NotificationList/NotificationList.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:140 +#: components/NotificationList/NotificationList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Slack" msgstr "Slack" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:19 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:39 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:43 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:97 +#: screens/Host/HostList/SmartInventoryButton.jsx:19 +#: screens/Host/HostList/SmartInventoryButton.jsx:40 +#: screens/Host/HostList/SmartInventoryButton.jsx:44 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:97 msgid "Smart Inventory" msgstr "Smart Inventory" -#: src/screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.jsx:96 msgid "Smart Inventory not found." msgstr "Smart Inventory not found." -#: src/components/Lookup/HostFilterLookup.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 +#: components/Lookup/HostFilterLookup.jsx:283 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 msgid "Smart host filter" msgstr "Smart host filter" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 msgid "Smart inventory" msgstr "Smart inventory" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:64 +#: components/LaunchPrompt/steps/PreviewStep.jsx:64 msgid "Some of the previous step(s) have errors" msgstr "Some of the previous step(s) have errors" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 msgid "Something went wrong with the request to test this credential and metadata." msgstr "Something went wrong with the request to test this credential and metadata." -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Something went wrong..." msgstr "Something went wrong..." -#: src/components/Sort/Sort.jsx:129 +#: components/Sort/Sort.jsx:129 msgid "Sort" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:63 -#: src/screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.jsx:63 +#: screens/Template/Survey/SurveyListItem.jsx:64 msgid "Sort question order" msgstr "Sort question order" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:85 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:192 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:121 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:86 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200 +#: screens/Inventory/shared/InventorySourceForm.jsx:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 msgid "Source" msgstr "Source" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: src/components/PromptDetail/PromptDetail.jsx:189 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: src/components/PromptDetail/PromptProjectDetail.jsx:72 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:106 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:210 -#: src/screens/Template/shared/JobTemplateForm.jsx:276 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 +#: components/PromptDetail/PromptDetail.jsx:189 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:137 +#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/shared/JobTemplateForm.jsx:306 msgid "Source Control Branch" msgstr "Source Control Branch" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 msgid "Source Control Branch/Tag/Commit" msgstr "Source Control Branch/Tag/Commit" -#: src/components/PromptDetail/PromptProjectDetail.jsx:76 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:110 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 +#: components/PromptDetail/PromptProjectDetail.jsx:82 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:112 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 msgid "Source Control Credential" msgstr "Source Control Credential" -#: src/screens/Project/shared/ProjectForm.jsx:188 +#: screens/Project/shared/ProjectForm.jsx:214 msgid "Source Control Credential Type" msgstr "Source Control Credential Type" -#: src/components/PromptDetail/PromptProjectDetail.jsx:73 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:107 -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 +#: components/PromptDetail/PromptProjectDetail.jsx:79 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:109 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 msgid "Source Control Refspec" msgstr "Source Control Refspec" -#: src/components/PromptDetail/PromptProjectDetail.jsx:68 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:74 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:102 msgid "Source Control Type" msgstr "Source Control Type" -#: src/components/Lookup/ProjectLookup.jsx:121 -#: src/components/PromptDetail/PromptProjectDetail.jsx:71 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:153 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: components/Lookup/ProjectLookup.jsx:121 +#: components/PromptDetail/PromptProjectDetail.jsx:77 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:107 +#: screens/Project/ProjectList/ProjectList.jsx:158 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Source Control URL" msgstr "Source Control URL" -#: src/components/JobList/JobList.jsx:205 -#: src/components/JobList/JobListItem.jsx:31 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: src/screens/Job/JobDetail/JobDetail.jsx:77 +#: components/JobList/JobList.jsx:183 +#: components/JobList/JobListItem.jsx:31 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 +#: screens/Job/JobDetail/JobDetail.jsx:93 msgid "Source Control Update" msgstr "Source Control Update" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 msgid "Source Phone Number" msgstr "Source Phone Number" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:169 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:170 msgid "Source Variables" msgstr "Source Variables" -#: src/screens/Job/JobDetail/JobDetail.jsx:183 +#: screens/Job/JobDetail/JobDetail.jsx:184 msgid "Source Workflow Job" msgstr "Source Workflow Job" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:166 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:177 msgid "Source control branch" msgstr "Source control branch" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:167 +#: screens/Inventory/shared/InventorySourceForm.jsx:157 msgid "Source details" msgstr "Source details" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 msgid "Source phone number" msgstr "Source phone number" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:247 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:33 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 msgid "Source variables" msgstr "Source variables" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 msgid "Sourced from a project" msgstr "Sourced from a project" -#: src/screens/Inventory/Inventories.jsx:100 -#: src/screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.jsx:98 +#: screens/Inventory/Inventory.jsx:66 msgid "Sources" msgstr "Sources" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +msgid "" +"Specify HTTP Headers in JSON format. Refer to\n" +"the Ansible Tower documentation for example syntax." +msgstr "" +"Specify HTTP Headers in JSON format. Refer to\n" +"the Ansible Tower documentation for example syntax." + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 -msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." -msgstr "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +msgid "" +"Specify a notification color. Acceptable colors are hex\n" +"color code (example: #3af or #789abc)." +msgstr "" +"Specify a notification color. Acceptable colors are hex\n" +"color code (example: #3af or #789abc)." #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 -msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." -msgstr "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." +#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." +#~ msgstr "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." -#: src/screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "Specify a scope for the token's access" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 msgid "Specify the conditions under which this node should be executed" msgstr "Specify the conditions under which this node should be executed" -#: src/screens/Job/JobOutput/HostEventModal.jsx:180 +#: screens/Job/JobOutput/HostEventModal.jsx:180 msgid "Standard Error" msgstr "Standard Error" -#: src/screens/Job/JobOutput/HostEventModal.jsx:162 +#: screens/Job/JobOutput/HostEventModal.jsx:162 msgid "Standard Out" msgstr "Standard Out" -#: src/screens/Job/JobOutput/HostEventModal.jsx:181 +#: screens/Job/JobOutput/HostEventModal.jsx:181 msgid "Standard error tab" msgstr "Standard error tab" -#: src/screens/Job/JobOutput/HostEventModal.jsx:163 +#: screens/Job/JobOutput/HostEventModal.jsx:163 msgid "Standard out tab" msgstr "Standard out tab" -#: src/components/NotificationList/NotificationListItem.jsx:57 -#: src/components/NotificationList/NotificationListItem.jsx:58 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:48 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:54 +#: components/NotificationList/NotificationListItem.jsx:57 +#: components/NotificationList/NotificationListItem.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:55 msgid "Start" msgstr "Start" -#: src/components/JobList/JobList.jsx:241 -#: src/components/JobList/JobListItem.jsx:74 +#: components/JobList/JobList.jsx:219 +#: components/JobList/JobListItem.jsx:74 msgid "Start Time" msgstr "Start Time" -#: src/components/Schedule/shared/ScheduleForm.jsx:123 +#: components/Schedule/shared/ScheduleForm.jsx:123 msgid "Start date/time" msgstr "Start date/time" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:395 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:396 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 msgid "Start message" msgstr "Start message" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:404 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:405 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 msgid "Start message body" msgstr "Start message body" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:69 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:70 msgid "Start sync process" msgstr "Start sync process" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:72 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:74 msgid "Start sync source" msgstr "Start sync source" -#: src/screens/Job/JobDetail/JobDetail.jsx:152 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: screens/Job/JobDetail/JobDetail.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Started" msgstr "Started" -#: src/components/JobList/JobList.jsx:218 -#: src/components/JobList/JobList.jsx:239 -#: src/components/JobList/JobListItem.jsx:68 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:195 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:141 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:179 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:170 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:93 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 +#: components/JobList/JobList.jsx:196 +#: components/JobList/JobList.jsx:217 +#: components/JobList/JobListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryList.jsx:201 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:142 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 +#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectListItem.jsx:119 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 msgid "Status" msgstr "Status" -#: src/components/Lookup/ProjectLookup.jsx:115 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: src/screens/Project/ProjectList/ProjectList.jsx:147 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Job/JobOutput/JobOutput.jsx:630 +msgid "Stdout" +msgstr "Stdout" + +#: components/Lookup/ProjectLookup.jsx:115 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 +#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 msgid "Subversion" msgstr "Subversion" -#: src/components/NotificationList/NotificationListItem.jsx:70 -#: src/components/NotificationList/NotificationListItem.jsx:71 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/NotificationList/NotificationListItem.jsx:70 +#: components/NotificationList/NotificationListItem.jsx:71 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Success" msgstr "Success" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:413 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:414 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 msgid "Success message" msgstr "Success message" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:422 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:423 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 msgid "Success message body" msgstr "Success message body" -#: src/components/JobList/JobList.jsx:225 -#: src/components/Workflow/WorkflowNodeHelp.jsx:86 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.jsx:203 +#: components/Workflow/WorkflowNodeHelp.jsx:86 +#: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:122 +#: screens/Project/ProjectList/ProjectListItem.jsx:148 msgid "Successfully copied to clipboard!" msgstr "Successfully copied to clipboard!" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:259 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 msgid "Sun" msgstr "Sun" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:264 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:425 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 msgid "Sunday" msgstr "Sunday" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:27 -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/Templates.jsx:49 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: screens/Template/Template.jsx:168 +#: screens/Template/Templates.jsx:49 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "Survey" -#: src/screens/Template/Survey/SurveyList.jsx:136 +#: screens/Template/Survey/SurveyList.jsx:138 msgid "Survey List" msgstr "Survey List" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.jsx:32 msgid "Survey Preview" msgstr "Survey Preview" -#: src/screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.jsx:50 msgid "Survey Toggle" msgstr "Survey Toggle" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:33 +#: screens/Template/Survey/SurveyPreviewModal.jsx:33 msgid "Survey preview modal" msgstr "Survey preview modal" -#: src/screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.jsx:57 msgid "Survey questions" msgstr "Survey questions" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:76 -#: src/screens/Project/shared/ProjectSyncButton.jsx:34 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:78 +#: screens/Project/shared/ProjectSyncButton.jsx:35 msgid "Sync" msgstr "Sync" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:128 -#: src/screens/Project/shared/ProjectSyncButton.jsx:30 +#: screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/shared/ProjectSyncButton.jsx:31 msgid "Sync Project" msgstr "Sync Project" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:199 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:202 msgid "Sync all" msgstr "Sync all" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:193 msgid "Sync all sources" msgstr "Sync all sources" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:231 msgid "Sync error" msgstr "Sync error" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:115 +#: screens/Project/ProjectList/ProjectListItem.jsx:141 msgid "Sync for revision" msgstr "Sync for revision" -#: src/screens/Setting/SettingList.jsx:105 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:27 +#: screens/Setting/SettingList.jsx:105 +#: screens/User/UserRoles/UserRolesListItem.jsx:27 msgid "System" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:126 -#: src/screens/User/UserDetail/UserDetail.jsx:42 -#: src/screens/User/UserList/UserListItem.jsx:26 -#: src/screens/User/UserRoles/UserRolesList.jsx:124 -#: src/screens/User/shared/UserForm.jsx:41 +#: screens/Team/TeamRoles/TeamRolesList.jsx:126 +#: screens/User/UserDetail/UserDetail.jsx:42 +#: screens/User/UserList/UserListItem.jsx:26 +#: screens/User/UserRoles/UserRolesList.jsx:124 +#: screens/User/shared/UserForm.jsx:41 msgid "System Administrator" msgstr "System Administrator" -#: src/screens/User/UserDetail/UserDetail.jsx:44 -#: src/screens/User/UserList/UserListItem.jsx:28 -#: src/screens/User/shared/UserForm.jsx:35 +#: screens/User/UserDetail/UserDetail.jsx:44 +#: screens/User/UserList/UserListItem.jsx:28 +#: screens/User/shared/UserForm.jsx:35 msgid "System Auditor" msgstr "System Auditor" @@ -6561,703 +7629,932 @@ msgstr "System Auditor" #~ msgid "System Settings" #~ msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:130 -#: src/screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/Job/JobOutput/JobOutput.jsx:667 +msgid "System Warning" +msgstr "System Warning" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:130 +#: screens/User/UserRoles/UserRolesList.jsx:128 msgid "System administrators have unrestricted access to all resources." msgstr "System administrators have unrestricted access to all resources." -#: src/screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.jsx:109 msgid "TACACS+" msgstr "TACACS+" -#: src/screens/Setting/SettingList.jsx:86 +#: screens/Setting/SettingList.jsx:86 msgid "TACACS+ settings" msgstr "TACACS+ settings" -#: src/screens/Dashboard/Dashboard.jsx:165 -#: src/screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "Tabs" +#: screens/Template/shared/JobTemplateForm.jsx:501 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a\n" +"play or task. Use commas to separate multiple tags.\n" +"Refer to Ansible Tower documentation for details on\n" +"the usage of tags." +msgstr "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a\n" +"play or task. Use commas to separate multiple tags.\n" +"Refer to Ansible Tower documentation for details on\n" +"the usage of tags." + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 #: src/screens/Template/shared/JobTemplateForm.jsx:471 -msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 msgid "Tags for the Annotation" msgstr "Tags for the Annotation" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 msgid "Tags for the annotation (optional)" msgstr "Tags for the annotation (optional)" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 msgid "Target URL" msgstr "Target URL" -#: src/screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.jsx:129 msgid "Task" msgstr "Task" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:95 msgid "Task Count" msgstr "Task Count" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:89 +#: screens/Job/JobOutput/JobOutput.jsx:658 +msgid "Task Started" +msgstr "Task Started" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:96 msgid "Tasks" msgstr "Tasks" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:19 msgid "Team" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:120 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:120 +#: screens/Team/TeamRoles/TeamRolesList.jsx:144 msgid "Team Roles" msgstr "" -#: src/screens/Team/Team.jsx:73 +#: screens/Team/Team.jsx:73 msgid "Team not found." msgstr "Team not found." -#: src/components/AddRole/AddResourceRole.jsx:198 -#: src/components/AddRole/AddResourceRole.jsx:199 -#: src/routeConfig.js:106 -#: src/screens/ActivityStream/ActivityStream.jsx:184 -#: src/screens/Organization/Organization.jsx:124 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:156 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:41 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 -#: src/screens/Organization/Organizations.jsx:33 -#: src/screens/Team/TeamList/TeamList.jsx:124 -#: src/screens/Team/TeamList/TeamList.jsx:179 -#: src/screens/Team/Teams.jsx:14 -#: src/screens/Team/Teams.jsx:25 -#: src/screens/User/User.jsx:69 -#: src/screens/User/UserTeams/UserTeamList.jsx:176 -#: src/screens/User/UserTeams/UserTeamList.jsx:244 -#: src/screens/User/Users.jsx:33 +#: components/AddRole/AddResourceRole.jsx:209 +#: components/AddRole/AddResourceRole.jsx:210 +#: routeConfig.js:107 +#: screens/ActivityStream/ActivityStream.jsx:184 +#: screens/Organization/Organization.jsx:125 +#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 +#: screens/Organization/Organizations.jsx:33 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/Teams.jsx:14 +#: screens/Team/Teams.jsx:25 +#: screens/User/User.jsx:69 +#: screens/User/UserTeams/UserTeamList.jsx:176 +#: screens/User/UserTeams/UserTeamList.jsx:244 +#: screens/User/Users.jsx:33 +#: util/getRelatedResourceDeleteDetails.js:198 msgid "Teams" msgstr "" -#: src/screens/Template/Template.jsx:171 -#: src/screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.jsx:184 +#: screens/Template/WorkflowJobTemplate.jsx:179 msgid "Template not found." msgstr "Template not found." -#: src/components/TemplateList/TemplateList.jsx:179 -#: src/components/TemplateList/TemplateList.jsx:238 -#: src/routeConfig.js:65 -#: src/screens/ActivityStream/ActivityStream.jsx:161 -#: src/screens/Template/Templates.jsx:16 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 +msgid "Template type" +msgstr "Template type" + +#: components/TemplateList/TemplateList.jsx:184 +#: components/TemplateList/TemplateList.jsx:243 +#: routeConfig.js:66 +#: screens/ActivityStream/ActivityStream.jsx:161 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 +#: screens/Template/Templates.jsx:16 +#: util/getRelatedResourceDeleteDetails.js:242 +#: util/getRelatedResourceDeleteDetails.js:299 msgid "Templates" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:281 -#: src/screens/Credential/shared/CredentialForm.jsx:287 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 +#: screens/Credential/shared/CredentialForm.jsx:287 +#: screens/Credential/shared/CredentialForm.jsx:293 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:83 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 msgid "Test" msgstr "Test" -#: src/screens/Credential/shared/ExternalTestModal.jsx:78 +#: screens/Credential/shared/ExternalTestModal.jsx:78 msgid "Test External Credential" msgstr "Test External Credential" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:123 msgid "Test Notification" msgstr "Test Notification" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 msgid "Test logging" msgstr "Test logging" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:113 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:120 msgid "Test notification" msgstr "Test notification" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 msgid "Test passed" msgstr "Test passed" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:53 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:50 +#: screens/Template/Survey/SurveyPreviewModal.jsx:53 +#: screens/Template/Survey/SurveyQuestionForm.jsx:50 msgid "Text" msgstr "Text" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:67 +#: screens/Template/Survey/SurveyPreviewModal.jsx:67 msgid "Text Area" msgstr "Text Area" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:51 +#: screens/Template/Survey/SurveyQuestionForm.jsx:51 msgid "Textarea" msgstr "Textarea" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "The" -#: src/screens/Application/shared/ApplicationForm.jsx:88 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +msgid "The Execution Environment to be used when one has not been configured for a job template." +msgstr "The Execution Environment to be used when one has not been configured for a job template." + +#: screens/Application/shared/ApplicationForm.jsx:88 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "The Grant type the user must use for acquire tokens for this application" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +msgid "" +"The amount of time (in seconds) before the email\n" +"notification stops trying to reach the host and times out. Ranges\n" +"from 1 to 120 seconds." +msgstr "" +"The amount of time (in seconds) before the email\n" +"notification stops trying to reach the host and times out. Ranges\n" +"from 1 to 120 seconds." + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 -msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." -msgstr "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgstr "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." + +#: screens/Template/shared/JobTemplateForm.jsx:469 +msgid "" +"The amount of time (in seconds) to run\n" +"before the job is canceled. Defaults to 0 for no job\n" +"timeout." +msgstr "" +"The amount of time (in seconds) to run\n" +"before the job is canceled. Defaults to 0 for no job\n" +"timeout." #: src/screens/Template/shared/JobTemplateForm.jsx:439 -msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." -msgstr "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgstr "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +msgid "" +"The base URL of the Grafana server - the\n" +"/api/annotations endpoint will be added automatically to the base\n" +"Grafana URL." +msgstr "" +"The base URL of the Grafana server - the\n" +"/api/annotations endpoint will be added automatically to the base\n" +"Grafana URL." #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 -msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." -msgstr "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ 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/Project/shared/ProjectSubForms/GitSubForm.jsx:74 +msgid "" +"The first fetches all references. The second\n" +"fetches the Github pull request number 62, in this example\n" +"the branch needs to be \"pull/62/head\"." +msgstr "" +"The first fetches all references. The second\n" +"fetches the Github pull request number 62, in this example\n" +"the branch needs to be \"pull/62/head\"." #: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 -msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." -msgstr "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgstr "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." + +#: screens/Organization/shared/OrganizationForm.jsx:77 +msgid "" +"The maximum number of hosts allowed to be managed by this organization.\n" +"Value defaults to 0 which means no limit. Refer to the Ansible\n" +"documentation for more details." +msgstr "" +"The maximum number of hosts allowed to be managed by this organization.\n" +"Value defaults to 0 which means no limit. Refer to the Ansible\n" +"documentation for more details." #: src/screens/Organization/shared/OrganizationForm.jsx:69 -msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." -msgstr "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgstr "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." + +#: screens/Template/shared/JobTemplateForm.jsx:407 +msgid "" +"The number of parallel or simultaneous\n" +"processes to use while executing the playbook. An empty value,\n" +"or a value less than 1 will use the Ansible default which is\n" +"usually 5. The default number of forks can be overwritten\n" +"with a change to" +msgstr "" +"The number of parallel or simultaneous\n" +"processes to use while executing the playbook. An empty value,\n" +"or a value less than 1 will use the Ansible default which is\n" +"usually 5. The default number of forks can be overwritten\n" +"with a change to" #: src/screens/Template/shared/JobTemplateForm.jsx:377 -msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" -msgstr "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" +#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" +#~ msgstr "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:197 +#: components/AdHocCommands/AdHocDetailsStep.jsx:197 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" -#: src/components/ContentError/ContentError.jsx:43 -#: src/screens/Job/Job.jsx:84 +#: components/ContentError/ContentError.jsx:43 +#: screens/Job/Job.jsx:124 msgid "The page you requested could not be found." msgstr "The page you requested could not be found." -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:175 +#: components/AdHocCommands/AdHocDetailsStep.jsx:175 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" -#: src/components/Workflow/WorkflowNodeHelp.jsx:123 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:82 +msgid "The registry location where the container is stored." +msgstr "The registry location where the container is stored." + +#: components/Workflow/WorkflowNodeHelp.jsx:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 msgid "The resource associated with this node has been deleted." msgstr "The resource associated with this node has been deleted." -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 -msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." -msgstr "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#: screens/Template/Survey/SurveyQuestionForm.jsx:134 +msgid "" +"The suggested format for variable names is lowercase and\n" +"underscore-separated (for example, foo_bar, user_id, host_name,\n" +"etc.). Variable names with spaces are not allowed." +msgstr "" +"The suggested format for variable names is lowercase and\n" +"underscore-separated (for example, foo_bar, user_id, host_name,\n" +"etc.). Variable names with spaces are not allowed." -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 +#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#~ msgstr "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 msgid "The tower instance group cannot be deleted." msgstr "The tower instance group cannot be deleted." -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 -msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." -msgstr "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +msgid "" +"There are no available playbook directories in {project_base_dir}.\n" +"Either that directory is empty, or all of the contents are already\n" +"assigned to other projects. Create a new directory there and make\n" +"sure the playbook files can be read by the \"awx\" system user,\n" +"or have {brandName} directly retrieve your playbooks from\n" +"source control using the Source Control Type option above." +msgstr "" +"There are no available playbook directories in {project_base_dir}.\n" +"Either that directory is empty, or all of the contents are already\n" +"assigned to other projects. Create a new directory there and make\n" +"sure the playbook files can be read by the \"awx\" system user,\n" +"or have {brandName} directly retrieve your playbooks from\n" +"source control using the Source Control Type option above." -#: src/screens/Login/Login.jsx:112 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#~ msgstr "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." + +#: screens/Login/Login.jsx:120 msgid "There was a problem signing in. Please try again." msgstr "There was a problem signing in. Please try again." -#: src/components/ContentError/ContentError.jsx:45 +#: components/ContentError/ContentError.jsx:45 msgid "There was an error loading this content. Please reload the page." msgstr "There was an error loading this content. Please reload the page." -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "There was an error parsing the file. Please check the file formatting and try again." -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:589 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:600 msgid "There was an error saving the workflow." msgstr "There was an error saving the workflow." -#: src/screens/Setting/shared/LoggingTestAlert.jsx:19 +#: screens/Setting/shared/LoggingTestAlert.jsx:19 msgid "There was an error testing the log aggregator." msgstr "There was an error testing the log aggregator." -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status" msgstr "These approvals cannot be deleted due to insufficient permissions or a pending job status" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:74 +#: components/AdHocCommands/AdHocDetailsStep.jsx:74 msgid "These are the modules that {brandName} supports running commands against." msgstr "These are the modules that {brandName} supports running commands against." -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:151 +#: components/AdHocCommands/AdHocDetailsStep.jsx:151 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "These are the verbosity levels for standard out of the command run that are supported." -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:133 +#: components/AdHocCommands/AdHocDetailsStep.jsx:133 msgid "These arguments are used with the specified module." msgstr "These arguments are used with the specified module." -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:121 +#: components/AdHocCommands/AdHocDetailsStep.jsx:121 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "These arguments are used with the specified module. You can find information about {0} by clicking" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:407 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 msgid "Third" msgstr "Third" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:171 -#: src/screens/Template/Survey/SurveyList.jsx:121 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282 +#: screens/Template/Survey/SurveyList.jsx:123 msgid "This action will delete the following:" msgstr "This action will delete the following:" -#: src/screens/User/UserTeams/UserTeamList.jsx:214 +#: screens/User/UserTeams/UserTeamList.jsx:214 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "This action will disassociate all roles for this user from the selected teams." -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:218 -#: src/screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: screens/User/UserRoles/UserRolesList.jsx:220 msgid "This action will disassociate the following role from {0}:" msgstr "This action will disassociate the following role from {0}:" -#: src/components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.jsx:134 msgid "This action will disassociate the following:" msgstr "This action will disassociate the following:" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:226 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +msgid "This container group is currently being by other resources. Are you sure you want to delete it?" +msgstr "This container group is currently being by other resources. Are you sure you want to delete it?" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 +msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" +msgstr "This credential is currently being used by other resources. Are you sure you want to delete it?" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:122 +msgid "This credential type is currently being used by some credentials and cannot be deleted" +msgstr "This credential type is currently being used by some credentials and cannot be deleted" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 +msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" +msgstr "This execution environment is currently being used by other resources. Are you sure you want to delete it?" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:269 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 msgid "This field may not be blank" msgstr "This field may not be blank" -#: src/util/validators.jsx:102 +#: util/validators.jsx:102 msgid "This field must be a number" msgstr "This field must be a number" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:113 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:113 msgid "This field must be a number and have a value between {0} and {1}" msgstr "This field must be a number and have a value between {0} and {1}" -#: src/util/validators.jsx:41 +#: util/validators.jsx:41 msgid "This field must be a number and have a value between {min} and {max}" msgstr "This field must be a number and have a value between {min} and {max}" -#: src/util/validators.jsx:142 +#: util/validators.jsx:142 msgid "This field must be a regular expression" msgstr "This field must be a regular expression" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: src/util/validators.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 +#: util/validators.jsx:86 msgid "This field must be an integer" msgstr "This field must be an integer" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:104 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:104 msgid "This field must be at least {0} characters" msgstr "This field must be at least {0} characters" -#: src/util/validators.jsx:31 +#: util/validators.jsx:31 msgid "This field must be at least {min} characters" msgstr "This field must be at least {min} characters" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 msgid "This field must be greater than 0" msgstr "This field must be greater than 0" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:118 -#: src/screens/User/shared/UserForm.jsx:89 -#: src/screens/User/shared/UserForm.jsx:100 -#: src/util/validators.jsx:4 -#: src/util/validators.jsx:51 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:118 +#: screens/User/shared/UserForm.jsx:89 +#: screens/User/shared/UserForm.jsx:100 +#: util/validators.jsx:4 +#: util/validators.jsx:51 msgid "This field must not be blank" msgstr "" -#: src/util/validators.jsx:76 +#: util/validators.jsx:76 msgid "This field must not contain spaces" msgstr "This field must not contain spaces" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:107 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:107 msgid "This field must not exceed {0} characters" msgstr "This field must not exceed {0} characters" -#: src/util/validators.jsx:22 +#: util/validators.jsx:22 msgid "This field must not exceed {max} characters" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:50 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:52 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." -#: src/screens/Application/Applications.jsx:78 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:150 +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:66 +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." + +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" +msgstr "This inventory is currently being used by other resources. Are you sure you want to delete it?" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292 +msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" +msgstr "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" + +#: screens/Application/Applications.jsx:78 msgid "This is the only time the client secret will be shown." msgstr "This is the only time the client secret will be shown." -#: src/screens/User/UserTokens/UserTokens.jsx:59 +#: screens/User/UserTokens/UserTokens.jsx:59 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "This is the only time the token value and associated refresh token value will be shown." -#: src/screens/Template/shared/JobTemplateForm.jsx:143 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:411 +msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "This job template is currently being used by other resources. Are you sure you want to delete it?" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 +msgid "This organization is currently being by other resources. Are you sure you want to delete it?" +msgstr "This organization is currently being by other resources. Are you sure you want to delete it?" + +#: screens/Project/ProjectDetail/ProjectDetail.jsx:177 +msgid "This project is currently being used by other resources. Are you sure you want to delete it?" +msgstr "This project is currently being used by other resources. Are you sure you want to delete it?" + +#: screens/Template/shared/JobTemplateForm.jsx:150 msgid "This project needs to be updated" msgstr "This project needs to be updated" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:131 +#: components/Schedule/ScheduleList/ScheduleList.jsx:131 msgid "This schedule is missing an Inventory" msgstr "This schedule is missing an Inventory" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:158 +#: components/Schedule/ScheduleList/ScheduleList.jsx:158 msgid "This schedule is missing required survey values" msgstr "This schedule is missing required survey values" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:63 -#: src/components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:63 +#: components/LaunchPrompt/steps/StepName.jsx:27 msgid "This step contains errors" msgstr "This step contains errors" -#: src/screens/User/shared/UserForm.jsx:155 +#: screens/User/shared/UserForm.jsx:155 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "This value does not match the password you entered previously. Please confirm that password." -#: src/screens/Setting/shared/RevertAllAlert.jsx:36 -msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" -msgstr "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#: screens/Setting/shared/RevertAllAlert.jsx:36 +msgid "" +"This will revert all configuration values on this page to\n" +"their factory defaults. Are you sure you want to proceed?" +msgstr "" +"This will revert all configuration values on this page to\n" +"their factory defaults. Are you sure you want to proceed?" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 +#: src/screens/Setting/shared/RevertAllAlert.jsx:36 +#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#~ msgstr "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 msgid "This workflow does not have any nodes configured." msgstr "This workflow does not have any nodes configured." -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:299 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +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?" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 msgid "Thu" msgstr "Thu" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:304 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 msgid "Thursday" msgstr "Thursday" -#: src/screens/ActivityStream/ActivityStream.jsx:236 -#: src/screens/ActivityStream/ActivityStream.jsx:248 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:40 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.jsx:242 +#: screens/ActivityStream/ActivityStream.jsx:254 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 +#: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "Time" +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 +msgid "" +"Time in seconds to consider a project\n" +"to be current. During job runs and callbacks the task\n" +"system will evaluate the timestamp of the latest project\n" +"update. If it is older than Cache Timeout, it is not\n" +"considered current, and a new project update will be\n" +"performed." +msgstr "" +"Time in seconds to consider a project\n" +"to be current. During job runs and callbacks the task\n" +"system will evaluate the timestamp of the latest project\n" +"update. If it is older than Cache Timeout, it is not\n" +"considered current, and a new project update will be\n" +"performed." + #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 -msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." -msgstr "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgstr "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +msgid "" +"Time in seconds to consider an inventory sync\n" +"to be current. During job runs and callbacks the task system will\n" +"evaluate the timestamp of the latest sync. If it is older than\n" +"Cache Timeout, it is not considered current, and a new\n" +"inventory sync will be performed." +msgstr "" +"Time in seconds to consider an inventory sync\n" +"to be current. During job runs and callbacks the task system will\n" +"evaluate the timestamp of the latest sync. If it is older than\n" +"Cache Timeout, it is not considered current, and a new\n" +"inventory sync will be performed." #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 -msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." -msgstr "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." +#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." +#~ msgstr "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 msgid "Timed out" msgstr "Timed out" -#: src/components/PromptDetail/PromptDetail.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:136 -#: src/screens/Template/shared/JobTemplateForm.jsx:438 +#: components/PromptDetail/PromptDetail.jsx:116 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 +#: screens/Template/shared/JobTemplateForm.jsx:468 msgid "Timeout" msgstr "Timeout" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:173 msgid "Timeout minutes" msgstr "Timeout minutes" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:157 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:187 msgid "Timeout seconds" msgstr "Timeout seconds" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 msgid "Toggle Legend" msgstr "Toggle Legend" -#: src/components/FormField/PasswordInput.jsx:40 +#: components/FormField/PasswordInput.jsx:41 msgid "Toggle Password" msgstr "Toggle Password" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 msgid "Toggle Tools" msgstr "Toggle Tools" -#: src/screens/Job/JobOutput/PageControls.jsx:36 +#: screens/Job/JobOutput/PageControls.jsx:37 msgid "Toggle expand/collapse event lines" msgstr "Toggle expand/collapse event lines" -#: src/components/HostToggle/HostToggle.jsx:67 +#: components/HostToggle/HostToggle.jsx:67 msgid "Toggle host" msgstr "Toggle host" -#: src/components/InstanceToggle/InstanceToggle.jsx:63 +#: components/InstanceToggle/InstanceToggle.jsx:63 msgid "Toggle instance" msgstr "Toggle instance" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 msgid "Toggle legend" msgstr "Toggle legend" -#: src/components/NotificationList/NotificationListItem.jsx:51 +#: components/NotificationList/NotificationListItem.jsx:51 msgid "Toggle notification approvals" msgstr "Toggle notification approvals" -#: src/components/NotificationList/NotificationListItem.jsx:90 +#: components/NotificationList/NotificationListItem.jsx:90 msgid "Toggle notification failure" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:64 +#: components/NotificationList/NotificationListItem.jsx:64 msgid "Toggle notification start" msgstr "Toggle notification start" -#: src/components/NotificationList/NotificationListItem.jsx:77 +#: components/NotificationList/NotificationListItem.jsx:77 msgid "Toggle notification success" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 msgid "Toggle schedule" msgstr "Toggle schedule" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 msgid "Toggle tools" msgstr "Toggle tools" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: src/screens/User/UserTokens/UserTokens.jsx:65 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 +#: screens/User/UserTokens/UserTokens.jsx:65 msgid "Token" msgstr "Token" -#: src/screens/User/UserTokens/UserTokens.jsx:49 -#: src/screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.jsx:49 +#: screens/User/UserTokens/UserTokens.jsx:52 msgid "Token information" msgstr "Token information" -#: src/screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.jsx:73 msgid "Token not found." msgstr "Token not found." -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:39 +#: screens/User/UserTokenList/UserTokenListItem.jsx:39 msgid "Token type" msgstr "Token type" -#: src/screens/Application/Application/Application.jsx:78 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: src/screens/Application/Applications.jsx:40 -#: src/screens/User/User.jsx:75 -#: src/screens/User/UserTokenList/UserTokenList.jsx:106 -#: src/screens/User/Users.jsx:35 +#: screens/Application/Application/Application.jsx:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 +#: screens/Application/Applications.jsx:40 +#: screens/User/User.jsx:75 +#: screens/User/UserTokenList/UserTokenList.jsx:106 +#: screens/User/Users.jsx:35 msgid "Tokens" msgstr "Tokens" -#: src/components/Workflow/WorkflowTools.jsx:84 +#: components/Workflow/WorkflowTools.jsx:84 msgid "Tools" msgstr "Tools" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:230 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237 msgid "Total Jobs" msgstr "Total Jobs" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 msgid "Total Nodes" msgstr "Total Nodes" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:103 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:103 msgid "Total jobs" msgstr "Total jobs" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 msgid "True" msgstr "True" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:279 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 msgid "Tue" msgstr "Tue" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:284 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:435 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 msgid "Tuesday" msgstr "Tuesday" -#: src/components/NotificationList/NotificationList.jsx:201 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:141 +#: components/NotificationList/NotificationList.jsx:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "Twilio" msgstr "Twilio" -#: src/components/JobList/JobList.jsx:240 -#: src/components/JobList/JobListItem.jsx:72 -#: src/components/Lookup/ProjectLookup.jsx:110 -#: src/components/NotificationList/NotificationList.jsx:220 -#: src/components/NotificationList/NotificationListItem.jsx:30 -#: src/components/PromptDetail/PromptDetail.jsx:112 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:174 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:95 -#: src/components/TemplateList/TemplateList.jsx:193 -#: src/components/TemplateList/TemplateList.jsx:218 -#: src/components/TemplateList/TemplateListItem.jsx:129 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 -#: src/components/Workflow/WorkflowNodeHelp.jsx:136 -#: src/components/Workflow/WorkflowNodeHelp.jsx:162 -#: src/screens/Credential/CredentialList/CredentialList.jsx:152 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:60 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:47 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:79 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:86 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:196 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:95 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:181 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:108 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: src/screens/Project/ProjectList/ProjectList.jsx:142 -#: src/screens/Project/ProjectList/ProjectList.jsx:171 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:106 -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:30 -#: src/screens/Template/Survey/SurveyListItem.jsx:115 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 -#: src/screens/User/UserDetail/UserDetail.jsx:70 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:34 +#: components/JobList/JobList.jsx:218 +#: components/JobList/JobListItem.jsx:72 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/NotificationList/NotificationList.jsx:220 +#: components/NotificationList/NotificationListItem.jsx:30 +#: components/PromptDetail/PromptDetail.jsx:112 +#: components/Schedule/ScheduleList/ScheduleList.jsx:174 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95 +#: components/TemplateList/TemplateList.jsx:198 +#: components/TemplateList/TemplateList.jsx:223 +#: components/TemplateList/TemplateListItem.jsx:154 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 +#: components/Workflow/WorkflowNodeHelp.jsx:136 +#: components/Workflow/WorkflowNodeHelp.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Credential/CredentialList/CredentialListItem.jsx:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:95 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 +#: screens/Project/ProjectList/ProjectList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectListItem.jsx:132 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30 +#: screens/Template/Survey/SurveyListItem.jsx:117 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/User/UserDetail/UserDetail.jsx:70 +#: screens/User/UserRoles/UserRolesListItem.jsx:34 msgid "Type" msgstr "Type" -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: src/screens/Project/shared/ProjectForm.jsx:220 +#: screens/Credential/shared/TypeInputsSubForm.jsx:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 +#: screens/Project/shared/ProjectForm.jsx:246 msgid "Type Details" msgstr "Type Details" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:108 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:63 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:111 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:63 msgid "Unavailable" msgstr "Unavailable" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Undo" msgstr "Undo" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:101 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:108 msgid "Unreachable" msgstr "Unreachable" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:100 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:107 msgid "Unreachable Host Count" msgstr "Unreachable Host Count" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:109 msgid "Unreachable Hosts" msgstr "Unreachable Hosts" -#: src/util/dates.jsx:81 +#: util/dates.jsx:81 msgid "Unrecognized day string" msgstr "Unrecognized day string" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 msgid "Unsaved changes modal" msgstr "Unsaved changes modal" -#: src/components/PromptDetail/PromptProjectDetail.jsx:42 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:69 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 +#: components/PromptDetail/PromptProjectDetail.jsx:43 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 msgid "Update Revision on Launch" msgstr "Update Revision on Launch" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:51 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 msgid "Update on Launch" msgstr "Update on Launch" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:53 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:54 msgid "Update on Project Update" msgstr "Update on Project Update" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:156 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 msgid "Update on launch" msgstr "Update on launch" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 msgid "Update on project update" msgstr "Update on project update" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:126 msgid "Update options" msgstr "Update options" -#: src/screens/Setting/SettingList.jsx:94 +#: screens/Setting/SettingList.jsx:94 msgid "Update settings pertaining to Jobs within {brandName}" msgstr "Update settings pertaining to Jobs within {brandName}" -#: src/screens/Template/shared/WebhookSubForm.jsx:205 +#: screens/Template/shared/WebhookSubForm.jsx:206 msgid "Update webhook key" msgstr "Update webhook key" -#: src/components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.jsx:110 msgid "Updating" msgstr "Updating" #: src/screens/Inventory/shared/InventorySourceForm.jsx:57 #: src/screens/Organization/shared/OrganizationForm.jsx:33 #: src/screens/Project/shared/ProjectForm.jsx:286 -msgid "Use Default Ansible Environment" -msgstr "Use Default Ansible Environment" +#~ msgid "Use Default Ansible Environment" +#~ msgstr "Use Default Ansible Environment" #: src/components/AnsibleSelect/AnsibleSelect.jsx:35 #~ msgid "Use Default {label}" #~ msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:133 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:67 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 msgid "Use Fact Storage" msgstr "Use Fact Storage" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 msgid "Use SSL" msgstr "Use SSL" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 msgid "Use TLS" msgstr "Use TLS" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" msgstr "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:99 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:107 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:59 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:102 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:59 msgid "Used capacity" msgstr "Used capacity" -#: src/components/AppContainer/PageHeaderToolbar.jsx:135 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/AppContainer/PageHeaderToolbar.jsx:135 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:20 msgid "User" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:163 +#: components/AppContainer/PageHeaderToolbar.jsx:163 msgid "User Details" msgstr "" -#: src/screens/Setting/SettingList.jsx:124 -#: src/screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.jsx:124 +#: screens/Setting/Settings.jsx:112 msgid "User Interface" msgstr "" @@ -7265,596 +8562,644 @@ msgstr "" #~ msgid "User Interface Settings" #~ msgstr "" -#: src/screens/Setting/SettingList.jsx:131 +#: screens/Setting/SettingList.jsx:131 msgid "User Interface settings" msgstr "User Interface settings" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:110 -#: src/screens/User/UserRoles/UserRolesList.jsx:141 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:110 +#: screens/User/UserRoles/UserRolesList.jsx:141 msgid "User Roles" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:67 -#: src/screens/User/shared/UserForm.jsx:137 +#: screens/User/UserDetail/UserDetail.jsx:67 +#: screens/User/shared/UserForm.jsx:137 msgid "User Type" msgstr "User Type" -#: src/components/AppContainer/PageHeaderToolbar.jsx:156 +#: components/AppContainer/PageHeaderToolbar.jsx:156 msgid "User details" msgstr "User details" -#: src/screens/User/User.jsx:95 +#: screens/User/User.jsx:95 msgid "User not found." msgstr "User not found." -#: src/screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.jsx:166 msgid "User tokens" msgstr "User tokens" -#: src/components/AddRole/AddResourceRole.jsx:114 -#: src/components/AddRole/AddResourceRole.jsx:129 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:125 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:159 -#: src/screens/Login/Login.jsx:261 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: src/screens/User/UserDetail/UserDetail.jsx:60 -#: src/screens/User/UserList/UserList.jsx:118 -#: src/screens/User/UserList/UserList.jsx:163 -#: src/screens/User/UserList/UserListItem.jsx:45 -#: src/screens/User/shared/UserForm.jsx:67 +#: components/AddRole/AddResourceRole.jsx:125 +#: components/AddRole/AddResourceRole.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:127 +#: components/ResourceAccessList/ResourceAccessList.jsx:161 +#: screens/Login/Login.jsx:175 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 +#: screens/User/UserDetail/UserDetail.jsx:60 +#: screens/User/UserList/UserList.jsx:118 +#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserListItem.jsx:45 +#: screens/User/shared/UserForm.jsx:67 msgid "Username" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:190 -#: src/components/AddRole/AddResourceRole.jsx:191 -#: src/routeConfig.js:101 -#: src/screens/ActivityStream/ActivityStream.jsx:181 -#: src/screens/Team/Teams.jsx:30 -#: src/screens/User/UserList/UserList.jsx:113 -#: src/screens/User/UserList/UserList.jsx:155 -#: src/screens/User/Users.jsx:15 -#: src/screens/User/Users.jsx:27 +#: components/AddRole/AddResourceRole.jsx:201 +#: components/AddRole/AddResourceRole.jsx:202 +#: routeConfig.js:102 +#: screens/ActivityStream/ActivityStream.jsx:181 +#: screens/Team/Teams.jsx:30 +#: screens/User/UserList/UserList.jsx:113 +#: screens/User/UserList/UserList.jsx:155 +#: screens/User/Users.jsx:15 +#: screens/User/Users.jsx:27 msgid "Users" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "VMware vCenter" msgstr "VMware vCenter" -#: src/components/HostForm/HostForm.jsx:102 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 -#: src/components/PromptDetail/PromptDetail.jsx:260 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:256 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 -#: src/screens/Host/HostDetail/HostDetail.jsx:104 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:99 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 -#: src/screens/Inventory/shared/InventoryForm.jsx:89 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:55 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:98 -#: src/screens/Job/JobDetail/JobDetail.jsx:337 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:362 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:194 -#: src/screens/Template/shared/JobTemplateForm.jsx:359 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: components/HostForm/HostForm.jsx:102 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 +#: components/PromptDetail/PromptDetail.jsx:260 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:262 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 +#: screens/Host/HostDetail/HostDetail.jsx:104 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 +#: screens/Inventory/shared/InventoryForm.jsx:89 +#: screens/Inventory/shared/InventoryGroupForm.jsx:55 +#: screens/Inventory/shared/SmartInventoryForm.jsx:98 +#: screens/Job/JobDetail/JobDetail.jsx:368 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 +#: screens/Template/shared/JobTemplateForm.jsx:389 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231 msgid "Variables" msgstr "Variables" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 +#: screens/Job/JobOutput/JobOutput.jsx:659 +msgid "Variables Prompted" +msgstr "Variables Prompted" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 msgid "Vault password" msgstr "Vault password" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 msgid "Vault password | {credId}" msgstr "Vault password | {credId}" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:140 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 -#: src/components/PromptDetail/PromptDetail.jsx:199 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:101 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:135 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:225 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:89 -#: src/screens/Job/JobDetail/JobDetail.jsx:223 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: src/screens/Template/shared/JobTemplateForm.jsx:411 +#: screens/Job/JobOutput/JobOutput.jsx:664 +msgid "Verbose" +msgstr "Verbose" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:140 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 +#: components/PromptDetail/PromptDetail.jsx:199 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:102 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:141 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:251 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 +#: screens/Template/shared/JobTemplateForm.jsx:441 msgid "Verbosity" msgstr "Verbosity" -#: src/screens/Setting/ActivityStream/ActivityStream.jsx:33 +#: screens/Setting/ActivityStream/ActivityStream.jsx:33 msgid "View Activity Stream settings" msgstr "View Activity Stream settings" -#: src/screens/Setting/AzureAD/AzureAD.jsx:26 +#: screens/Setting/AzureAD/AzureAD.jsx:26 msgid "View Azure AD settings" msgstr "View Azure AD settings" -#: src/screens/Credential/Credential.jsx:119 -#: src/screens/Credential/Credential.jsx:131 +#: screens/Credential/Credential.jsx:119 +#: screens/Credential/Credential.jsx:131 msgid "View Credential Details" msgstr "View Credential Details" -#: src/components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.jsx:135 msgid "View Details" msgstr "View Details" -#: src/screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.jsx:58 msgid "View GitHub Settings" msgstr "View GitHub Settings" -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 msgid "View Google OAuth 2.0 settings" msgstr "View Google OAuth 2.0 settings" -#: src/screens/Host/Host.jsx:132 +#: screens/Host/Host.jsx:132 msgid "View Host Details" msgstr "View Host Details" -#: src/screens/Inventory/Inventory.jsx:183 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 -#: src/screens/Inventory/SmartInventory.jsx:174 +#: screens/Inventory/Inventory.jsx:180 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 +#: screens/Inventory/SmartInventory.jsx:171 msgid "View Inventory Details" msgstr "View Inventory Details" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 msgid "View Inventory Groups" msgstr "View Inventory Groups" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:162 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:162 msgid "View Inventory Host Details" msgstr "View Inventory Host Details" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:49 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 msgid "View JSON examples at <0>www.json.org" msgstr "View JSON examples at <0>www.json.org" -#: src/screens/Job/Job.jsx:120 +#: screens/Job/Job.jsx:165 msgid "View Job Details" msgstr "View Job Details" -#: src/screens/Setting/Jobs/Jobs.jsx:26 +#: screens/Setting/Jobs/Jobs.jsx:26 msgid "View Jobs settings" msgstr "View Jobs settings" -#: src/screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.jsx:38 msgid "View LDAP Settings" msgstr "View LDAP Settings" -#: src/screens/Setting/Logging/Logging.jsx:33 +#: screens/Setting/Logging/Logging.jsx:33 msgid "View Logging settings" msgstr "View Logging settings" -#: src/screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscSystem/MiscSystem.jsx:33 msgid "View Miscellaneous System settings" msgstr "View Miscellaneous System settings" -#: src/screens/Organization/Organization.jsx:216 +#: screens/Organization/Organization.jsx:227 msgid "View Organization Details" msgstr "View Organization Details" -#: src/screens/Project/Project.jsx:198 +#: screens/Project/Project.jsx:198 msgid "View Project Details" msgstr "View Project Details" -#: src/screens/Setting/RADIUS/RADIUS.jsx:26 +#: screens/Setting/RADIUS/RADIUS.jsx:26 msgid "View RADIUS settings" msgstr "View RADIUS settings" -#: src/screens/Setting/SAML/SAML.jsx:26 +#: screens/Setting/SAML/SAML.jsx:26 msgid "View SAML settings" msgstr "View SAML settings" -#: src/components/Schedule/Schedule.jsx:84 +#: components/Schedule/Schedule.jsx:85 msgid "View Schedules" msgstr "View Schedules" -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.jsx:168 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "View Survey" msgstr "View Survey" -#: src/screens/Setting/TACACS/TACACS.jsx:26 +#: screens/Setting/TACACS/TACACS.jsx:26 msgid "View TACACS+ settings" msgstr "View TACACS+ settings" -#: src/screens/Team/Team.jsx:116 +#: screens/Team/Team.jsx:116 msgid "View Team Details" msgstr "View Team Details" -#: src/screens/Template/Template.jsx:251 -#: src/screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.jsx:265 +#: screens/Template/WorkflowJobTemplate.jsx:279 msgid "View Template Details" msgstr "View Template Details" -#: src/screens/User/UserToken/UserToken.jsx:103 +#: screens/User/UserToken/UserToken.jsx:103 msgid "View Tokens" msgstr "View Tokens" -#: src/screens/User/User.jsx:140 +#: screens/User/User.jsx:140 msgid "View User Details" msgstr "View User Details" -#: src/screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.jsx:26 msgid "View User Interface settings" msgstr "View User Interface settings" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.jsx:104 msgid "View Workflow Approval Details" msgstr "View Workflow Approval Details" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 msgid "View YAML examples at <0>docs.ansible.com" msgstr "View YAML examples at <0>docs.ansible.com" -#: src/components/ScreenHeader/ScreenHeader.jsx:54 -#: src/components/ScreenHeader/ScreenHeader.jsx:56 +#: components/ScreenHeader/ScreenHeader.jsx:54 +#: components/ScreenHeader/ScreenHeader.jsx:57 msgid "View activity stream" msgstr "View activity stream" -#: src/screens/Credential/Credential.jsx:81 +#: screens/Credential/Credential.jsx:81 msgid "View all Credentials." msgstr "View all Credentials." -#: src/screens/Host/Host.jsx:91 +#: screens/Host/Host.jsx:91 msgid "View all Hosts." msgstr "View all Hosts." -#: src/screens/Inventory/Inventory.jsx:93 -#: src/screens/Inventory/SmartInventory.jsx:98 +#: screens/Inventory/Inventory.jsx:93 +#: screens/Inventory/SmartInventory.jsx:98 msgid "View all Inventories." msgstr "View all Inventories." -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:102 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:102 msgid "View all Inventory Hosts." msgstr "View all Inventory Hosts." -#: src/screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.jsx:40 msgid "View all Jobs" msgstr "View all Jobs" -#: src/screens/Job/Job.jsx:85 +#: screens/Job/Job.jsx:125 msgid "View all Jobs." msgstr "View all Jobs." -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:53 +#: screens/NotificationTemplate/NotificationTemplate.jsx:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 msgid "View all Notification Templates." msgstr "View all Notification Templates." -#: src/screens/Organization/Organization.jsx:150 +#: screens/Organization/Organization.jsx:156 msgid "View all Organizations." msgstr "View all Organizations." -#: src/screens/Project/Project.jsx:140 +#: screens/Project/Project.jsx:140 msgid "View all Projects." msgstr "View all Projects." -#: src/screens/Team/Team.jsx:74 +#: screens/Team/Team.jsx:74 msgid "View all Teams." msgstr "View all Teams." -#: src/screens/Template/Template.jsx:172 -#: src/screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.jsx:185 +#: screens/Template/WorkflowJobTemplate.jsx:180 msgid "View all Templates." msgstr "View all Templates." -#: src/screens/User/User.jsx:96 +#: screens/User/User.jsx:96 msgid "View all Users." msgstr "View all Users." -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.jsx:54 msgid "View all Workflow Approvals." msgstr "View all Workflow Approvals." -#: src/screens/Application/Application/Application.jsx:95 +#: screens/Application/Application/Application.jsx:95 msgid "View all applications." msgstr "View all applications." -#: src/screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.jsx:77 msgid "View all credential types" msgstr "View all credential types" -#: src/screens/InstanceGroup/ContainerGroup.jsx:84 -#: src/screens/InstanceGroup/InstanceGroup.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +msgid "View all execution environments" +msgstr "View all execution environments" + +#: screens/InstanceGroup/ContainerGroup.jsx:84 +#: screens/InstanceGroup/InstanceGroup.jsx:90 msgid "View all instance groups" msgstr "View all instance groups" -#: src/screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.jsx:134 msgid "View all management jobs" msgstr "View all management jobs" -#: src/screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.jsx:195 msgid "View all settings" msgstr "View all settings" -#: src/screens/User/UserToken/UserToken.jsx:75 +#: screens/User/UserToken/UserToken.jsx:75 msgid "View all tokens." msgstr "View all tokens." -#: src/screens/Setting/SettingList.jsx:138 +#: screens/Setting/SettingList.jsx:138 msgid "View and edit your license information" msgstr "View and edit your license information" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:24 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 +#: screens/ActivityStream/ActivityStreamListItem.jsx:50 msgid "View event details" msgstr "View event details" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.jsx:172 msgid "View inventory source details" msgstr "View inventory source details" -#: src/components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.jsx:44 msgid "View job {0}" msgstr "View job {0}" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:171 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:177 msgid "View node details" msgstr "View node details" -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 msgid "View smart inventory host details" msgstr "View smart inventory host details" -#: src/routeConfig.js:30 -#: src/screens/ActivityStream/ActivityStream.jsx:142 +#: routeConfig.js:31 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Views" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:134 -#: src/components/TemplateList/TemplateListItem.jsx:139 -#: src/screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.jsx:159 +#: components/TemplateList/TemplateListItem.jsx:165 +#: screens/Template/WorkflowJobTemplate.jsx:141 msgid "Visualizer" msgstr "Visualizer" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 msgid "WARNING:" msgstr "WARNING:" -#: src/components/JobList/JobList.jsx:223 -#: src/components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.jsx:201 +#: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "Waiting" -#: src/components/Workflow/WorkflowLegend.jsx:114 +#: components/Workflow/WorkflowLegend.jsx:114 +#: screens/Job/JobOutput/JobOutput.jsx:666 msgid "Warning" msgstr "Warning" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 msgid "Warning: Unsaved Changes" msgstr "Warning: Unsaved Changes" -#: src/components/NotificationList/NotificationList.jsx:202 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:142 +#: components/NotificationList/NotificationList.jsx:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Webhook" msgstr "Webhook" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:164 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:257 -#: src/screens/Template/shared/WebhookSubForm.jsx:216 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:170 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:267 +#: screens/Template/shared/WebhookSubForm.jsx:217 msgid "Webhook Credential" msgstr "Webhook Credential" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:152 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 msgid "Webhook Credentials" msgstr "Webhook Credentials" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:160 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 -#: src/screens/Template/shared/WebhookSubForm.jsx:185 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:166 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:264 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:165 +#: screens/Template/shared/WebhookSubForm.jsx:185 msgid "Webhook Key" msgstr "Webhook Key" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:151 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:240 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:139 -#: src/screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "Webhook Service" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:156 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 -#: src/screens/Template/shared/WebhookSubForm.jsx:167 -#: src/screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:162 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:161 +#: screens/Template/shared/WebhookSubForm.jsx:167 +#: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook URL" msgstr "Webhook URL" -#: src/screens/Template/shared/JobTemplateForm.jsx:607 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/JobTemplateForm.jsx:637 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "Webhook details" msgstr "Webhook details" -#: src/screens/Template/shared/WebhookSubForm.jsx:171 +#: screens/Template/shared/WebhookSubForm.jsx:171 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." -#: src/screens/Template/shared/WebhookSubForm.jsx:189 +#: screens/Template/shared/WebhookSubForm.jsx:189 msgid "Webhook services can use this as a shared secret." msgstr "Webhook services can use this as a shared secret." -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:289 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 msgid "Wed" msgstr "Wed" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:294 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:440 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 msgid "Wednesday" msgstr "Wednesday" -#: src/components/Schedule/shared/ScheduleForm.jsx:166 +#: components/Schedule/shared/ScheduleForm.jsx:166 msgid "Week" msgstr "Week" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:461 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 msgid "Weekday" msgstr "Weekday" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:466 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 msgid "Weekend day" msgstr "Weekend day" -#: src/screens/Login/Login.jsx:121 +#: screens/Login/Login.jsx:142 msgid "Welcome to Ansible {brandName}! Please Sign In." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161 +msgid "" +"When not checked, a merge will be performed,\n" +"combining local variables with those found on the\n" +"external source." +msgstr "" +"When not checked, a merge will be performed,\n" +"combining local variables with those found on the\n" +"external source." + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158 -msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." -msgstr "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgstr "When not checked, a merge will be performed, combining local variables with those found on the external source." + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144 +msgid "" +"When not checked, local child\n" +"hosts and groups not found on the external source will remain\n" +"untouched by the inventory update process." +msgstr "" +"When not checked, local child\n" +"hosts and groups not found on the external source will remain\n" +"untouched by the inventory update process." #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141 -msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." -msgstr "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." +#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." +#~ msgstr "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." -#: src/components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.jsx:96 msgid "Workflow" msgstr "Workflow" -#: src/components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.jsx:63 msgid "Workflow Approval" msgstr "Workflow Approval" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.jsx:52 msgid "Workflow Approval not found." msgstr "Workflow Approval not found." -#: src/routeConfig.js:54 -#: src/screens/ActivityStream/ActivityStream.jsx:153 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:12 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:19 +#: routeConfig.js:55 +#: screens/ActivityStream/ActivityStream.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:19 msgid "Workflow Approvals" msgstr "Workflow Approvals" -#: src/components/JobList/JobList.jsx:210 -#: src/components/JobList/JobListItem.jsx:36 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:41 -#: src/screens/Job/JobDetail/JobDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.jsx:188 +#: components/JobList/JobListItem.jsx:36 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41 +#: screens/Job/JobDetail/JobDetail.jsx:101 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 msgid "Workflow Job" msgstr "Workflow Job" -#: src/components/Workflow/WorkflowNodeHelp.jsx:51 -#: src/screens/Job/JobDetail/JobDetail.jsx:171 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:79 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: components/Workflow/WorkflowNodeHelp.jsx:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:172 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: util/getRelatedResourceDeleteDetails.js:112 msgid "Workflow Job Template" msgstr "Workflow Job Template" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:181 +#: util/getRelatedResourceDeleteDetails.js:284 +msgid "Workflow Job Template Nodes" +msgstr "Workflow Job Template Nodes" + +#: util/getRelatedResourceDeleteDetails.js:164 +msgid "Workflow Job Templates" +msgstr "Workflow Job Templates" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 msgid "Workflow Link" msgstr "Workflow Link" -#: src/components/TemplateList/TemplateList.jsx:197 +#: components/TemplateList/TemplateList.jsx:202 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "Workflow Template" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:449 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:450 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 msgid "Workflow approved message" msgstr "Workflow approved message" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:461 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:462 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 msgid "Workflow approved message body" msgstr "Workflow approved message body" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:473 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:474 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 msgid "Workflow denied message" msgstr "Workflow denied message" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:485 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:486 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 msgid "Workflow denied message body" msgstr "Workflow denied message body" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 msgid "Workflow documentation" msgstr "Workflow documentation" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 msgid "Workflow job templates" msgstr "Workflow job templates" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 msgid "Workflow link modal" msgstr "Workflow link modal" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 msgid "Workflow node view modal" msgstr "Workflow node view modal" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:497 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:498 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 msgid "Workflow pending message" msgstr "Workflow pending message" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:509 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:510 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 msgid "Workflow pending message body" msgstr "Workflow pending message body" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:521 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:522 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 msgid "Workflow timed out message" msgstr "Workflow timed out message" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:533 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:534 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 msgid "Workflow timed out message body" msgstr "Workflow timed out message body" -#: src/screens/User/shared/UserTokenForm.jsx:81 +#: screens/User/shared/UserTokenForm.jsx:81 msgid "Write" msgstr "Write" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:46 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 msgid "YAML:" msgstr "YAML:" -#: src/components/Schedule/shared/ScheduleForm.jsx:168 +#: components/Schedule/shared/ScheduleForm.jsx:168 msgid "Year" msgstr "Year" -#: src/components/Search/Search.jsx:246 +#: components/Search/Search.jsx:254 msgid "Yes" msgstr "Yes" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" -#: src/components/Lookup/MultiCredentialsLookup.jsx:142 +#: components/Lookup/MultiCredentialsLookup.jsx:142 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "You do not have permission to delete the following Groups: {itemsUnableToDelete}" @@ -7862,15 +9207,15 @@ msgstr "You do not have permission to delete the following Groups: {itemsUnableT #~ msgid "You do not have permission to delete the following {0}: {itemsUnableToDelete}" #~ msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:102 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." -#: src/components/DisassociateButton/DisassociateButton.jsx:52 +#: components/DisassociateButton/DisassociateButton.jsx:52 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" @@ -7878,46 +9223,46 @@ msgstr "You do not have permission to disassociate the following: {itemsUnableTo #~ msgid "You have been logged out." #~ msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 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" -#: src/components/AppContainer/AppContainer.jsx:241 +#: components/AppContainer/AppContainer.jsx:247 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "You will be logged out in {0} seconds due to inactivity." -#: src/components/AppContainer/AppContainer.jsx:222 +#: components/AppContainer/AppContainer.jsx:222 msgid "Your session is about to expire" msgstr "Your session is about to expire" -#: src/components/Workflow/WorkflowTools.jsx:120 +#: components/Workflow/WorkflowTools.jsx:122 msgid "Zoom In" msgstr "Zoom In" -#: src/components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.jsx:101 msgid "Zoom Out" msgstr "Zoom Out" -#: src/screens/Template/shared/JobTemplateForm.jsx:704 -#: src/screens/Template/shared/WebhookSubForm.jsx:155 +#: screens/Template/shared/JobTemplateForm.jsx:734 +#: screens/Template/shared/WebhookSubForm.jsx:155 msgid "a new webhook key will be generated on save." msgstr "a new webhook key will be generated on save." -#: src/screens/Template/shared/JobTemplateForm.jsx:701 -#: src/screens/Template/shared/WebhookSubForm.jsx:143 +#: screens/Template/shared/JobTemplateForm.jsx:731 +#: screens/Template/shared/WebhookSubForm.jsx:143 msgid "a new webhook url will be generated on save." msgstr "a new webhook url will be generated on save." -#: src/screens/Host/HostGroups/HostGroupItem.jsx:45 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:116 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:91 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 +#: screens/Host/HostGroups/HostGroupItem.jsx:45 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:116 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 msgid "actions" msgstr "actions" @@ -7929,26 +9274,31 @@ msgstr "actions" #~ msgid "adding {currentTab}" #~ msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:514 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:219 +msgid "and click on Update Revision on Launch" +msgstr "and click on Update Revision on Launch" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:514 msgid "approved" msgstr "approved" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:164 -#: src/screens/Template/Survey/SurveyList.jsx:111 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275 +#: screens/Template/Survey/SurveyList.jsx:113 msgid "cancel delete" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:252 +#: components/AdHocCommands/AdHocDetailsStep.jsx:252 msgid "command" msgstr "command" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:156 -#: src/screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264 +#: screens/Template/Survey/SurveyList.jsx:104 msgid "confirm delete" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:114 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:201 +#: components/DisassociateButton/DisassociateButton.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:202 msgid "confirm disassociate" msgstr "confirm disassociate" @@ -7956,12 +9306,12 @@ msgstr "confirm disassociate" #~ msgid "confirm removal of {currentTab}/cancel and go back to {currentTab} view." #~ msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:60 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 msgid "controller instance" msgstr "controller instance" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:114 +#: screens/Project/ProjectList/ProjectListItem.jsx:140 msgid "copy to clipboard disabled" msgstr "copy to clipboard disabled" @@ -7973,27 +9323,32 @@ msgstr "copy to clipboard disabled" #~ msgid "deleting {currentTab} association with orgs" #~ msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:147 msgid "deletion error" msgstr "deletion error" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:522 +#: screens/ActivityStream/ActivityStreamDescription.jsx:522 msgid "denied" msgstr "denied" -#: src/components/DisassociateButton/DisassociateButton.jsx:82 +#: components/DisassociateButton/DisassociateButton.jsx:82 msgid "disassociate" msgstr "disassociate" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:71 -#: src/screens/Host/HostDetail/HostDetail.jsx:112 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:89 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:129 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:102 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: src/screens/User/UserDetail/UserDetail.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:219 +msgid "documentation" +msgstr "documentation" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:121 +#: screens/Host/HostDetail/HostDetail.jsx:113 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:159 +#: screens/User/UserDetail/UserDetail.jsx:89 msgid "edit" msgstr "edit" @@ -8001,95 +9356,99 @@ msgstr "edit" #~ msgid "edit view" #~ msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Template/Survey/SurveyListItem.jsx:123 msgid "encrypted" msgstr "encrypted" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 msgid "expiration" msgstr "expiration" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 msgid "for more details." msgstr "for more details." -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "group" -msgstr "group" +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:221 +msgid "for more info." +msgstr "for more info." #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "groups" -msgstr "groups" +#~ msgid "group" +#~ msgstr "group" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:182 +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 +#~ msgid "groups" +#~ msgstr "groups" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:182 msgid "here" msgstr "here" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:129 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:204 +#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.jsx:204 msgid "here." msgstr "here." -#: src/components/Lookup/HostFilterLookup.jsx:333 +#: components/Lookup/HostFilterLookup.jsx:340 msgid "hosts" msgstr "hosts" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:95 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:95 msgid "instance counts" msgstr "instance counts" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:109 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:109 msgid "instance group used capacity" msgstr "instance group used capacity" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:82 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:82 msgid "instance host name" msgstr "instance host name" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:85 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:85 msgid "instance type" msgstr "instance type" -#: src/components/Lookup/HostListItem.jsx:30 +#: components/Lookup/HostListItem.jsx:30 msgid "inventory" msgstr "inventory" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 -#: src/screens/Job/JobDetail/JobDetail.jsx:118 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 +#: screens/Job/JobDetail/JobDetail.jsx:119 msgid "isolated instance" msgstr "isolated instance" -#: src/components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "ldap user" msgstr "ldap user" -#: src/screens/User/UserDetail/UserDetail.jsx:72 +#: screens/User/UserDetail/UserDetail.jsx:72 msgid "login type" msgstr "login type" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:183 msgid "min" msgstr "min" -#: src/screens/Template/Survey/SurveyListItem.jsx:80 +#: screens/Template/Survey/SurveyListItem.jsx:82 msgid "move down" msgstr "move down" -#: src/screens/Template/Survey/SurveyListItem.jsx:70 +#: screens/Template/Survey/SurveyListItem.jsx:71 msgid "move up" msgstr "move up" -#: src/components/Lookup/HostListItem.jsx:23 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:76 +#: components/Lookup/HostListItem.jsx:23 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:90 msgid "name" msgstr "name" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:477 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 msgid "of" msgstr "of" @@ -8097,35 +9456,40 @@ msgstr "of" #~ msgid "of {pageCount}" #~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:250 +#: components/AdHocCommands/AdHocDetailsStep.jsx:250 msgid "option to the" msgstr "option to the" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 msgid "or attributes of the job such as" msgstr "or attributes of the job such as" -#: src/components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "page" -#: src/components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: src/components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:21 +#: components/LaunchButton/ReLaunchDropDown.jsx:66 +#: components/LaunchButton/ReLaunchDropDown.jsx:88 +msgid "relaunch jobs" +msgstr "relaunch jobs" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:21 msgid "resource name" msgstr "resource name" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:36 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:36 msgid "resource role" msgstr "resource role" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:26 msgid "resource type" msgstr "resource type" @@ -8137,19 +9501,19 @@ msgstr "resource type" #~ msgid "save/cancel and go back to {currentTab} view" #~ msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 msgid "scope" msgstr "scope" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:197 msgid "sec" msgstr "sec" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 msgid "seconds" msgstr "seconds" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.jsx:62 msgid "select module" msgstr "select module" @@ -8157,51 +9521,71 @@ msgstr "select module" #~ msgid "select organization {itemId}" #~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:139 +#: components/AdHocCommands/AdHocDetailsStep.jsx:139 msgid "select verbosity" msgstr "select verbosity" -#: src/screens/User/UserList/UserListItem.jsx:56 +#: screens/User/UserList/UserListItem.jsx:56 msgid "social login" msgstr "social login" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.jsx:30 msgid "system" msgstr "system" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 msgid "team name" msgstr "team name" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:520 +#: screens/ActivityStream/ActivityStreamDescription.jsx:520 msgid "timed out" msgstr "timed out" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:230 +#: components/AdHocCommands/AdHocDetailsStep.jsx:230 msgid "toggle changes" msgstr "toggle changes" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 msgid "token name" msgstr "token name" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:83 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:110 msgid "type" msgstr "type" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:525 +#: screens/ActivityStream/ActivityStreamDescription.jsx:525 msgid "updated" msgstr "updated" -#: src/screens/Template/shared/WebhookSubForm.jsx:199 +#: screens/Template/shared/WebhookSubForm.jsx:199 msgid "workflow job template webhook key" msgstr "workflow job template webhook key" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:27 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:113 +msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" +msgstr "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:86 +msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" +msgstr "{0, plural, one {Delete Group?} other {Delete Groups?}}" + +#: screens/Inventory/InventoryList/InventoryList.jsx:223 +msgid "{0, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +msgstr "{0, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" + +#: components/JobList/JobListCancelButton.jsx:65 +msgid "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" +msgstr "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" + +#: components/JobList/JobListCancelButton.jsx:56 +msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +msgstr "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" + +#: screens/Setting/shared/LoggingTestAlert.jsx:27 msgid "{0}" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.jsx:28 msgid "{0} (deleted)" msgstr "{0} (deleted)" @@ -8209,15 +9593,15 @@ msgstr "{0} (deleted)" #~ msgid "{0} List" #~ msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.jsx:13 msgid "{0} more" msgstr "{0} more" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:62 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:62 msgid "{0} sources with sync failures." msgstr "{0} sources with sync failures." -#: src/screens/Setting/shared/LoggingTestAlert.jsx:25 +#: screens/Setting/shared/LoggingTestAlert.jsx:25 msgid "{0}: {1}" msgstr "{0}: {1}" @@ -8225,31 +9609,31 @@ msgstr "{0}: {1}" #~ msgid "{currentTab} detail view" #~ msgstr "" -#: src/components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.jsx:23 msgid "{dateStr} by <0>{username}" msgstr "{dateStr} by <0>{username}" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "{intervalValue, plural, one {day} other {days}}" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "{intervalValue, plural, one {hour} other {hours}}" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "{intervalValue, plural, one {minute} other {minutes}}" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:204 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "{intervalValue, plural, one {month} other {months}}" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "{intervalValue, plural, one {week} other {weeks}}" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:208 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "{intervalValue, plural, one {year} other {years}}" @@ -8257,35 +9641,43 @@ msgstr "{intervalValue, plural, one {year} other {years}}" #~ msgid "{itemMin} - {itemMax} of {count}" #~ msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:43 +#: components/PromptDetail/PromptDetail.jsx:43 msgid "{minutes} min {seconds} sec" msgstr "{minutes} min {seconds} sec" #: src/screens/Inventory/InventoryList/InventoryList.jsx:215 -msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" -msgstr "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgstr "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" + +#: components/JobList/JobListCancelButton.jsx:92 +msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" +msgstr "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" #: src/components/JobList/JobListCancelButton.jsx:81 -msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" -msgstr "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" +#~ msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" +#~ msgstr "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" -#: src/components/JobList/JobListCancelButton.jsx:156 +#: components/JobList/JobListCancelButton.jsx:151 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" +#: components/JobList/JobListCancelButton.jsx:77 +msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" +msgstr "{numJobsToCancel, plural, one {{0}} other {{1}}}" + #: src/components/JobList/JobListCancelButton.jsx:68 -msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" -msgstr "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#~ msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#~ msgstr "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" #: src/components/JobList/JobListCancelButton.jsx:57 -msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" -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:}}" +#~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +#~ 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:}}" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:92 -#: src/components/PaginatedTable/PaginatedTable.jsx:76 +#: components/PaginatedDataList/PaginatedDataList.jsx:92 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "{pluralizedItemName} List" #: src/components/JobList/JobListCancelButton.jsx:96 -msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" -msgstr "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" +#~ msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" +#~ msgstr "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" diff --git a/awx/ui_next/src/locales/es/messages.po b/awx/ui_next/src/locales/es/messages.po index 9b0f87a820..d5db80db2d 100644 --- a/awx/ui_next/src/locales/es/messages.po +++ b/awx/ui_next/src/locales/es/messages.po @@ -13,393 +13,425 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 msgid "(Limited to first 10)" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:147 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:90 +#: components/TemplateList/TemplateListItem.jsx:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:91 msgid "(Prompt on launch)" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:244 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:58 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:59 msgid "- Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:63 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:64 msgid "- Enable Webhooks" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 msgid "/ (project root)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:26 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: src/components/PromptDetail/PromptDetail.jsx:95 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:31 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:40 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocCommands.jsx:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/PromptDetail/PromptDetail.jsx:95 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 +#: screens/Template/shared/JobTemplateForm.jsx:180 msgid "0 (Normal)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:98 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:81 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 msgid "0 (Warning)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:99 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 msgid "1 (Info)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:27 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: src/components/PromptDetail/PromptDetail.jsx:96 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:41 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:101 -#: src/screens/Template/shared/JobTemplateForm.jsx:174 +#: components/AdHocCommands/AdHocCommands.jsx:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 +#: components/PromptDetail/PromptDetail.jsx:96 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 +#: screens/Template/shared/JobTemplateForm.jsx:181 msgid "1 (Verbose)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:100 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 msgid "2 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:28 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: src/components/PromptDetail/PromptDetail.jsx:97 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:102 -#: src/screens/Template/shared/JobTemplateForm.jsx:175 +#: components/AdHocCommands/AdHocCommands.jsx:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 +#: components/PromptDetail/PromptDetail.jsx:97 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 +#: screens/Template/shared/JobTemplateForm.jsx:182 msgid "2 (More Verbose)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:29 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 -#: src/components/PromptDetail/PromptDetail.jsx:98 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:103 -#: src/screens/Template/shared/JobTemplateForm.jsx:176 +#: components/AdHocCommands/AdHocCommands.jsx:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 +#: components/PromptDetail/PromptDetail.jsx:98 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:183 msgid "3 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:30 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 -#: src/components/PromptDetail/PromptDetail.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:177 +#: components/AdHocCommands/AdHocCommands.jsx:30 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 +#: components/PromptDetail/PromptDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 +#: screens/Template/shared/JobTemplateForm.jsx:184 msgid "4 (Connection Debug)" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:105 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 msgid "5 (WinRM Debug)" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 -msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +msgid "" +"A refspec to fetch (passed to the Ansible git\n" +"module). This parameter allows access to references via\n" +"the branch field not otherwise available." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#~ msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281 +msgid "ALL" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 msgid "API Service/Integration Key" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 msgid "API Token" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 msgid "API service/integration key" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:129 +#: components/AppContainer/PageHeaderToolbar.jsx:129 msgid "About" msgstr "" -#: src/routeConfig.js:92 -#: src/screens/ActivityStream/ActivityStream.jsx:176 -#: src/screens/Credential/Credential.jsx:60 -#: src/screens/Credential/Credentials.jsx:29 -#: src/screens/Inventory/Inventories.jsx:58 -#: src/screens/Inventory/Inventory.jsx:63 -#: src/screens/Inventory/SmartInventory.jsx:70 -#: src/screens/Organization/Organization.jsx:123 -#: src/screens/Organization/Organizations.jsx:32 -#: src/screens/Project/Project.jsx:106 -#: src/screens/Project/Projects.jsx:30 -#: src/screens/Team/Team.jsx:56 -#: src/screens/Team/Teams.jsx:31 -#: src/screens/Template/Template.jsx:132 -#: src/screens/Template/Templates.jsx:46 -#: src/screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:93 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Credential/Credential.jsx:60 +#: screens/Credential/Credentials.jsx:29 +#: screens/Inventory/Inventories.jsx:58 +#: screens/Inventory/Inventory.jsx:63 +#: screens/Inventory/SmartInventory.jsx:70 +#: screens/Organization/Organization.jsx:124 +#: screens/Organization/Organizations.jsx:32 +#: screens/Project/Project.jsx:106 +#: screens/Project/Projects.jsx:30 +#: screens/Team/Team.jsx:56 +#: screens/Team/Teams.jsx:31 +#: screens/Template/Template.jsx:145 +#: screens/Template/Templates.jsx:46 +#: screens/Template/WorkflowJobTemplate.jsx:122 msgid "Access" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:71 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:79 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 msgid "Account SID" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 msgid "Account token" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:52 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 msgid "Action" msgstr "" -#: src/components/JobList/JobList.jsx:245 -#: src/components/JobList/JobListItem.jsx:80 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:176 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:112 -#: src/components/TemplateList/TemplateList.jsx:222 -#: src/components/TemplateList/TemplateListItem.jsx:131 -#: src/screens/ActivityStream/ActivityStream.jsx:253 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:47 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: src/screens/Credential/CredentialList/CredentialList.jsx:153 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:172 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 -#: src/screens/Host/HostList/HostList.jsx:170 -#: src/screens/Host/HostList/HostListItem.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:233 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:198 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:112 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:183 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:157 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:44 -#: src/screens/Project/ProjectList/ProjectList.jsx:173 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:125 -#: src/screens/Team/TeamList/TeamList.jsx:156 -#: src/screens/Team/TeamList/TeamListItem.jsx:54 -#: src/screens/User/UserList/UserList.jsx:172 -#: src/screens/User/UserList/UserListItem.jsx:79 +#: components/JobList/JobList.jsx:223 +#: components/JobList/JobListItem.jsx:80 +#: components/Schedule/ScheduleList/ScheduleList.jsx:176 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112 +#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateListItem.jsx:156 +#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStreamListItem.jsx:49 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 +#: screens/Credential/CredentialList/CredentialList.jsx:145 +#: screens/Credential/CredentialList/CredentialListItem.jsx:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:78 +#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostListItem.jsx:48 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 +#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/Organization/OrganizationList/OrganizationList.jsx:161 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 +#: screens/Project/ProjectList/ProjectList.jsx:178 +#: screens/Project/ProjectList/ProjectListItem.jsx:152 +#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/User/UserList/UserList.jsx:172 +#: screens/User/UserList/UserListItem.jsx:79 msgid "Actions" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: src/components/TemplateList/TemplateListItem.jsx:201 -#: src/screens/Host/HostDetail/HostDetail.jsx:77 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:87 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 +#: components/TemplateList/TemplateListItem.jsx:229 +#: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 msgid "Activity" msgstr "" -#: src/routeConfig.js:49 -#: src/screens/ActivityStream/ActivityStream.jsx:119 -#: src/screens/Setting/Settings.jsx:44 +#: routeConfig.js:50 +#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "" -#: src/screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.jsx:114 msgid "Activity Stream settings" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:122 msgid "Activity Stream type selector" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 msgid "Actor" msgstr "" -#: src/components/AddDropDownButton/AddDropDownButton.jsx:39 -#: src/components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:160 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:164 +#: components/AddDropDownButton/AddDropDownButton.jsx:39 +#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 msgid "Add Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:66 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 msgid "Add Node" msgstr "" -#: src/screens/Template/Templates.jsx:50 +#: screens/Template/Templates.jsx:50 msgid "Add Question" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:174 +#: components/AddRole/AddResourceRole.jsx:185 msgid "Add Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:171 +#: components/AddRole/AddResourceRole.jsx:182 msgid "Add Team Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:168 +#: components/AddRole/AddResourceRole.jsx:179 msgid "Add User Roles" msgstr "" -#: src/components/Workflow/WorkflowStartNode.jsx:57 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:189 +#: components/Workflow/WorkflowStartNode.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:195 msgid "Add a new node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 msgid "Add a new node between these two nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 msgid "Add container group" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 msgid "Add existing group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 msgid "Add existing host" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 msgid "Add instance group" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:129 +#: screens/Inventory/InventoryList/InventoryList.jsx:135 msgid "Add inventory" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:141 msgid "Add job template" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 msgid "Add new group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 msgid "Add new host" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 msgid "Add resource type" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:130 +#: screens/Inventory/InventoryList/InventoryList.jsx:136 msgid "Add smart inventory" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:171 msgid "Add team permissions" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:182 +#: screens/User/UserRoles/UserRolesList.jsx:182 msgid "Add user permissions" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:142 msgid "Add workflow template" msgstr "" #: src/screens/ActivityStream/ActivityStream.jsx:187 -msgid "Adminisration" -msgstr "" +#~ msgid "Adminisration" +#~ msgstr "" -#: src/routeConfig.js:113 +#: routeConfig.js:114 +#: screens/ActivityStream/ActivityStream.jsx:187 msgid "Administration" msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:86 +#: components/DataListToolbar/DataListToolbar.jsx:86 +#: screens/Job/JobOutput/JobOutput.jsx:671 msgid "Advanced" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.jsx:246 msgid "Advanced search value input" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203 +msgid "" +"After every project update where the SCM revision\n" +"changes, refresh the inventory from the selected source\n" +"before executing job tasks. This is intended for static content,\n" +"like the Ansible inventory .ini file format." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177 -msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." -msgstr "" +#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." +#~ msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:520 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 msgid "After number of occurrences" msgstr "" -#: src/components/AlertModal/AlertModal.jsx:77 +#: components/AlertModal/AlertModal.jsx:77 msgid "Alert modal" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:39 +#: components/LaunchButton/ReLaunchDropDown.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:244 msgid "All" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:226 +#: screens/Dashboard/Dashboard.jsx:226 msgid "All job types" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:45 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:46 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:74 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 msgid "Allow Branch Override" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:60 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 msgid "Allow Provisioning Callbacks" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 -msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +msgid "" +"Allow changing the Source Control branch or revision in a job\n" +"template that uses this project." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:119 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#~ msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:119 msgid "Allowed URIs list, space separated" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:126 -#: src/components/Workflow/WorkflowLinkHelp.jsx:24 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 +#: components/Workflow/WorkflowLegend.jsx:126 +#: components/Workflow/WorkflowLinkHelp.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 msgid "Always" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 msgid "Amazon EC2" msgstr "" -#: src/components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.jsx:12 msgid "An error occurred" msgstr "" -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:34 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 msgid "An inventory must be selected" msgstr "" @@ -410,623 +442,683 @@ msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:82 #: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128 #: src/screens/Project/shared/ProjectForm.jsx:274 -msgid "Ansible Environment" -msgstr "" +#~ msgid "Ansible Environment" +#~ msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Ansible Tower" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 msgid "Ansible Tower Documentation." msgstr "" #: src/components/About/About.jsx:58 -msgid "Ansible Version" -msgstr "" +#~ msgid "Ansible Version" +#~ msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204 -msgid "Ansible environment" -msgstr "" +#~ msgid "Ansible environment" +#~ msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:33 +#: screens/Template/Survey/SurveyQuestionForm.jsx:33 msgid "Answer type" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:130 +#: screens/Template/Survey/SurveyQuestionForm.jsx:130 msgid "Answer variable name" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:65 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: src/screens/User/shared/UserTokenForm.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:241 +msgid "Any" +msgstr "" + +#: components/Lookup/ApplicationLookup.jsx:65 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:52 +#: screens/User/shared/UserTokenForm.jsx:44 msgid "Application" msgstr "" -#: src/screens/User/Users.jsx:38 +#: screens/User/Users.jsx:38 msgid "Application Name" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:42 +#: screens/User/UserTokenList/UserTokenListItem.jsx:42 msgid "Application access token" msgstr "" -#: src/screens/Application/Applications.jsx:67 -#: src/screens/Application/Applications.jsx:70 +#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.jsx:70 msgid "Application information" msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:111 -#: src/screens/User/UserTokenList/UserTokenList.jsx:122 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.jsx:111 +#: screens/User/UserTokenList/UserTokenList.jsx:122 +#: screens/User/UserTokenList/UserTokenListItem.jsx:47 msgid "Application name" msgstr "" -#: src/screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.jsx:93 msgid "Application not found." msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:74 -#: src/routeConfig.js:137 -#: src/screens/Application/Applications.jsx:25 -#: src/screens/Application/Applications.jsx:35 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: components/Lookup/ApplicationLookup.jsx:74 +#: routeConfig.js:138 +#: screens/Application/Applications.jsx:25 +#: screens/Application/Applications.jsx:35 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: util/getRelatedResourceDeleteDetails.js:233 msgid "Applications" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:204 +#: screens/ActivityStream/ActivityStream.jsx:204 msgid "Applications & Tokens" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:40 -#: src/components/NotificationList/NotificationListItem.jsx:41 -#: src/components/Workflow/WorkflowLegend.jsx:110 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:55 +#: components/NotificationList/NotificationListItem.jsx:40 +#: components/NotificationList/NotificationListItem.jsx:41 +#: components/Workflow/WorkflowLegend.jsx:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:83 msgid "Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:190 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:195 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:59 msgid "Approve" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 msgid "Approved" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 msgid "Approved by {0} - {1}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 msgid "April" msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116 -msgid "Are you sure you want to delete the {0} below?" -msgstr "" +#~ msgid "Are you sure you want to delete the {0} below?" +#~ msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:53 +#: components/DeleteButton/DeleteButton.jsx:127 msgid "Are you sure you want to delete:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:41 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 msgid "Are you sure you want to remove the node below:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 msgid "Are you sure you want to remove this link?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:51 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 msgid "Are you sure you want to remove this node?" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:53 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:64 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobDetail/JobDetail.jsx:461 +#: screens/Job/JobOutput/JobOutput.jsx:812 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:108 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:110 +#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.jsx:110 msgid "Arguments" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:347 +#: screens/Job/JobDetail/JobDetail.jsx:378 msgid "Artifacts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: src/screens/User/UserTeams/UserTeamList.jsx:204 +#: screens/InstanceGroup/Instances/InstanceList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:204 msgid "Associate" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 msgid "Associate role error" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:99 +#: components/AssociateModal/AssociateModal.jsx:99 msgid "Association modal" msgstr "" -#: src/components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 msgid "August" msgstr "" -#: src/screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.jsx:55 msgid "Authentication" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:92 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:86 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 -#: src/screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:89 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:89 msgid "Auto" msgstr "" -#: src/screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.jsx:47 msgid "Azure AD" msgstr "" -#: src/screens/Setting/SettingList.jsx:62 +#: screens/Setting/SettingList.jsx:62 msgid "Azure AD settings" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:111 -#: src/components/AddRole/AddResourceRole.jsx:275 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:111 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:120 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:139 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:142 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:111 +#: components/AddRole/AddResourceRole.jsx:286 +#: components/LaunchPrompt/LaunchPrompt.jsx:118 +#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" msgstr "" -#: src/screens/Credential/Credential.jsx:52 +#: screens/Credential/Credential.jsx:52 msgid "Back to Credentials" msgstr "" -#: src/components/ContentError/ContentError.jsx:48 +#: components/ContentError/ContentError.jsx:48 msgid "Back to Dashboard." msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 msgid "Back to Groups" msgstr "" -#: src/screens/Host/Host.jsx:45 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.jsx:45 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 msgid "Back to Hosts" msgstr "" -#: src/screens/Inventory/Inventory.jsx:56 -#: src/screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.jsx:56 +#: screens/Inventory/SmartInventory.jsx:63 msgid "Back to Inventories" msgstr "" -#: src/screens/Job/Job.jsx:57 +#: screens/Job/Job.jsx:97 msgid "Back to Jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.jsx:76 msgid "Back to Notifications" msgstr "" -#: src/screens/Organization/Organization.jsx:116 +#: screens/Organization/Organization.jsx:117 msgid "Back to Organizations" msgstr "" -#: src/screens/Project/Project.jsx:99 +#: screens/Project/Project.jsx:99 msgid "Back to Projects" msgstr "" -#: src/components/Schedule/Schedule.jsx:60 +#: components/Schedule/Schedule.jsx:61 msgid "Back to Schedules" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:104 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:108 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 msgid "Back to Settings" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.jsx:81 msgid "Back to Sources" msgstr "" -#: src/screens/Team/Team.jsx:49 +#: screens/Team/Team.jsx:49 msgid "Back to Teams" msgstr "" -#: src/screens/Template/Template.jsx:125 -#: src/screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.jsx:138 +#: screens/Template/WorkflowJobTemplate.jsx:115 msgid "Back to Templates" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.jsx:47 msgid "Back to Tokens" msgstr "" -#: src/screens/User/User.jsx:57 +#: screens/User/User.jsx:57 msgid "Back to Users" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.jsx:69 msgid "Back to Workflow Approvals" msgstr "" -#: src/screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.jsx:71 msgid "Back to applications" msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.jsx:55 msgid "Back to credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:56 -#: src/screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +msgid "Back to execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:56 +#: screens/InstanceGroup/InstanceGroup.jsx:57 msgid "Back to instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.jsx:98 msgid "Back to management jobs" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 -msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +msgid "" +"Base path used for locating playbooks. Directories\n" +"found inside this path will be listed in the playbook directory drop-down.\n" +"Together the base path and selected playbook directory provide the full\n" +"path used to locate playbooks." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 msgid "Basic auth password" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 -msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +msgid "" +"Branch to checkout. In addition to branches,\n" +"you can input tags, commit hashes, and arbitrary refs. Some\n" +"commit hashes and refs may not be available unless you also\n" +"provide a custom refspec." msgstr "" -#: src/components/About/About.jsx:42 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#~ msgstr "" + +#: components/About/About.jsx:37 msgid "Brand Image" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: src/components/PromptDetail/PromptProjectDetail.jsx:88 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:124 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:104 +#: components/PromptDetail/PromptProjectDetail.jsx:94 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:126 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 msgid "Cache Timeout" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235 msgid "Cache timeout" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:194 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:237 msgid "Cache timeout (seconds)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:112 -#: src/components/AddRole/AddResourceRole.jsx:276 -#: src/components/AssociateModal/AssociateModal.jsx:113 -#: src/components/AssociateModal/AssociateModal.jsx:118 -#: src/components/DeleteButton/DeleteButton.jsx:46 -#: src/components/DeleteButton/DeleteButton.jsx:49 -#: src/components/DisassociateButton/DisassociateButton.jsx:122 -#: src/components/DisassociateButton/DisassociateButton.jsx:125 -#: src/components/FormActionGroup/FormActionGroup.jsx:22 -#: src/components/FormActionGroup/FormActionGroup.jsx:27 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:112 -#: src/components/Lookup/HostFilterLookup.jsx:322 -#: src/components/Lookup/Lookup.jsx:148 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:167 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:40 -#: src/components/Schedule/shared/ScheduleForm.jsx:564 -#: src/components/Schedule/shared/ScheduleForm.jsx:569 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:121 -#: src/screens/Credential/shared/CredentialForm.jsx:292 -#: src/screens/Credential/shared/CredentialForm.jsx:297 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:99 -#: src/screens/Credential/shared/ExternalTestModal.jsx:97 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 -#: src/screens/Setting/shared/RevertAllAlert.jsx:32 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:38 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:44 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:209 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:212 -#: src/screens/Template/Survey/SurveyList.jsx:117 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:29 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:37 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:43 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:38 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 -#: src/screens/User/UserRoles/UserRolesList.jsx:209 -#: src/screens/User/UserRoles/UserRolesList.jsx:212 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:112 +#: components/AddRole/AddResourceRole.jsx:287 +#: components/AssociateModal/AssociateModal.jsx:115 +#: components/AssociateModal/AssociateModal.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:123 +#: components/DisassociateButton/DisassociateButton.jsx:125 +#: components/DisassociateButton/DisassociateButton.jsx:128 +#: components/FormActionGroup/FormActionGroup.jsx:24 +#: components/FormActionGroup/FormActionGroup.jsx:29 +#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/Lookup/HostFilterLookup.jsx:329 +#: components/Lookup/Lookup.jsx:150 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46 +#: components/Schedule/shared/ScheduleForm.jsx:641 +#: components/Schedule/shared/ScheduleForm.jsx:646 +#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: screens/Credential/shared/CredentialForm.jsx:299 +#: screens/Credential/shared/CredentialForm.jsx:304 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:103 +#: screens/Credential/shared/ExternalTestModal.jsx:99 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:109 +#: screens/Job/JobDetail/JobDetail.jsx:411 +#: screens/Job/JobDetail/JobDetail.jsx:416 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 +#: screens/Setting/shared/RevertAllAlert.jsx:32 +#: screens/Setting/shared/RevertFormActionGroup.jsx:38 +#: screens/Setting/shared/RevertFormActionGroup.jsx:44 +#: screens/Team/TeamRoles/TeamRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.jsx:214 +#: screens/Template/Survey/SurveyList.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/User/UserRoles/UserRolesList.jsx:214 msgid "Cancel" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:675 -#: src/screens/Job/JobOutput/JobOutput.jsx:676 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:171 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:174 +#: screens/Job/JobDetail/JobDetail.jsx:436 +#: screens/Job/JobDetail/JobDetail.jsx:437 +#: screens/Job/JobOutput/JobOutput.jsx:787 +#: screens/Job/JobOutput/JobOutput.jsx:788 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:186 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:190 msgid "Cancel Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:683 -#: src/screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobDetail/JobDetail.jsx:444 +#: screens/Job/JobDetail/JobDetail.jsx:447 +#: screens/Job/JobOutput/JobOutput.jsx:795 +#: screens/Job/JobOutput/JobOutput.jsx:798 msgid "Cancel job" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 msgid "Cancel link changes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 msgid "Cancel link removal" msgstr "" -#: src/components/Lookup/Lookup.jsx:146 +#: components/Lookup/Lookup.jsx:148 msgid "Cancel lookup" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:26 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 msgid "Cancel node removal" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:28 +#: screens/Setting/shared/RevertAllAlert.jsx:29 msgid "Cancel revert" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:65 +#: components/JobList/JobListCancelButton.jsx:79 +msgid "Cancel selected job" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:80 +msgid "Cancel selected jobs" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:66 msgid "Cancel sync" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:58 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:58 msgid "Cancel sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:61 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:62 msgid "Cancel sync source" msgstr "" -#: src/components/JobList/JobList.jsx:228 -#: src/components/Workflow/WorkflowNodeHelp.jsx:95 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 +#: components/JobList/JobList.jsx:206 +#: components/Workflow/WorkflowNodeHelp.jsx:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 msgid "Canceled" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 -msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +msgid "" +"Cannot enable log aggregator without providing\n" +"logging aggregator host and logging aggregator type." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:232 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 +#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#~ msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 msgid "Capacity" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:175 +#: components/Search/AdvancedSearch.jsx:176 msgid "Case-insensitive version of contains" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:195 +#: components/Search/AdvancedSearch.jsx:196 msgid "Case-insensitive version of endswith." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:165 +#: components/Search/AdvancedSearch.jsx:166 msgid "Case-insensitive version of exact." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:205 +#: components/Search/AdvancedSearch.jsx:206 msgid "Case-insensitive version of regex." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:185 +#: components/Search/AdvancedSearch.jsx:186 msgid "Case-insensitive version of startswith." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 -msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +msgid "" +"Change PROJECTS_ROOT when deploying\n" +"{brandName} to change this location." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#~ msgstr "" + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 msgid "Changed" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:55 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:56 msgid "Changes" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 msgid "Channel" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:168 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 +#: screens/Template/shared/JobTemplateForm.jsx:175 msgid "Check" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:232 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:238 +#: components/Search/AdvancedSearch.jsx:239 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 msgid "Choose a .json file" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 msgid "Choose a Notification Type" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 msgid "Choose a Playbook Directory" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:223 msgid "Choose a Source Control Type" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.jsx:102 msgid "Choose a Webhook Service" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 -#: src/screens/Template/shared/JobTemplateForm.jsx:161 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 +#: screens/Template/shared/JobTemplateForm.jsx:168 msgid "Choose a job type" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:88 +#: components/AdHocCommands/AdHocDetailsStep.jsx:88 msgid "Choose a module" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:130 +#: screens/Inventory/shared/InventorySourceForm.jsx:144 msgid "Choose a source" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 msgid "Choose an HTTP method" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 -msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#: screens/Template/Survey/SurveyQuestionForm.jsx:37 +msgid "" +"Choose an answer type or format you want as the prompt for the user.\n" +"Refer to the Ansible Tower Documentation for more additional\n" +"information about each option." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 +#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 msgid "Choose an email option" msgstr "" -#: src/components/AddRole/SelectRoleStep.jsx:23 +#: components/AddRole/SelectRoleStep.jsx:23 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "" -#: src/components/AddRole/SelectResourceStep.jsx:82 +#: components/AddRole/SelectResourceStep.jsx:82 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:185 +#: components/AddRole/AddResourceRole.jsx:196 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:37 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:64 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: components/PromptDetail/PromptProjectDetail.jsx:38 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 msgid "Clean" msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:65 +#: components/DataListToolbar/DataListToolbar.jsx:65 +#: screens/Job/JobOutput/JobOutput.jsx:715 msgid "Clear all filters" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 msgid "Click the Edit button below to reconfigure the node." msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:73 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:147 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:153 msgid "Click to create a new link to this node." msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.jsx:168 msgid "Click to view job details" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 -#: src/screens/Application/Applications.jsx:89 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 +#: screens/Application/Applications.jsx:89 msgid "Client ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 msgid "Client Identifier" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 msgid "Client identifier" msgstr "" -#: src/screens/Application/Applications.jsx:102 +#: screens/Application/Applications.jsx:102 msgid "Client secret" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 -#: src/screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 +#: screens/Application/shared/ApplicationForm.jsx:128 msgid "Client type" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:106 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:171 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:173 msgid "Close" msgstr "" -#: src/components/CredentialChip/CredentialChip.jsx:12 +#: components/CredentialChip/CredentialChip.jsx:12 msgid "Cloud" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:40 +#: components/ExpandCollapse/ExpandCollapse.jsx:41 msgid "Collapse" msgstr "" -#: src/components/JobList/JobList.jsx:208 -#: src/components/JobList/JobListItem.jsx:34 -#: src/screens/Job/JobDetail/JobDetail.jsx:80 -#: src/screens/Job/JobOutput/HostEventModal.jsx:137 +#: components/JobList/JobList.jsx:186 +#: components/JobList/JobListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:99 +#: screens/Job/JobOutput/HostEventModal.jsx:137 msgid "Command" msgstr "" @@ -1037,7032 +1129,8098 @@ msgstr "" #: src/screens/Template/Template.jsx:151 #: src/screens/Template/Templates.jsx:48 #: src/screens/Template/WorkflowJobTemplate.jsx:145 -msgid "Completed Jobs" -msgstr "" +#~ msgid "Completed Jobs" +#~ msgstr "" #: src/screens/Inventory/Inventories.jsx:59 #: src/screens/Inventory/Inventories.jsx:73 #: src/screens/Inventory/SmartInventory.jsx:73 -msgid "Completed jobs" -msgstr "" +#~ msgid "Completed jobs" +#~ msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:550 +#: screens/Template/shared/JobTemplateForm.jsx:580 msgid "Concurrent Jobs" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:97 +#: components/DeleteButton/DeleteButton.jsx:107 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:95 msgid "Confirm Delete" msgstr "" -#: src/screens/User/shared/UserForm.jsx:96 +#: screens/User/shared/UserForm.jsx:96 msgid "Confirm Password" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:34 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:35 msgid "Confirm delete" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.jsx:202 msgid "Confirm disassociate" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 msgid "Confirm link removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 msgid "Confirm node removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 msgid "Confirm removal of all nodes" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:19 +#: screens/Setting/shared/RevertAllAlert.jsx:20 msgid "Confirm revert all" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:234 +#: screens/Job/JobDetail/JobDetail.jsx:265 msgid "Container Group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 msgid "Container group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.jsx:81 msgid "Container group not found." msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:106 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:115 +#: components/LaunchPrompt/LaunchPrompt.jsx:113 +#: components/Schedule/shared/SchedulePromptableFields.jsx:117 msgid "Content Loading" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:234 msgid "Continue" msgstr "" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +msgid "" +"Control the level of output Ansible\n" +"will produce for inventory source update jobs." +msgstr "" + #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92 -msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 +msgid "" +"Control the level of output ansible\n" +"will produce as the playbook executes." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:444 +msgid "" +"Control the level of output ansible will\n" +"produce as the playbook executes." msgstr "" #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 #: src/screens/Template/shared/JobTemplateForm.jsx:414 -msgid "Control the level of output ansible will produce as the playbook executes." -msgstr "" +#~ msgid "Control the level of output ansible will produce as the playbook executes." +#~ msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:61 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 msgid "Controller" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:205 +msgid "Convergence" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:236 +msgid "Convergence select" +msgstr "" + +#: components/CopyButton/CopyButton.jsx:41 msgid "Copy" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:76 +#: screens/Credential/CredentialList/CredentialListItem.jsx:77 msgid "Copy Credential" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:46 +#: components/CopyButton/CopyButton.jsx:48 msgid "Copy Error" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:95 +msgid "Copy Execution Environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:135 msgid "Copy Inventory" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:147 msgid "Copy Notification Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:147 +#: screens/Project/ProjectList/ProjectListItem.jsx:175 msgid "Copy Project" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.jsx:209 msgid "Copy Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:121 +#: screens/Project/ProjectList/ProjectListItem.jsx:147 msgid "Copy full revision to clipboard." msgstr "" -#: src/components/About/About.jsx:40 +#: components/About/About.jsx:35 msgid "Copyright 2019 Red Hat, Inc." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:353 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/JobTemplateForm.jsx:383 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:223 msgid "Create" msgstr "" -#: src/screens/Application/Applications.jsx:26 -#: src/screens/Application/Applications.jsx:36 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:24 +msgid "Create Execution environments" +msgstr "" + +#: screens/Application/Applications.jsx:26 +#: screens/Application/Applications.jsx:36 msgid "Create New Application" msgstr "" -#: src/screens/Credential/Credentials.jsx:14 -#: src/screens/Credential/Credentials.jsx:25 +#: screens/Credential/Credentials.jsx:14 +#: screens/Credential/Credentials.jsx:25 msgid "Create New Credential" msgstr "" -#: src/screens/Host/Hosts.jsx:16 -#: src/screens/Host/Hosts.jsx:26 +#: screens/Host/Hosts.jsx:16 +#: screens/Host/Hosts.jsx:26 msgid "Create New Host" msgstr "" -#: src/screens/Template/Templates.jsx:17 +#: screens/Template/Templates.jsx:17 msgid "Create New Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:23 +#: screens/NotificationTemplate/NotificationTemplates.jsx:14 +#: screens/NotificationTemplate/NotificationTemplates.jsx:23 msgid "Create New Notification Template" msgstr "" -#: src/screens/Organization/Organizations.jsx:17 -#: src/screens/Organization/Organizations.jsx:28 +#: screens/Organization/Organizations.jsx:17 +#: screens/Organization/Organizations.jsx:28 msgid "Create New Organization" msgstr "" -#: src/screens/Project/Projects.jsx:15 -#: src/screens/Project/Projects.jsx:26 +#: screens/Project/Projects.jsx:15 +#: screens/Project/Projects.jsx:26 msgid "Create New Project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:114 -#: src/screens/ManagementJob/ManagementJobs.jsx:26 -#: src/screens/Project/Projects.jsx:35 -#: src/screens/Template/Templates.jsx:53 +#: screens/Inventory/Inventories.jsx:112 +#: screens/ManagementJob/ManagementJobs.jsx:26 +#: screens/Project/Projects.jsx:35 +#: screens/Template/Templates.jsx:53 msgid "Create New Schedule" msgstr "" -#: src/screens/Team/Teams.jsx:15 -#: src/screens/Team/Teams.jsx:26 +#: screens/Team/Teams.jsx:15 +#: screens/Team/Teams.jsx:26 msgid "Create New Team" msgstr "" -#: src/screens/User/Users.jsx:16 -#: src/screens/User/Users.jsx:28 +#: screens/User/Users.jsx:16 +#: screens/User/Users.jsx:28 msgid "Create New User" msgstr "" -#: src/screens/Template/Templates.jsx:19 +#: screens/Template/Templates.jsx:19 msgid "Create New Workflow Template" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.jsx:29 msgid "Create a new Smart Inventory with the applied filter" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:18 -#: src/screens/InstanceGroup/InstanceGroups.jsx:30 +#: screens/InstanceGroup/InstanceGroups.jsx:18 +#: screens/InstanceGroup/InstanceGroups.jsx:30 msgid "Create container group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:17 -#: src/screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.jsx:17 +#: screens/InstanceGroup/InstanceGroups.jsx:28 msgid "Create instance group" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:24 +#: screens/CredentialType/CredentialTypes.jsx:24 msgid "Create new credential Type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.jsx:14 msgid "Create new credential type" msgstr "" -#: src/screens/Inventory/Inventories.jsx:79 -#: src/screens/Inventory/Inventories.jsx:97 +#: screens/Inventory/Inventories.jsx:77 +#: screens/Inventory/Inventories.jsx:95 msgid "Create new group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:64 -#: src/screens/Inventory/Inventories.jsx:91 +#: screens/Inventory/Inventories.jsx:64 +#: screens/Inventory/Inventories.jsx:89 msgid "Create new host" msgstr "" -#: src/screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.jsx:17 msgid "Create new inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.jsx:18 msgid "Create new smart inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:101 +#: screens/Inventory/Inventories.jsx:99 msgid "Create new source" msgstr "" -#: src/screens/User/Users.jsx:36 +#: screens/User/Users.jsx:36 msgid "Create user token" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:93 -#: src/components/Lookup/HostFilterLookup.jsx:349 -#: src/components/PromptDetail/PromptDetail.jsx:133 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:57 -#: src/screens/Host/HostDetail/HostDetail.jsx:93 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:63 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:114 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:324 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:141 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:47 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:271 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: src/screens/User/UserDetail/UserDetail.jsx:82 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: src/screens/User/UserTokenList/UserTokenList.jsx:134 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/HostFilterLookup.jsx:356 +#: components/PromptDetail/PromptDetail.jsx:133 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 +#: screens/Host/HostDetail/HostDetail.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:117 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:355 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:145 +#: screens/Team/TeamDetail/TeamDetail.jsx:47 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:183 +#: screens/User/UserDetail/UserDetail.jsx:82 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 +#: screens/User/UserTokenList/UserTokenList.jsx:134 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 msgid "Created" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:96 -#: src/components/AddRole/AddResourceRole.jsx:148 -#: src/components/AssociateModal/AssociateModal.jsx:142 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:82 -#: src/components/Lookup/CredentialLookup.jsx:153 -#: src/components/Lookup/InventoryLookup.jsx:114 -#: src/components/Lookup/InventoryLookup.jsx:167 -#: src/components/Lookup/MultiCredentialsLookup.jsx:181 -#: src/components/Lookup/OrganizationLookup.jsx:109 -#: src/components/Lookup/ProjectLookup.jsx:129 -#: src/components/NotificationList/NotificationList.jsx:206 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: src/components/TemplateList/TemplateList.jsx:205 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 -#: src/screens/Credential/CredentialList/CredentialList.jsx:141 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:163 -#: src/screens/Host/HostList/HostList.jsx:156 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:176 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:142 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: src/screens/Project/ProjectList/ProjectList.jsx:161 -#: src/screens/Team/TeamList/TeamList.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: components/AdHocCommands/AdHocCredentialStep.jsx:96 +#: components/AddRole/AddResourceRole.jsx:159 +#: components/AssociateModal/AssociateModal.jsx:144 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:179 +#: components/LaunchPrompt/steps/InventoryStep.jsx:91 +#: components/Lookup/CredentialLookup.jsx:153 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:167 +#: components/Lookup/MultiCredentialsLookup.jsx:181 +#: components/Lookup/OrganizationLookup.jsx:111 +#: components/Lookup/ProjectLookup.jsx:129 +#: components/NotificationList/NotificationList.jsx:206 +#: components/Schedule/ScheduleList/ScheduleList.jsx:201 +#: components/TemplateList/TemplateList.jsx:210 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: 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:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 +#: screens/Inventory/InventoryList/InventoryList.jsx:182 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 +#: screens/Organization/OrganizationList/OrganizationList.jsx:146 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 +#: screens/Project/ProjectList/ProjectList.jsx:166 +#: 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:105 msgid "Created By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:146 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:109 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:53 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:110 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: util/getRelatedResourceDeleteDetails.js:191 msgid "Credential" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:96 +#: util/getRelatedResourceDeleteDetails.js:81 +msgid "Credential Input Sources" +msgstr "" + +#: components/Lookup/InstanceGroupsLookup.jsx:96 msgid "Credential Name" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:214 -#: src/screens/Credential/shared/CredentialForm.jsx:148 -#: src/screens/Credential/shared/CredentialForm.jsx:152 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:229 +#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:152 msgid "Credential Type" msgstr "" -#: src/routeConfig.js:117 -#: src/screens/ActivityStream/ActivityStream.jsx:189 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:118 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:164 -#: src/screens/CredentialType/CredentialTypes.jsx:13 -#: src/screens/CredentialType/CredentialTypes.jsx:23 +#: routeConfig.js:118 +#: screens/ActivityStream/ActivityStream.jsx:189 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/CredentialType/CredentialTypes.jsx:13 +#: screens/CredentialType/CredentialTypes.jsx:23 msgid "Credential Types" msgstr "" -#: src/screens/Credential/Credential.jsx:79 +#: screens/Credential/Credential.jsx:79 msgid "Credential not found." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 msgid "Credential passwords" msgstr "" #: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60 -msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgstr "" + +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:75 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:136 +msgid "Credential to authenticate with a protected container registry." +msgstr "" + +#: screens/CredentialType/CredentialType.jsx:75 msgid "Credential type not found." msgstr "" -#: src/components/JobList/JobListItem.jsx:123 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:162 -#: src/components/LaunchPrompt/steps/useCredentialsStep.jsx:31 -#: src/components/Lookup/MultiCredentialsLookup.jsx:126 -#: src/components/Lookup/MultiCredentialsLookup.jsx:198 -#: src/components/PromptDetail/PromptDetail.jsx:163 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:178 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 -#: src/components/TemplateList/TemplateListItem.jsx:207 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: src/routeConfig.js:70 -#: src/screens/ActivityStream/ActivityStream.jsx:164 -#: src/screens/Credential/CredentialList/CredentialList.jsx:182 -#: src/screens/Credential/Credentials.jsx:13 -#: src/screens/Credential/Credentials.jsx:24 -#: src/screens/Job/JobDetail/JobDetail.jsx:262 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:283 -#: src/screens/Template/shared/JobTemplateForm.jsx:321 +#: components/JobList/JobListItem.jsx:124 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:196 +#: components/LaunchPrompt/steps/useCredentialsStep.jsx:65 +#: components/Lookup/MultiCredentialsLookup.jsx:126 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/PromptDetail/PromptDetail.jsx:163 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:184 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 +#: components/TemplateList/TemplateListItem.jsx:235 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 +#: routeConfig.js:71 +#: screens/ActivityStream/ActivityStream.jsx:164 +#: screens/Credential/CredentialList/CredentialList.jsx:176 +#: screens/Credential/Credentials.jsx:13 +#: screens/Credential/Credentials.jsx:24 +#: screens/Job/JobDetail/JobDetail.jsx:293 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293 +#: screens/Template/shared/JobTemplateForm.jsx:351 +#: util/getRelatedResourceDeleteDetails.js:98 msgid "Credentials" msgstr "" -#: src/components/Pagination/Pagination.jsx:36 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:58 +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:34 msgid "Current page" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:88 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:86 msgid "Custom pod spec" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 +#: components/TemplateList/TemplateListItem.jsx:145 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93 +#: screens/Project/ProjectList/ProjectListItem.jsx:109 +msgid "Custom virtual environment {0} must be replaced by an execution environment." +msgstr "" + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:54 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 msgid "Customize messages…" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:72 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:73 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:70 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:71 msgid "Customize pod specification" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:125 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:314 msgid "DELETED" msgstr "" -#: src/routeConfig.js:34 -#: src/screens/Dashboard/Dashboard.jsx:122 +#: routeConfig.js:35 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Dashboard" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:144 +#: screens/ActivityStream/ActivityStream.jsx:144 msgid "Dashboard (all activity)" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 msgid "Data retention period" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:353 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:457 -#: src/components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/ScheduleForm.jsx:165 msgid "Day" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 -#: src/components/Schedule/shared/ScheduleForm.jsx:176 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 +#: components/Schedule/shared/ScheduleForm.jsx:176 msgid "Days of Data to Keep" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: screens/Job/JobOutput/JobOutput.jsx:663 +msgid "Debug" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 msgid "December" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: src/screens/Template/Survey/SurveyListItem.jsx:119 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 +#: screens/Template/Survey/SurveyListItem.jsx:121 msgid "Default" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:193 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:201 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:208 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:234 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +msgid "Default Execution Environment" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.jsx:201 +#: screens/Template/Survey/SurveyQuestionForm.jsx:208 +#: screens/Template/Survey/SurveyQuestionForm.jsx:234 msgid "Default answer" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:85 +#: screens/Template/Survey/SurveyQuestionForm.jsx:85 msgid "Default choice must be answered from the choices listed." msgstr "" -#: src/screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.jsx:106 msgid "Define system-level features and functions" msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:22 -#: src/components/DeleteButton/DeleteButton.jsx:26 -#: src/components/DeleteButton/DeleteButton.jsx:37 -#: src/components/DeleteButton/DeleteButton.jsx:41 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:108 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:130 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:137 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:141 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:159 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:37 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:410 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:130 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:261 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:129 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:168 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:70 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:73 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:82 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:103 -#: src/screens/Job/JobDetail/JobDetail.jsx:374 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:368 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:158 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:171 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:72 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:393 -#: src/screens/Template/Survey/SurveyList.jsx:106 -#: src/screens/Template/Survey/SurveyToolbar.jsx:72 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 -#: src/screens/User/UserDetail/UserDetail.jsx:103 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:216 +#: components/DeleteButton/DeleteButton.jsx:76 +#: components/DeleteButton/DeleteButton.jsx:81 +#: components/DeleteButton/DeleteButton.jsx:90 +#: components/DeleteButton/DeleteButton.jsx:94 +#: components/DeleteButton/DeleteButton.jsx:114 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:287 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:140 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:74 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:101 +#: screens/Job/JobDetail/JobDetail.jsx:427 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:369 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:180 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Team/TeamDetail/TeamDetail.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:414 +#: screens/Template/Survey/SurveyList.jsx:107 +#: screens/Template/Survey/SurveyToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:254 +#: screens/User/UserDetail/UserDetail.jsx:104 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 msgid "Delete" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:129 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:128 msgid "Delete All Groups and Hosts" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:257 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:279 msgid "Delete Credential" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 -msgid "Delete Group?" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131 +msgid "Delete Execution Environment" msgstr "" +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 +#~ msgid "Delete Group?" +#~ msgstr "" + #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91 -msgid "Delete Groups?" -msgstr "" +#~ msgid "Delete Groups?" +#~ msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:122 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:112 +#: screens/Host/HostDetail/HostDetail.jsx:123 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113 msgid "Delete Host" msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 msgid "Delete Inventory" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:371 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:186 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:189 +#: screens/Job/JobDetail/JobDetail.jsx:423 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:201 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:205 msgid "Delete Job" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 msgid "Delete Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:364 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:365 msgid "Delete Notification" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:154 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 msgid "Delete Organization" msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:172 msgid "Delete Project" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Delete Schedule" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:68 +#: screens/Team/TeamDetail/TeamDetail.jsx:69 msgid "Delete Team" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:99 +#: screens/User/UserDetail/UserDetail.jsx:100 msgid "Delete User" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 msgid "Delete User Token" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:212 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 msgid "Delete Workflow Approval" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:246 msgid "Delete Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 msgid "Delete all nodes" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 msgid "Delete application" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:82 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 msgid "Delete credential type" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:232 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:244 msgid "Delete error" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:100 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:141 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 msgid "Delete instance group" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288 msgid "Delete inventory source" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:39 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: components/PromptDetail/PromptProjectDetail.jsx:40 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:68 msgid "Delete on Update" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:164 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 msgid "Delete smart inventory" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 -msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +msgid "" +"Delete the local repository in its entirety prior to\n" +"performing an update. Depending on the size of the\n" +"repository this may significantly increase the amount\n" +"of time required to complete an update." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 msgid "Delete this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:227 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:233 msgid "Delete this node" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:113 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162 msgid "Delete {pluralizedItemName}?" msgstr "" -#: src/components/DetailList/DeletedDetail.jsx:15 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 +#: components/DetailList/DeletedDetail.jsx:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 msgid "Deleted" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:259 -#: src/screens/Credential/CredentialList/CredentialList.jsx:190 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:245 -#: src/screens/Project/ProjectList/ProjectList.jsx:223 +#: components/TemplateList/TemplateList.jsx:269 +#: screens/Credential/CredentialList/CredentialList.jsx:189 +#: screens/Inventory/InventoryList/InventoryList.jsx:255 +#: screens/Project/ProjectList/ProjectList.jsx:233 msgid "Deletion Error" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:195 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:252 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259 msgid "Deletion error" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 msgid "Denied" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 msgid "Denied by {0} - {1}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:198 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:203 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:59 msgid "Deny" msgstr "" -#: src/components/HostForm/HostForm.jsx:95 -#: src/components/Lookup/ApplicationLookup.jsx:83 -#: src/components/Lookup/ApplicationLookup.jsx:101 -#: src/components/NotificationList/NotificationList.jsx:186 -#: src/components/PromptDetail/PromptDetail.jsx:110 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: src/components/Schedule/shared/ScheduleForm.jsx:110 -#: src/components/TemplateList/TemplateList.jsx:189 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:126 -#: src/screens/Application/shared/ApplicationForm.jsx:62 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:198 -#: src/screens/Credential/CredentialList/CredentialList.jsx:137 -#: src/screens/Credential/shared/CredentialForm.jsx:126 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:45 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:128 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: src/screens/Host/HostDetail/HostDetail.jsx:81 -#: src/screens/Host/HostList/HostList.jsx:152 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:73 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:172 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:191 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: src/screens/Inventory/shared/InventoryForm.jsx:55 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:49 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:110 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:61 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:126 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:89 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:138 -#: src/screens/Organization/shared/OrganizationForm.jsx:60 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:86 -#: src/screens/Project/ProjectList/ProjectList.jsx:138 -#: src/screens/Project/shared/ProjectForm.jsx:168 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:38 -#: src/screens/Team/TeamList/TeamList.jsx:134 -#: src/screens/Team/shared/TeamForm.jsx:43 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:168 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:124 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:109 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:133 -#: src/screens/Template/shared/JobTemplateForm.jsx:208 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:107 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:48 -#: src/screens/User/UserTokenList/UserTokenList.jsx:116 -#: src/screens/User/shared/UserTokenForm.jsx:59 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 +#: screens/Job/JobOutput/JobOutput.jsx:665 +msgid "Deprecated" +msgstr "" + +#: components/HostForm/HostForm.jsx:95 +#: components/Lookup/ApplicationLookup.jsx:83 +#: components/Lookup/ApplicationLookup.jsx:101 +#: components/NotificationList/NotificationList.jsx:186 +#: components/PromptDetail/PromptDetail.jsx:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 +#: components/Schedule/ScheduleList/ScheduleList.jsx:197 +#: components/Schedule/shared/ScheduleForm.jsx:110 +#: components/TemplateList/TemplateList.jsx:194 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/shared/ApplicationForm.jsx:62 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211 +#: screens/Credential/CredentialList/CredentialList.jsx:129 +#: screens/Credential/shared/CredentialForm.jsx:126 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/Host/HostDetail/HostDetail.jsx:81 +#: screens/Host/HostList/HostList.jsx:152 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 +#: screens/Inventory/InventoryList/InventoryList.jsx:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 +#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryGroupForm.jsx:49 +#: screens/Inventory/shared/InventorySourceForm.jsx:113 +#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 +#: screens/Organization/OrganizationList/OrganizationList.jsx:142 +#: screens/Organization/shared/OrganizationForm.jsx:68 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 +#: screens/Project/ProjectList/ProjectList.jsx:143 +#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Team/TeamDetail/TeamDetail.jsx:38 +#: screens/Team/TeamList/TeamList.jsx:134 +#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 +#: screens/Template/Survey/SurveyQuestionForm.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:163 +#: screens/Template/shared/JobTemplateForm.jsx:215 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:118 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 +#: screens/User/UserTokenList/UserTokenList.jsx:116 +#: screens/User/shared/UserTokenForm.jsx:59 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 msgid "Description" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 msgid "Destination Channels" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 msgid "Destination Channels or Users" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 msgid "Destination SMS Number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 msgid "Destination SMS number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 msgid "Destination channels" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 msgid "Destination channels or users" msgstr "" -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 msgid "Detail coming soon :)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:60 -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:70 -#: src/components/ErrorDetail/ErrorDetail.jsx:73 -#: src/components/Schedule/Schedule.jsx:67 -#: src/screens/Application/Application/Application.jsx:77 -#: src/screens/Application/Applications.jsx:39 -#: src/screens/Credential/Credential.jsx:58 -#: src/screens/Credential/Credentials.jsx:28 -#: src/screens/CredentialType/CredentialType.jsx:62 -#: src/screens/CredentialType/CredentialTypes.jsx:29 -#: src/screens/Host/Host.jsx:52 -#: src/screens/Host/Hosts.jsx:29 -#: src/screens/InstanceGroup/ContainerGroup.jsx:63 -#: src/screens/InstanceGroup/InstanceGroup.jsx:64 -#: src/screens/InstanceGroup/InstanceGroups.jsx:33 -#: src/screens/InstanceGroup/InstanceGroups.jsx:42 -#: src/screens/Inventory/Inventories.jsx:60 -#: src/screens/Inventory/Inventories.jsx:104 -#: src/screens/Inventory/Inventory.jsx:62 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:88 -#: src/screens/Inventory/SmartInventory.jsx:69 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: src/screens/Job/Job.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:113 -#: src/screens/Job/Jobs.jsx:29 -#: src/screens/ManagementJob/ManagementJobs.jsx:29 -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:27 -#: src/screens/Organization/Organization.jsx:122 -#: src/screens/Organization/Organizations.jsx:31 -#: src/screens/Project/Project.jsx:105 -#: src/screens/Project/Projects.jsx:29 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: src/screens/Setting/Settings.jsx:45 -#: src/screens/Setting/Settings.jsx:48 -#: src/screens/Setting/Settings.jsx:52 -#: src/screens/Setting/Settings.jsx:55 -#: src/screens/Setting/Settings.jsx:58 -#: src/screens/Setting/Settings.jsx:61 -#: src/screens/Setting/Settings.jsx:66 -#: src/screens/Setting/Settings.jsx:69 -#: src/screens/Setting/Settings.jsx:72 -#: src/screens/Setting/Settings.jsx:75 -#: src/screens/Setting/Settings.jsx:84 -#: src/screens/Setting/Settings.jsx:85 -#: src/screens/Setting/Settings.jsx:86 -#: src/screens/Setting/Settings.jsx:87 -#: src/screens/Setting/Settings.jsx:88 -#: src/screens/Setting/Settings.jsx:89 -#: src/screens/Setting/Settings.jsx:98 -#: src/screens/Setting/Settings.jsx:101 -#: src/screens/Setting/Settings.jsx:104 -#: src/screens/Setting/Settings.jsx:107 -#: src/screens/Setting/Settings.jsx:110 -#: src/screens/Setting/Settings.jsx:113 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:55 -#: src/screens/Team/Team.jsx:55 -#: src/screens/Team/Teams.jsx:29 -#: src/screens/Template/Template.jsx:131 -#: src/screens/Template/Templates.jsx:44 -#: src/screens/Template/WorkflowJobTemplate.jsx:121 -#: src/screens/User/User.jsx:63 -#: src/screens/User/UserToken/UserToken.jsx:54 -#: src/screens/User/Users.jsx:31 -#: src/screens/User/Users.jsx:41 -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:21 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:60 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:70 +#: components/ErrorDetail/ErrorDetail.jsx:73 +#: components/Schedule/Schedule.jsx:68 +#: screens/Application/Application/Application.jsx:77 +#: screens/Application/Applications.jsx:39 +#: screens/Credential/Credential.jsx:58 +#: screens/Credential/Credentials.jsx:28 +#: screens/CredentialType/CredentialType.jsx:62 +#: screens/CredentialType/CredentialTypes.jsx:29 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:30 +#: screens/Host/Host.jsx:52 +#: screens/Host/Hosts.jsx:29 +#: screens/InstanceGroup/ContainerGroup.jsx:63 +#: screens/InstanceGroup/InstanceGroup.jsx:64 +#: screens/InstanceGroup/InstanceGroups.jsx:33 +#: screens/InstanceGroup/InstanceGroups.jsx:42 +#: screens/Inventory/Inventories.jsx:60 +#: screens/Inventory/Inventories.jsx:102 +#: screens/Inventory/Inventory.jsx:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 +#: screens/Inventory/InventorySource/InventorySource.jsx:88 +#: screens/Inventory/SmartInventory.jsx:69 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 +#: screens/Job/Job.jsx:103 +#: screens/Job/JobOutput/HostEventModal.jsx:113 +#: screens/Job/Jobs.jsx:29 +#: screens/ManagementJob/ManagementJobs.jsx:29 +#: screens/NotificationTemplate/NotificationTemplate.jsx:83 +#: screens/NotificationTemplate/NotificationTemplates.jsx:27 +#: screens/Organization/Organization.jsx:123 +#: screens/Organization/Organizations.jsx:31 +#: screens/Project/Project.jsx:105 +#: screens/Project/Projects.jsx:29 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:115 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 +#: screens/Setting/Settings.jsx:45 +#: screens/Setting/Settings.jsx:48 +#: screens/Setting/Settings.jsx:52 +#: screens/Setting/Settings.jsx:55 +#: screens/Setting/Settings.jsx:58 +#: screens/Setting/Settings.jsx:61 +#: screens/Setting/Settings.jsx:66 +#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.jsx:72 +#: screens/Setting/Settings.jsx:75 +#: screens/Setting/Settings.jsx:84 +#: screens/Setting/Settings.jsx:85 +#: screens/Setting/Settings.jsx:86 +#: screens/Setting/Settings.jsx:87 +#: screens/Setting/Settings.jsx:88 +#: screens/Setting/Settings.jsx:89 +#: screens/Setting/Settings.jsx:98 +#: screens/Setting/Settings.jsx:101 +#: screens/Setting/Settings.jsx:104 +#: screens/Setting/Settings.jsx:107 +#: 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/Team/Team.jsx:55 +#: screens/Team/Teams.jsx:29 +#: screens/Template/Template.jsx:144 +#: screens/Template/Templates.jsx:44 +#: screens/Template/WorkflowJobTemplate.jsx:121 +#: screens/User/User.jsx:63 +#: screens/User/UserToken/UserToken.jsx:54 +#: screens/User/Users.jsx:31 +#: screens/User/Users.jsx:41 +#: screens/WorkflowApproval/WorkflowApproval.jsx:76 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.jsx:111 msgid "Details tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 msgid "Disable SSL Verification" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 msgid "Disable SSL verification" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:60 -#: src/components/DisassociateButton/DisassociateButton.jsx:87 -#: src/components/DisassociateButton/DisassociateButton.jsx:94 -#: src/components/DisassociateButton/DisassociateButton.jsx:98 -#: src/components/DisassociateButton/DisassociateButton.jsx:117 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:204 -#: src/screens/User/UserRoles/UserRolesList.jsx:204 +#: components/DisassociateButton/DisassociateButton.jsx:60 +#: components/DisassociateButton/DisassociateButton.jsx:87 +#: components/DisassociateButton/DisassociateButton.jsx:95 +#: components/DisassociateButton/DisassociateButton.jsx:99 +#: components/DisassociateButton/DisassociateButton.jsx:119 +#: screens/Team/TeamRoles/TeamRolesList.jsx:205 +#: screens/User/UserRoles/UserRolesList.jsx:205 msgid "Disassociate" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:211 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 +#: screens/Host/HostGroups/HostGroupsList.jsx:211 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 msgid "Disassociate group from host?" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 msgid "Disassociate host from group?" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:191 +#: screens/InstanceGroup/Instances/InstanceList.jsx:191 msgid "Disassociate instance from instance group?" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 msgid "Disassociate related group(s)?" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:212 +#: screens/User/UserTeams/UserTeamList.jsx:212 msgid "Disassociate related team(s)?" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:192 -#: src/screens/User/UserRoles/UserRolesList.jsx:192 +#: screens/Team/TeamRoles/TeamRolesList.jsx:192 +#: screens/User/UserRoles/UserRolesList.jsx:192 msgid "Disassociate role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:195 -#: src/screens/User/UserRoles/UserRolesList.jsx:195 +#: screens/Team/TeamRoles/TeamRolesList.jsx:195 +#: screens/User/UserRoles/UserRolesList.jsx:195 msgid "Disassociate role!" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:19 +#: components/DisassociateButton/DisassociateButton.jsx:19 msgid "Disassociate?" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:429 -msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#: screens/Template/shared/JobTemplateForm.jsx:459 +msgid "" +"Divide the work done by this job template\n" +"into the specified number of job slices, each running the\n" +"same tasks against a portion of the inventory." msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:161 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:163 +#: src/screens/Template/shared/JobTemplateForm.jsx:429 +#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#~ msgstr "" + +#: components/CodeEditor/VariablesDetail.jsx:114 +#: components/CodeEditor/VariablesDetail.jsx:120 +#: components/CodeEditor/VariablesField.jsx:63 +#: components/CodeEditor/VariablesField.jsx:69 +msgid "Done" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:172 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:177 msgid "Download Output" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 msgid "E-mail" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 msgid "E-mail options" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:220 +#: screens/Template/Survey/SurveyQuestionForm.jsx:220 msgid "Each answer choice must be on a separate line." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175 +msgid "" +"Each time a job runs using this inventory,\n" +"refresh the inventory from the selected source before\n" +"executing job tasks." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168 -msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 +msgid "" +"Each time a job runs using this project, update the\n" +"revision of the project prior to starting the job." msgstr "" #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 -msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." -msgstr "" +#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." +#~ msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:400 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:117 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:119 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:251 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:75 -#: src/screens/Host/HostDetail/HostDetail.jsx:116 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:120 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:67 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:106 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:158 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:355 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:357 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:125 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:143 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:147 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:158 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:87 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:79 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:142 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:79 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:96 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:160 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:14 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:100 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:141 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:79 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:80 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:99 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:57 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:61 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:373 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:207 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:207 -#: src/screens/User/UserDetail/UserDetail.jsx:92 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125 +#: screens/Host/HostDetail/HostDetail.jsx:117 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:137 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:163 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:15 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:150 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Team/TeamDetail/TeamDetail.jsx:58 +#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 +#: screens/User/UserDetail/UserDetail.jsx:93 msgid "Edit" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:67 +#: screens/Credential/CredentialList/CredentialListItem.jsx:64 +#: screens/Credential/CredentialList/CredentialListItem.jsx:68 msgid "Edit Credential" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:38 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:43 msgid "Edit Credential Plugin Configuration" msgstr "" -#: src/screens/Application/Applications.jsx:38 -#: src/screens/Credential/Credentials.jsx:27 -#: src/screens/Host/Hosts.jsx:28 -#: src/screens/ManagementJob/ManagementJobs.jsx:32 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:26 -#: src/screens/Organization/Organizations.jsx:30 -#: src/screens/Project/Projects.jsx:28 -#: src/screens/Project/Projects.jsx:40 -#: src/screens/Setting/Settings.jsx:46 -#: src/screens/Setting/Settings.jsx:49 -#: src/screens/Setting/Settings.jsx:53 -#: src/screens/Setting/Settings.jsx:56 -#: src/screens/Setting/Settings.jsx:59 -#: src/screens/Setting/Settings.jsx:62 -#: src/screens/Setting/Settings.jsx:67 -#: src/screens/Setting/Settings.jsx:70 -#: src/screens/Setting/Settings.jsx:73 -#: src/screens/Setting/Settings.jsx:76 -#: src/screens/Setting/Settings.jsx:90 -#: src/screens/Setting/Settings.jsx:91 -#: src/screens/Setting/Settings.jsx:92 -#: src/screens/Setting/Settings.jsx:93 -#: src/screens/Setting/Settings.jsx:94 -#: src/screens/Setting/Settings.jsx:95 -#: src/screens/Setting/Settings.jsx:99 -#: src/screens/Setting/Settings.jsx:102 -#: src/screens/Setting/Settings.jsx:105 -#: src/screens/Setting/Settings.jsx:108 -#: src/screens/Setting/Settings.jsx:111 -#: src/screens/Setting/Settings.jsx:114 -#: src/screens/Team/Teams.jsx:28 -#: src/screens/Template/Templates.jsx:45 -#: src/screens/User/Users.jsx:30 +#: screens/Application/Applications.jsx:38 +#: screens/Credential/Credentials.jsx:27 +#: screens/Host/Hosts.jsx:28 +#: screens/ManagementJob/ManagementJobs.jsx:32 +#: screens/NotificationTemplate/NotificationTemplates.jsx:26 +#: screens/Organization/Organizations.jsx:30 +#: screens/Project/Projects.jsx:28 +#: screens/Project/Projects.jsx:40 +#: screens/Setting/Settings.jsx:46 +#: screens/Setting/Settings.jsx:49 +#: screens/Setting/Settings.jsx:53 +#: screens/Setting/Settings.jsx:56 +#: screens/Setting/Settings.jsx:59 +#: screens/Setting/Settings.jsx:62 +#: screens/Setting/Settings.jsx:67 +#: screens/Setting/Settings.jsx:70 +#: screens/Setting/Settings.jsx:73 +#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.jsx:90 +#: screens/Setting/Settings.jsx:91 +#: screens/Setting/Settings.jsx:92 +#: screens/Setting/Settings.jsx:93 +#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.jsx:95 +#: screens/Setting/Settings.jsx:99 +#: screens/Setting/Settings.jsx:102 +#: screens/Setting/Settings.jsx:105 +#: screens/Setting/Settings.jsx:108 +#: screens/Setting/Settings.jsx:111 +#: screens/Setting/Settings.jsx:114 +#: screens/Team/Teams.jsx:28 +#: screens/Template/Templates.jsx:45 +#: screens/User/Users.jsx:30 msgid "Edit Details" msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:50 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:58 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:85 +msgid "Edit Execution Environment" +msgstr "" + +#: screens/Host/HostGroups/HostGroupItem.jsx:50 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:59 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:67 msgid "Edit Group" msgstr "" -#: src/screens/Host/HostList/HostListItem.jsx:52 -#: src/screens/Host/HostList/HostListItem.jsx:55 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 +#: screens/Host/HostList/HostListItem.jsx:52 +#: screens/Host/HostList/HostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:78 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 msgid "Edit Host" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:115 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:119 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:115 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:120 msgid "Edit Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 msgid "Edit Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:204 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 msgid "Edit Node" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:137 msgid "Edit Notification Template" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:47 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:50 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:74 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:78 msgid "Edit Organization" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:134 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:138 +#: screens/Project/ProjectList/ProjectListItem.jsx:161 +#: screens/Project/ProjectList/ProjectListItem.jsx:166 msgid "Edit Project" msgstr "" -#: src/screens/Template/Templates.jsx:51 +#: screens/Template/Templates.jsx:51 msgid "Edit Question" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:116 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: src/screens/Template/Templates.jsx:58 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:116 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:120 +#: screens/Template/Templates.jsx:58 msgid "Edit Schedule" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:98 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:126 msgid "Edit Source" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:42 -#: src/screens/Team/TeamList/TeamListItem.jsx:57 -#: src/screens/Team/TeamList/TeamListItem.jsx:60 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 +#: screens/Team/TeamList/TeamListItem.jsx:57 +#: screens/Team/TeamList/TeamListItem.jsx:61 msgid "Edit Team" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:167 -#: src/components/TemplateList/TemplateListItem.jsx:172 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:109 +#: components/TemplateList/TemplateListItem.jsx:194 +#: components/TemplateList/TemplateListItem.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:133 msgid "Edit Template" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:82 -#: src/screens/User/UserList/UserListItem.jsx:85 +#: screens/User/UserList/UserListItem.jsx:82 +#: screens/User/UserList/UserListItem.jsx:86 msgid "Edit User" msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:50 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:50 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:54 msgid "Edit application" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:44 msgid "Edit credential type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:27 -#: src/screens/InstanceGroup/InstanceGroups.jsx:38 -#: src/screens/InstanceGroup/InstanceGroups.jsx:48 -#: src/screens/Inventory/Inventories.jsx:61 -#: src/screens/Inventory/Inventories.jsx:67 -#: src/screens/Inventory/Inventories.jsx:82 -#: src/screens/Inventory/Inventories.jsx:107 +#: screens/CredentialType/CredentialTypes.jsx:27 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:27 +#: screens/InstanceGroup/InstanceGroups.jsx:38 +#: screens/InstanceGroup/InstanceGroups.jsx:48 +#: screens/Inventory/Inventories.jsx:61 +#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.jsx:105 msgid "Edit details" msgstr "" -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 msgid "Edit form coming soon :)" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:108 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:109 msgid "Edit instance group" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 msgid "Edit this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:199 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:205 msgid "Edit this node" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:146 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:123 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: components/Workflow/WorkflowNodeHelp.jsx:146 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:130 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 msgid "Elapsed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:122 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:129 msgid "Elapsed Time" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:124 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:131 msgid "Elapsed time that the job ran" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:193 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 -#: src/screens/User/UserDetail/UserDetail.jsx:64 -#: src/screens/User/shared/UserForm.jsx:77 +#: components/NotificationList/NotificationList.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 +#: screens/User/UserDetail/UserDetail.jsx:64 +#: screens/User/shared/UserForm.jsx:77 msgid "Email" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 msgid "Email Options" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:63 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:128 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:265 msgid "Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:557 +#: screens/Template/shared/JobTemplateForm.jsx:587 msgid "Enable Fact Storage" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 msgid "Enable HTTPS certificate verification" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:57 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 msgid "Enable Privilege Escalation" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:531 -#: src/screens/Template/shared/JobTemplateForm.jsx:534 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:216 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:219 +#: screens/Template/shared/JobTemplateForm.jsx:561 +#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 msgid "Enable Webhook" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:223 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Enable Webhook for this workflow job template." msgstr "" -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 msgid "Enable Webhooks" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 msgid "Enable external logging" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 msgid "Enable log system tracking facts individually" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:236 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:239 +#: components/AdHocCommands/AdHocDetailsStep.jsx:236 +#: components/AdHocCommands/AdHocDetailsStep.jsx:239 msgid "Enable privilege escalation" msgstr "" -#: src/screens/Setting/SettingList.jsx:57 +#: screens/Setting/SettingList.jsx:57 msgid "Enable simplified login for your {brandName} applications" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:537 +#: screens/Template/shared/JobTemplateForm.jsx:567 msgid "Enable webhook for this template." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:94 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 +#: components/Lookup/HostFilterLookup.jsx:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 msgid "Enabled" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267 msgid "Enabled Value" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:231 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254 msgid "Enabled Variable" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:517 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#: screens/Template/shared/JobTemplateForm.jsx:547 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact BRAND_NAME\n" +"and request a configuration update using this job\n" +"template." msgstr "" +#: components/AdHocCommands/AdHocDetailsStep.jsx:244 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact {brandName}\n" +"and request a configuration update using this job\n" +"template" +msgstr "" + +#: src/screens/Template/shared/JobTemplateForm.jsx:517 +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#~ msgstr "" + #: src/components/AdHocCommands/AdHocDetailsStep.jsx:244 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" -msgstr "" +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" +#~ msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:149 -#: src/screens/Setting/shared/SettingDetail.jsx:75 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:154 +#: screens/Setting/shared/SettingDetail.jsx:75 msgid "Encrypted" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:504 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 msgid "End" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:562 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 msgid "End date/time" msgstr "" -#: src/components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:96 msgid "End did not match an expected value" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:31 +#: screens/Host/HostList/SmartInventoryButton.jsx:31 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:39 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:39 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:85 +#: screens/Inventory/shared/SmartInventoryForm.jsx:100 +msgid "" +"Enter inventory variables using either JSON or YAML syntax.\n" +"Use the radio button to toggle between the two. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: screens/Inventory/shared/InventoryForm.jsx:85 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "" #: src/screens/Inventory/shared/SmartInventoryForm.jsx:100 -msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." -msgstr "" +#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 msgid "Enter one Annotation Tag per line, without commas." msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +msgid "" +"Enter one IRC channel or username per line. The pound\n" +"symbol (#) for channels, and the at (@) symbol for users, are not\n" +"required." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 -msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +msgid "" +"Enter one Slack channel per line. The pound symbol (#)\n" +"is required for channels." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 -msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +msgid "" +"Enter one email address per line to create a recipient\n" +"list for this type of notification." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 -msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +msgid "" +"Enter one phone number per line to specify where to\n" +"route SMS messages." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 -msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +msgid "" +"Enter the number associated with the \"Messaging\n" +"Service\" in Twilio in the format +18005550199." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 -msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." -msgstr "" +#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." +#~ msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:37 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "" #: src/screens/Job/JobDetail/JobDetail.jsx:224 -msgid "Environment" -msgstr "" +#~ msgid "Environment" +#~ msgstr "" -#: src/components/JobList/JobList.jsx:227 -#: src/components/Workflow/WorkflowNodeHelp.jsx:92 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:198 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:255 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/JobList/JobList.jsx:205 +#: components/Workflow/WorkflowNodeHelp.jsx:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:161 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262 +#: screens/Job/JobOutput/JobOutput.jsx:668 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Error" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:431 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:432 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 msgid "Error message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:440 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:441 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 msgid "Error message body" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:98 -#: src/components/AppContainer/AppContainer.jsx:215 -#: src/components/CopyButton/CopyButton.jsx:49 -#: src/components/HostToggle/HostToggle.jsx:73 -#: src/components/InstanceToggle/InstanceToggle.jsx:69 -#: src/components/JobList/JobList.jsx:288 -#: src/components/JobList/JobList.jsx:299 -#: src/components/LaunchButton/LaunchButton.jsx:150 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:66 -#: src/components/NotificationList/NotificationList.jsx:248 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:234 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:418 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:241 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:77 -#: src/components/TemplateList/TemplateList.jsx:262 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:191 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:269 -#: src/screens/Credential/CredentialList/CredentialList.jsx:193 -#: src/screens/Host/HostDetail/HostDetail.jsx:60 -#: src/screens/Host/HostDetail/HostDetail.jsx:131 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:243 -#: src/screens/Host/HostList/HostList.jsx:222 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:232 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:83 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:121 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:246 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:289 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:235 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:84 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:95 -#: src/screens/Login/Login.jsx:270 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:376 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:206 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:199 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:180 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: src/screens/Project/ProjectList/ProjectList.jsx:224 -#: src/screens/Project/shared/ProjectSyncButton.jsx:40 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:80 -#: src/screens/Team/TeamList/TeamList.jsx:205 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:229 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:402 -#: src/screens/Template/TemplateSurvey.jsx:126 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:164 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:179 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:291 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:586 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:293 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:304 -#: src/screens/User/UserDetail/UserDetail.jsx:111 -#: src/screens/User/UserList/UserList.jsx:197 -#: src/screens/User/UserRoles/UserRolesList.jsx:229 -#: src/screens/User/UserTeams/UserTeamList.jsx:257 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:89 -#: src/screens/User/UserTokenList/UserTokenList.jsx:191 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:235 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:246 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:596 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:598 +msgid "Error saving the workflow!" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:98 +#: components/AppContainer/AppContainer.jsx:214 +#: components/CopyButton/CopyButton.jsx:51 +#: components/DeleteButton/DeleteButton.jsx:57 +#: components/HostToggle/HostToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:69 +#: components/JobList/JobList.jsx:266 +#: components/JobList/JobList.jsx:277 +#: components/LaunchButton/LaunchButton.jsx:162 +#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/NotificationList/NotificationList.jsx:248 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204 +#: components/ResourceAccessList/ResourceAccessList.jsx:236 +#: components/ResourceAccessList/ResourceAccessList.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419 +#: components/Schedule/ScheduleList/ScheduleList.jsx:241 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 +#: components/Schedule/shared/SchedulePromptableFields.jsx:77 +#: components/TemplateList/TemplateList.jsx:272 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:139 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialList/CredentialList.jsx:192 +#: screens/Host/HostDetail/HostDetail.jsx:60 +#: screens/Host/HostDetail/HostDetail.jsx:132 +#: screens/Host/HostGroups/HostGroupsList.jsx:243 +#: screens/Host/HostList/HostList.jsx:222 +#: screens/InstanceGroup/Instances/InstanceList.jsx:232 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:148 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:84 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 +#: screens/Inventory/InventoryList/InventoryList.jsx:256 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:234 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:247 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:97 +#: screens/Login/Login.jsx:184 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:377 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:189 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 +#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/shared/ProjectSyncButton.jsx:41 +#: screens/Team/TeamDetail/TeamDetail.jsx:81 +#: screens/Team/TeamList/TeamList.jsx:205 +#: screens/Team/TeamRoles/TeamRolesList.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:423 +#: screens/Template/TemplateSurvey.jsx:126 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:331 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:342 +#: screens/User/UserDetail/UserDetail.jsx:112 +#: screens/User/UserList/UserList.jsx:197 +#: screens/User/UserRoles/UserRolesList.jsx:231 +#: screens/User/UserTeams/UserTeamList.jsx:257 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 +#: screens/User/UserTokenList/UserTokenList.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 msgid "Error!" msgstr "" -#: src/components/CodeMirrorInput/VariablesDetail.jsx:115 +#: components/CodeEditor/VariablesDetail.jsx:103 msgid "Error:" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:252 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/ActivityStream/ActivityStream.jsx:258 +#: screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/Job/JobOutput/JobOutput.jsx:635 msgid "Event" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:34 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 msgid "Event detail" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 msgid "Event detail modal" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:564 +#: screens/ActivityStream/ActivityStreamDescription.jsx:564 msgid "Event summary not available" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:221 +#: screens/ActivityStream/ActivityStream.jsx:227 msgid "Events" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.jsx:160 msgid "Exact match (default lookup if not specified)." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 msgid "Example URLs for GIT Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 msgid "Example URLs for Remote Archive Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 msgid "Example URLs for Subversion Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 msgid "Examples include:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 msgid "Execute regardless of the parent node's final state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 msgid "Execute when the parent node results in a failure state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 msgid "Execute when the parent node results in a successful state." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:225 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:135 +msgid "Execution Environment" +msgstr "" + +#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: routeConfig.js:143 +#: screens/ActivityStream/ActivityStream.jsx:210 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/Organization/Organization.jsx:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 +#: screens/Organization/Organizations.jsx:38 +#: util/getRelatedResourceDeleteDetails.js:88 +#: util/getRelatedResourceDeleteDetails.js:212 +msgid "Execution Environments" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:256 msgid "Execution Node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:22 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:25 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:41 +msgid "Execution environment image" +msgstr "" + +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:33 +msgid "Execution environment name" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +msgid "Execution environment not found." +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +msgid "Execution environments" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 msgid "Exit Without Saving" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:50 +#: components/ExpandCollapse/ExpandCollapse.jsx:52 msgid "Expand" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 +#: components/CodeEditor/VariablesDetail.jsx:214 +#: components/CodeEditor/VariablesField.jsx:165 +msgid "Expand input" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:65 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 +#: screens/User/UserTokenList/UserTokenListItem.jsx:65 msgid "Expiration" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:58 -#: src/screens/User/UserTokenList/UserTokenList.jsx:130 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:66 -#: src/screens/User/UserTokens/UserTokens.jsx:90 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 +#: screens/User/UserTokenList/UserTokenList.jsx:130 +#: screens/User/UserTokenList/UserTokenListItem.jsx:66 +#: screens/User/UserTokens/UserTokens.jsx:90 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 msgid "Expires" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 msgid "Expires on {0}" msgstr "" -#: src/components/JobList/JobListItem.jsx:167 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.jsx:168 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 msgid "Explanation" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:112 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:116 msgid "External Secret Management System" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:309 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:310 +#: components/AdHocCommands/AdHocDetailsStep.jsx:309 +#: components/AdHocCommands/AdHocDetailsStep.jsx:310 msgid "Extra variables" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:35 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:61 +#: components/Sparkline/Sparkline.jsx:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49 +#: screens/Project/ProjectList/ProjectListItem.jsx:69 msgid "FINISHED:" msgstr "" -#: src/screens/Host/Host.jsx:57 -#: src/screens/Host/HostFacts/HostFacts.jsx:39 -#: src/screens/Host/Hosts.jsx:30 -#: src/screens/Inventory/Inventories.jsx:75 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Host/Host.jsx:57 +#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/Hosts.jsx:30 +#: screens/Inventory/Inventories.jsx:73 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 msgid "Facts" msgstr "" -#: src/components/JobList/JobList.jsx:226 -#: src/components/Workflow/WorkflowNodeHelp.jsx:89 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:111 +#: components/JobList/JobList.jsx:204 +#: components/Workflow/WorkflowNodeHelp.jsx:89 +#: screens/Dashboard/shared/ChartTooltip.jsx:66 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:118 msgid "Failed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:110 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:117 msgid "Failed Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:112 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:119 msgid "Failed Hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:50 -#: src/screens/Dashboard/Dashboard.jsx:135 +#: components/LaunchButton/ReLaunchDropDown.jsx:50 +#: screens/Dashboard/Dashboard.jsx:135 msgid "Failed hosts" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 msgid "Failed to approve one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:238 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 msgid "Failed to approve workflow approval." msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:240 +msgid "Failed to assign roles properly" +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 msgid "Failed to associate role" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:247 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:236 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 -#: src/screens/User/UserTeams/UserTeamList.jsx:261 +#: screens/Host/HostGroups/HostGroupsList.jsx:247 +#: screens/InstanceGroup/Instances/InstanceList.jsx:236 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 +#: screens/User/UserTeams/UserTeamList.jsx:261 msgid "Failed to associate." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:98 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:100 msgid "Failed to cancel inventory source sync." msgstr "" -#: src/components/JobList/JobList.jsx:302 +#: components/JobList/JobList.jsx:280 msgid "Failed to cancel one or more jobs." msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:84 +#: screens/Credential/CredentialList/CredentialListItem.jsx:85 msgid "Failed to copy credential." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:103 +msgid "Failed to copy execution environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:143 msgid "Failed to copy inventory." msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/ProjectList/ProjectListItem.jsx:183 msgid "Failed to copy project." msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:186 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:145 +#: components/TemplateList/TemplateListItem.jsx:214 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:155 msgid "Failed to copy template." msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:141 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:142 msgid "Failed to delete application." msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:298 msgid "Failed to delete credential." msgstr "" -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:88 msgid "Failed to delete group {0}." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:134 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:124 +#: screens/Host/HostDetail/HostDetail.jsx:135 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:125 msgid "Failed to delete host." msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:293 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306 msgid "Failed to delete inventory source {name}." msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:141 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:151 msgid "Failed to delete inventory." msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:426 msgid "Failed to delete job template." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:380 msgid "Failed to delete notification." msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 msgid "Failed to delete one or more applications." msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:201 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 msgid "Failed to delete one or more credential types." msgstr "" -#: src/screens/Credential/CredentialList/CredentialList.jsx:196 +#: screens/Credential/CredentialList/CredentialList.jsx:195 msgid "Failed to delete one or more credentials." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:152 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 +msgid "Failed to delete one or more execution environments" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:151 msgid "Failed to delete one or more groups." msgstr "" -#: src/screens/Host/HostList/HostList.jsx:225 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 +#: screens/Host/HostList/HostList.jsx:225 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 msgid "Failed to delete one or more hosts." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:258 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Failed to delete one or more instance groups." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:249 +#: screens/Inventory/InventoryList/InventoryList.jsx:259 msgid "Failed to delete one or more inventories." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:238 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:250 msgid "Failed to delete one or more inventory sources." msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 msgid "Failed to delete one or more job templates." msgstr "" -#: src/components/JobList/JobList.jsx:291 +#: components/JobList/JobList.jsx:269 msgid "Failed to delete one or more jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 msgid "Failed to delete one or more notification template." msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:202 +#: screens/Organization/OrganizationList/OrganizationList.jsx:211 msgid "Failed to delete one or more organizations." msgstr "" -#: src/screens/Project/ProjectList/ProjectList.jsx:227 +#: screens/Project/ProjectList/ProjectList.jsx:237 msgid "Failed to delete one or more projects." msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:244 +#: components/Schedule/ScheduleList/ScheduleList.jsx:244 msgid "Failed to delete one or more schedules." msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:208 msgid "Failed to delete one or more teams." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:265 +#: components/TemplateList/TemplateList.jsx:275 msgid "Failed to delete one or more templates." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 msgid "Failed to delete one or more tokens." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.jsx:194 msgid "Failed to delete one or more user tokens." msgstr "" -#: src/screens/User/UserList/UserList.jsx:200 +#: screens/User/UserList/UserList.jsx:200 msgid "Failed to delete one or more users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 msgid "Failed to delete one or more workflow approval." msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:182 msgid "Failed to delete organization." msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:183 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:192 msgid "Failed to delete project." msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:237 +#: components/ResourceAccessList/ResourceAccessList.jsx:251 msgid "Failed to delete role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:232 -#: src/screens/User/UserRoles/UserRolesList.jsx:232 +#: screens/Team/TeamRoles/TeamRolesList.jsx:234 +#: screens/User/UserRoles/UserRolesList.jsx:234 msgid "Failed to delete role." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:421 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:422 msgid "Failed to delete schedule." msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:180 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:181 msgid "Failed to delete smart inventory." msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:83 +#: screens/Team/TeamDetail/TeamDetail.jsx:84 msgid "Failed to delete team." msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:114 +#: screens/User/UserDetail/UserDetail.jsx:115 msgid "Failed to delete user." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 msgid "Failed to delete workflow approval." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:238 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 msgid "Failed to delete workflow job template." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:63 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.jsx:63 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 msgid "Failed to delete {name}." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Failed to deny one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:249 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 msgid "Failed to deny workflow approval." msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:248 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 +#: screens/Host/HostGroups/HostGroupsList.jsx:248 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 msgid "Failed to disassociate one or more groups." msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 msgid "Failed to disassociate one or more hosts." msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:237 +#: screens/InstanceGroup/Instances/InstanceList.jsx:237 msgid "Failed to disassociate one or more instances." msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:262 +#: screens/User/UserTeams/UserTeamList.jsx:262 msgid "Failed to disassociate one or more teams." msgstr "" -#: src/screens/Login/Login.jsx:274 +#: screens/Login/Login.jsx:189 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:106 -#: src/components/LaunchButton/LaunchButton.jsx:153 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: components/AdHocCommands/AdHocCommands.jsx:106 +#: components/LaunchButton/LaunchButton.jsx:165 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 msgid "Failed to launch job." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:218 +#: components/AppContainer/AppContainer.jsx:217 msgid "Failed to retrieve configuration." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:296 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:334 msgid "Failed to retrieve full node resource object." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:345 msgid "Failed to retrieve node credentials." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:87 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:167 +msgid "Failed to send test notification." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:89 msgid "Failed to sync inventory source." msgstr "" -#: src/screens/Project/shared/ProjectSyncButton.jsx:43 +#: screens/Project/shared/ProjectSyncButton.jsx:44 msgid "Failed to sync project." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:225 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:237 msgid "Failed to sync some or all inventory sources." msgstr "" -#: src/components/HostToggle/HostToggle.jsx:77 +#: components/HostToggle/HostToggle.jsx:77 msgid "Failed to toggle host." msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:73 msgid "Failed to toggle instance." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:252 +#: components/NotificationList/NotificationList.jsx:252 msgid "Failed to toggle notification." msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 msgid "Failed to toggle schedule." msgstr "" -#: src/screens/Template/TemplateSurvey.jsx:129 +#: screens/Template/TemplateSurvey.jsx:129 msgid "Failed to update survey." msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 msgid "Failed to user token." msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:83 -#: src/components/NotificationList/NotificationListItem.jsx:84 +#: components/NotificationList/NotificationListItem.jsx:83 +#: components/NotificationList/NotificationListItem.jsx:84 msgid "Failure" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 msgid "False" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 msgid "February" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:170 +#: components/Search/AdvancedSearch.jsx:171 msgid "Field contains value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:190 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field ends with value." msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:84 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:82 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:200 +#: components/Search/AdvancedSearch.jsx:201 msgid "Field matches the given regular expression." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:180 +#: components/Search/AdvancedSearch.jsx:181 msgid "Field starts with value." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 msgid "Fifth" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 +#: screens/Job/JobOutput/JobOutput.jsx:652 +msgid "File Difference" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 msgid "File upload rejected. Please select a single .json file." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 msgid "File, directory or script" msgstr "" -#: src/components/JobList/JobList.jsx:243 -#: src/components/JobList/JobListItem.jsx:77 +#: components/JobList/JobList.jsx:221 +#: components/JobList/JobListItem.jsx:77 msgid "Finish Time" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:156 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.jsx:157 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 msgid "Finished" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 msgid "First" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:119 -#: src/components/AddRole/AddResourceRole.jsx:133 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:130 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:163 -#: src/screens/User/UserDetail/UserDetail.jsx:65 -#: src/screens/User/UserList/UserList.jsx:123 -#: src/screens/User/UserList/UserList.jsx:166 -#: src/screens/User/UserList/UserListItem.jsx:62 -#: src/screens/User/UserList/UserListItem.jsx:65 -#: src/screens/User/shared/UserForm.jsx:109 +#: components/AddRole/AddResourceRole.jsx:130 +#: components/AddRole/AddResourceRole.jsx:144 +#: components/ResourceAccessList/ResourceAccessList.jsx:132 +#: components/ResourceAccessList/ResourceAccessList.jsx:165 +#: screens/User/UserDetail/UserDetail.jsx:65 +#: screens/User/UserList/UserList.jsx:123 +#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserListItem.jsx:62 +#: screens/User/UserList/UserListItem.jsx:65 +#: screens/User/shared/UserForm.jsx:109 msgid "First Name" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 msgid "First Run" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:248 +#: components/Search/AdvancedSearch.jsx:249 msgid "First, select a key" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:89 +#: components/Workflow/WorkflowTools.jsx:89 msgid "Fit the graph to the available screen size" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:64 +#: screens/Template/Survey/SurveyQuestionForm.jsx:64 msgid "Float" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:223 +msgid "" +"For job templates, select run to execute\n" +"the playbook. Select check to only check playbook syntax,\n" +"test environment setup, and report problems without\n" +"executing the playbook." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 +msgid "" +"For job templates, select run to execute the playbook.\n" +"Select check to only check playbook syntax, test environment setup,\n" +"and report problems without executing the playbook." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 #: src/screens/Template/shared/JobTemplateForm.jsx:216 -msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." -msgstr "" +#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 msgid "For more information, refer to the" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:192 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:193 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:214 -#: src/screens/Template/shared/JobTemplateForm.jsx:374 +#: components/AdHocCommands/AdHocDetailsStep.jsx:192 +#: components/AdHocCommands/AdHocDetailsStep.jsx:193 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:404 msgid "Forks" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:411 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 msgid "Fourth" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:186 +#: components/Schedule/shared/ScheduleForm.jsx:186 msgid "Frequency Details" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:212 -#: src/components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/buildRuleObj.js:69 msgid "Frequency did not match an expected value" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:309 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 msgid "Fri" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:314 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:450 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 msgid "Friday" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:125 -#: src/screens/Organization/shared/OrganizationForm.jsx:105 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 +#: screens/Organization/shared/OrganizationForm.jsx:110 msgid "Galaxy Credentials" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:55 msgid "Galaxy credentials must be owned by an Organization." msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: src/screens/Project/ProjectList/ProjectList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Job/JobOutput/JobOutput.jsx:660 +msgid "Gathering Facts" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:114 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 +#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 msgid "Git" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 -#: src/screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:253 +#: screens/Template/shared/WebhookSubForm.jsx:108 msgid "GitHub" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: src/screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 +#: screens/Setting/Settings.jsx:51 msgid "GitHub Default" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: src/screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 +#: screens/Setting/Settings.jsx:60 msgid "GitHub Enterprise" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: src/screens/Setting/Settings.jsx:64 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 +#: screens/Setting/Settings.jsx:64 msgid "GitHub Enterprise Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: src/screens/Setting/Settings.jsx:68 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 +#: screens/Setting/Settings.jsx:68 msgid "GitHub Enterprise Team" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: src/screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 +#: screens/Setting/Settings.jsx:54 msgid "GitHub Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: src/screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 +#: screens/Setting/Settings.jsx:57 msgid "GitHub Team" msgstr "" -#: src/screens/Setting/SettingList.jsx:66 +#: screens/Setting/SettingList.jsx:66 msgid "GitHub settings" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:244 -#: src/screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 +#: screens/Template/shared/WebhookSubForm.jsx:114 msgid "GitLab" msgstr "" -#: src/components/Pagination/Pagination.jsx:31 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +msgid "Global Default Execution Environment" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:75 +msgid "Globally Available" +msgstr "" + +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: src/components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: src/components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: src/components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 msgid "Google Compute Engine" msgstr "" -#: src/screens/Setting/SettingList.jsx:70 +#: screens/Setting/SettingList.jsx:70 msgid "Google OAuth 2 settings" msgstr "" -#: src/screens/Setting/Settings.jsx:71 +#: screens/Setting/Settings.jsx:71 msgid "Google OAuth2" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:194 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 +#: components/NotificationList/NotificationList.jsx:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 msgid "Grafana" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 msgid "Grafana API key" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 msgid "Grafana URL" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:210 +#: components/Search/AdvancedSearch.jsx:211 msgid "Greater than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.jsx:216 msgid "Greater than or equal to comparison." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.jsx:86 msgid "Group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:85 +#: screens/Inventory/Inventories.jsx:83 msgid "Group details" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 msgid "Group type" msgstr "" -#: src/screens/Host/Host.jsx:62 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:230 -#: src/screens/Host/Hosts.jsx:31 -#: src/screens/Inventory/Inventories.jsx:76 -#: src/screens/Inventory/Inventories.jsx:78 -#: src/screens/Inventory/Inventory.jsx:64 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:108 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: screens/Host/Host.jsx:62 +#: screens/Host/HostGroups/HostGroupsList.jsx:230 +#: screens/Host/Hosts.jsx:31 +#: screens/Inventory/Inventories.jsx:74 +#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventory.jsx:64 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: util/getRelatedResourceDeleteDetails.js:143 msgid "Groups" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 msgid "HTTP Headers" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 msgid "HTTP Method" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:121 +#: components/AppContainer/PageHeaderToolbar.jsx:121 msgid "Help" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Hide" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:135 +#: components/NotificationList/NotificationList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Hipchat" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 msgid "Host" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:143 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: src/screens/Template/shared/JobTemplateForm.jsx:592 +#: screens/Job/JobOutput/JobOutput.jsx:647 +msgid "Host Async Failure" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:646 +msgid "Host Async OK" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239 +#: screens/Template/shared/JobTemplateForm.jsx:622 msgid "Host Config Key" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:94 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:101 msgid "Host Count" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.jsx:101 msgid "Host Details" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +#: screens/Job/JobOutput/JobOutput.jsx:638 +msgid "Host Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:641 +msgid "Host Failure" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281 msgid "Host Filter" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.jsx:120 msgid "Host Name" msgstr "" -#: src/screens/Inventory/Inventories.jsx:70 +#: screens/Job/JobOutput/JobOutput.jsx:640 +msgid "Host OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:645 +msgid "Host Polling" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:651 +msgid "Host Retry" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:642 +msgid "Host Skipped" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:639 +msgid "Host Started" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:643 +msgid "Host Unreachable" +msgstr "" + +#: screens/Inventory/Inventories.jsx:70 msgid "Host details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.jsx:102 msgid "Host details modal" msgstr "" -#: src/screens/Host/Host.jsx:90 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.jsx:90 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 msgid "Host not found." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:77 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:77 msgid "Host status information for this job is unavailable." msgstr "" -#: src/routeConfig.js:85 -#: src/screens/ActivityStream/ActivityStream.jsx:173 -#: src/screens/Dashboard/Dashboard.jsx:129 -#: src/screens/Host/HostList/HostList.jsx:142 -#: src/screens/Host/HostList/HostList.jsx:188 -#: src/screens/Host/Hosts.jsx:15 -#: src/screens/Host/Hosts.jsx:25 -#: src/screens/Inventory/Inventories.jsx:63 -#: src/screens/Inventory/Inventories.jsx:88 -#: src/screens/Inventory/Inventory.jsx:65 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 -#: src/screens/Inventory/SmartInventory.jsx:71 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:95 +#: routeConfig.js:86 +#: screens/ActivityStream/ActivityStream.jsx:173 +#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:188 +#: screens/Host/Hosts.jsx:15 +#: screens/Host/Hosts.jsx:25 +#: screens/Inventory/Inventories.jsx:63 +#: screens/Inventory/Inventories.jsx:86 +#: screens/Inventory/Inventory.jsx:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 +#: screens/Inventory/SmartInventory.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: util/getRelatedResourceDeleteDetails.js:147 msgid "Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.jsx:164 msgid "Hour" msgstr "" -#: src/components/JobList/JobList.jsx:194 -#: src/components/Lookup/HostFilterLookup.jsx:82 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:155 -#: src/screens/User/UserRoles/UserRolesList.jsx:152 +#: components/JobList/JobList.jsx:172 +#: components/Lookup/HostFilterLookup.jsx:82 +#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:152 msgid "ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 msgid "ID of the Dashboard" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 msgid "ID of the Panel" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 msgid "ID of the dashboard (optional)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 msgid "ID of the panel (optional)" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:196 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:136 +#: components/NotificationList/NotificationList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "IRC" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 msgid "IRC Nick" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 msgid "IRC Server Address" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 msgid "IRC Server Port" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 msgid "IRC nick" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 msgid "IRC server address" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 msgid "IRC server password" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 msgid "IRC server port" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 msgid "Icon URL" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156 +msgid "" +"If checked, all variables for child groups\n" +"and hosts will be removed and replaced by those found\n" +"on the external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 -msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135 +msgid "" +"If checked, any hosts and groups that were\n" +"previously present on the external source but are now removed\n" +"will be removed from the Tower inventory. Hosts and groups\n" +"that were not managed by the inventory source will be promoted\n" +"to the next manually created group or if there is no manually\n" +"created group to promote them into, they will be left in the \"all\"\n" +"default group for the inventory." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 -msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:537 +msgid "" +"If enabled, run this playbook as an\n" +"administrator." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:507 -msgid "If enabled, run this playbook as an administrator." +#~ msgid "If enabled, run this playbook as an administrator." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +msgid "" +"If enabled, show the changes made\n" +"by Ansible tasks, where supported. This is equivalent to Ansible’s\n" +"--diff mode." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:478 +msgid "" +"If enabled, show the changes made by\n" +"Ansible tasks, where supported. This is equivalent\n" +"to Ansible's --diff mode." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:448 -msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." -msgstr "" +#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:216 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +#: components/AdHocCommands/AdHocDetailsStep.jsx:216 msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:551 -msgid "If enabled, simultaneous runs of this job template will be allowed." +#: screens/Template/shared/JobTemplateForm.jsx:581 +msgid "" +"If enabled, simultaneous runs of this job\n" +"template will be allowed." msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: src/screens/Template/shared/JobTemplateForm.jsx:551 +#~ msgid "If enabled, simultaneous runs of this job template will be allowed." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:263 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:559 -msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#: screens/Template/shared/JobTemplateForm.jsx:589 +msgid "" +"If enabled, this will store gathered facts so they can\n" +"be viewed at the host level. Facts are persisted and\n" +"injected into the fact cache at runtime." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:52 +#: src/screens/Template/shared/JobTemplateForm.jsx:559 +#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#~ msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "" -#: src/components/HostToggle/HostToggle.jsx:18 -msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +msgid "" +"If you want the Inventory Source to update on\n" +"launch and on project update, click on Update on launch, and also go to" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:104 -#: src/components/AppContainer/PageHeaderToolbar.jsx:114 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:64 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +msgid "Image" +msgstr "" + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:76 +msgid "Image name" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:655 +msgid "Including File" +msgstr "" + +#: components/HostToggle/HostToggle.jsx:18 +msgid "" +"Indicates if a host is available and should be included in running\n" +"jobs. For hosts that are part of an external inventory, this may be\n" +"reset by the inventory sync process." +msgstr "" + +#: src/components/HostToggle/HostToggle.jsx:18 +#~ msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#~ msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:104 +#: components/AppContainer/PageHeaderToolbar.jsx:114 msgid "Info" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.jsx:45 msgid "Initiated By" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:240 -#: src/screens/ActivityStream/ActivityStream.jsx:250 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:43 +#: screens/ActivityStream/ActivityStream.jsx:246 +#: screens/ActivityStream/ActivityStream.jsx:256 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:230 +#: screens/ActivityStream/ActivityStream.jsx:236 msgid "Initiated by (username)" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:52 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:53 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:53 msgid "Injector configuration" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:47 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:43 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:43 msgid "Input configuration" msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:71 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 msgid "Insights Credential" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:136 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:137 msgid "Instance Filters" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:228 +#: screens/Job/JobDetail/JobDetail.jsx:259 msgid "Instance Group" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:71 -#: src/components/Lookup/InstanceGroupsLookup.jsx:77 -#: src/components/Lookup/InstanceGroupsLookup.jsx:109 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:212 -#: src/routeConfig.js:132 -#: src/screens/ActivityStream/ActivityStream.jsx:198 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:86 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:317 +#: components/Lookup/InstanceGroupsLookup.jsx:71 +#: components/Lookup/InstanceGroupsLookup.jsx:77 +#: components/Lookup/InstanceGroupsLookup.jsx:109 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:218 +#: routeConfig.js:133 +#: screens/ActivityStream/ActivityStream.jsx:198 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:327 msgid "Instance Groups" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.jsx:99 msgid "Instance ID" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 -#: src/screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:86 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 +#: screens/InstanceGroup/InstanceGroups.jsx:27 msgid "Instance group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.jsx:87 msgid "Instance group not found." msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:16 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 +#: screens/InstanceGroup/InstanceGroups.jsx:16 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 msgid "Instance groups" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:69 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:231 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 -#: src/screens/InstanceGroup/InstanceGroups.jsx:35 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:218 +#: screens/InstanceGroup/InstanceGroup.jsx:69 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 +#: screens/InstanceGroup/InstanceGroups.jsx:35 +#: screens/InstanceGroup/Instances/InstanceList.jsx:148 +#: screens/InstanceGroup/Instances/InstanceList.jsx:218 msgid "Instances" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:63 +#: screens/Template/Survey/SurveyQuestionForm.jsx:63 msgid "Integer" msgstr "" -#: src/util/validators.jsx:69 +#: util/validators.jsx:69 msgid "Invalid email address" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:151 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "" -#: src/screens/Login/Login.jsx:110 +#: screens/Login/Login.jsx:118 msgid "Invalid username or password. Please try again." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: src/routeConfig.js:80 -#: src/screens/ActivityStream/ActivityStream.jsx:170 -#: src/screens/Dashboard/Dashboard.jsx:140 -#: src/screens/Inventory/Inventories.jsx:16 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:163 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 +#: routeConfig.js:81 +#: screens/ActivityStream/ActivityStream.jsx:170 +#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Inventory/Inventories.jsx:16 +#: screens/Inventory/InventoryList/InventoryList.jsx:169 +#: screens/Inventory/InventoryList/InventoryList.jsx:220 +#: util/getRelatedResourceDeleteDetails.js:67 +#: util/getRelatedResourceDeleteDetails.js:226 +#: util/getRelatedResourceDeleteDetails.js:294 msgid "Inventories" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:133 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:134 msgid "Inventories with sources cannot be copied" msgstr "" -#: src/components/HostForm/HostForm.jsx:28 -#: src/components/JobList/JobListItem.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:98 -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:47 -#: src/components/Lookup/InventoryLookup.jsx:85 -#: src/components/Lookup/InventoryLookup.jsx:94 -#: src/components/Lookup/InventoryLookup.jsx:131 -#: src/components/Lookup/InventoryLookup.jsx:147 -#: src/components/Lookup/InventoryLookup.jsx:184 -#: src/components/PromptDetail/PromptDetail.jsx:183 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:77 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:105 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:116 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 -#: src/components/TemplateList/TemplateListItem.jsx:223 -#: src/components/TemplateList/TemplateListItem.jsx:232 -#: src/screens/Host/HostDetail/HostDetail.jsx:83 -#: src/screens/Host/HostList/HostList.jsx:169 -#: src/screens/Host/HostList/HostListItem.jsx:39 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:195 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:186 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:194 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:131 +#: components/HostForm/HostForm.jsx:28 +#: components/JobList/JobListItem.jsx:150 +#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/Lookup/InventoryLookup.jsx:85 +#: components/Lookup/InventoryLookup.jsx:94 +#: components/Lookup/InventoryLookup.jsx:131 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:184 +#: components/PromptDetail/PromptDetail.jsx:183 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:78 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:107 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 +#: components/TemplateList/TemplateListItem.jsx:251 +#: components/TemplateList/TemplateListItem.jsx:260 +#: screens/Host/HostDetail/HostDetail.jsx:83 +#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostListItem.jsx:39 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:196 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:200 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 msgid "Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Inventory (Name)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:100 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:101 msgid "Inventory File" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.jsx:90 msgid "Inventory ID" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:61 +#: screens/Job/JobDetail/JobDetail.jsx:212 +msgid "Inventory Source" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:89 msgid "Inventory Source Sync" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:157 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:176 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:163 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: util/getRelatedResourceDeleteDetails.js:74 +#: util/getRelatedResourceDeleteDetails.js:171 msgid "Inventory Sources" msgstr "" -#: src/components/JobList/JobList.jsx:206 -#: src/components/JobList/JobListItem.jsx:32 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: src/components/Workflow/WorkflowLegend.jsx:100 -#: src/screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.jsx:184 +#: components/JobList/JobListItem.jsx:32 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 +#: components/Workflow/WorkflowLegend.jsx:100 +#: screens/Job/JobDetail/JobDetail.jsx:94 msgid "Inventory Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:59 +#: components/Workflow/WorkflowNodeHelp.jsx:59 msgid "Inventory Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:219 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 msgid "Inventory file" msgstr "" -#: src/screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.jsx:91 msgid "Inventory not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:229 +#: screens/Dashboard/Dashboard.jsx:229 msgid "Inventory sync" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:146 msgid "Inventory sync failures" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:49 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 -#: src/screens/Job/JobDetail/JobDetail.jsx:119 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 +#: screens/Job/JobDetail/JobDetail.jsx:120 msgid "Isolated" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:21 -#: src/components/Lookup/Lookup.jsx:129 +#: screens/Job/JobOutput/JobOutput.jsx:649 +msgid "Item Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:648 +msgid "Item OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:650 +msgid "Item Skipped" +msgstr "" + +#: components/AssociateModal/AssociateModal.jsx:21 msgid "Items" msgstr "" -#: src/components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:28 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:32 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:54 +#: components/Sparkline/Sparkline.jsx:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42 +#: screens/Project/ProjectList/ProjectListItem.jsx:62 msgid "JOB ID:" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:144 +#: screens/Job/JobOutput/HostEventModal.jsx:144 msgid "JSON" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:145 +#: screens/Job/JobOutput/HostEventModal.jsx:145 msgid "JSON tab" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 msgid "JSON:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 msgid "January" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 msgid "Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:713 -#: src/screens/Job/JobOutput/JobOutput.jsx:714 +#: screens/Job/JobDetail/JobDetail.jsx:470 +#: screens/Job/JobDetail/JobDetail.jsx:471 +#: screens/Job/JobOutput/JobOutput.jsx:832 +#: screens/Job/JobOutput/JobOutput.jsx:833 msgid "Job Cancel Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:383 -#: src/screens/Job/JobOutput/JobOutput.jsx:728 -#: src/screens/Job/JobOutput/JobOutput.jsx:729 +#: screens/Job/JobDetail/JobDetail.jsx:481 +#: screens/Job/JobOutput/JobOutput.jsx:821 +#: screens/Job/JobOutput/JobOutput.jsx:822 msgid "Job Delete Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:241 +#: screens/Job/JobDetail/JobDetail.jsx:272 msgid "Job Slice" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 -#: src/screens/Template/shared/JobTemplateForm.jsx:428 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:148 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235 +#: screens/Template/shared/JobTemplateForm.jsx:458 msgid "Job Slicing" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.jsx:140 msgid "Job Status" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 -#: src/components/PromptDetail/PromptDetail.jsx:206 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:227 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 -#: src/screens/Job/JobDetail/JobDetail.jsx:290 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:332 -#: src/screens/Template/shared/JobTemplateForm.jsx:468 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 +#: components/PromptDetail/PromptDetail.jsx:206 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:233 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.jsx:321 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342 +#: screens/Template/shared/JobTemplateForm.jsx:498 msgid "Job Tags" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:196 -#: src/components/Workflow/WorkflowLegend.jsx:92 -#: src/components/Workflow/WorkflowNodeHelp.jsx:47 -#: src/screens/Job/JobDetail/JobDetail.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:67 +#: components/TemplateList/TemplateList.jsx:201 +#: components/Workflow/WorkflowLegend.jsx:92 +#: components/Workflow/WorkflowNodeHelp.jsx:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:33 +#: screens/Job/JobDetail/JobDetail.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:95 msgid "Job Template" msgstr "" -#: src/screens/Project/Project.jsx:117 -#: src/screens/Project/Projects.jsx:32 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:42 +msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" +msgstr "" + +#: screens/Project/Project.jsx:117 +#: screens/Project/Projects.jsx:32 +#: util/getRelatedResourceDeleteDetails.js:56 +#: util/getRelatedResourceDeleteDetails.js:108 +#: util/getRelatedResourceDeleteDetails.js:157 msgid "Job Templates" msgstr "" -#: src/components/JobList/JobList.jsx:202 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 -#: src/components/PromptDetail/PromptDetail.jsx:156 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:88 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 -#: src/screens/Job/JobDetail/JobDetail.jsx:191 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:169 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:128 -#: src/screens/Template/shared/JobTemplateForm.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:24 +msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useWorkflowNodeSteps.js:267 +msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" +msgstr "" + +#: components/JobList/JobList.jsx:180 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 +#: components/PromptDetail/PromptDetail.jsx:156 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:90 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 +#: screens/Job/JobDetail/JobDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145 +#: screens/Template/shared/JobTemplateForm.jsx:220 msgid "Job Type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:172 msgid "Job status" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:170 msgid "Job status graph tab" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 msgid "Job templates" msgstr "" -#: src/components/JobList/JobList.jsx:185 -#: src/components/JobList/JobList.jsx:262 -#: src/routeConfig.js:39 -#: src/screens/ActivityStream/ActivityStream.jsx:147 -#: src/screens/Dashboard/shared/LineChart.jsx:69 -#: src/screens/InstanceGroup/ContainerGroup.jsx:68 -#: src/screens/InstanceGroup/InstanceGroup.jsx:74 -#: src/screens/InstanceGroup/InstanceGroups.jsx:37 -#: src/screens/InstanceGroup/InstanceGroups.jsx:45 -#: src/screens/Job/Jobs.jsx:15 -#: src/screens/Job/Jobs.jsx:26 -#: src/screens/Setting/SettingList.jsx:92 -#: src/screens/Setting/Settings.jsx:74 +#: components/JobList/JobList.jsx:163 +#: components/JobList/JobList.jsx:240 +#: routeConfig.js:40 +#: screens/ActivityStream/ActivityStream.jsx:147 +#: screens/Dashboard/shared/LineChart.jsx:69 +#: screens/Host/Host.jsx:67 +#: screens/Host/Hosts.jsx:32 +#: screens/InstanceGroup/ContainerGroup.jsx:68 +#: screens/InstanceGroup/InstanceGroup.jsx:74 +#: screens/InstanceGroup/InstanceGroups.jsx:37 +#: screens/InstanceGroup/InstanceGroups.jsx:45 +#: screens/Inventory/Inventories.jsx:59 +#: screens/Inventory/Inventories.jsx:72 +#: screens/Inventory/Inventory.jsx:68 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 +#: screens/Inventory/SmartInventory.jsx:73 +#: screens/Job/Jobs.jsx:15 +#: screens/Job/Jobs.jsx:26 +#: screens/Setting/SettingList.jsx:92 +#: screens/Setting/Settings.jsx:74 +#: screens/Template/Template.jsx:164 +#: screens/Template/Templates.jsx:48 +#: screens/Template/WorkflowJobTemplate.jsx:145 msgid "Jobs" msgstr "" -#: src/screens/Setting/SettingList.jsx:99 +#: screens/Setting/SettingList.jsx:99 msgid "Jobs settings" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 msgid "July" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 msgid "June" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:129 +#: components/Search/AdvancedSearch.jsx:130 msgid "Key" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:120 +#: components/Search/AdvancedSearch.jsx:121 msgid "Key select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.jsx:124 msgid "Key typeahead" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.jsx:231 msgid "Keyword" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:51 -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserDetail/UserDetail.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "LDAP" msgstr "" -#: src/screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.jsx:79 msgid "LDAP 1" msgstr "" -#: src/screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.jsx:80 msgid "LDAP 2" msgstr "" -#: src/screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.jsx:81 msgid "LDAP 3" msgstr "" -#: src/screens/Setting/Settings.jsx:82 +#: screens/Setting/Settings.jsx:82 msgid "LDAP 4" msgstr "" -#: src/screens/Setting/Settings.jsx:83 +#: screens/Setting/Settings.jsx:83 msgid "LDAP 5" msgstr "" -#: src/screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.jsx:78 msgid "LDAP Default" msgstr "" -#: src/screens/Setting/SettingList.jsx:74 +#: screens/Setting/SettingList.jsx:74 msgid "LDAP settings" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 msgid "LDAP1" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 msgid "LDAP2" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 msgid "LDAP3" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 msgid "LDAP4" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 msgid "LDAP5" msgstr "" -#: src/components/JobList/JobList.jsx:198 +#: components/JobList/JobList.jsx:176 msgid "Label Name" msgstr "" -#: src/components/JobList/JobListItem.jsx:135 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:194 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 -#: src/components/TemplateList/TemplateListItem.jsx:237 -#: src/screens/Job/JobDetail/JobDetail.jsx:275 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:299 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:178 -#: src/screens/Template/shared/JobTemplateForm.jsx:339 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: components/JobList/JobListItem.jsx:136 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:200 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 +#: components/TemplateList/TemplateListItem.jsx:265 +#: screens/Job/JobDetail/JobDetail.jsx:306 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195 +#: screens/Template/shared/JobTemplateForm.jsx:369 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209 msgid "Labels" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:414 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 msgid "Last" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:78 +#: screens/User/UserDetail/UserDetail.jsx:78 msgid "Last Login" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:140 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 -#: src/components/TemplateList/TemplateListItem.jsx:265 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:44 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:236 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:62 -#: src/screens/Host/HostDetail/HostDetail.jsx:99 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:68 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:328 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:146 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:49 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:276 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.jsx:140 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 +#: components/TemplateList/TemplateListItem.jsx:293 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:44 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:253 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 +#: screens/Host/HostDetail/HostDetail.jsx:99 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:122 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 +#: screens/Team/TeamDetail/TeamDetail.jsx:49 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:286 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 msgid "Last Modified" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:123 -#: src/components/AddRole/AddResourceRole.jsx:137 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:134 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:167 -#: src/screens/User/UserDetail/UserDetail.jsx:66 -#: src/screens/User/UserList/UserList.jsx:127 -#: src/screens/User/UserList/UserList.jsx:169 -#: src/screens/User/UserList/UserListItem.jsx:70 -#: src/screens/User/UserList/UserListItem.jsx:73 -#: src/screens/User/shared/UserForm.jsx:115 +#: components/AddRole/AddResourceRole.jsx:134 +#: components/AddRole/AddResourceRole.jsx:148 +#: components/ResourceAccessList/ResourceAccessList.jsx:136 +#: components/ResourceAccessList/ResourceAccessList.jsx:169 +#: screens/User/UserDetail/UserDetail.jsx:66 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:169 +#: screens/User/UserList/UserListItem.jsx:70 +#: screens/User/UserList/UserListItem.jsx:73 +#: screens/User/shared/UserForm.jsx:115 msgid "Last Name" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:220 -#: src/components/TemplateList/TemplateListItem.jsx:130 +#: components/TemplateList/TemplateList.jsx:225 +#: components/TemplateList/TemplateListItem.jsx:155 msgid "Last Ran" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 msgid "Last Run" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.jsx:103 msgid "Last job" msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 msgid "Last job run" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:259 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 msgid "Last modified" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:377 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:214 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 +#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:237 msgid "Launch" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 msgid "Launch Management Job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:149 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:94 +#: components/TemplateList/TemplateListItem.jsx:175 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:117 msgid "Launch Template" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:98 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:99 msgid "Launch management job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:156 +#: components/TemplateList/TemplateListItem.jsx:183 msgid "Launch template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 msgid "Launch workflow" msgstr "" -#: src/components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "" -#: src/components/JobList/JobList.jsx:214 +#: components/JobList/JobList.jsx:192 msgid "Launched By (Username)" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:86 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:120 +msgid "Leave this field blank to make the execution environment globally available." +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:86 msgid "Legend" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:220 +#: components/Search/AdvancedSearch.jsx:221 msgid "Less than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:225 +#: components/Search/AdvancedSearch.jsx:226 msgid "Less than or equal to comparison." msgstr "" -#: src/screens/Setting/SettingList.jsx:137 -#: src/screens/Setting/Settings.jsx:96 +#: screens/Setting/SettingList.jsx:137 +#: screens/Setting/Settings.jsx:96 msgid "License" msgstr "" -#: src/screens/Setting/License/License.jsx:15 -#: src/screens/Setting/SettingList.jsx:142 +#: screens/Setting/License/License.jsx:15 +#: screens/Setting/SettingList.jsx:142 msgid "License settings" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:170 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:171 -#: src/components/JobList/JobList.jsx:232 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: src/components/PromptDetail/PromptDetail.jsx:194 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 -#: src/screens/Job/JobDetail/JobDetail.jsx:222 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:215 -#: src/screens/Template/shared/JobTemplateForm.jsx:390 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:144 +#: components/AdHocCommands/AdHocDetailsStep.jsx:170 +#: components/AdHocCommands/AdHocDetailsStep.jsx:171 +#: components/JobList/JobList.jsx:210 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 +#: components/PromptDetail/PromptDetail.jsx:194 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:140 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 +#: screens/Job/JobDetail/JobDetail.jsx:250 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 +#: screens/Template/shared/JobTemplateForm.jsx:420 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:155 msgid "Limit" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:219 msgid "Link to an available node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 msgid "Loading" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 msgid "Local Time Zone" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:141 +#: components/Schedule/shared/ScheduleForm.jsx:141 msgid "Local time zone" msgstr "" -#: src/screens/Login/Login.jsx:248 +#: screens/Login/Login.jsx:162 msgid "Log In" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:14 +#: screens/Setting/shared/LoggingTestAlert.jsx:14 msgid "Log aggregator test sent successfully." msgstr "" -#: src/screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.jsx:97 msgid "Logging" msgstr "" -#: src/screens/Setting/SettingList.jsx:118 +#: screens/Setting/SettingList.jsx:118 msgid "Logging settings" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:236 -#: src/components/AppContainer/PageHeaderToolbar.jsx:171 +#: components/AppContainer/AppContainer.jsx:242 +#: components/AppContainer/PageHeaderToolbar.jsx:171 msgid "Logout" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:307 -#: src/components/Lookup/Lookup.jsx:130 +#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/Lookup.jsx:130 msgid "Lookup modal" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:142 +#: components/Search/AdvancedSearch.jsx:143 msgid "Lookup select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:152 msgid "Lookup type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:145 +#: components/Search/AdvancedSearch.jsx:146 msgid "Lookup typeahead" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:30 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:52 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40 +#: screens/Project/ProjectList/ProjectListItem.jsx:60 msgid "MOST RECENT SYNC" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:86 -#: src/screens/Job/JobDetail/JobDetail.jsx:247 +#: components/AdHocCommands/AdHocCredentialStep.jsx:67 +#: components/AdHocCommands/AdHocCredentialStep.jsx:68 +#: components/AdHocCommands/AdHocCredentialStep.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:278 msgid "Machine Credential" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:84 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:84 msgid "Machine credential" msgstr "" -#: src/components/JobList/JobList.jsx:209 -#: src/components/JobList/JobListItem.jsx:35 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: src/screens/Job/JobDetail/JobDetail.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 +msgid "Managed by Tower" +msgstr "" + +#: components/JobList/JobList.jsx:187 +#: components/JobList/JobListItem.jsx:35 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 +#: screens/Job/JobDetail/JobDetail.jsx:100 msgid "Management Job" msgstr "" -#: src/routeConfig.js:127 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:128 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 msgid "Management Jobs" msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:22 +#: screens/ManagementJob/ManagementJobs.jsx:22 msgid "Management job" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:117 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:119 msgid "Management job launch error" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.jsx:132 msgid "Management job not found." msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.jsx:14 msgid "Management jobs" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:113 -#: src/components/PromptDetail/PromptProjectDetail.jsx:69 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:90 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:102 -#: src/screens/Project/ProjectList/ProjectList.jsx:145 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: components/Lookup/ProjectLookup.jsx:113 +#: components/PromptDetail/PromptProjectDetail.jsx:75 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:104 +#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectListItem.jsx:134 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 msgid "Manual" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 msgid "March" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:197 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:137 +#: components/NotificationList/NotificationList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 msgid "Mattermost" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 -#: src/screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 +#: screens/Organization/shared/OrganizationForm.jsx:75 msgid "Max Hosts" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.jsx:175 msgid "Maximum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:159 +#: screens/Template/Survey/SurveyQuestionForm.jsx:159 msgid "Maximum length" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 msgid "May" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:38 +#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 msgid "Members" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 msgid "Metadata" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 msgid "Microsoft Azure Resource Manager" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:169 +#: screens/Template/Survey/SurveyQuestionForm.jsx:169 msgid "Minimum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:153 +#: screens/Template/Survey/SurveyQuestionForm.jsx:153 msgid "Minimum length" msgstr "" +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 +msgid "" +"Minimum number of instances that will be automatically\n" +"assigned to this group when new instances come online." +msgstr "" + #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 -msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" + +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 +msgid "" +"Minimum percentage of all instances that will be automatically\n" +"assigned to this group when new instances come online." msgstr "" #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 -msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." -msgstr "" +#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.jsx:163 msgid "Minute" msgstr "" -#: src/screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.jsx:100 msgid "Miscellaneous System" msgstr "" -#: src/screens/Setting/SettingList.jsx:110 +#: screens/Setting/SettingList.jsx:110 msgid "Miscellaneous System settings" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:104 +#: components/Workflow/WorkflowNodeHelp.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 msgid "Missing" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:353 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: src/screens/User/UserTokenList/UserTokenList.jsx:138 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 +msgid "Missing resource" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:360 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:100 -#: src/components/AddRole/AddResourceRole.jsx:152 -#: src/components/AssociateModal/AssociateModal.jsx:146 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: src/components/Lookup/CredentialLookup.jsx:157 -#: src/components/Lookup/InventoryLookup.jsx:118 -#: src/components/Lookup/InventoryLookup.jsx:171 -#: src/components/Lookup/MultiCredentialsLookup.jsx:185 -#: src/components/Lookup/OrganizationLookup.jsx:113 -#: src/components/Lookup/ProjectLookup.jsx:125 -#: src/components/NotificationList/NotificationList.jsx:210 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:205 -#: src/components/TemplateList/TemplateList.jsx:209 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 -#: src/screens/Credential/CredentialList/CredentialList.jsx:145 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:167 -#: src/screens/Host/HostList/HostList.jsx:160 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:180 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:146 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: src/screens/Project/ProjectList/ProjectList.jsx:157 -#: src/screens/Team/TeamList/TeamList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 +#: components/AdHocCommands/AdHocCredentialStep.jsx:100 +#: components/AddRole/AddResourceRole.jsx:163 +#: components/AssociateModal/AssociateModal.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:183 +#: components/LaunchPrompt/steps/InventoryStep.jsx:95 +#: components/Lookup/CredentialLookup.jsx:157 +#: components/Lookup/InventoryLookup.jsx:118 +#: components/Lookup/InventoryLookup.jsx:171 +#: components/Lookup/MultiCredentialsLookup.jsx:185 +#: components/Lookup/OrganizationLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:125 +#: components/NotificationList/NotificationList.jsx:210 +#: components/Schedule/ScheduleList/ScheduleList.jsx:205 +#: components/TemplateList/TemplateList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 +#: screens/Credential/CredentialList/CredentialList.jsx:137 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: 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:192 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 +#: screens/Organization/OrganizationList/OrganizationList.jsx:150 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 +#: screens/Project/ProjectList/ProjectList.jsx:162 +#: 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:109 msgid "Modified By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:167 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.jsx:63 +#: screens/Job/JobOutput/HostEventModal.jsx:131 msgid "Module" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:269 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 msgid "Mon" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:274 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:430 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 msgid "Monday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:167 +#: components/Schedule/shared/ScheduleForm.jsx:167 msgid "Month" msgstr "" -#: src/components/Popover/Popover.jsx:39 +#: components/Popover/Popover.jsx:39 msgid "More information" msgstr "" -#: src/screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.jsx:63 msgid "More information for" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:111 +#: screens/Template/Survey/SurveyPreviewModal.jsx:111 msgid "Multi-Select" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.jsx:90 msgid "Multiple Choice" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:61 +#: screens/Template/Survey/SurveyQuestionForm.jsx:61 msgid "Multiple Choice (multiple select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:56 +#: screens/Template/Survey/SurveyQuestionForm.jsx:56 msgid "Multiple Choice (single select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:217 +#: screens/Template/Survey/SurveyQuestionForm.jsx:217 msgid "Multiple Choice Options" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:91 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:106 -#: src/components/AddRole/AddResourceRole.jsx:143 -#: src/components/AddRole/AddResourceRole.jsx:159 -#: src/components/AssociateModal/AssociateModal.jsx:137 -#: src/components/AssociateModal/AssociateModal.jsx:152 -#: src/components/HostForm/HostForm.jsx:87 -#: src/components/JobList/JobList.jsx:189 -#: src/components/JobList/JobList.jsx:238 -#: src/components/JobList/JobListItem.jsx:59 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:140 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:155 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:77 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:92 -#: src/components/Lookup/ApplicationLookup.jsx:78 -#: src/components/Lookup/ApplicationLookup.jsx:89 -#: src/components/Lookup/CredentialLookup.jsx:148 -#: src/components/Lookup/CredentialLookup.jsx:163 -#: src/components/Lookup/HostFilterLookup.jsx:77 -#: src/components/Lookup/HostFilterLookup.jsx:345 -#: src/components/Lookup/InstanceGroupsLookup.jsx:91 -#: src/components/Lookup/InstanceGroupsLookup.jsx:102 -#: src/components/Lookup/InventoryLookup.jsx:109 -#: src/components/Lookup/InventoryLookup.jsx:124 -#: src/components/Lookup/InventoryLookup.jsx:162 -#: src/components/Lookup/InventoryLookup.jsx:177 -#: src/components/Lookup/MultiCredentialsLookup.jsx:176 -#: src/components/Lookup/MultiCredentialsLookup.jsx:191 -#: src/components/Lookup/OrganizationLookup.jsx:104 -#: src/components/Lookup/OrganizationLookup.jsx:119 -#: src/components/Lookup/ProjectLookup.jsx:105 -#: src/components/Lookup/ProjectLookup.jsx:135 -#: src/components/NotificationList/NotificationList.jsx:181 -#: src/components/NotificationList/NotificationList.jsx:218 -#: src/components/NotificationList/NotificationListItem.jsx:25 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:77 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:86 -#: src/components/PaginatedTable/PaginatedTable.jsx:69 -#: src/components/PromptDetail/PromptDetail.jsx:109 -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:100 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:173 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:192 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:78 -#: src/components/Schedule/shared/ScheduleForm.jsx:102 -#: src/components/TemplateList/TemplateList.jsx:184 -#: src/components/TemplateList/TemplateList.jsx:217 -#: src/components/TemplateList/TemplateListItem.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: src/components/Workflow/WorkflowNodeHelp.jsx:132 -#: src/components/Workflow/WorkflowNodeHelp.jsx:158 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: src/screens/Application/Applications.jsx:84 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:32 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:161 -#: src/screens/Application/shared/ApplicationForm.jsx:54 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:193 -#: src/screens/Credential/CredentialList/CredentialList.jsx:132 -#: src/screens/Credential/CredentialList/CredentialList.jsx:151 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: src/screens/Credential/shared/CredentialForm.jsx:118 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:41 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:123 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:24 -#: src/screens/Host/HostDetail/HostDetail.jsx:74 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:158 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:173 -#: src/screens/Host/HostList/HostList.jsx:147 -#: src/screens/Host/HostList/HostList.jsx:168 -#: src/screens/Host/HostList/HostListItem.jsx:34 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:42 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:74 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:227 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:69 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:167 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:186 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:194 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:81 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:190 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: src/screens/Inventory/shared/InventoryForm.jsx:47 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:41 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:102 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:53 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:121 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:178 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:100 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:85 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:133 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:154 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:33 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: src/screens/Organization/shared/OrganizationForm.jsx:52 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:82 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: src/screens/Project/ProjectList/ProjectList.jsx:133 -#: src/screens/Project/ProjectList/ProjectList.jsx:169 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:88 -#: src/screens/Project/shared/ProjectForm.jsx:160 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:34 -#: src/screens/Team/TeamList/TeamList.jsx:129 -#: src/screens/Team/TeamList/TeamList.jsx:154 -#: src/screens/Team/TeamList/TeamListItem.jsx:40 -#: src/screens/Team/shared/TeamForm.jsx:35 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:167 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:128 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 -#: src/screens/Template/shared/JobTemplateForm.jsx:200 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:99 -#: src/screens/User/UserTeams/UserTeamList.jsx:230 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 +#: components/AdHocCommands/AdHocCredentialStep.jsx:91 +#: components/AdHocCommands/AdHocCredentialStep.jsx:106 +#: components/AddRole/AddResourceRole.jsx:154 +#: components/AddRole/AddResourceRole.jsx:170 +#: components/AssociateModal/AssociateModal.jsx:139 +#: components/AssociateModal/AssociateModal.jsx:154 +#: components/HostForm/HostForm.jsx:87 +#: components/JobList/JobList.jsx:167 +#: components/JobList/JobList.jsx:216 +#: components/JobList/JobListItem.jsx:59 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:174 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:189 +#: components/LaunchPrompt/steps/InventoryStep.jsx:86 +#: components/LaunchPrompt/steps/InventoryStep.jsx:101 +#: components/Lookup/ApplicationLookup.jsx:78 +#: components/Lookup/ApplicationLookup.jsx:89 +#: components/Lookup/CredentialLookup.jsx:148 +#: components/Lookup/CredentialLookup.jsx:163 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/Lookup/HostFilterLookup.jsx:77 +#: components/Lookup/HostFilterLookup.jsx:352 +#: components/Lookup/InstanceGroupsLookup.jsx:91 +#: components/Lookup/InstanceGroupsLookup.jsx:102 +#: components/Lookup/InventoryLookup.jsx:109 +#: components/Lookup/InventoryLookup.jsx:124 +#: components/Lookup/InventoryLookup.jsx:162 +#: components/Lookup/InventoryLookup.jsx:177 +#: components/Lookup/MultiCredentialsLookup.jsx:176 +#: components/Lookup/MultiCredentialsLookup.jsx:191 +#: components/Lookup/OrganizationLookup.jsx:106 +#: components/Lookup/OrganizationLookup.jsx:121 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:135 +#: components/NotificationList/NotificationList.jsx:181 +#: components/NotificationList/NotificationList.jsx:218 +#: components/NotificationList/NotificationListItem.jsx:25 +#: components/PaginatedDataList/PaginatedDataList.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PromptDetail/PromptDetail.jsx:109 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:100 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 +#: components/Schedule/ScheduleList/ScheduleList.jsx:173 +#: components/Schedule/ScheduleList/ScheduleList.jsx:192 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78 +#: components/Schedule/shared/ScheduleForm.jsx:102 +#: components/TemplateList/TemplateList.jsx:189 +#: components/TemplateList/TemplateList.jsx:222 +#: components/TemplateList/TemplateListItem.jsx:126 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 +#: components/Workflow/WorkflowNodeHelp.jsx:132 +#: components/Workflow/WorkflowNodeHelp.jsx:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 +#: screens/Application/Applications.jsx:84 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:32 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/shared/ApplicationForm.jsx:54 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205 +#: screens/Credential/CredentialList/CredentialList.jsx:124 +#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialListItem.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:118 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:24 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:59 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:23 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:68 +#: screens/Host/HostDetail/HostDetail.jsx:74 +#: screens/Host/HostGroups/HostGroupsList.jsx:158 +#: screens/Host/HostGroups/HostGroupsList.jsx:173 +#: screens/Host/HostList/HostList.jsx:147 +#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostListItem.jsx:34 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:77 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 +#: screens/InstanceGroup/Instances/InstanceList.jsx:155 +#: screens/InstanceGroup/Instances/InstanceList.jsx:162 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 +#: screens/Inventory/InventoryList/InventoryList.jsx:173 +#: screens/Inventory/InventoryList/InventoryList.jsx:192 +#: screens/Inventory/InventoryList/InventoryList.jsx:200 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:81 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 +#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryGroupForm.jsx:41 +#: screens/Inventory/shared/InventorySourceForm.jsx:105 +#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:107 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 +#: screens/Organization/OrganizationList/OrganizationList.jsx:137 +#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 +#: screens/Organization/shared/OrganizationForm.jsx:60 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:84 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:138 +#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectListItem.jsx:99 +#: screens/Project/shared/ProjectForm.jsx:167 +#: screens/Team/TeamDetail/TeamDetail.jsx:34 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamListItem.jsx:40 +#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: 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/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:158 +#: 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:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 +#: screens/Template/shared/JobTemplateForm.jsx:207 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:110 +#: screens/User/UserTeams/UserTeamList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 msgid "Name" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:185 +#: components/AppContainer/AppContainer.jsx:185 msgid "Navigation" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:509 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:106 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 +#: screens/Dashboard/shared/ChartTooltip.jsx:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 msgid "Never" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.jsx:98 msgid "Never Updated" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 msgid "Never expires" msgstr "" -#: src/components/JobList/JobList.jsx:221 -#: src/components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.jsx:199 +#: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:79 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:113 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:122 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:79 +#: components/LaunchPrompt/LaunchPrompt.jsx:120 +#: components/Schedule/shared/SchedulePromptableFields.jsx:124 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:175 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:102 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:106 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 +#: components/Schedule/ScheduleList/ScheduleList.jsx:175 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:102 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:106 msgid "Next Run" msgstr "" -#: src/components/Search/Search.jsx:249 +#: components/Search/Search.jsx:257 msgid "No" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:157 +#: screens/Job/JobOutput/JobOutput.jsx:656 +msgid "No Hosts Matched" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:657 +msgid "No Hosts Remaining" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:157 msgid "No JSON Available" msgstr "" -#: src/screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.jsx:82 msgid "No Jobs" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:193 +#: screens/Job/JobOutput/HostEventModal.jsx:193 msgid "No Standard Error Available" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:175 +#: screens/Job/JobOutput/HostEventModal.jsx:175 msgid "No Standard Out Available" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:65 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:65 msgid "No inventory sync failures." msgstr "" -#: src/components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.jsx:16 msgid "No items found." msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:133 +#: screens/Job/JobOutput/HostEventModal.jsx:133 msgid "No result found" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:95 -#: src/components/Search/AdvancedSearch.jsx:133 -#: src/components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.jsx:96 +#: components/Search/AdvancedSearch.jsx:134 +#: components/Search/AdvancedSearch.jsx:154 msgid "No results found" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:174 +#: screens/Template/Survey/SurveyList.jsx:176 msgid "No survey questions found." msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:96 -#: src/components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:96 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:74 msgid "Node Type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:74 msgid "Node type" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.jsx:107 msgid "None" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 msgid "None (Run Once)" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/ScheduleForm.jsx:162 msgid "None (run once)" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:46 -#: src/screens/User/UserList/UserListItem.jsx:30 -#: src/screens/User/shared/UserForm.jsx:29 +#: screens/User/UserDetail/UserDetail.jsx:46 +#: screens/User/UserList/UserListItem.jsx:30 +#: screens/User/shared/UserForm.jsx:29 msgid "Normal User" msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Not Found" msgstr "" -#: src/screens/Setting/shared/SettingDetail.jsx:59 -#: src/screens/Setting/shared/SettingDetail.jsx:98 -#: src/screens/Setting/shared/SettingDetail.jsx:121 +#: screens/Setting/shared/SettingDetail.jsx:59 +#: screens/Setting/shared/SettingDetail.jsx:100 msgid "Not configured" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:68 msgid "Not configured for inventory sync." msgstr "" +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 +msgid "" +"Note that only hosts directly in this group can\n" +"be disassociated. Hosts in sub-groups must be disassociated\n" +"directly from the sub-group level that they belong." +msgstr "" + #: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 -msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgstr "" + +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s\n" +"children. This list shows all groups the host is associated\n" +"with directly and indirectly." +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:212 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s \n" +"children. This list shows all groups the host is associated \n" +"with directly and indirectly." msgstr "" #: src/screens/Host/HostGroups/HostGroupsList.jsx:212 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" #: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 -msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +msgid "" +"Note: When using SSH protocol for GitHub or\n" +"Bitbucket, enter an SSH key only, do not enter a username\n" +"(other than git). Additionally, GitHub and Bitbucket do\n" +"not support password authentication when using SSH. GIT\n" +"read only protocol (git://) does not use username or\n" +"password information." msgstr "" +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#~ msgstr "" + #: src/screens/Inventory/Inventories.jsx:120 -msgid "Notifcations" -msgstr "" +#~ msgid "Notifcations" +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 msgid "Notification Color" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:51 +#: screens/NotificationTemplate/NotificationTemplate.jsx:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 msgid "Notification Template not found." msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:171 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:13 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/ActivityStream/ActivityStream.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188 +#: screens/NotificationTemplate/NotificationTemplates.jsx:13 +#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: util/getRelatedResourceDeleteDetails.js:205 msgid "Notification Templates" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 msgid "Notification Type" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 msgid "Notification color" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:130 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:249 +msgid "Notification sent successfully" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:253 +msgid "Notification timed out" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:147 msgid "Notification type" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:177 -#: src/routeConfig.js:122 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:104 -#: src/screens/ManagementJob/ManagementJob.jsx:115 -#: src/screens/ManagementJob/ManagementJobs.jsx:24 -#: src/screens/Organization/Organization.jsx:129 -#: src/screens/Organization/Organizations.jsx:35 -#: src/screens/Project/Project.jsx:111 -#: src/screens/Project/Projects.jsx:31 -#: src/screens/Template/Template.jsx:137 -#: src/screens/Template/Templates.jsx:47 -#: src/screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.jsx:177 +#: routeConfig.js:123 +#: screens/Inventory/Inventories.jsx:118 +#: screens/Inventory/InventorySource/InventorySource.jsx:104 +#: screens/ManagementJob/ManagementJob.jsx:115 +#: screens/ManagementJob/ManagementJobs.jsx:24 +#: screens/Organization/Organization.jsx:135 +#: screens/Organization/Organizations.jsx:35 +#: screens/Project/Project.jsx:111 +#: screens/Project/Projects.jsx:31 +#: screens/Template/Template.jsx:150 +#: screens/Template/Templates.jsx:47 +#: screens/Template/WorkflowJobTemplate.jsx:127 msgid "Notifications" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 msgid "November" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:101 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.jsx:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:543 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 msgid "Occurrences" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 msgid "October" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:225 -#: src/components/HostToggle/HostToggle.jsx:59 -#: src/components/InstanceToggle/InstanceToggle.jsx:59 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:53 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:225 +#: components/HostToggle/HostToggle.jsx:59 +#: components/InstanceToggle/InstanceToggle.jsx:59 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:53 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "Off" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: src/components/HostToggle/HostToggle.jsx:58 -#: src/components/InstanceToggle/InstanceToggle.jsx:58 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:96 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:52 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:224 +#: components/HostToggle/HostToggle.jsx:58 +#: components/InstanceToggle/InstanceToggle.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:96 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:52 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "On" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:122 -#: src/components/Workflow/WorkflowLinkHelp.jsx:30 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 +#: components/Workflow/WorkflowLegend.jsx:122 +#: components/Workflow/WorkflowLinkHelp.jsx:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 msgid "On Failure" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:118 -#: src/components/Workflow/WorkflowLinkHelp.jsx:27 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:61 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 +#: components/Workflow/WorkflowLegend.jsx:118 +#: components/Workflow/WorkflowLinkHelp.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 msgid "On Success" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 msgid "On date" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:255 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 msgid "On days" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:154 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:155 msgid "Only Group By" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 msgid "OpenStack" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 msgid "Option Details" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:372 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:212 +msgid "" +"Optional labels that describe this job template,\n" +"such as 'dev' or 'test'. Labels can be used to group and filter\n" +"job templates and completed jobs." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:342 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187 -msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." -msgstr "" +#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." +#~ msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:218 +#: screens/Template/shared/WebhookSubForm.jsx:219 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:222 -#: src/components/NotificationList/NotificationListItem.jsx:34 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:166 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:174 -#: src/components/PromptDetail/PromptProjectDetail.jsx:86 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:137 -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:49 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:121 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:163 -#: src/screens/Template/shared/JobTemplateForm.jsx:500 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: components/NotificationList/NotificationList.jsx:222 +#: components/NotificationList/NotificationListItem.jsx:34 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:167 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:180 +#: components/PromptDetail/PromptProjectDetail.jsx:92 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141 +#: screens/Credential/shared/TypeInputsSubForm.jsx:49 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180 +#: screens/Template/shared/JobTemplateForm.jsx:530 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Options" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:97 -#: src/components/Lookup/OrganizationLookup.jsx:81 -#: src/components/Lookup/OrganizationLookup.jsx:86 -#: src/components/Lookup/OrganizationLookup.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:63 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:73 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:91 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:101 -#: src/components/PromptDetail/PromptProjectDetail.jsx:55 -#: src/components/PromptDetail/PromptProjectDetail.jsx:65 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:37 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:163 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:204 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:76 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:197 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:100 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:89 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:40 -#: src/screens/Team/TeamList/TeamList.jsx:155 -#: src/screens/Team/TeamList/TeamListItem.jsx:45 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:172 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:182 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 -#: src/screens/User/UserTeams/UserTeamList.jsx:235 -#: src/screens/User/UserTeams/UserTeamListItem.jsx:42 +#: components/Lookup/ApplicationLookup.jsx:97 +#: components/Lookup/OrganizationLookup.jsx:82 +#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/OrganizationLookup.jsx:101 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:64 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:74 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:93 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:103 +#: components/PromptDetail/PromptProjectDetail.jsx:56 +#: components/PromptDetail/PromptProjectDetail.jsx:66 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:37 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:67 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 +#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:91 +#: screens/Team/TeamDetail/TeamDetail.jsx:40 +#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamListItem.jsx:45 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:123 +#: screens/User/UserTeams/UserTeamList.jsx:235 +#: screens/User/UserTeams/UserTeamListItem.jsx:42 msgid "Organization" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 msgid "Organization (Name)" msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:138 msgid "Organization Name" msgstr "" -#: src/screens/Organization/Organization.jsx:148 +#: screens/Organization/Organization.jsx:154 msgid "Organization not found." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: src/routeConfig.js:96 -#: src/screens/ActivityStream/ActivityStream.jsx:178 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:129 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:175 -#: src/screens/Organization/Organizations.jsx:16 -#: src/screens/Organization/Organizations.jsx:27 -#: src/screens/User/User.jsx:65 -#: src/screens/User/UserOrganizations/UserOrganizationsList.jsx:55 -#: src/screens/User/Users.jsx:34 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 +#: routeConfig.js:97 +#: screens/ActivityStream/ActivityStream.jsx:178 +#: screens/Organization/OrganizationList/OrganizationList.jsx:133 +#: screens/Organization/OrganizationList/OrganizationList.jsx:179 +#: screens/Organization/Organizations.jsx:16 +#: screens/Organization/Organizations.jsx:27 +#: screens/User/User.jsx:65 +#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55 +#: screens/User/Users.jsx:34 +#: util/getRelatedResourceDeleteDetails.js:256 +#: util/getRelatedResourceDeleteDetails.js:290 msgid "Organizations" msgstr "" -#: src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 msgid "Other prompts" msgstr "" -#: src/screens/Job/Job.jsx:64 -#: src/screens/Job/Jobs.jsx:28 +#: screens/Job/Job.jsx:104 +#: screens/Job/Jobs.jsx:28 msgid "Output" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:47 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:114 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:129 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 msgid "Overwrite" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:49 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 msgid "Overwrite Variables" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:137 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:150 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 msgid "Overwrite variables" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 msgid "POST" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 msgid "PUT" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:198 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: components/NotificationList/NotificationList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 msgid "Pagerduty" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 msgid "Pagerduty Subdomain" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 msgid "Pagerduty subdomain" msgstr "" -#: src/components/Pagination/Pagination.jsx:37 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:157 +#: components/Workflow/WorkflowTools.jsx:166 msgid "Pan Down" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:130 +#: components/Workflow/WorkflowTools.jsx:133 msgid "Pan Left" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:167 +#: components/Workflow/WorkflowTools.jsx:177 msgid "Pan Right" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:140 +#: components/Workflow/WorkflowTools.jsx:144 msgid "Pan Up" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:279 +#: components/AdHocCommands/AdHocDetailsStep.jsx:279 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:362 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:209 +#: screens/Template/shared/JobTemplateForm.jsx:392 +msgid "" +"Pass extra command line variables to the playbook. This is the\n" +"-e or --extra-vars command line parameter for ansible-playbook.\n" +"Provide key/value pairs using either YAML or JSON. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: 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 "" -#: src/screens/Login/Login.jsx:258 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:52 -#: src/screens/User/shared/UserForm.jsx:85 +#: screens/Login/Login.jsx:172 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 +#: screens/Template/Survey/SurveyQuestionForm.jsx:52 +#: screens/User/shared/UserForm.jsx:85 msgid "Password" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:204 +#: screens/Dashboard/Dashboard.jsx:204 msgid "Past month" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:207 +#: screens/Dashboard/Dashboard.jsx:207 msgid "Past two weeks" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:210 +#: screens/Dashboard/Dashboard.jsx:210 msgid "Past week" msgstr "" -#: src/components/JobList/JobList.jsx:222 -#: src/components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.jsx:200 +#: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:88 +#: components/AppContainer/PageHeaderToolbar.jsx:88 msgid "Pending Workflow Approvals" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:109 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:109 msgid "Pending delete" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:310 +#: components/Lookup/HostFilterLookup.jsx:311 msgid "Perform a search to define a host filter" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:43 msgid "Personal access token" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.jsx:128 msgid "Play" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:82 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:89 msgid "Play Count" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: src/screens/Job/JobDetail/JobDetail.jsx:221 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 -#: src/screens/Template/shared/JobTemplateForm.jsx:300 +#: screens/Job/JobOutput/JobOutput.jsx:661 +msgid "Play Started" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 +#: screens/Job/JobDetail/JobDetail.jsx:249 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 +#: screens/Template/shared/JobTemplateForm.jsx:330 msgid "Playbook" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:139 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:97 +msgid "Playbook Check" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:662 +msgid "Playbook Complete" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:142 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 msgid "Playbook Directory" msgstr "" -#: src/components/JobList/JobList.jsx:207 -#: src/components/JobList/JobListItem.jsx:33 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: src/screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.jsx:185 +#: components/JobList/JobListItem.jsx:33 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 +#: screens/Job/JobDetail/JobDetail.jsx:98 msgid "Playbook Run" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:201 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Job/JobOutput/JobOutput.jsx:653 +msgid "Playbook Started" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:206 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 msgid "Playbook name" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:235 +#: screens/Dashboard/Dashboard.jsx:235 msgid "Playbook run" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:83 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:90 msgid "Plays" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.jsx:179 msgid "Please add survey questions." msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:94 -#: src/components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:94 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 msgid "Please click the Start button to begin." msgstr "" -#: src/util/validators.jsx:118 +#: util/validators.jsx:118 msgid "Please enter a valid URL" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:22 msgid "Please enter a value." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:507 +#: components/Schedule/shared/ScheduleForm.jsx:581 msgid "Please select a day number between 1 and 31." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:723 +#: screens/Template/shared/JobTemplateForm.jsx:755 msgid "Please select an Inventory or check the Prompt on Launch option." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:497 +#: components/Schedule/shared/ScheduleForm.jsx:571 msgid "Please select an end date/time that comes after the start date/time." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:298 +#: components/Lookup/HostFilterLookup.jsx:299 msgid "Please select an organization before editing the host filter" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:74 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 msgid "Pod spec override" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:88 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:91 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 msgid "Policy instance minimum" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:93 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:96 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 msgid "Policy instance percentage" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:54 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:61 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:71 msgid "Populate field from an external secret management system" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:287 -msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#: components/Lookup/HostFilterLookup.jsx:288 +msgid "" +"Populate the hosts for this inventory by using a search\n" +"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" +"Refer to the Ansible Tower documentation for further syntax and\n" +"examples." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: src/components/Lookup/HostFilterLookup.jsx:287 +#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#~ msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 msgid "Port" msgstr "" -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: src/screens/Template/Survey/SurveyList.jsx:161 -#: src/screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:212 +msgid "Preconditions for running this node when there are multiple parents. Refer to the" +msgstr "" + +#: components/CodeEditor/CodeEditor.jsx:176 +msgid "Press Enter to edit. Press ESC to stop editing." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 +#: screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/Survey/SurveyList.jsx:165 msgid "Preview" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 msgid "Private key passphrase" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:506 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Privilege Escalation" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 msgid "Privilege escalation password" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:86 -#: src/components/Lookup/ProjectLookup.jsx:91 -#: src/components/Lookup/ProjectLookup.jsx:144 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:92 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:121 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:129 -#: src/components/TemplateList/TemplateListItem.jsx:255 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:209 -#: src/screens/Job/JobDetail/JobDetail.jsx:211 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:207 +#: components/Lookup/ProjectLookup.jsx:86 +#: components/Lookup/ProjectLookup.jsx:91 +#: components/Lookup/ProjectLookup.jsx:144 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:89 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 +#: components/TemplateList/TemplateListItem.jsx:283 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217 +#: screens/Job/JobDetail/JobDetail.jsx:224 +#: screens/Job/JobDetail/JobDetail.jsx:239 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:205 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 msgid "Project" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:134 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 +#: components/PromptDetail/PromptProjectDetail.jsx:100 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:137 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 msgid "Project Base Path" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:73 +#: components/Workflow/WorkflowLegend.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:101 msgid "Project Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.jsx:55 msgid "Project Update" msgstr "" -#: src/screens/Project/Project.jsx:139 +#: screens/Project/Project.jsx:139 msgid "Project not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:157 msgid "Project sync failures" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: src/routeConfig.js:75 -#: src/screens/ActivityStream/ActivityStream.jsx:167 -#: src/screens/Dashboard/Dashboard.jsx:151 -#: src/screens/Project/ProjectList/ProjectList.jsx:128 -#: src/screens/Project/ProjectList/ProjectList.jsx:196 -#: src/screens/Project/Projects.jsx:14 -#: src/screens/Project/Projects.jsx:25 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 +#: routeConfig.js:76 +#: screens/ActivityStream/ActivityStream.jsx:167 +#: screens/Dashboard/Dashboard.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:133 +#: screens/Project/ProjectList/ProjectList.jsx:201 +#: screens/Project/Projects.jsx:14 +#: screens/Project/Projects.jsx:25 +#: util/getRelatedResourceDeleteDetails.js:60 +#: util/getRelatedResourceDeleteDetails.js:219 +#: util/getRelatedResourceDeleteDetails.js:249 msgid "Projects" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:137 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:136 msgid "Promote Child Groups and Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:557 -#: src/components/Schedule/shared/ScheduleForm.jsx:560 +#: components/Schedule/shared/ScheduleForm.jsx:633 +#: components/Schedule/shared/ScheduleForm.jsx:636 msgid "Prompt" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:153 +#: components/PromptDetail/PromptDetail.jsx:153 msgid "Prompt Overrides" msgstr "" -#: src/components/CodeMirrorInput/VariablesField.jsx:74 -#: src/components/FieldWithPrompt/FieldWithPrompt.jsx:47 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:161 +#: components/CodeEditor/VariablesField.jsx:158 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167 msgid "Prompt on launch" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:150 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 +#: components/PromptDetail/PromptDetail.jsx:150 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 msgid "Prompted Values" msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:100 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:109 +#: components/LaunchPrompt/LaunchPrompt.jsx:107 +#: components/Schedule/shared/SchedulePromptableFields.jsx:111 msgid "Prompts" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:423 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:158 +msgid "" +"Provide a host pattern to further constrain\n" +"the list of hosts that will be managed or affected by the\n" +"playbook. Multiple patterns are allowed. Refer to Ansible\n" +"documentation for more information and examples on patterns." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +msgid "" +"Provide a host pattern to further constrain the list\n" +"of hosts that will be managed or affected by the playbook. Multiple\n" +"patterns are allowed. Refer to Ansible documentation for more\n" +"information and examples on patterns." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 #: src/screens/Template/shared/JobTemplateForm.jsx:393 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147 -msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." -msgstr "" +#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." +#~ msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/CredentialField.jsx:97 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 -msgid "Provide key/value pairs using either YAML or JSON." +#: components/AdHocCommands/AdHocDetailsStep.jsx:284 +msgid "" +"Provide key/value pairs using either\n" +"YAML or JSON." msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 -#: src/screens/Template/shared/JobTemplateForm.jsx:579 +#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 +#~ msgid "Provide key/value pairs using either YAML or JSON." +#~ msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:152 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Provisioning Callback URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:574 +#: screens/Template/shared/JobTemplateForm.jsx:604 msgid "Provisioning Callback details" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:511 -#: src/screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:544 msgid "Provisioning Callbacks" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:116 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:93 +msgid "Pull" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:116 msgid "Question" msgstr "" -#: src/screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.jsx:103 msgid "RADIUS" msgstr "" -#: src/screens/Setting/SettingList.jsx:78 +#: screens/Setting/SettingList.jsx:78 msgid "RADIUS settings" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Read" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:177 +#: screens/Dashboard/Dashboard.jsx:177 msgid "Recent Jobs" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:175 +#: screens/Dashboard/Dashboard.jsx:175 msgid "Recent Jobs list tab" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:183 +#: screens/Dashboard/Dashboard.jsx:183 msgid "Recent Templates" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:180 +#: screens/Dashboard/Dashboard.jsx:180 msgid "Recent Templates list tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 msgid "Recipient List" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 msgid "Recipient list" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:117 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: src/screens/Project/ProjectList/ProjectList.jsx:149 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: components/Lookup/ProjectLookup.jsx:117 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 +#: screens/Project/ProjectList/ProjectList.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 msgid "Red Hat Insights" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 msgid "Red Hat Satellite 6" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "Red Hat Virtualization" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:108 +#: screens/Application/shared/ApplicationForm.jsx:108 msgid "Redirect URIs" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 msgid "Redirect uris" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:383 -msgid "Refer to the Ansible documentation for details about the configuration file." +#: screens/Template/shared/JobTemplateForm.jsx:413 +msgid "" +"Refer to the Ansible documentation for details\n" +"about the configuration file." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:78 +#: src/screens/Template/shared/JobTemplateForm.jsx:383 +#~ msgid "Refer to the Ansible documentation for details about the configuration file." +#~ msgstr "" + +#: screens/User/UserTokens/UserTokens.jsx:78 msgid "Refresh Token" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:85 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:118 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:119 msgid "Regions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:240 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +msgid "Registry credential" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:283 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "" -#: src/screens/Inventory/Inventories.jsx:94 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 +#: screens/Inventory/Inventories.jsx:92 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 msgid "Related Groups" msgstr "" -#: src/components/JobList/JobListItem.jsx:104 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:69 -#: src/screens/Job/JobDetail/JobDetail.jsx:360 -#: src/screens/Job/JobDetail/JobDetail.jsx:363 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:150 +#: components/JobList/JobListItem.jsx:105 +#: components/LaunchButton/ReLaunchDropDown.jsx:70 +#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:402 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:161 msgid "Relaunch" msgstr "" -#: src/components/JobList/JobListItem.jsx:89 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:135 +#: components/JobList/JobListItem.jsx:89 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:142 msgid "Relaunch Job" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:33 +#: components/LaunchButton/ReLaunchDropDown.jsx:33 msgid "Relaunch all hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:44 +#: components/LaunchButton/ReLaunchDropDown.jsx:44 msgid "Relaunch failed hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:23 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:28 +#: components/LaunchButton/ReLaunchDropDown.jsx:23 +#: components/LaunchButton/ReLaunchDropDown.jsx:28 msgid "Relaunch on" msgstr "" -#: src/components/JobList/JobListItem.jsx:88 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:134 +#: components/JobList/JobListItem.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:141 msgid "Relaunch using host parameters" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:116 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: src/screens/Project/ProjectList/ProjectList.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: components/Lookup/ProjectLookup.jsx:116 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 +#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 msgid "Remote Archive" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:20 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:28 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 msgid "Remove" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 msgid "Remove All Nodes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 msgid "Remove Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 msgid "Remove Node" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:23 msgid "Remove {0} Access" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:60 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:60 msgid "Remove {0} chip" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:47 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:49 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 msgid "Repeat Frequency" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:104 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:143 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:45 +msgid "Replace" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:54 +msgid "Replace field with new value" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:106 +#: screens/Template/Survey/SurveyQuestionForm.jsx:143 msgid "Required" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 msgid "Resource deleted" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:21 +#: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Resource name" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:40 +#: screens/User/UserRoles/UserRolesListItem.jsx:40 msgid "Resource role" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:30 +#: screens/User/UserRoles/UserRolesListItem.jsx:30 msgid "Resource type" msgstr "" -#: src/routeConfig.js:61 -#: src/screens/ActivityStream/ActivityStream.jsx:156 +#: routeConfig.js:62 +#: screens/ActivityStream/ActivityStream.jsx:156 msgid "Resources" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:121 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:71 +#: components/TemplateList/TemplateListItem.jsx:133 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:81 msgid "Resources are missing from this template." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:44 msgid "Restore initial value." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 -msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255 +msgid "" +"Retrieve the enabled state from the given dict of host variables.\n" +"The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:148 -#: src/components/JobList/JobListCancelButton.jsx:151 -#: src/screens/Job/JobOutput/JobOutput.jsx:692 -#: src/screens/Job/JobOutput/JobOutput.jsx:695 +#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 +#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:143 +#: components/JobList/JobListCancelButton.jsx:146 +#: screens/Job/JobDetail/JobDetail.jsx:453 +#: screens/Job/JobDetail/JobDetail.jsx:456 +#: screens/Job/JobOutput/JobOutput.jsx:804 +#: screens/Job/JobOutput/JobOutput.jsx:807 msgid "Return" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:115 +#: components/Search/AdvancedSearch.jsx:116 msgid "Returns results that have values other than this one as well as other filters." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:101 +#: components/Search/AdvancedSearch.jsx:102 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:108 +#: components/Search/AdvancedSearch.jsx:109 msgid "Returns results that satisfy this one or any other filters." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Revert" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.jsx:23 msgid "Revert all" msgstr "" -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:28 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:34 +#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.jsx:34 msgid "Revert all to default" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:53 +msgid "Revert field to previously saved value" +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:11 msgid "Revert settings" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.jsx:43 msgid "Revert to factory default." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:220 -#: src/screens/Project/ProjectList/ProjectList.jsx:172 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:111 +#: screens/Job/JobDetail/JobDetail.jsx:248 +#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectListItem.jsx:137 msgid "Revision" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 msgid "Revision #" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:199 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 +#: components/NotificationList/NotificationList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Rocket.Chat" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:40 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: src/screens/User/UserList/UserList.jsx:171 -#: src/screens/User/UserList/UserListItem.jsx:78 -#: src/screens/User/UserRoles/UserRolesList.jsx:145 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:44 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.jsx:148 +#: screens/User/UserList/UserList.jsx:171 +#: screens/User/UserList/UserListItem.jsx:78 +#: screens/User/UserRoles/UserRolesList.jsx:145 +#: screens/User/UserRoles/UserRolesListItem.jsx:44 msgid "Role" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:141 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:154 -#: src/screens/Team/Team.jsx:57 -#: src/screens/Team/Teams.jsx:32 -#: src/screens/User/User.jsx:70 -#: src/screens/User/Users.jsx:32 +#: components/ResourceAccessList/ResourceAccessList.jsx:143 +#: components/ResourceAccessList/ResourceAccessList.jsx:156 +#: screens/Team/Team.jsx:57 +#: screens/Team/Teams.jsx:32 +#: screens/User/User.jsx:70 +#: screens/User/Users.jsx:32 msgid "Roles" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 -#: src/components/Workflow/WorkflowLinkHelp.jsx:39 -#: src/screens/Credential/shared/ExternalTestModal.jsx:89 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:47 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: src/screens/Template/shared/JobTemplateForm.jsx:164 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/Workflow/WorkflowLinkHelp.jsx:39 +#: screens/Credential/shared/ExternalTestModal.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 +#: screens/Template/shared/JobTemplateForm.jsx:171 msgid "Run" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:124 -#: src/components/AdHocCommands/AdHocCommands.jsx:127 -#: src/components/AdHocCommands/AdHocCommands.jsx:132 -#: src/components/AdHocCommands/AdHocCommands.jsx:136 +#: components/AdHocCommands/AdHocCommands.jsx:124 +#: components/AdHocCommands/AdHocCommands.jsx:127 +#: components/AdHocCommands/AdHocCommands.jsx:133 +#: components/AdHocCommands/AdHocCommands.jsx:137 msgid "Run Command" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:109 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:109 msgid "Run command" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:227 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 msgid "Run every" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:157 +#: components/Schedule/shared/ScheduleForm.jsx:157 msgid "Run frequency" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 msgid "Run on" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 msgid "Run type" msgstr "" -#: src/components/JobList/JobList.jsx:224 -#: src/components/TemplateList/TemplateListItem.jsx:93 -#: src/components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.jsx:202 +#: components/TemplateList/TemplateListItem.jsx:105 +#: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:229 +#: screens/Job/JobOutput/JobOutput.jsx:654 +msgid "Running Handlers" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236 msgid "Running Jobs" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:99 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:99 msgid "Running jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:106 +#: screens/Setting/Settings.jsx:106 msgid "SAML" msgstr "" -#: src/screens/Setting/SettingList.jsx:82 +#: screens/Setting/SettingList.jsx:82 msgid "SAML settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:232 +#: screens/Dashboard/Dashboard.jsx:232 msgid "SCM update" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:53 -#: src/screens/User/UserList/UserListItem.jsx:57 +#: screens/User/UserDetail/UserDetail.jsx:53 +#: screens/User/UserList/UserListItem.jsx:57 msgid "SOCIAL" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 msgid "SSH password" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 msgid "SSL Connection" msgstr "" -#: src/components/Workflow/workflowReducer.js:411 +#: components/Workflow/WorkflowStartNode.jsx:61 +#: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:31 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:35 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:57 +#: components/Sparkline/Sparkline.jsx:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45 +#: screens/Project/ProjectList/ProjectListItem.jsx:65 msgid "STATUS:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:319 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 msgid "Sat" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:324 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:455 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 msgid "Saturday" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:255 -#: src/components/AssociateModal/AssociateModal.jsx:104 -#: src/components/AssociateModal/AssociateModal.jsx:110 -#: src/components/FormActionGroup/FormActionGroup.jsx:13 -#: src/components/FormActionGroup/FormActionGroup.jsx:19 -#: src/components/Schedule/shared/ScheduleForm.jsx:544 -#: src/components/Schedule/shared/ScheduleForm.jsx:550 -#: src/components/Schedule/shared/useSchedulePromptSteps.js:47 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: src/screens/Credential/shared/CredentialForm.jsx:269 -#: src/screens/Credential/shared/CredentialForm.jsx:274 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:19 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:25 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:34 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:118 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:165 +#: components/AddRole/AddResourceRole.jsx:266 +#: components/AssociateModal/AssociateModal.jsx:105 +#: components/AssociateModal/AssociateModal.jsx:111 +#: components/FormActionGroup/FormActionGroup.jsx:14 +#: components/FormActionGroup/FormActionGroup.jsx:20 +#: components/Schedule/shared/ScheduleForm.jsx:619 +#: components/Schedule/shared/ScheduleForm.jsx:625 +#: components/Schedule/shared/useSchedulePromptSteps.js:46 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 +#: screens/Credential/shared/CredentialForm.jsx:274 +#: screens/Credential/shared/CredentialForm.jsx:279 +#: screens/Setting/shared/RevertFormActionGroup.jsx:19 +#: screens/Setting/shared/RevertFormActionGroup.jsx:25 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:166 msgid "Save" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:31 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 msgid "Save & Exit" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 msgid "Save and enable log aggregation before testing the log aggregator." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 msgid "Save link changes" msgstr "" -#: src/screens/Project/Projects.jsx:38 -#: src/screens/Template/Templates.jsx:56 +#: screens/Project/Projects.jsx:38 +#: screens/Template/Templates.jsx:56 msgid "Schedule Details" msgstr "" -#: src/screens/Inventory/Inventories.jsx:117 +#: screens/Inventory/Inventories.jsx:115 msgid "Schedule details" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 msgid "Schedule is active" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 msgid "Schedule is inactive" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:460 +#: components/Schedule/shared/ScheduleForm.jsx:534 msgid "Schedule is missing rrule" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:231 -#: src/routeConfig.js:44 -#: src/screens/ActivityStream/ActivityStream.jsx:150 -#: src/screens/Inventory/Inventories.jsx:110 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:93 -#: src/screens/ManagementJob/ManagementJob.jsx:107 -#: src/screens/ManagementJob/ManagementJobs.jsx:25 -#: src/screens/Project/Project.jsx:123 -#: src/screens/Project/Projects.jsx:34 -#: src/screens/Schedule/AllSchedules.jsx:25 -#: src/screens/Template/Template.jsx:144 -#: src/screens/Template/Templates.jsx:52 -#: src/screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/ScheduleList/ScheduleList.jsx:231 +#: routeConfig.js:45 +#: screens/ActivityStream/ActivityStream.jsx:150 +#: screens/Inventory/Inventories.jsx:108 +#: screens/Inventory/InventorySource/InventorySource.jsx:93 +#: screens/ManagementJob/ManagementJob.jsx:107 +#: screens/ManagementJob/ManagementJobs.jsx:25 +#: screens/Project/Project.jsx:123 +#: screens/Project/Projects.jsx:34 +#: screens/Schedule/AllSchedules.jsx:25 +#: screens/Template/Template.jsx:157 +#: screens/Template/Templates.jsx:52 +#: screens/Template/WorkflowJobTemplate.jsx:134 msgid "Schedules" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: src/screens/User/UserTokenList/UserTokenList.jsx:126 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: src/screens/User/shared/UserTokenForm.jsx:68 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 +#: screens/User/UserTokenList/UserTokenList.jsx:126 +#: screens/User/UserTokenList/UserTokenListItem.jsx:61 +#: screens/User/UserTokenList/UserTokenListItem.jsx:62 +#: screens/User/shared/UserTokenForm.jsx:68 msgid "Scope" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:57 +#: screens/Job/JobOutput/PageControls.jsx:61 msgid "Scroll first" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:64 +#: screens/Job/JobOutput/PageControls.jsx:69 msgid "Scroll last" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:50 +#: screens/Job/JobOutput/PageControls.jsx:53 msgid "Scroll next" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:43 +#: screens/Job/JobOutput/PageControls.jsx:45 msgid "Scroll previous" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:250 -#: src/components/Lookup/Lookup.jsx:106 +#: components/Lookup/HostFilterLookup.jsx:251 +#: components/Lookup/Lookup.jsx:106 msgid "Search" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:257 -#: src/components/Search/Search.jsx:273 +#: screens/Job/JobOutput/JobOutput.jsx:723 +msgid "Search is disabled while the job is running" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:258 +#: components/Search/Search.jsx:282 msgid "Search submit button" msgstr "" -#: src/components/Search/Search.jsx:264 +#: components/Search/Search.jsx:272 msgid "Search text input" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:405 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 msgid "Second" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:104 -#: src/components/PromptDetail/PromptProjectDetail.jsx:89 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:125 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:105 +#: components/PromptDetail/PromptProjectDetail.jsx:95 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:127 msgid "Seconds" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:67 +#: components/LaunchPrompt/steps/PreviewStep.jsx:67 msgid "See errors on the left" msgstr "" -#: src/components/JobList/JobListItem.jsx:57 -#: src/components/Lookup/HostFilterLookup.jsx:319 -#: src/components/Lookup/Lookup.jsx:140 -#: src/components/Pagination/Pagination.jsx:35 +#: components/JobList/JobListItem.jsx:57 +#: components/Lookup/HostFilterLookup.jsx:321 +#: components/Lookup/Lookup.jsx:141 +#: components/Pagination/Pagination.jsx:33 msgid "Select" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:236 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 +#: screens/Host/HostGroups/HostGroupsList.jsx:236 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 msgid "Select Groups" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 msgid "Select Hosts" msgstr "" -#: src/components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.jsx:38 msgid "Select Input" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:223 +#: screens/InstanceGroup/Instances/InstanceList.jsx:223 msgid "Select Instances" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:22 +#: components/AssociateModal/AssociateModal.jsx:22 msgid "Select Items" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:210 +#: components/AddRole/AddResourceRole.jsx:221 msgid "Select Items from List" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:255 msgid "Select Roles to Apply" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:249 +#: screens/User/UserTeams/UserTeamList.jsx:249 msgid "Select Teams" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:50 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:78 msgid "Select a Node Type" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:180 +#: components/AddRole/AddResourceRole.jsx:191 msgid "Select a Resource Type" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:280 -msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#: screens/Template/shared/JobTemplateForm.jsx:310 +msgid "" +"Select a branch for the job template. This branch is applied to\n" +"all job template nodes that prompt for a branch." msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 +#: src/screens/Template/shared/JobTemplateForm.jsx:280 +#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:170 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:162 +#: screens/Credential/shared/CredentialForm.jsx:162 msgid "Select a credential Type" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:88 +#: components/JobList/JobListCancelButton.jsx:84 msgid "Select a job to cancel" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:81 +#: components/AdHocCommands/AdHocDetailsStep.jsx:81 msgid "Select a module" msgstr "" -#: src/screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.jsx:58 msgid "Select a playbook" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/Template/shared/JobTemplateForm.jsx:296 +msgid "Select a project before editing the execution environment." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 msgid "Select a row to approve" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:110 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 msgid "Select a row to delete" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 msgid "Select a row to deny" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:62 +#: components/DisassociateButton/DisassociateButton.jsx:62 msgid "Select a row to disassociate" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:85 +#: components/Schedule/shared/ScheduleForm.jsx:85 msgid "Select a valid date and time for this field" msgstr "" -#: src/components/HostForm/HostForm.jsx:23 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: src/components/Schedule/shared/ScheduleForm.jsx:91 -#: src/components/Schedule/shared/ScheduleForm.jsx:95 -#: src/screens/Credential/shared/CredentialForm.jsx:43 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:28 -#: src/screens/Inventory/shared/InventoryForm.jsx:24 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:33 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: src/screens/Project/shared/ProjectForm.jsx:101 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 -#: src/screens/Team/shared/TeamForm.jsx:20 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:28 -#: src/screens/Template/shared/JobTemplateForm.jsx:82 -#: src/screens/Template/shared/JobTemplateForm.jsx:140 -#: src/screens/User/shared/UserForm.jsx:49 +#: components/HostForm/HostForm.jsx:23 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 +#: components/Schedule/shared/ScheduleForm.jsx:91 +#: components/Schedule/shared/ScheduleForm.jsx:95 +#: screens/Credential/shared/CredentialForm.jsx:43 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:24 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 +#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 +#: screens/Project/shared/ProjectForm.jsx:100 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 +#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Template/Survey/SurveyQuestionForm.jsx:28 +#: screens/Template/shared/JobTemplateForm.jsx:83 +#: screens/Template/shared/JobTemplateForm.jsx:147 +#: screens/User/shared/UserForm.jsx:49 msgid "Select a value for this field" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.jsx:132 msgid "Select a webhook service." msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:74 -#: src/screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.jsx:74 +#: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:131 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" +#: screens/Project/shared/ProjectForm.jsx:200 +msgid "Select an organization before editing the default execution environment." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:354 +msgid "" +"Select credentials that allow Tower to access the nodes this job will be ran\n" +"against. You can only select one credential of each type. For machine credentials (SSH),\n" +"checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" +"credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" +"credential(s) become the defaults that can be updated at run time." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:324 -msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 +msgid "" +"Select from the list of directories found in\n" +"the Project Base Path. Together the base path and the playbook\n" +"directory provide the full path used to locate playbooks." msgstr "" #: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 -msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." -msgstr "" +#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." +#~ msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 msgid "Select items from list" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:215 -#: src/screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/Dashboard.jsx:215 +#: screens/Dashboard/Dashboard.jsx:216 msgid "Select job type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:193 -#: src/screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/Dashboard.jsx:193 +#: screens/Dashboard/Dashboard.jsx:194 msgid "Select period" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 msgid "Select roles to apply" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 msgid "Select source path" msgstr "" -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:91 +#: screens/Inventory/shared/SmartInventoryForm.jsx:91 msgid "Select the Instance Groups for this Inventory to run on." msgstr "" -#: src/screens/Organization/shared/OrganizationForm.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:463 +#: screens/Template/shared/JobTemplateForm.jsx:493 +msgid "" +"Select the Instance Groups for this Organization\n" +"to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:90 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:47 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Select the application that this token will belong to." msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:77 +#: components/AdHocCommands/AdHocCredentialStep.jsx:77 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 "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:146 -msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:201 +msgid "Select the default execution environment for this organization to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:102 +msgid "Select the default execution environment for this organization." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:197 +msgid "Select the default execution environment for this project." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:293 +msgid "Select the execution environment for this job template." +msgstr "" + +#: components/Lookup/InventoryLookup.jsx:89 +#: screens/Template/shared/JobTemplateForm.jsx:255 +msgid "" +"Select the inventory containing the hosts\n" +"you want this job to manage." msgstr "" #: src/components/Lookup/InventoryLookup.jsx:89 #: src/screens/Template/shared/JobTemplateForm.jsx:248 -msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +msgid "" +"Select the inventory file\n" +"to be synced by this source. You can select from\n" +"the dropdown or enter a file within the input." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 -msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." -msgstr "" +#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." +#~ msgstr "" -#: src/components/HostForm/HostForm.jsx:32 -#: src/components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.jsx:32 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:277 -#: src/screens/Template/shared/JobTemplateForm.jsx:304 +#: screens/Template/shared/JobTemplateForm.jsx:334 msgid "Select the playbook to be executed by this job." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:264 -msgid "Select the project containing the playbook you want this job to execute." +#: screens/Template/shared/JobTemplateForm.jsx:272 +msgid "" +"Select the project containing the playbook\n" +"you want this job to execute." msgstr "" -#: src/components/Lookup/Lookup.jsx:129 +#: src/screens/Template/shared/JobTemplateForm.jsx:264 +#~ msgid "Select the project containing the playbook you want this job to execute." +#~ msgstr "" + +#: components/Lookup/Lookup.jsx:129 msgid "Select {0}" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:221 -#: src/components/AddRole/AddResourceRole.jsx:233 -#: src/components/AddRole/AddResourceRole.jsx:250 -#: src/components/AddRole/SelectRoleStep.jsx:31 -#: src/components/OptionsList/OptionsList.jsx:51 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:76 -#: src/components/TemplateList/TemplateListItem.jsx:112 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:30 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 -#: src/screens/Host/HostList/HostListItem.jsx:32 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:98 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:31 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:86 -#: src/screens/Team/TeamList/TeamListItem.jsx:38 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 +#: components/AddRole/AddResourceRole.jsx:232 +#: components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:261 +#: components/AddRole/SelectRoleStep.jsx:31 +#: components/OptionsList/OptionsList.jsx:51 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:76 +#: components/TemplateList/TemplateListItem.jsx:124 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:30 +#: screens/Credential/CredentialList/CredentialListItem.jsx:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 +#: screens/Host/HostList/HostListItem.jsx:32 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43 +#: screens/Project/ProjectList/ProjectListItem.jsx:97 +#: screens/Team/TeamList/TeamListItem.jsx:38 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 msgid "Selected" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:114 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:119 -#: src/components/Lookup/MultiCredentialsLookup.jsx:149 -#: src/components/Lookup/MultiCredentialsLookup.jsx:154 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:153 +#: components/Lookup/MultiCredentialsLookup.jsx:149 +#: components/Lookup/MultiCredentialsLookup.jsx:154 msgid "Selected Category" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 msgid "Send a test log message to the configured log aggregator." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 msgid "Sender Email" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 msgid "Sender e-mail" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 msgid "September" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 msgid "Service account JSON file" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:52 -#: src/screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.jsx:56 +#: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 msgid "Set how many days of data should be retained." msgstr "" -#: src/screens/Setting/SettingList.jsx:126 +#: screens/Setting/SettingList.jsx:126 msgid "Set preferences for data collection, logos, and logins" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +msgid "Set source path to" +msgstr "" + +#: components/InstanceToggle/InstanceToggle.jsx:50 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:132 +#: screens/Application/shared/ApplicationForm.jsx:132 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:93 +#: components/Search/AdvancedSearch.jsx:94 msgid "Set type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:84 +#: components/Search/AdvancedSearch.jsx:85 msgid "Set type select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:87 +#: components/Search/AdvancedSearch.jsx:88 msgid "Set type typeahead" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:150 +#: components/Workflow/WorkflowTools.jsx:155 msgid "Set zoom to 100% and center graph" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:45 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 msgid "Setting category" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:47 +#: screens/Setting/shared/RevertButton.jsx:47 msgid "Setting matches factory default." msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 msgid "Setting name" msgstr "" -#: src/routeConfig.js:144 -#: src/routeConfig.js:148 -#: src/screens/ActivityStream/ActivityStream.jsx:207 -#: src/screens/ActivityStream/ActivityStream.jsx:209 -#: src/screens/Setting/Settings.jsx:43 +#: routeConfig.js:150 +#: routeConfig.js:154 +#: screens/ActivityStream/ActivityStream.jsx:213 +#: screens/ActivityStream/ActivityStream.jsx:215 +#: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Show" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 -#: src/components/PromptDetail/PromptDetail.jsx:251 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 -#: src/screens/Template/shared/JobTemplateForm.jsx:445 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/PromptDetail/PromptDetail.jsx:251 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:144 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232 +#: screens/Template/shared/JobTemplateForm.jsx:475 msgid "Show Changes" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 msgid "Show all groups" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:211 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:212 +#: components/AdHocCommands/AdHocDetailsStep.jsx:211 +#: components/AdHocCommands/AdHocDetailsStep.jsx:212 msgid "Show changes" msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Show only root groups" msgstr "" -#: src/screens/Login/Login.jsx:133 +#: screens/Login/Login.jsx:208 msgid "Sign in with Azure AD" msgstr "" -#: src/screens/Login/Login.jsx:142 +#: screens/Login/Login.jsx:221 msgid "Sign in with GitHub" msgstr "" -#: src/screens/Login/Login.jsx:172 +#: screens/Login/Login.jsx:263 msgid "Sign in with GitHub Enterprise" msgstr "" -#: src/screens/Login/Login.jsx:184 +#: screens/Login/Login.jsx:279 msgid "Sign in with GitHub Enterprise Organizations" msgstr "" -#: src/screens/Login/Login.jsx:196 +#: screens/Login/Login.jsx:296 msgid "Sign in with GitHub Enterprise Teams" msgstr "" -#: src/screens/Login/Login.jsx:152 +#: screens/Login/Login.jsx:235 msgid "Sign in with GitHub Organizations" msgstr "" -#: src/screens/Login/Login.jsx:162 +#: screens/Login/Login.jsx:249 msgid "Sign in with GitHub Teams" msgstr "" -#: src/screens/Login/Login.jsx:206 +#: screens/Login/Login.jsx:311 msgid "Sign in with Google" msgstr "" -#: src/screens/Login/Login.jsx:220 +#: screens/Login/Login.jsx:329 msgid "Sign in with SAML" msgstr "" -#: src/screens/Login/Login.jsx:219 +#: screens/Login/Login.jsx:328 msgid "Sign in with SAML {samlIDP}" msgstr "" -#: src/components/Search/Search.jsx:175 +#: components/Search/Search.jsx:177 msgid "Simple key select" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 -#: src/components/PromptDetail/PromptDetail.jsx:229 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:242 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 -#: src/screens/Job/JobDetail/JobDetail.jsx:308 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:347 -#: src/screens/Template/shared/JobTemplateForm.jsx:484 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 +#: components/PromptDetail/PromptDetail.jsx:229 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 +#: screens/Job/JobDetail/JobDetail.jsx:339 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "Skip Tags" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:517 +msgid "" +"Skip tags are useful when you have a\n" +"large playbook, and you want to skip specific parts of a\n" +"play or task. Use commas to separate multiple tags. Refer\n" +"to Ansible Tower documentation for details on the usage\n" +"of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 +msgid "" +"Skip tags are useful when you have a large\n" +"playbook, and you want to skip specific parts of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 #: src/screens/Template/shared/JobTemplateForm.jsx:487 -msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 msgid "Skipped" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:140 +#: components/NotificationList/NotificationList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Slack" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:19 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:39 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:43 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:97 +#: screens/Host/HostList/SmartInventoryButton.jsx:19 +#: screens/Host/HostList/SmartInventoryButton.jsx:40 +#: screens/Host/HostList/SmartInventoryButton.jsx:44 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:97 msgid "Smart Inventory" msgstr "" -#: src/screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.jsx:96 msgid "Smart Inventory not found." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 +#: components/Lookup/HostFilterLookup.jsx:283 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 msgid "Smart host filter" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 msgid "Smart inventory" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:64 +#: components/LaunchPrompt/steps/PreviewStep.jsx:64 msgid "Some of the previous step(s) have errors" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 msgid "Something went wrong with the request to test this credential and metadata." msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Something went wrong..." msgstr "" -#: src/components/Sort/Sort.jsx:129 +#: components/Sort/Sort.jsx:129 msgid "Sort" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:63 -#: src/screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.jsx:63 +#: screens/Template/Survey/SurveyListItem.jsx:64 msgid "Sort question order" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:85 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:192 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:121 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:86 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200 +#: screens/Inventory/shared/InventorySourceForm.jsx:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 msgid "Source" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: src/components/PromptDetail/PromptDetail.jsx:189 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: src/components/PromptDetail/PromptProjectDetail.jsx:72 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:106 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:210 -#: src/screens/Template/shared/JobTemplateForm.jsx:276 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 +#: components/PromptDetail/PromptDetail.jsx:189 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:137 +#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/shared/JobTemplateForm.jsx:306 msgid "Source Control Branch" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 msgid "Source Control Branch/Tag/Commit" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:76 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:110 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 +#: components/PromptDetail/PromptProjectDetail.jsx:82 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:112 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 msgid "Source Control Credential" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:188 +#: screens/Project/shared/ProjectForm.jsx:214 msgid "Source Control Credential Type" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:73 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:107 -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 +#: components/PromptDetail/PromptProjectDetail.jsx:79 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:109 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 msgid "Source Control Refspec" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:68 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:74 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:102 msgid "Source Control Type" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:121 -#: src/components/PromptDetail/PromptProjectDetail.jsx:71 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:153 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: components/Lookup/ProjectLookup.jsx:121 +#: components/PromptDetail/PromptProjectDetail.jsx:77 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:107 +#: screens/Project/ProjectList/ProjectList.jsx:158 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Source Control URL" msgstr "" -#: src/components/JobList/JobList.jsx:205 -#: src/components/JobList/JobListItem.jsx:31 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: src/screens/Job/JobDetail/JobDetail.jsx:77 +#: components/JobList/JobList.jsx:183 +#: components/JobList/JobListItem.jsx:31 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 +#: screens/Job/JobDetail/JobDetail.jsx:93 msgid "Source Control Update" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 msgid "Source Phone Number" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:169 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:170 msgid "Source Variables" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:183 +#: screens/Job/JobDetail/JobDetail.jsx:184 msgid "Source Workflow Job" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:166 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:177 msgid "Source control branch" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:167 +#: screens/Inventory/shared/InventorySourceForm.jsx:157 msgid "Source details" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 msgid "Source phone number" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:247 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:33 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 msgid "Source variables" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 msgid "Sourced from a project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:100 -#: src/screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.jsx:98 +#: screens/Inventory/Inventory.jsx:66 msgid "Sources" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +msgid "" +"Specify HTTP Headers in JSON format. Refer to\n" +"the Ansible Tower documentation for example syntax." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 -msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +msgid "" +"Specify a notification color. Acceptable colors are hex\n" +"color code (example: #3af or #789abc)." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 -msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." -msgstr "" +#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." +#~ msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 msgid "Specify the conditions under which this node should be executed" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:180 +#: screens/Job/JobOutput/HostEventModal.jsx:180 msgid "Standard Error" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:162 +#: screens/Job/JobOutput/HostEventModal.jsx:162 msgid "Standard Out" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:181 +#: screens/Job/JobOutput/HostEventModal.jsx:181 msgid "Standard error tab" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:163 +#: screens/Job/JobOutput/HostEventModal.jsx:163 msgid "Standard out tab" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:57 -#: src/components/NotificationList/NotificationListItem.jsx:58 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:48 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:54 +#: components/NotificationList/NotificationListItem.jsx:57 +#: components/NotificationList/NotificationListItem.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:55 msgid "Start" msgstr "" -#: src/components/JobList/JobList.jsx:241 -#: src/components/JobList/JobListItem.jsx:74 +#: components/JobList/JobList.jsx:219 +#: components/JobList/JobListItem.jsx:74 msgid "Start Time" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:123 +#: components/Schedule/shared/ScheduleForm.jsx:123 msgid "Start date/time" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:395 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:396 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 msgid "Start message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:404 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:405 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 msgid "Start message body" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:69 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:70 msgid "Start sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:72 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:74 msgid "Start sync source" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:152 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: screens/Job/JobDetail/JobDetail.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Started" msgstr "" -#: src/components/JobList/JobList.jsx:218 -#: src/components/JobList/JobList.jsx:239 -#: src/components/JobList/JobListItem.jsx:68 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:195 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:141 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:179 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:170 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:93 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 +#: components/JobList/JobList.jsx:196 +#: components/JobList/JobList.jsx:217 +#: components/JobList/JobListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryList.jsx:201 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:142 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 +#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectListItem.jsx:119 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 msgid "Status" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:115 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: src/screens/Project/ProjectList/ProjectList.jsx:147 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Job/JobOutput/JobOutput.jsx:630 +msgid "Stdout" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:115 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 +#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 msgid "Subversion" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:70 -#: src/components/NotificationList/NotificationListItem.jsx:71 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/NotificationList/NotificationListItem.jsx:70 +#: components/NotificationList/NotificationListItem.jsx:71 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Success" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:413 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:414 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 msgid "Success message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:422 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:423 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 msgid "Success message body" msgstr "" -#: src/components/JobList/JobList.jsx:225 -#: src/components/Workflow/WorkflowNodeHelp.jsx:86 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.jsx:203 +#: components/Workflow/WorkflowNodeHelp.jsx:86 +#: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:122 +#: screens/Project/ProjectList/ProjectListItem.jsx:148 msgid "Successfully copied to clipboard!" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:259 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 msgid "Sun" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:264 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:425 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 msgid "Sunday" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:27 -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/Templates.jsx:49 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: screens/Template/Template.jsx:168 +#: screens/Template/Templates.jsx:49 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:136 +#: screens/Template/Survey/SurveyList.jsx:138 msgid "Survey List" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.jsx:32 msgid "Survey Preview" msgstr "" -#: src/screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.jsx:50 msgid "Survey Toggle" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:33 +#: screens/Template/Survey/SurveyPreviewModal.jsx:33 msgid "Survey preview modal" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.jsx:57 msgid "Survey questions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:76 -#: src/screens/Project/shared/ProjectSyncButton.jsx:34 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:78 +#: screens/Project/shared/ProjectSyncButton.jsx:35 msgid "Sync" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:128 -#: src/screens/Project/shared/ProjectSyncButton.jsx:30 +#: screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/shared/ProjectSyncButton.jsx:31 msgid "Sync Project" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:199 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:202 msgid "Sync all" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:193 msgid "Sync all sources" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:231 msgid "Sync error" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:115 +#: screens/Project/ProjectList/ProjectListItem.jsx:141 msgid "Sync for revision" msgstr "" -#: src/screens/Setting/SettingList.jsx:105 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:27 +#: screens/Setting/SettingList.jsx:105 +#: screens/User/UserRoles/UserRolesListItem.jsx:27 msgid "System" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:126 -#: src/screens/User/UserDetail/UserDetail.jsx:42 -#: src/screens/User/UserList/UserListItem.jsx:26 -#: src/screens/User/UserRoles/UserRolesList.jsx:124 -#: src/screens/User/shared/UserForm.jsx:41 +#: screens/Team/TeamRoles/TeamRolesList.jsx:126 +#: screens/User/UserDetail/UserDetail.jsx:42 +#: screens/User/UserList/UserListItem.jsx:26 +#: screens/User/UserRoles/UserRolesList.jsx:124 +#: screens/User/shared/UserForm.jsx:41 msgid "System Administrator" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:44 -#: src/screens/User/UserList/UserListItem.jsx:28 -#: src/screens/User/shared/UserForm.jsx:35 +#: screens/User/UserDetail/UserDetail.jsx:44 +#: screens/User/UserList/UserListItem.jsx:28 +#: screens/User/shared/UserForm.jsx:35 msgid "System Auditor" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:130 -#: src/screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/Job/JobOutput/JobOutput.jsx:667 +msgid "System Warning" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:130 +#: screens/User/UserRoles/UserRolesList.jsx:128 msgid "System administrators have unrestricted access to all resources." msgstr "" -#: src/screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.jsx:109 msgid "TACACS+" msgstr "" -#: src/screens/Setting/SettingList.jsx:86 +#: screens/Setting/SettingList.jsx:86 msgid "TACACS+ settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:165 -#: src/screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:501 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a\n" +"play or task. Use commas to separate multiple tags.\n" +"Refer to Ansible Tower documentation for details on\n" +"the usage of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 #: src/screens/Template/shared/JobTemplateForm.jsx:471 -msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 msgid "Tags for the Annotation" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 msgid "Tags for the annotation (optional)" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 msgid "Target URL" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.jsx:129 msgid "Task" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:95 msgid "Task Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:89 +#: screens/Job/JobOutput/JobOutput.jsx:658 +msgid "Task Started" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:96 msgid "Tasks" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:19 msgid "Team" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:120 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:120 +#: screens/Team/TeamRoles/TeamRolesList.jsx:144 msgid "Team Roles" msgstr "" -#: src/screens/Team/Team.jsx:73 +#: screens/Team/Team.jsx:73 msgid "Team not found." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:198 -#: src/components/AddRole/AddResourceRole.jsx:199 -#: src/routeConfig.js:106 -#: src/screens/ActivityStream/ActivityStream.jsx:184 -#: src/screens/Organization/Organization.jsx:124 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:156 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:41 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 -#: src/screens/Organization/Organizations.jsx:33 -#: src/screens/Team/TeamList/TeamList.jsx:124 -#: src/screens/Team/TeamList/TeamList.jsx:179 -#: src/screens/Team/Teams.jsx:14 -#: src/screens/Team/Teams.jsx:25 -#: src/screens/User/User.jsx:69 -#: src/screens/User/UserTeams/UserTeamList.jsx:176 -#: src/screens/User/UserTeams/UserTeamList.jsx:244 -#: src/screens/User/Users.jsx:33 +#: components/AddRole/AddResourceRole.jsx:209 +#: components/AddRole/AddResourceRole.jsx:210 +#: routeConfig.js:107 +#: screens/ActivityStream/ActivityStream.jsx:184 +#: screens/Organization/Organization.jsx:125 +#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 +#: screens/Organization/Organizations.jsx:33 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/Teams.jsx:14 +#: screens/Team/Teams.jsx:25 +#: screens/User/User.jsx:69 +#: screens/User/UserTeams/UserTeamList.jsx:176 +#: screens/User/UserTeams/UserTeamList.jsx:244 +#: screens/User/Users.jsx:33 +#: util/getRelatedResourceDeleteDetails.js:198 msgid "Teams" msgstr "" -#: src/screens/Template/Template.jsx:171 -#: src/screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.jsx:184 +#: screens/Template/WorkflowJobTemplate.jsx:179 msgid "Template not found." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:179 -#: src/components/TemplateList/TemplateList.jsx:238 -#: src/routeConfig.js:65 -#: src/screens/ActivityStream/ActivityStream.jsx:161 -#: src/screens/Template/Templates.jsx:16 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 +msgid "Template type" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:184 +#: components/TemplateList/TemplateList.jsx:243 +#: routeConfig.js:66 +#: screens/ActivityStream/ActivityStream.jsx:161 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 +#: screens/Template/Templates.jsx:16 +#: util/getRelatedResourceDeleteDetails.js:242 +#: util/getRelatedResourceDeleteDetails.js:299 msgid "Templates" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:281 -#: src/screens/Credential/shared/CredentialForm.jsx:287 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 +#: screens/Credential/shared/CredentialForm.jsx:287 +#: screens/Credential/shared/CredentialForm.jsx:293 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:83 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 msgid "Test" msgstr "" -#: src/screens/Credential/shared/ExternalTestModal.jsx:78 +#: screens/Credential/shared/ExternalTestModal.jsx:78 msgid "Test External Credential" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:123 msgid "Test Notification" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 msgid "Test logging" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:113 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:120 msgid "Test notification" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 msgid "Test passed" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:53 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:50 +#: screens/Template/Survey/SurveyPreviewModal.jsx:53 +#: screens/Template/Survey/SurveyQuestionForm.jsx:50 msgid "Text" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:67 +#: screens/Template/Survey/SurveyPreviewModal.jsx:67 msgid "Text Area" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:51 +#: screens/Template/Survey/SurveyQuestionForm.jsx:51 msgid "Textarea" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:88 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +msgid "The Execution Environment to be used when one has not been configured for a job template." +msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:88 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +msgid "" +"The amount of time (in seconds) before the email\n" +"notification stops trying to reach the host and times out. Ranges\n" +"from 1 to 120 seconds." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 -msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:469 +msgid "" +"The amount of time (in seconds) to run\n" +"before the job is canceled. Defaults to 0 for no job\n" +"timeout." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:439 -msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +msgid "" +"The base URL of the Grafana server - the\n" +"/api/annotations endpoint will be added automatically to the base\n" +"Grafana URL." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 -msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 +msgid "" +"The first fetches all references. The second\n" +"fetches the Github pull request number 62, in this example\n" +"the branch needs to be \"pull/62/head\"." msgstr "" #: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 -msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:77 +msgid "" +"The maximum number of hosts allowed to be managed by this organization.\n" +"Value defaults to 0 which means no limit. Refer to the Ansible\n" +"documentation for more details." msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:69 -msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:407 +msgid "" +"The number of parallel or simultaneous\n" +"processes to use while executing the playbook. An empty value,\n" +"or a value less than 1 will use the Ansible default which is\n" +"usually 5. The default number of forks can be overwritten\n" +"with a change to" msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:377 -msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" -msgstr "" +#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:197 +#: components/AdHocCommands/AdHocDetailsStep.jsx:197 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "" -#: src/components/ContentError/ContentError.jsx:43 -#: src/screens/Job/Job.jsx:84 +#: components/ContentError/ContentError.jsx:43 +#: screens/Job/Job.jsx:124 msgid "The page you requested could not be found." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:175 +#: components/AdHocCommands/AdHocDetailsStep.jsx:175 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:123 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:82 +msgid "The registry location where the container is stored." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 msgid "The resource associated with this node has been deleted." msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 -msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#: screens/Template/Survey/SurveyQuestionForm.jsx:134 +msgid "" +"The suggested format for variable names is lowercase and\n" +"underscore-separated (for example, foo_bar, user_id, host_name,\n" +"etc.). Variable names with spaces are not allowed." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 +#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#~ msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 msgid "The tower instance group cannot be deleted." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 -msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +msgid "" +"There are no available playbook directories in {project_base_dir}.\n" +"Either that directory is empty, or all of the contents are already\n" +"assigned to other projects. Create a new directory there and make\n" +"sure the playbook files can be read by the \"awx\" system user,\n" +"or have {brandName} directly retrieve your playbooks from\n" +"source control using the Source Control Type option above." msgstr "" -#: src/screens/Login/Login.jsx:112 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#~ msgstr "" + +#: screens/Login/Login.jsx:120 msgid "There was a problem signing in. Please try again." msgstr "" -#: src/components/ContentError/ContentError.jsx:45 +#: components/ContentError/ContentError.jsx:45 msgid "There was an error loading this content. Please reload the page." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:589 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:600 msgid "There was an error saving the workflow." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:19 +#: screens/Setting/shared/LoggingTestAlert.jsx:19 msgid "There was an error testing the log aggregator." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:74 +#: components/AdHocCommands/AdHocDetailsStep.jsx:74 msgid "These are the modules that {brandName} supports running commands against." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:151 +#: components/AdHocCommands/AdHocDetailsStep.jsx:151 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:133 +#: components/AdHocCommands/AdHocDetailsStep.jsx:133 msgid "These arguments are used with the specified module." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:121 +#: components/AdHocCommands/AdHocDetailsStep.jsx:121 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:407 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 msgid "Third" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:171 -#: src/screens/Template/Survey/SurveyList.jsx:121 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282 +#: screens/Template/Survey/SurveyList.jsx:123 msgid "This action will delete the following:" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:214 +#: screens/User/UserTeams/UserTeamList.jsx:214 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:218 -#: src/screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: screens/User/UserRoles/UserRolesList.jsx:220 msgid "This action will disassociate the following role from {0}:" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.jsx:134 msgid "This action will disassociate the following:" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:226 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +msgid "This container group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 +msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:122 +msgid "This credential type is currently being used by some credentials and cannot be deleted" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 +msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:269 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 msgid "This field may not be blank" msgstr "" -#: src/util/validators.jsx:102 +#: util/validators.jsx:102 msgid "This field must be a number" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:113 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:113 msgid "This field must be a number and have a value between {0} and {1}" msgstr "" -#: src/util/validators.jsx:41 +#: util/validators.jsx:41 msgid "This field must be a number and have a value between {min} and {max}" msgstr "" -#: src/util/validators.jsx:142 +#: util/validators.jsx:142 msgid "This field must be a regular expression" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: src/util/validators.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 +#: util/validators.jsx:86 msgid "This field must be an integer" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:104 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:104 msgid "This field must be at least {0} characters" msgstr "" -#: src/util/validators.jsx:31 +#: util/validators.jsx:31 msgid "This field must be at least {min} characters" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 msgid "This field must be greater than 0" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:118 -#: src/screens/User/shared/UserForm.jsx:89 -#: src/screens/User/shared/UserForm.jsx:100 -#: src/util/validators.jsx:4 -#: src/util/validators.jsx:51 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:118 +#: screens/User/shared/UserForm.jsx:89 +#: screens/User/shared/UserForm.jsx:100 +#: util/validators.jsx:4 +#: util/validators.jsx:51 msgid "This field must not be blank" msgstr "" -#: src/util/validators.jsx:76 +#: util/validators.jsx:76 msgid "This field must not contain spaces" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:107 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:107 msgid "This field must not exceed {0} characters" msgstr "" -#: src/util/validators.jsx:22 +#: util/validators.jsx:22 msgid "This field must not exceed {max} characters" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:50 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:52 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Application/Applications.jsx:78 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:150 +msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/LaunchPrompt/steps/useInventoryStep.jsx:66 +msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" + +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292 +msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" +msgstr "" + +#: screens/Application/Applications.jsx:78 msgid "This is the only time the client secret will be shown." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:59 +#: screens/User/UserTokens/UserTokens.jsx:59 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:143 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:411 +msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 +msgid "This organization is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.jsx:177 +msgid "This project is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:150 msgid "This project needs to be updated" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:131 +#: components/Schedule/ScheduleList/ScheduleList.jsx:131 msgid "This schedule is missing an Inventory" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:158 +#: components/Schedule/ScheduleList/ScheduleList.jsx:158 msgid "This schedule is missing required survey values" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:63 -#: src/components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:63 +#: components/LaunchPrompt/steps/StepName.jsx:27 msgid "This step contains errors" msgstr "" -#: src/screens/User/shared/UserForm.jsx:155 +#: screens/User/shared/UserForm.jsx:155 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:36 -msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#: screens/Setting/shared/RevertAllAlert.jsx:36 +msgid "" +"This will revert all configuration values on this page to\n" +"their factory defaults. Are you sure you want to proceed?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 +#: src/screens/Setting/shared/RevertAllAlert.jsx:36 +#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 msgid "This workflow does not have any nodes configured." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:299 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 msgid "Thu" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:304 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 msgid "Thursday" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:236 -#: src/screens/ActivityStream/ActivityStream.jsx:248 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:40 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.jsx:242 +#: screens/ActivityStream/ActivityStream.jsx:254 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 +#: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "" +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 +msgid "" +"Time in seconds to consider a project\n" +"to be current. During job runs and callbacks the task\n" +"system will evaluate the timestamp of the latest project\n" +"update. If it is older than Cache Timeout, it is not\n" +"considered current, and a new project update will be\n" +"performed." +msgstr "" + #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 -msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +msgid "" +"Time in seconds to consider an inventory sync\n" +"to be current. During job runs and callbacks the task system will\n" +"evaluate the timestamp of the latest sync. If it is older than\n" +"Cache Timeout, it is not considered current, and a new\n" +"inventory sync will be performed." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 -msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." -msgstr "" +#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." +#~ msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 msgid "Timed out" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:136 -#: src/screens/Template/shared/JobTemplateForm.jsx:438 +#: components/PromptDetail/PromptDetail.jsx:116 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 +#: screens/Template/shared/JobTemplateForm.jsx:468 msgid "Timeout" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:173 msgid "Timeout minutes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:157 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:187 msgid "Timeout seconds" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 msgid "Toggle Legend" msgstr "" -#: src/components/FormField/PasswordInput.jsx:40 +#: components/FormField/PasswordInput.jsx:41 msgid "Toggle Password" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 msgid "Toggle Tools" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:36 +#: screens/Job/JobOutput/PageControls.jsx:37 msgid "Toggle expand/collapse event lines" msgstr "" -#: src/components/HostToggle/HostToggle.jsx:67 +#: components/HostToggle/HostToggle.jsx:67 msgid "Toggle host" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:63 +#: components/InstanceToggle/InstanceToggle.jsx:63 msgid "Toggle instance" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 msgid "Toggle legend" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:51 +#: components/NotificationList/NotificationListItem.jsx:51 msgid "Toggle notification approvals" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:90 +#: components/NotificationList/NotificationListItem.jsx:90 msgid "Toggle notification failure" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:64 +#: components/NotificationList/NotificationListItem.jsx:64 msgid "Toggle notification start" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:77 +#: components/NotificationList/NotificationListItem.jsx:77 msgid "Toggle notification success" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 msgid "Toggle schedule" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 msgid "Toggle tools" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: src/screens/User/UserTokens/UserTokens.jsx:65 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 +#: screens/User/UserTokens/UserTokens.jsx:65 msgid "Token" msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:49 -#: src/screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.jsx:49 +#: screens/User/UserTokens/UserTokens.jsx:52 msgid "Token information" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.jsx:73 msgid "Token not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:39 +#: screens/User/UserTokenList/UserTokenListItem.jsx:39 msgid "Token type" msgstr "" -#: src/screens/Application/Application/Application.jsx:78 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: src/screens/Application/Applications.jsx:40 -#: src/screens/User/User.jsx:75 -#: src/screens/User/UserTokenList/UserTokenList.jsx:106 -#: src/screens/User/Users.jsx:35 +#: screens/Application/Application/Application.jsx:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 +#: screens/Application/Applications.jsx:40 +#: screens/User/User.jsx:75 +#: screens/User/UserTokenList/UserTokenList.jsx:106 +#: screens/User/Users.jsx:35 msgid "Tokens" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:84 +#: components/Workflow/WorkflowTools.jsx:84 msgid "Tools" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:230 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237 msgid "Total Jobs" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 msgid "Total Nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:103 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:103 msgid "Total jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 msgid "True" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:279 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 msgid "Tue" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:284 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:435 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 msgid "Tuesday" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:201 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:141 +#: components/NotificationList/NotificationList.jsx:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "Twilio" msgstr "" -#: src/components/JobList/JobList.jsx:240 -#: src/components/JobList/JobListItem.jsx:72 -#: src/components/Lookup/ProjectLookup.jsx:110 -#: src/components/NotificationList/NotificationList.jsx:220 -#: src/components/NotificationList/NotificationListItem.jsx:30 -#: src/components/PromptDetail/PromptDetail.jsx:112 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:174 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:95 -#: src/components/TemplateList/TemplateList.jsx:193 -#: src/components/TemplateList/TemplateList.jsx:218 -#: src/components/TemplateList/TemplateListItem.jsx:129 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 -#: src/components/Workflow/WorkflowNodeHelp.jsx:136 -#: src/components/Workflow/WorkflowNodeHelp.jsx:162 -#: src/screens/Credential/CredentialList/CredentialList.jsx:152 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:60 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:47 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:79 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:86 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:196 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:95 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:181 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:108 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: src/screens/Project/ProjectList/ProjectList.jsx:142 -#: src/screens/Project/ProjectList/ProjectList.jsx:171 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:106 -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:30 -#: src/screens/Template/Survey/SurveyListItem.jsx:115 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 -#: src/screens/User/UserDetail/UserDetail.jsx:70 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:34 +#: components/JobList/JobList.jsx:218 +#: components/JobList/JobListItem.jsx:72 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/NotificationList/NotificationList.jsx:220 +#: components/NotificationList/NotificationListItem.jsx:30 +#: components/PromptDetail/PromptDetail.jsx:112 +#: components/Schedule/ScheduleList/ScheduleList.jsx:174 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95 +#: components/TemplateList/TemplateList.jsx:198 +#: components/TemplateList/TemplateList.jsx:223 +#: components/TemplateList/TemplateListItem.jsx:154 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 +#: components/Workflow/WorkflowNodeHelp.jsx:136 +#: components/Workflow/WorkflowNodeHelp.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Credential/CredentialList/CredentialListItem.jsx:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:95 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 +#: screens/Project/ProjectList/ProjectList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectListItem.jsx:132 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30 +#: screens/Template/Survey/SurveyListItem.jsx:117 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/User/UserDetail/UserDetail.jsx:70 +#: screens/User/UserRoles/UserRolesListItem.jsx:34 msgid "Type" msgstr "" -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: src/screens/Project/shared/ProjectForm.jsx:220 +#: screens/Credential/shared/TypeInputsSubForm.jsx:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 +#: screens/Project/shared/ProjectForm.jsx:246 msgid "Type Details" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:108 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:63 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:111 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:63 msgid "Unavailable" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Undo" msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:101 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:108 msgid "Unreachable" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:100 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:107 msgid "Unreachable Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:109 msgid "Unreachable Hosts" msgstr "" -#: src/util/dates.jsx:81 +#: util/dates.jsx:81 msgid "Unrecognized day string" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 msgid "Unsaved changes modal" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:42 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:69 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 +#: components/PromptDetail/PromptProjectDetail.jsx:43 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 msgid "Update Revision on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:51 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 msgid "Update on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:53 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:54 msgid "Update on Project Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:156 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 msgid "Update on launch" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 msgid "Update on project update" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:126 msgid "Update options" msgstr "" -#: src/screens/Setting/SettingList.jsx:94 +#: screens/Setting/SettingList.jsx:94 msgid "Update settings pertaining to Jobs within {brandName}" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:205 +#: screens/Template/shared/WebhookSubForm.jsx:206 msgid "Update webhook key" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.jsx:110 msgid "Updating" msgstr "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:57 #: src/screens/Organization/shared/OrganizationForm.jsx:33 #: src/screens/Project/shared/ProjectForm.jsx:286 -msgid "Use Default Ansible Environment" -msgstr "" +#~ msgid "Use Default Ansible Environment" +#~ msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:133 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:67 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 msgid "Use Fact Storage" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 msgid "Use SSL" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 msgid "Use TLS" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:99 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:107 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:59 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:102 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:59 msgid "Used capacity" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:135 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/AppContainer/PageHeaderToolbar.jsx:135 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:20 msgid "User" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:163 +#: components/AppContainer/PageHeaderToolbar.jsx:163 msgid "User Details" msgstr "" -#: src/screens/Setting/SettingList.jsx:124 -#: src/screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.jsx:124 +#: screens/Setting/Settings.jsx:112 msgid "User Interface" msgstr "" -#: src/screens/Setting/SettingList.jsx:131 +#: screens/Setting/SettingList.jsx:131 msgid "User Interface settings" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:110 -#: src/screens/User/UserRoles/UserRolesList.jsx:141 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:110 +#: screens/User/UserRoles/UserRolesList.jsx:141 msgid "User Roles" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:67 -#: src/screens/User/shared/UserForm.jsx:137 +#: screens/User/UserDetail/UserDetail.jsx:67 +#: screens/User/shared/UserForm.jsx:137 msgid "User Type" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:156 +#: components/AppContainer/PageHeaderToolbar.jsx:156 msgid "User details" msgstr "" -#: src/screens/User/User.jsx:95 +#: screens/User/User.jsx:95 msgid "User not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.jsx:166 msgid "User tokens" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:114 -#: src/components/AddRole/AddResourceRole.jsx:129 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:125 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:159 -#: src/screens/Login/Login.jsx:261 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: src/screens/User/UserDetail/UserDetail.jsx:60 -#: src/screens/User/UserList/UserList.jsx:118 -#: src/screens/User/UserList/UserList.jsx:163 -#: src/screens/User/UserList/UserListItem.jsx:45 -#: src/screens/User/shared/UserForm.jsx:67 +#: components/AddRole/AddResourceRole.jsx:125 +#: components/AddRole/AddResourceRole.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:127 +#: components/ResourceAccessList/ResourceAccessList.jsx:161 +#: screens/Login/Login.jsx:175 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 +#: screens/User/UserDetail/UserDetail.jsx:60 +#: screens/User/UserList/UserList.jsx:118 +#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserListItem.jsx:45 +#: screens/User/shared/UserForm.jsx:67 msgid "Username" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:190 -#: src/components/AddRole/AddResourceRole.jsx:191 -#: src/routeConfig.js:101 -#: src/screens/ActivityStream/ActivityStream.jsx:181 -#: src/screens/Team/Teams.jsx:30 -#: src/screens/User/UserList/UserList.jsx:113 -#: src/screens/User/UserList/UserList.jsx:155 -#: src/screens/User/Users.jsx:15 -#: src/screens/User/Users.jsx:27 +#: components/AddRole/AddResourceRole.jsx:201 +#: components/AddRole/AddResourceRole.jsx:202 +#: routeConfig.js:102 +#: screens/ActivityStream/ActivityStream.jsx:181 +#: screens/Team/Teams.jsx:30 +#: screens/User/UserList/UserList.jsx:113 +#: screens/User/UserList/UserList.jsx:155 +#: screens/User/Users.jsx:15 +#: screens/User/Users.jsx:27 msgid "Users" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "VMware vCenter" msgstr "" -#: src/components/HostForm/HostForm.jsx:102 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 -#: src/components/PromptDetail/PromptDetail.jsx:260 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:256 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 -#: src/screens/Host/HostDetail/HostDetail.jsx:104 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:99 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 -#: src/screens/Inventory/shared/InventoryForm.jsx:89 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:55 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:98 -#: src/screens/Job/JobDetail/JobDetail.jsx:337 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:362 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:194 -#: src/screens/Template/shared/JobTemplateForm.jsx:359 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: components/HostForm/HostForm.jsx:102 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 +#: components/PromptDetail/PromptDetail.jsx:260 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:262 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 +#: screens/Host/HostDetail/HostDetail.jsx:104 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 +#: screens/Inventory/shared/InventoryForm.jsx:89 +#: screens/Inventory/shared/InventoryGroupForm.jsx:55 +#: screens/Inventory/shared/SmartInventoryForm.jsx:98 +#: screens/Job/JobDetail/JobDetail.jsx:368 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 +#: screens/Template/shared/JobTemplateForm.jsx:389 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231 msgid "Variables" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 +#: screens/Job/JobOutput/JobOutput.jsx:659 +msgid "Variables Prompted" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 msgid "Vault password" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 msgid "Vault password | {credId}" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:140 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 -#: src/components/PromptDetail/PromptDetail.jsx:199 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:101 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:135 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:225 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:89 -#: src/screens/Job/JobDetail/JobDetail.jsx:223 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: src/screens/Template/shared/JobTemplateForm.jsx:411 +#: screens/Job/JobOutput/JobOutput.jsx:664 +msgid "Verbose" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:140 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 +#: components/PromptDetail/PromptDetail.jsx:199 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:102 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:141 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:251 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 +#: screens/Template/shared/JobTemplateForm.jsx:441 msgid "Verbosity" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStream.jsx:33 +#: screens/Setting/ActivityStream/ActivityStream.jsx:33 msgid "View Activity Stream settings" msgstr "" -#: src/screens/Setting/AzureAD/AzureAD.jsx:26 +#: screens/Setting/AzureAD/AzureAD.jsx:26 msgid "View Azure AD settings" msgstr "" -#: src/screens/Credential/Credential.jsx:119 -#: src/screens/Credential/Credential.jsx:131 +#: screens/Credential/Credential.jsx:119 +#: screens/Credential/Credential.jsx:131 msgid "View Credential Details" msgstr "" -#: src/components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.jsx:135 msgid "View Details" msgstr "" -#: src/screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.jsx:58 msgid "View GitHub Settings" msgstr "" -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 msgid "View Google OAuth 2.0 settings" msgstr "" -#: src/screens/Host/Host.jsx:132 +#: screens/Host/Host.jsx:132 msgid "View Host Details" msgstr "" -#: src/screens/Inventory/Inventory.jsx:183 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 -#: src/screens/Inventory/SmartInventory.jsx:174 +#: screens/Inventory/Inventory.jsx:180 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 +#: screens/Inventory/SmartInventory.jsx:171 msgid "View Inventory Details" msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 msgid "View Inventory Groups" msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:162 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:162 msgid "View Inventory Host Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:49 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 msgid "View JSON examples at <0>www.json.org" msgstr "" -#: src/screens/Job/Job.jsx:120 +#: screens/Job/Job.jsx:165 msgid "View Job Details" msgstr "" -#: src/screens/Setting/Jobs/Jobs.jsx:26 +#: screens/Setting/Jobs/Jobs.jsx:26 msgid "View Jobs settings" msgstr "" -#: src/screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.jsx:38 msgid "View LDAP Settings" msgstr "" -#: src/screens/Setting/Logging/Logging.jsx:33 +#: screens/Setting/Logging/Logging.jsx:33 msgid "View Logging settings" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscSystem/MiscSystem.jsx:33 msgid "View Miscellaneous System settings" msgstr "" -#: src/screens/Organization/Organization.jsx:216 +#: screens/Organization/Organization.jsx:227 msgid "View Organization Details" msgstr "" -#: src/screens/Project/Project.jsx:198 +#: screens/Project/Project.jsx:198 msgid "View Project Details" msgstr "" -#: src/screens/Setting/RADIUS/RADIUS.jsx:26 +#: screens/Setting/RADIUS/RADIUS.jsx:26 msgid "View RADIUS settings" msgstr "" -#: src/screens/Setting/SAML/SAML.jsx:26 +#: screens/Setting/SAML/SAML.jsx:26 msgid "View SAML settings" msgstr "" -#: src/components/Schedule/Schedule.jsx:84 +#: components/Schedule/Schedule.jsx:85 msgid "View Schedules" msgstr "" -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.jsx:168 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "View Survey" msgstr "" -#: src/screens/Setting/TACACS/TACACS.jsx:26 +#: screens/Setting/TACACS/TACACS.jsx:26 msgid "View TACACS+ settings" msgstr "" -#: src/screens/Team/Team.jsx:116 +#: screens/Team/Team.jsx:116 msgid "View Team Details" msgstr "" -#: src/screens/Template/Template.jsx:251 -#: src/screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.jsx:265 +#: screens/Template/WorkflowJobTemplate.jsx:279 msgid "View Template Details" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:103 +#: screens/User/UserToken/UserToken.jsx:103 msgid "View Tokens" msgstr "" -#: src/screens/User/User.jsx:140 +#: screens/User/User.jsx:140 msgid "View User Details" msgstr "" -#: src/screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.jsx:26 msgid "View User Interface settings" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.jsx:104 msgid "View Workflow Approval Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 msgid "View YAML examples at <0>docs.ansible.com" msgstr "" -#: src/components/ScreenHeader/ScreenHeader.jsx:54 -#: src/components/ScreenHeader/ScreenHeader.jsx:56 +#: components/ScreenHeader/ScreenHeader.jsx:54 +#: components/ScreenHeader/ScreenHeader.jsx:57 msgid "View activity stream" msgstr "" -#: src/screens/Credential/Credential.jsx:81 +#: screens/Credential/Credential.jsx:81 msgid "View all Credentials." msgstr "" -#: src/screens/Host/Host.jsx:91 +#: screens/Host/Host.jsx:91 msgid "View all Hosts." msgstr "" -#: src/screens/Inventory/Inventory.jsx:93 -#: src/screens/Inventory/SmartInventory.jsx:98 +#: screens/Inventory/Inventory.jsx:93 +#: screens/Inventory/SmartInventory.jsx:98 msgid "View all Inventories." msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:102 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:102 msgid "View all Inventory Hosts." msgstr "" -#: src/screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.jsx:40 msgid "View all Jobs" msgstr "" -#: src/screens/Job/Job.jsx:85 +#: screens/Job/Job.jsx:125 msgid "View all Jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:53 +#: screens/NotificationTemplate/NotificationTemplate.jsx:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 msgid "View all Notification Templates." msgstr "" -#: src/screens/Organization/Organization.jsx:150 +#: screens/Organization/Organization.jsx:156 msgid "View all Organizations." msgstr "" -#: src/screens/Project/Project.jsx:140 +#: screens/Project/Project.jsx:140 msgid "View all Projects." msgstr "" -#: src/screens/Team/Team.jsx:74 +#: screens/Team/Team.jsx:74 msgid "View all Teams." msgstr "" -#: src/screens/Template/Template.jsx:172 -#: src/screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.jsx:185 +#: screens/Template/WorkflowJobTemplate.jsx:180 msgid "View all Templates." msgstr "" -#: src/screens/User/User.jsx:96 +#: screens/User/User.jsx:96 msgid "View all Users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.jsx:54 msgid "View all Workflow Approvals." msgstr "" -#: src/screens/Application/Application/Application.jsx:95 +#: screens/Application/Application/Application.jsx:95 msgid "View all applications." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.jsx:77 msgid "View all credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:84 -#: src/screens/InstanceGroup/InstanceGroup.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +msgid "View all execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:84 +#: screens/InstanceGroup/InstanceGroup.jsx:90 msgid "View all instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.jsx:134 msgid "View all management jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.jsx:195 msgid "View all settings" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:75 +#: screens/User/UserToken/UserToken.jsx:75 msgid "View all tokens." msgstr "" -#: src/screens/Setting/SettingList.jsx:138 +#: screens/Setting/SettingList.jsx:138 msgid "View and edit your license information" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:24 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 +#: screens/ActivityStream/ActivityStreamListItem.jsx:50 msgid "View event details" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.jsx:172 msgid "View inventory source details" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.jsx:44 msgid "View job {0}" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:171 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:177 msgid "View node details" msgstr "" -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 msgid "View smart inventory host details" msgstr "" -#: src/routeConfig.js:30 -#: src/screens/ActivityStream/ActivityStream.jsx:142 +#: routeConfig.js:31 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Views" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:134 -#: src/components/TemplateList/TemplateListItem.jsx:139 -#: src/screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.jsx:159 +#: components/TemplateList/TemplateListItem.jsx:165 +#: screens/Template/WorkflowJobTemplate.jsx:141 msgid "Visualizer" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 msgid "WARNING:" msgstr "" -#: src/components/JobList/JobList.jsx:223 -#: src/components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.jsx:201 +#: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:114 +#: components/Workflow/WorkflowLegend.jsx:114 +#: screens/Job/JobOutput/JobOutput.jsx:666 msgid "Warning" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 msgid "Warning: Unsaved Changes" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:202 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:142 +#: components/NotificationList/NotificationList.jsx:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Webhook" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:164 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:257 -#: src/screens/Template/shared/WebhookSubForm.jsx:216 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:170 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:267 +#: screens/Template/shared/WebhookSubForm.jsx:217 msgid "Webhook Credential" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:152 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 msgid "Webhook Credentials" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:160 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 -#: src/screens/Template/shared/WebhookSubForm.jsx:185 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:166 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:264 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:165 +#: screens/Template/shared/WebhookSubForm.jsx:185 msgid "Webhook Key" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:151 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:240 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:139 -#: src/screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:156 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 -#: src/screens/Template/shared/WebhookSubForm.jsx:167 -#: src/screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:162 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:161 +#: screens/Template/shared/WebhookSubForm.jsx:167 +#: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:607 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/JobTemplateForm.jsx:637 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "Webhook details" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:171 +#: screens/Template/shared/WebhookSubForm.jsx:171 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:189 +#: screens/Template/shared/WebhookSubForm.jsx:189 msgid "Webhook services can use this as a shared secret." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:289 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 msgid "Wed" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:294 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:440 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 msgid "Wednesday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:166 +#: components/Schedule/shared/ScheduleForm.jsx:166 msgid "Week" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:461 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 msgid "Weekday" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:466 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 msgid "Weekend day" msgstr "" -#: src/screens/Login/Login.jsx:121 +#: screens/Login/Login.jsx:142 msgid "Welcome to Ansible {brandName}! Please Sign In." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161 +msgid "" +"When not checked, a merge will be performed,\n" +"combining local variables with those found on the\n" +"external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158 -msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144 +msgid "" +"When not checked, local child\n" +"hosts and groups not found on the external source will remain\n" +"untouched by the inventory update process." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141 -msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." -msgstr "" +#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." +#~ msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.jsx:96 msgid "Workflow" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.jsx:63 msgid "Workflow Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.jsx:52 msgid "Workflow Approval not found." msgstr "" -#: src/routeConfig.js:54 -#: src/screens/ActivityStream/ActivityStream.jsx:153 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:12 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:19 +#: routeConfig.js:55 +#: screens/ActivityStream/ActivityStream.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:19 msgid "Workflow Approvals" msgstr "" -#: src/components/JobList/JobList.jsx:210 -#: src/components/JobList/JobListItem.jsx:36 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:41 -#: src/screens/Job/JobDetail/JobDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.jsx:188 +#: components/JobList/JobListItem.jsx:36 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41 +#: screens/Job/JobDetail/JobDetail.jsx:101 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 msgid "Workflow Job" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:51 -#: src/screens/Job/JobDetail/JobDetail.jsx:171 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:79 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: components/Workflow/WorkflowNodeHelp.jsx:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:172 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: util/getRelatedResourceDeleteDetails.js:112 msgid "Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:181 +#: util/getRelatedResourceDeleteDetails.js:284 +msgid "Workflow Job Template Nodes" +msgstr "" + +#: util/getRelatedResourceDeleteDetails.js:164 +msgid "Workflow Job Templates" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 msgid "Workflow Link" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:197 +#: components/TemplateList/TemplateList.jsx:202 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:449 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:450 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 msgid "Workflow approved message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:461 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:462 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 msgid "Workflow approved message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:473 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:474 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 msgid "Workflow denied message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:485 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:486 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 msgid "Workflow denied message body" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 msgid "Workflow documentation" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 msgid "Workflow job templates" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 msgid "Workflow link modal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 msgid "Workflow node view modal" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:497 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:498 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 msgid "Workflow pending message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:509 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:510 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 msgid "Workflow pending message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:521 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:522 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 msgid "Workflow timed out message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:533 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:534 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 msgid "Workflow timed out message body" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:81 +#: screens/User/shared/UserTokenForm.jsx:81 msgid "Write" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:46 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 msgid "YAML:" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:168 +#: components/Schedule/shared/ScheduleForm.jsx:168 msgid "Year" msgstr "" -#: src/components/Search/Search.jsx:246 +#: components/Search/Search.jsx:254 msgid "Yes" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "" -#: src/components/Lookup/MultiCredentialsLookup.jsx:142 +#: components/Lookup/MultiCredentialsLookup.jsx:142 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:102 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:52 +#: components/DisassociateButton/DisassociateButton.jsx:52 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 msgid "You may apply a number of possible variables in the message. Refer to the" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:241 +#: components/AppContainer/AppContainer.jsx:247 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:222 +#: components/AppContainer/AppContainer.jsx:222 msgid "Your session is about to expire" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:120 +#: components/Workflow/WorkflowTools.jsx:122 msgid "Zoom In" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.jsx:101 msgid "Zoom Out" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:704 -#: src/screens/Template/shared/WebhookSubForm.jsx:155 +#: screens/Template/shared/JobTemplateForm.jsx:734 +#: screens/Template/shared/WebhookSubForm.jsx:155 msgid "a new webhook key will be generated on save." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:701 -#: src/screens/Template/shared/WebhookSubForm.jsx:143 +#: screens/Template/shared/JobTemplateForm.jsx:731 +#: screens/Template/shared/WebhookSubForm.jsx:143 msgid "a new webhook url will be generated on save." msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:45 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:116 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:91 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 +#: screens/Host/HostGroups/HostGroupItem.jsx:45 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:116 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 msgid "actions" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:514 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:219 +msgid "and click on Update Revision on Launch" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:514 msgid "approved" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:164 -#: src/screens/Template/Survey/SurveyList.jsx:111 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275 +#: screens/Template/Survey/SurveyList.jsx:113 msgid "cancel delete" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:252 +#: components/AdHocCommands/AdHocDetailsStep.jsx:252 msgid "command" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:156 -#: src/screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264 +#: screens/Template/Survey/SurveyList.jsx:104 msgid "confirm delete" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:114 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:201 +#: components/DisassociateButton/DisassociateButton.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:202 msgid "confirm disassociate" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:60 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 msgid "controller instance" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:114 +#: screens/Project/ProjectList/ProjectListItem.jsx:140 msgid "copy to clipboard disabled" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:147 msgid "deletion error" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:522 +#: screens/ActivityStream/ActivityStreamDescription.jsx:522 msgid "denied" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:82 +#: components/DisassociateButton/DisassociateButton.jsx:82 msgid "disassociate" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:71 -#: src/screens/Host/HostDetail/HostDetail.jsx:112 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:89 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:129 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:102 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: src/screens/User/UserDetail/UserDetail.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:219 +msgid "documentation" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:121 +#: screens/Host/HostDetail/HostDetail.jsx:113 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:159 +#: screens/User/UserDetail/UserDetail.jsx:89 msgid "edit" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Template/Survey/SurveyListItem.jsx:123 msgid "encrypted" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 msgid "expiration" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 msgid "for more details." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "group" +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:221 +msgid "for more info." msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "groups" -msgstr "" +#~ msgid "group" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:182 +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 +#~ msgid "groups" +#~ msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:182 msgid "here" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:129 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:204 +#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.jsx:204 msgid "here." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:333 +#: components/Lookup/HostFilterLookup.jsx:340 msgid "hosts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:95 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:95 msgid "instance counts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:109 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:109 msgid "instance group used capacity" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:82 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:82 msgid "instance host name" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:85 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:85 msgid "instance type" msgstr "" -#: src/components/Lookup/HostListItem.jsx:30 +#: components/Lookup/HostListItem.jsx:30 msgid "inventory" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 -#: src/screens/Job/JobDetail/JobDetail.jsx:118 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 +#: screens/Job/JobDetail/JobDetail.jsx:119 msgid "isolated instance" msgstr "" -#: src/components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "ldap user" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:72 +#: screens/User/UserDetail/UserDetail.jsx:72 msgid "login type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:183 msgid "min" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:80 +#: screens/Template/Survey/SurveyListItem.jsx:82 msgid "move down" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:70 +#: screens/Template/Survey/SurveyListItem.jsx:71 msgid "move up" msgstr "" -#: src/components/Lookup/HostListItem.jsx:23 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:76 +#: components/Lookup/HostListItem.jsx:23 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:90 msgid "name" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:477 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 msgid "of" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:250 +#: components/AdHocCommands/AdHocDetailsStep.jsx:250 msgid "option to the" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 msgid "or attributes of the job such as" msgstr "" -#: src/components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "" -#: src/components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: src/components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:21 +#: components/LaunchButton/ReLaunchDropDown.jsx:66 +#: components/LaunchButton/ReLaunchDropDown.jsx:88 +msgid "relaunch jobs" +msgstr "" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:21 msgid "resource name" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:36 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:36 msgid "resource role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:26 msgid "resource type" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 msgid "scope" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:197 msgid "sec" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 msgid "seconds" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.jsx:62 msgid "select module" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:139 +#: components/AdHocCommands/AdHocDetailsStep.jsx:139 msgid "select verbosity" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:56 +#: screens/User/UserList/UserListItem.jsx:56 msgid "social login" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.jsx:30 msgid "system" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 msgid "team name" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:520 +#: screens/ActivityStream/ActivityStreamDescription.jsx:520 msgid "timed out" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:230 +#: components/AdHocCommands/AdHocDetailsStep.jsx:230 msgid "toggle changes" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 msgid "token name" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:83 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:110 msgid "type" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:525 +#: screens/ActivityStream/ActivityStreamDescription.jsx:525 msgid "updated" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:199 +#: screens/Template/shared/WebhookSubForm.jsx:199 msgid "workflow job template webhook key" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:27 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:113 +msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:86 +msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.jsx:223 +msgid "{0, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:65 +msgid "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:56 +msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +msgstr "" + +#: screens/Setting/shared/LoggingTestAlert.jsx:27 msgid "{0}" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.jsx:28 msgid "{0} (deleted)" msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.jsx:13 msgid "{0} more" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:62 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:62 msgid "{0} sources with sync failures." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:25 +#: screens/Setting/shared/LoggingTestAlert.jsx:25 msgid "{0}: {1}" msgstr "" -#: src/components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.jsx:23 msgid "{dateStr} by <0>{username}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:204 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:208 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:43 +#: components/PromptDetail/PromptDetail.jsx:43 msgid "{minutes} min {seconds} sec" msgstr "" #: src/screens/Inventory/InventoryList/InventoryList.jsx:215 -msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:92 +msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:81 -msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" -msgstr "" +#~ msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" +#~ msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:156 +#: components/JobList/JobListCancelButton.jsx:151 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:68 -msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#: components/JobList/JobListCancelButton.jsx:77 +msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" +#: src/components/JobList/JobListCancelButton.jsx:68 +#~ msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#~ msgstr "" + #: src/components/JobList/JobListCancelButton.jsx:57 -msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" -msgstr "" +#~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +#~ msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:92 -#: src/components/PaginatedTable/PaginatedTable.jsx:76 +#: components/PaginatedDataList/PaginatedDataList.jsx:92 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:96 -msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" -msgstr "" +#~ msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" +#~ msgstr "" diff --git a/awx/ui_next/src/locales/fr/messages.po b/awx/ui_next/src/locales/fr/messages.po index 362dc29267..99e1dc1c63 100644 --- a/awx/ui_next/src/locales/fr/messages.po +++ b/awx/ui_next/src/locales/fr/messages.po @@ -13,393 +13,425 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 msgid "(Limited to first 10)" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:147 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:90 +#: components/TemplateList/TemplateListItem.jsx:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:91 msgid "(Prompt on launch)" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:244 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:58 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:59 msgid "- Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:63 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:64 msgid "- Enable Webhooks" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 msgid "/ (project root)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:26 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: src/components/PromptDetail/PromptDetail.jsx:95 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:31 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:40 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocCommands.jsx:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/PromptDetail/PromptDetail.jsx:95 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 +#: screens/Template/shared/JobTemplateForm.jsx:180 msgid "0 (Normal)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:98 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:81 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 msgid "0 (Warning)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:99 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 msgid "1 (Info)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:27 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: src/components/PromptDetail/PromptDetail.jsx:96 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:41 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:101 -#: src/screens/Template/shared/JobTemplateForm.jsx:174 +#: components/AdHocCommands/AdHocCommands.jsx:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 +#: components/PromptDetail/PromptDetail.jsx:96 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 +#: screens/Template/shared/JobTemplateForm.jsx:181 msgid "1 (Verbose)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:100 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 msgid "2 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:28 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: src/components/PromptDetail/PromptDetail.jsx:97 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:102 -#: src/screens/Template/shared/JobTemplateForm.jsx:175 +#: components/AdHocCommands/AdHocCommands.jsx:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 +#: components/PromptDetail/PromptDetail.jsx:97 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 +#: screens/Template/shared/JobTemplateForm.jsx:182 msgid "2 (More Verbose)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:29 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 -#: src/components/PromptDetail/PromptDetail.jsx:98 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:103 -#: src/screens/Template/shared/JobTemplateForm.jsx:176 +#: components/AdHocCommands/AdHocCommands.jsx:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 +#: components/PromptDetail/PromptDetail.jsx:98 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:183 msgid "3 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:30 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 -#: src/components/PromptDetail/PromptDetail.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:177 +#: components/AdHocCommands/AdHocCommands.jsx:30 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 +#: components/PromptDetail/PromptDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 +#: screens/Template/shared/JobTemplateForm.jsx:184 msgid "4 (Connection Debug)" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:105 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 msgid "5 (WinRM Debug)" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 -msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +msgid "" +"A refspec to fetch (passed to the Ansible git\n" +"module). This parameter allows access to references via\n" +"the branch field not otherwise available." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#~ msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281 +msgid "ALL" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 msgid "API Service/Integration Key" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 msgid "API Token" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 msgid "API service/integration key" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:129 +#: components/AppContainer/PageHeaderToolbar.jsx:129 msgid "About" msgstr "" -#: src/routeConfig.js:92 -#: src/screens/ActivityStream/ActivityStream.jsx:176 -#: src/screens/Credential/Credential.jsx:60 -#: src/screens/Credential/Credentials.jsx:29 -#: src/screens/Inventory/Inventories.jsx:58 -#: src/screens/Inventory/Inventory.jsx:63 -#: src/screens/Inventory/SmartInventory.jsx:70 -#: src/screens/Organization/Organization.jsx:123 -#: src/screens/Organization/Organizations.jsx:32 -#: src/screens/Project/Project.jsx:106 -#: src/screens/Project/Projects.jsx:30 -#: src/screens/Team/Team.jsx:56 -#: src/screens/Team/Teams.jsx:31 -#: src/screens/Template/Template.jsx:132 -#: src/screens/Template/Templates.jsx:46 -#: src/screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:93 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Credential/Credential.jsx:60 +#: screens/Credential/Credentials.jsx:29 +#: screens/Inventory/Inventories.jsx:58 +#: screens/Inventory/Inventory.jsx:63 +#: screens/Inventory/SmartInventory.jsx:70 +#: screens/Organization/Organization.jsx:124 +#: screens/Organization/Organizations.jsx:32 +#: screens/Project/Project.jsx:106 +#: screens/Project/Projects.jsx:30 +#: screens/Team/Team.jsx:56 +#: screens/Team/Teams.jsx:31 +#: screens/Template/Template.jsx:145 +#: screens/Template/Templates.jsx:46 +#: screens/Template/WorkflowJobTemplate.jsx:122 msgid "Access" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:71 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:79 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 msgid "Account SID" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 msgid "Account token" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:52 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 msgid "Action" msgstr "" -#: src/components/JobList/JobList.jsx:245 -#: src/components/JobList/JobListItem.jsx:80 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:176 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:112 -#: src/components/TemplateList/TemplateList.jsx:222 -#: src/components/TemplateList/TemplateListItem.jsx:131 -#: src/screens/ActivityStream/ActivityStream.jsx:253 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:47 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: src/screens/Credential/CredentialList/CredentialList.jsx:153 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:172 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 -#: src/screens/Host/HostList/HostList.jsx:170 -#: src/screens/Host/HostList/HostListItem.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:233 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:198 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:112 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:183 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:157 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:44 -#: src/screens/Project/ProjectList/ProjectList.jsx:173 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:125 -#: src/screens/Team/TeamList/TeamList.jsx:156 -#: src/screens/Team/TeamList/TeamListItem.jsx:54 -#: src/screens/User/UserList/UserList.jsx:172 -#: src/screens/User/UserList/UserListItem.jsx:79 +#: components/JobList/JobList.jsx:223 +#: components/JobList/JobListItem.jsx:80 +#: components/Schedule/ScheduleList/ScheduleList.jsx:176 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112 +#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateListItem.jsx:156 +#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStreamListItem.jsx:49 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 +#: screens/Credential/CredentialList/CredentialList.jsx:145 +#: screens/Credential/CredentialList/CredentialListItem.jsx:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:78 +#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostListItem.jsx:48 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 +#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/Organization/OrganizationList/OrganizationList.jsx:161 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 +#: screens/Project/ProjectList/ProjectList.jsx:178 +#: screens/Project/ProjectList/ProjectListItem.jsx:152 +#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/User/UserList/UserList.jsx:172 +#: screens/User/UserList/UserListItem.jsx:79 msgid "Actions" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: src/components/TemplateList/TemplateListItem.jsx:201 -#: src/screens/Host/HostDetail/HostDetail.jsx:77 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:87 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 +#: components/TemplateList/TemplateListItem.jsx:229 +#: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 msgid "Activity" msgstr "" -#: src/routeConfig.js:49 -#: src/screens/ActivityStream/ActivityStream.jsx:119 -#: src/screens/Setting/Settings.jsx:44 +#: routeConfig.js:50 +#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "" -#: src/screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.jsx:114 msgid "Activity Stream settings" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:122 msgid "Activity Stream type selector" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 msgid "Actor" msgstr "" -#: src/components/AddDropDownButton/AddDropDownButton.jsx:39 -#: src/components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:160 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:164 +#: components/AddDropDownButton/AddDropDownButton.jsx:39 +#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 msgid "Add Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:66 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 msgid "Add Node" msgstr "" -#: src/screens/Template/Templates.jsx:50 +#: screens/Template/Templates.jsx:50 msgid "Add Question" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:174 +#: components/AddRole/AddResourceRole.jsx:185 msgid "Add Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:171 +#: components/AddRole/AddResourceRole.jsx:182 msgid "Add Team Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:168 +#: components/AddRole/AddResourceRole.jsx:179 msgid "Add User Roles" msgstr "" -#: src/components/Workflow/WorkflowStartNode.jsx:57 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:189 +#: components/Workflow/WorkflowStartNode.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:195 msgid "Add a new node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 msgid "Add a new node between these two nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 msgid "Add container group" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 msgid "Add existing group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 msgid "Add existing host" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 msgid "Add instance group" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:129 +#: screens/Inventory/InventoryList/InventoryList.jsx:135 msgid "Add inventory" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:141 msgid "Add job template" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 msgid "Add new group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 msgid "Add new host" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 msgid "Add resource type" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:130 +#: screens/Inventory/InventoryList/InventoryList.jsx:136 msgid "Add smart inventory" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:171 msgid "Add team permissions" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:182 +#: screens/User/UserRoles/UserRolesList.jsx:182 msgid "Add user permissions" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:142 msgid "Add workflow template" msgstr "" #: src/screens/ActivityStream/ActivityStream.jsx:187 -msgid "Adminisration" -msgstr "" +#~ msgid "Adminisration" +#~ msgstr "" -#: src/routeConfig.js:113 +#: routeConfig.js:114 +#: screens/ActivityStream/ActivityStream.jsx:187 msgid "Administration" msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:86 +#: components/DataListToolbar/DataListToolbar.jsx:86 +#: screens/Job/JobOutput/JobOutput.jsx:671 msgid "Advanced" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.jsx:246 msgid "Advanced search value input" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203 +msgid "" +"After every project update where the SCM revision\n" +"changes, refresh the inventory from the selected source\n" +"before executing job tasks. This is intended for static content,\n" +"like the Ansible inventory .ini file format." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177 -msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." -msgstr "" +#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." +#~ msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:520 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 msgid "After number of occurrences" msgstr "" -#: src/components/AlertModal/AlertModal.jsx:77 +#: components/AlertModal/AlertModal.jsx:77 msgid "Alert modal" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:39 +#: components/LaunchButton/ReLaunchDropDown.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:244 msgid "All" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:226 +#: screens/Dashboard/Dashboard.jsx:226 msgid "All job types" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:45 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:46 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:74 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 msgid "Allow Branch Override" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:60 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 msgid "Allow Provisioning Callbacks" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 -msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +msgid "" +"Allow changing the Source Control branch or revision in a job\n" +"template that uses this project." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:119 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#~ msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:119 msgid "Allowed URIs list, space separated" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:126 -#: src/components/Workflow/WorkflowLinkHelp.jsx:24 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 +#: components/Workflow/WorkflowLegend.jsx:126 +#: components/Workflow/WorkflowLinkHelp.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 msgid "Always" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 msgid "Amazon EC2" msgstr "" -#: src/components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.jsx:12 msgid "An error occurred" msgstr "" -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:34 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 msgid "An inventory must be selected" msgstr "" @@ -410,623 +442,683 @@ msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:82 #: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128 #: src/screens/Project/shared/ProjectForm.jsx:274 -msgid "Ansible Environment" -msgstr "" +#~ msgid "Ansible Environment" +#~ msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Ansible Tower" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 msgid "Ansible Tower Documentation." msgstr "" #: src/components/About/About.jsx:58 -msgid "Ansible Version" -msgstr "" +#~ msgid "Ansible Version" +#~ msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204 -msgid "Ansible environment" -msgstr "" +#~ msgid "Ansible environment" +#~ msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:33 +#: screens/Template/Survey/SurveyQuestionForm.jsx:33 msgid "Answer type" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:130 +#: screens/Template/Survey/SurveyQuestionForm.jsx:130 msgid "Answer variable name" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:65 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: src/screens/User/shared/UserTokenForm.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:241 +msgid "Any" +msgstr "" + +#: components/Lookup/ApplicationLookup.jsx:65 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:52 +#: screens/User/shared/UserTokenForm.jsx:44 msgid "Application" msgstr "" -#: src/screens/User/Users.jsx:38 +#: screens/User/Users.jsx:38 msgid "Application Name" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:42 +#: screens/User/UserTokenList/UserTokenListItem.jsx:42 msgid "Application access token" msgstr "" -#: src/screens/Application/Applications.jsx:67 -#: src/screens/Application/Applications.jsx:70 +#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.jsx:70 msgid "Application information" msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:111 -#: src/screens/User/UserTokenList/UserTokenList.jsx:122 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.jsx:111 +#: screens/User/UserTokenList/UserTokenList.jsx:122 +#: screens/User/UserTokenList/UserTokenListItem.jsx:47 msgid "Application name" msgstr "" -#: src/screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.jsx:93 msgid "Application not found." msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:74 -#: src/routeConfig.js:137 -#: src/screens/Application/Applications.jsx:25 -#: src/screens/Application/Applications.jsx:35 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: components/Lookup/ApplicationLookup.jsx:74 +#: routeConfig.js:138 +#: screens/Application/Applications.jsx:25 +#: screens/Application/Applications.jsx:35 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: util/getRelatedResourceDeleteDetails.js:233 msgid "Applications" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:204 +#: screens/ActivityStream/ActivityStream.jsx:204 msgid "Applications & Tokens" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:40 -#: src/components/NotificationList/NotificationListItem.jsx:41 -#: src/components/Workflow/WorkflowLegend.jsx:110 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:55 +#: components/NotificationList/NotificationListItem.jsx:40 +#: components/NotificationList/NotificationListItem.jsx:41 +#: components/Workflow/WorkflowLegend.jsx:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:83 msgid "Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:190 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:195 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:59 msgid "Approve" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 msgid "Approved" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 msgid "Approved by {0} - {1}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 msgid "April" msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116 -msgid "Are you sure you want to delete the {0} below?" -msgstr "" +#~ msgid "Are you sure you want to delete the {0} below?" +#~ msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:53 +#: components/DeleteButton/DeleteButton.jsx:127 msgid "Are you sure you want to delete:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:41 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 msgid "Are you sure you want to remove the node below:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 msgid "Are you sure you want to remove this link?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:51 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 msgid "Are you sure you want to remove this node?" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:53 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:64 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobDetail/JobDetail.jsx:461 +#: screens/Job/JobOutput/JobOutput.jsx:812 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:108 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:110 +#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.jsx:110 msgid "Arguments" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:347 +#: screens/Job/JobDetail/JobDetail.jsx:378 msgid "Artifacts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: src/screens/User/UserTeams/UserTeamList.jsx:204 +#: screens/InstanceGroup/Instances/InstanceList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:204 msgid "Associate" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 msgid "Associate role error" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:99 +#: components/AssociateModal/AssociateModal.jsx:99 msgid "Association modal" msgstr "" -#: src/components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 msgid "August" msgstr "" -#: src/screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.jsx:55 msgid "Authentication" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:92 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:86 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 -#: src/screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:89 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:89 msgid "Auto" msgstr "" -#: src/screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.jsx:47 msgid "Azure AD" msgstr "" -#: src/screens/Setting/SettingList.jsx:62 +#: screens/Setting/SettingList.jsx:62 msgid "Azure AD settings" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:111 -#: src/components/AddRole/AddResourceRole.jsx:275 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:111 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:120 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:139 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:142 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:111 +#: components/AddRole/AddResourceRole.jsx:286 +#: components/LaunchPrompt/LaunchPrompt.jsx:118 +#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" msgstr "" -#: src/screens/Credential/Credential.jsx:52 +#: screens/Credential/Credential.jsx:52 msgid "Back to Credentials" msgstr "" -#: src/components/ContentError/ContentError.jsx:48 +#: components/ContentError/ContentError.jsx:48 msgid "Back to Dashboard." msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 msgid "Back to Groups" msgstr "" -#: src/screens/Host/Host.jsx:45 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.jsx:45 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 msgid "Back to Hosts" msgstr "" -#: src/screens/Inventory/Inventory.jsx:56 -#: src/screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.jsx:56 +#: screens/Inventory/SmartInventory.jsx:63 msgid "Back to Inventories" msgstr "" -#: src/screens/Job/Job.jsx:57 +#: screens/Job/Job.jsx:97 msgid "Back to Jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.jsx:76 msgid "Back to Notifications" msgstr "" -#: src/screens/Organization/Organization.jsx:116 +#: screens/Organization/Organization.jsx:117 msgid "Back to Organizations" msgstr "" -#: src/screens/Project/Project.jsx:99 +#: screens/Project/Project.jsx:99 msgid "Back to Projects" msgstr "" -#: src/components/Schedule/Schedule.jsx:60 +#: components/Schedule/Schedule.jsx:61 msgid "Back to Schedules" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:104 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:108 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 msgid "Back to Settings" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.jsx:81 msgid "Back to Sources" msgstr "" -#: src/screens/Team/Team.jsx:49 +#: screens/Team/Team.jsx:49 msgid "Back to Teams" msgstr "" -#: src/screens/Template/Template.jsx:125 -#: src/screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.jsx:138 +#: screens/Template/WorkflowJobTemplate.jsx:115 msgid "Back to Templates" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.jsx:47 msgid "Back to Tokens" msgstr "" -#: src/screens/User/User.jsx:57 +#: screens/User/User.jsx:57 msgid "Back to Users" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.jsx:69 msgid "Back to Workflow Approvals" msgstr "" -#: src/screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.jsx:71 msgid "Back to applications" msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.jsx:55 msgid "Back to credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:56 -#: src/screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +msgid "Back to execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:56 +#: screens/InstanceGroup/InstanceGroup.jsx:57 msgid "Back to instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.jsx:98 msgid "Back to management jobs" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 -msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +msgid "" +"Base path used for locating playbooks. Directories\n" +"found inside this path will be listed in the playbook directory drop-down.\n" +"Together the base path and selected playbook directory provide the full\n" +"path used to locate playbooks." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 msgid "Basic auth password" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 -msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +msgid "" +"Branch to checkout. In addition to branches,\n" +"you can input tags, commit hashes, and arbitrary refs. Some\n" +"commit hashes and refs may not be available unless you also\n" +"provide a custom refspec." msgstr "" -#: src/components/About/About.jsx:42 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#~ msgstr "" + +#: components/About/About.jsx:37 msgid "Brand Image" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: src/components/PromptDetail/PromptProjectDetail.jsx:88 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:124 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:104 +#: components/PromptDetail/PromptProjectDetail.jsx:94 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:126 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 msgid "Cache Timeout" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235 msgid "Cache timeout" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:194 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:237 msgid "Cache timeout (seconds)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:112 -#: src/components/AddRole/AddResourceRole.jsx:276 -#: src/components/AssociateModal/AssociateModal.jsx:113 -#: src/components/AssociateModal/AssociateModal.jsx:118 -#: src/components/DeleteButton/DeleteButton.jsx:46 -#: src/components/DeleteButton/DeleteButton.jsx:49 -#: src/components/DisassociateButton/DisassociateButton.jsx:122 -#: src/components/DisassociateButton/DisassociateButton.jsx:125 -#: src/components/FormActionGroup/FormActionGroup.jsx:22 -#: src/components/FormActionGroup/FormActionGroup.jsx:27 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:112 -#: src/components/Lookup/HostFilterLookup.jsx:322 -#: src/components/Lookup/Lookup.jsx:148 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:167 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:40 -#: src/components/Schedule/shared/ScheduleForm.jsx:564 -#: src/components/Schedule/shared/ScheduleForm.jsx:569 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:121 -#: src/screens/Credential/shared/CredentialForm.jsx:292 -#: src/screens/Credential/shared/CredentialForm.jsx:297 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:99 -#: src/screens/Credential/shared/ExternalTestModal.jsx:97 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 -#: src/screens/Setting/shared/RevertAllAlert.jsx:32 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:38 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:44 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:209 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:212 -#: src/screens/Template/Survey/SurveyList.jsx:117 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:29 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:37 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:43 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:38 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 -#: src/screens/User/UserRoles/UserRolesList.jsx:209 -#: src/screens/User/UserRoles/UserRolesList.jsx:212 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:112 +#: components/AddRole/AddResourceRole.jsx:287 +#: components/AssociateModal/AssociateModal.jsx:115 +#: components/AssociateModal/AssociateModal.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:123 +#: components/DisassociateButton/DisassociateButton.jsx:125 +#: components/DisassociateButton/DisassociateButton.jsx:128 +#: components/FormActionGroup/FormActionGroup.jsx:24 +#: components/FormActionGroup/FormActionGroup.jsx:29 +#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/Lookup/HostFilterLookup.jsx:329 +#: components/Lookup/Lookup.jsx:150 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46 +#: components/Schedule/shared/ScheduleForm.jsx:641 +#: components/Schedule/shared/ScheduleForm.jsx:646 +#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: screens/Credential/shared/CredentialForm.jsx:299 +#: screens/Credential/shared/CredentialForm.jsx:304 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:103 +#: screens/Credential/shared/ExternalTestModal.jsx:99 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:109 +#: screens/Job/JobDetail/JobDetail.jsx:411 +#: screens/Job/JobDetail/JobDetail.jsx:416 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 +#: screens/Setting/shared/RevertAllAlert.jsx:32 +#: screens/Setting/shared/RevertFormActionGroup.jsx:38 +#: screens/Setting/shared/RevertFormActionGroup.jsx:44 +#: screens/Team/TeamRoles/TeamRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.jsx:214 +#: screens/Template/Survey/SurveyList.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/User/UserRoles/UserRolesList.jsx:214 msgid "Cancel" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:675 -#: src/screens/Job/JobOutput/JobOutput.jsx:676 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:171 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:174 +#: screens/Job/JobDetail/JobDetail.jsx:436 +#: screens/Job/JobDetail/JobDetail.jsx:437 +#: screens/Job/JobOutput/JobOutput.jsx:787 +#: screens/Job/JobOutput/JobOutput.jsx:788 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:186 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:190 msgid "Cancel Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:683 -#: src/screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobDetail/JobDetail.jsx:444 +#: screens/Job/JobDetail/JobDetail.jsx:447 +#: screens/Job/JobOutput/JobOutput.jsx:795 +#: screens/Job/JobOutput/JobOutput.jsx:798 msgid "Cancel job" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 msgid "Cancel link changes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 msgid "Cancel link removal" msgstr "" -#: src/components/Lookup/Lookup.jsx:146 +#: components/Lookup/Lookup.jsx:148 msgid "Cancel lookup" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:26 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 msgid "Cancel node removal" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:28 +#: screens/Setting/shared/RevertAllAlert.jsx:29 msgid "Cancel revert" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:65 +#: components/JobList/JobListCancelButton.jsx:79 +msgid "Cancel selected job" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:80 +msgid "Cancel selected jobs" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:66 msgid "Cancel sync" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:58 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:58 msgid "Cancel sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:61 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:62 msgid "Cancel sync source" msgstr "" -#: src/components/JobList/JobList.jsx:228 -#: src/components/Workflow/WorkflowNodeHelp.jsx:95 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 +#: components/JobList/JobList.jsx:206 +#: components/Workflow/WorkflowNodeHelp.jsx:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 msgid "Canceled" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 -msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +msgid "" +"Cannot enable log aggregator without providing\n" +"logging aggregator host and logging aggregator type." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:232 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 +#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#~ msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 msgid "Capacity" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:175 +#: components/Search/AdvancedSearch.jsx:176 msgid "Case-insensitive version of contains" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:195 +#: components/Search/AdvancedSearch.jsx:196 msgid "Case-insensitive version of endswith." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:165 +#: components/Search/AdvancedSearch.jsx:166 msgid "Case-insensitive version of exact." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:205 +#: components/Search/AdvancedSearch.jsx:206 msgid "Case-insensitive version of regex." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:185 +#: components/Search/AdvancedSearch.jsx:186 msgid "Case-insensitive version of startswith." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 -msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +msgid "" +"Change PROJECTS_ROOT when deploying\n" +"{brandName} to change this location." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#~ msgstr "" + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 msgid "Changed" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:55 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:56 msgid "Changes" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 msgid "Channel" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:168 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 +#: screens/Template/shared/JobTemplateForm.jsx:175 msgid "Check" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:232 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:238 +#: components/Search/AdvancedSearch.jsx:239 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 msgid "Choose a .json file" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 msgid "Choose a Notification Type" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 msgid "Choose a Playbook Directory" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:223 msgid "Choose a Source Control Type" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.jsx:102 msgid "Choose a Webhook Service" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 -#: src/screens/Template/shared/JobTemplateForm.jsx:161 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 +#: screens/Template/shared/JobTemplateForm.jsx:168 msgid "Choose a job type" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:88 +#: components/AdHocCommands/AdHocDetailsStep.jsx:88 msgid "Choose a module" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:130 +#: screens/Inventory/shared/InventorySourceForm.jsx:144 msgid "Choose a source" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 msgid "Choose an HTTP method" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 -msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#: screens/Template/Survey/SurveyQuestionForm.jsx:37 +msgid "" +"Choose an answer type or format you want as the prompt for the user.\n" +"Refer to the Ansible Tower Documentation for more additional\n" +"information about each option." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 +#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 msgid "Choose an email option" msgstr "" -#: src/components/AddRole/SelectRoleStep.jsx:23 +#: components/AddRole/SelectRoleStep.jsx:23 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "" -#: src/components/AddRole/SelectResourceStep.jsx:82 +#: components/AddRole/SelectResourceStep.jsx:82 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:185 +#: components/AddRole/AddResourceRole.jsx:196 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:37 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:64 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: components/PromptDetail/PromptProjectDetail.jsx:38 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 msgid "Clean" msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:65 +#: components/DataListToolbar/DataListToolbar.jsx:65 +#: screens/Job/JobOutput/JobOutput.jsx:715 msgid "Clear all filters" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 msgid "Click the Edit button below to reconfigure the node." msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:73 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:147 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:153 msgid "Click to create a new link to this node." msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.jsx:168 msgid "Click to view job details" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 -#: src/screens/Application/Applications.jsx:89 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 +#: screens/Application/Applications.jsx:89 msgid "Client ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 msgid "Client Identifier" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 msgid "Client identifier" msgstr "" -#: src/screens/Application/Applications.jsx:102 +#: screens/Application/Applications.jsx:102 msgid "Client secret" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 -#: src/screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 +#: screens/Application/shared/ApplicationForm.jsx:128 msgid "Client type" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:106 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:171 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:173 msgid "Close" msgstr "" -#: src/components/CredentialChip/CredentialChip.jsx:12 +#: components/CredentialChip/CredentialChip.jsx:12 msgid "Cloud" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:40 +#: components/ExpandCollapse/ExpandCollapse.jsx:41 msgid "Collapse" msgstr "" -#: src/components/JobList/JobList.jsx:208 -#: src/components/JobList/JobListItem.jsx:34 -#: src/screens/Job/JobDetail/JobDetail.jsx:80 -#: src/screens/Job/JobOutput/HostEventModal.jsx:137 +#: components/JobList/JobList.jsx:186 +#: components/JobList/JobListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:99 +#: screens/Job/JobOutput/HostEventModal.jsx:137 msgid "Command" msgstr "" @@ -1037,7032 +1129,8098 @@ msgstr "" #: src/screens/Template/Template.jsx:151 #: src/screens/Template/Templates.jsx:48 #: src/screens/Template/WorkflowJobTemplate.jsx:145 -msgid "Completed Jobs" -msgstr "" +#~ msgid "Completed Jobs" +#~ msgstr "" #: src/screens/Inventory/Inventories.jsx:59 #: src/screens/Inventory/Inventories.jsx:73 #: src/screens/Inventory/SmartInventory.jsx:73 -msgid "Completed jobs" -msgstr "" +#~ msgid "Completed jobs" +#~ msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:550 +#: screens/Template/shared/JobTemplateForm.jsx:580 msgid "Concurrent Jobs" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:97 +#: components/DeleteButton/DeleteButton.jsx:107 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:95 msgid "Confirm Delete" msgstr "" -#: src/screens/User/shared/UserForm.jsx:96 +#: screens/User/shared/UserForm.jsx:96 msgid "Confirm Password" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:34 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:35 msgid "Confirm delete" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.jsx:202 msgid "Confirm disassociate" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 msgid "Confirm link removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 msgid "Confirm node removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 msgid "Confirm removal of all nodes" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:19 +#: screens/Setting/shared/RevertAllAlert.jsx:20 msgid "Confirm revert all" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:234 +#: screens/Job/JobDetail/JobDetail.jsx:265 msgid "Container Group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 msgid "Container group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.jsx:81 msgid "Container group not found." msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:106 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:115 +#: components/LaunchPrompt/LaunchPrompt.jsx:113 +#: components/Schedule/shared/SchedulePromptableFields.jsx:117 msgid "Content Loading" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:234 msgid "Continue" msgstr "" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +msgid "" +"Control the level of output Ansible\n" +"will produce for inventory source update jobs." +msgstr "" + #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92 -msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 +msgid "" +"Control the level of output ansible\n" +"will produce as the playbook executes." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:444 +msgid "" +"Control the level of output ansible will\n" +"produce as the playbook executes." msgstr "" #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 #: src/screens/Template/shared/JobTemplateForm.jsx:414 -msgid "Control the level of output ansible will produce as the playbook executes." -msgstr "" +#~ msgid "Control the level of output ansible will produce as the playbook executes." +#~ msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:61 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 msgid "Controller" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:205 +msgid "Convergence" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:236 +msgid "Convergence select" +msgstr "" + +#: components/CopyButton/CopyButton.jsx:41 msgid "Copy" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:76 +#: screens/Credential/CredentialList/CredentialListItem.jsx:77 msgid "Copy Credential" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:46 +#: components/CopyButton/CopyButton.jsx:48 msgid "Copy Error" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:95 +msgid "Copy Execution Environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:135 msgid "Copy Inventory" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:147 msgid "Copy Notification Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:147 +#: screens/Project/ProjectList/ProjectListItem.jsx:175 msgid "Copy Project" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.jsx:209 msgid "Copy Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:121 +#: screens/Project/ProjectList/ProjectListItem.jsx:147 msgid "Copy full revision to clipboard." msgstr "" -#: src/components/About/About.jsx:40 +#: components/About/About.jsx:35 msgid "Copyright 2019 Red Hat, Inc." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:353 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/JobTemplateForm.jsx:383 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:223 msgid "Create" msgstr "" -#: src/screens/Application/Applications.jsx:26 -#: src/screens/Application/Applications.jsx:36 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:24 +msgid "Create Execution environments" +msgstr "" + +#: screens/Application/Applications.jsx:26 +#: screens/Application/Applications.jsx:36 msgid "Create New Application" msgstr "" -#: src/screens/Credential/Credentials.jsx:14 -#: src/screens/Credential/Credentials.jsx:25 +#: screens/Credential/Credentials.jsx:14 +#: screens/Credential/Credentials.jsx:25 msgid "Create New Credential" msgstr "" -#: src/screens/Host/Hosts.jsx:16 -#: src/screens/Host/Hosts.jsx:26 +#: screens/Host/Hosts.jsx:16 +#: screens/Host/Hosts.jsx:26 msgid "Create New Host" msgstr "" -#: src/screens/Template/Templates.jsx:17 +#: screens/Template/Templates.jsx:17 msgid "Create New Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:23 +#: screens/NotificationTemplate/NotificationTemplates.jsx:14 +#: screens/NotificationTemplate/NotificationTemplates.jsx:23 msgid "Create New Notification Template" msgstr "" -#: src/screens/Organization/Organizations.jsx:17 -#: src/screens/Organization/Organizations.jsx:28 +#: screens/Organization/Organizations.jsx:17 +#: screens/Organization/Organizations.jsx:28 msgid "Create New Organization" msgstr "" -#: src/screens/Project/Projects.jsx:15 -#: src/screens/Project/Projects.jsx:26 +#: screens/Project/Projects.jsx:15 +#: screens/Project/Projects.jsx:26 msgid "Create New Project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:114 -#: src/screens/ManagementJob/ManagementJobs.jsx:26 -#: src/screens/Project/Projects.jsx:35 -#: src/screens/Template/Templates.jsx:53 +#: screens/Inventory/Inventories.jsx:112 +#: screens/ManagementJob/ManagementJobs.jsx:26 +#: screens/Project/Projects.jsx:35 +#: screens/Template/Templates.jsx:53 msgid "Create New Schedule" msgstr "" -#: src/screens/Team/Teams.jsx:15 -#: src/screens/Team/Teams.jsx:26 +#: screens/Team/Teams.jsx:15 +#: screens/Team/Teams.jsx:26 msgid "Create New Team" msgstr "" -#: src/screens/User/Users.jsx:16 -#: src/screens/User/Users.jsx:28 +#: screens/User/Users.jsx:16 +#: screens/User/Users.jsx:28 msgid "Create New User" msgstr "" -#: src/screens/Template/Templates.jsx:19 +#: screens/Template/Templates.jsx:19 msgid "Create New Workflow Template" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.jsx:29 msgid "Create a new Smart Inventory with the applied filter" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:18 -#: src/screens/InstanceGroup/InstanceGroups.jsx:30 +#: screens/InstanceGroup/InstanceGroups.jsx:18 +#: screens/InstanceGroup/InstanceGroups.jsx:30 msgid "Create container group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:17 -#: src/screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.jsx:17 +#: screens/InstanceGroup/InstanceGroups.jsx:28 msgid "Create instance group" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:24 +#: screens/CredentialType/CredentialTypes.jsx:24 msgid "Create new credential Type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.jsx:14 msgid "Create new credential type" msgstr "" -#: src/screens/Inventory/Inventories.jsx:79 -#: src/screens/Inventory/Inventories.jsx:97 +#: screens/Inventory/Inventories.jsx:77 +#: screens/Inventory/Inventories.jsx:95 msgid "Create new group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:64 -#: src/screens/Inventory/Inventories.jsx:91 +#: screens/Inventory/Inventories.jsx:64 +#: screens/Inventory/Inventories.jsx:89 msgid "Create new host" msgstr "" -#: src/screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.jsx:17 msgid "Create new inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.jsx:18 msgid "Create new smart inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:101 +#: screens/Inventory/Inventories.jsx:99 msgid "Create new source" msgstr "" -#: src/screens/User/Users.jsx:36 +#: screens/User/Users.jsx:36 msgid "Create user token" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:93 -#: src/components/Lookup/HostFilterLookup.jsx:349 -#: src/components/PromptDetail/PromptDetail.jsx:133 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:57 -#: src/screens/Host/HostDetail/HostDetail.jsx:93 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:63 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:114 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:324 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:141 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:47 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:271 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: src/screens/User/UserDetail/UserDetail.jsx:82 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: src/screens/User/UserTokenList/UserTokenList.jsx:134 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/HostFilterLookup.jsx:356 +#: components/PromptDetail/PromptDetail.jsx:133 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 +#: screens/Host/HostDetail/HostDetail.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:117 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:355 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:145 +#: screens/Team/TeamDetail/TeamDetail.jsx:47 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:183 +#: screens/User/UserDetail/UserDetail.jsx:82 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 +#: screens/User/UserTokenList/UserTokenList.jsx:134 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 msgid "Created" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:96 -#: src/components/AddRole/AddResourceRole.jsx:148 -#: src/components/AssociateModal/AssociateModal.jsx:142 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:82 -#: src/components/Lookup/CredentialLookup.jsx:153 -#: src/components/Lookup/InventoryLookup.jsx:114 -#: src/components/Lookup/InventoryLookup.jsx:167 -#: src/components/Lookup/MultiCredentialsLookup.jsx:181 -#: src/components/Lookup/OrganizationLookup.jsx:109 -#: src/components/Lookup/ProjectLookup.jsx:129 -#: src/components/NotificationList/NotificationList.jsx:206 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: src/components/TemplateList/TemplateList.jsx:205 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 -#: src/screens/Credential/CredentialList/CredentialList.jsx:141 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:163 -#: src/screens/Host/HostList/HostList.jsx:156 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:176 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:142 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: src/screens/Project/ProjectList/ProjectList.jsx:161 -#: src/screens/Team/TeamList/TeamList.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: components/AdHocCommands/AdHocCredentialStep.jsx:96 +#: components/AddRole/AddResourceRole.jsx:159 +#: components/AssociateModal/AssociateModal.jsx:144 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:179 +#: components/LaunchPrompt/steps/InventoryStep.jsx:91 +#: components/Lookup/CredentialLookup.jsx:153 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:167 +#: components/Lookup/MultiCredentialsLookup.jsx:181 +#: components/Lookup/OrganizationLookup.jsx:111 +#: components/Lookup/ProjectLookup.jsx:129 +#: components/NotificationList/NotificationList.jsx:206 +#: components/Schedule/ScheduleList/ScheduleList.jsx:201 +#: components/TemplateList/TemplateList.jsx:210 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: 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:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 +#: screens/Inventory/InventoryList/InventoryList.jsx:182 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 +#: screens/Organization/OrganizationList/OrganizationList.jsx:146 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 +#: screens/Project/ProjectList/ProjectList.jsx:166 +#: 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:105 msgid "Created By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:146 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:109 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:53 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:110 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: util/getRelatedResourceDeleteDetails.js:191 msgid "Credential" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:96 +#: util/getRelatedResourceDeleteDetails.js:81 +msgid "Credential Input Sources" +msgstr "" + +#: components/Lookup/InstanceGroupsLookup.jsx:96 msgid "Credential Name" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:214 -#: src/screens/Credential/shared/CredentialForm.jsx:148 -#: src/screens/Credential/shared/CredentialForm.jsx:152 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:229 +#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:152 msgid "Credential Type" msgstr "" -#: src/routeConfig.js:117 -#: src/screens/ActivityStream/ActivityStream.jsx:189 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:118 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:164 -#: src/screens/CredentialType/CredentialTypes.jsx:13 -#: src/screens/CredentialType/CredentialTypes.jsx:23 +#: routeConfig.js:118 +#: screens/ActivityStream/ActivityStream.jsx:189 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/CredentialType/CredentialTypes.jsx:13 +#: screens/CredentialType/CredentialTypes.jsx:23 msgid "Credential Types" msgstr "" -#: src/screens/Credential/Credential.jsx:79 +#: screens/Credential/Credential.jsx:79 msgid "Credential not found." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 msgid "Credential passwords" msgstr "" #: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60 -msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgstr "" + +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:75 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:136 +msgid "Credential to authenticate with a protected container registry." +msgstr "" + +#: screens/CredentialType/CredentialType.jsx:75 msgid "Credential type not found." msgstr "" -#: src/components/JobList/JobListItem.jsx:123 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:162 -#: src/components/LaunchPrompt/steps/useCredentialsStep.jsx:31 -#: src/components/Lookup/MultiCredentialsLookup.jsx:126 -#: src/components/Lookup/MultiCredentialsLookup.jsx:198 -#: src/components/PromptDetail/PromptDetail.jsx:163 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:178 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 -#: src/components/TemplateList/TemplateListItem.jsx:207 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: src/routeConfig.js:70 -#: src/screens/ActivityStream/ActivityStream.jsx:164 -#: src/screens/Credential/CredentialList/CredentialList.jsx:182 -#: src/screens/Credential/Credentials.jsx:13 -#: src/screens/Credential/Credentials.jsx:24 -#: src/screens/Job/JobDetail/JobDetail.jsx:262 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:283 -#: src/screens/Template/shared/JobTemplateForm.jsx:321 +#: components/JobList/JobListItem.jsx:124 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:196 +#: components/LaunchPrompt/steps/useCredentialsStep.jsx:65 +#: components/Lookup/MultiCredentialsLookup.jsx:126 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/PromptDetail/PromptDetail.jsx:163 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:184 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 +#: components/TemplateList/TemplateListItem.jsx:235 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 +#: routeConfig.js:71 +#: screens/ActivityStream/ActivityStream.jsx:164 +#: screens/Credential/CredentialList/CredentialList.jsx:176 +#: screens/Credential/Credentials.jsx:13 +#: screens/Credential/Credentials.jsx:24 +#: screens/Job/JobDetail/JobDetail.jsx:293 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293 +#: screens/Template/shared/JobTemplateForm.jsx:351 +#: util/getRelatedResourceDeleteDetails.js:98 msgid "Credentials" msgstr "" -#: src/components/Pagination/Pagination.jsx:36 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:58 +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:34 msgid "Current page" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:88 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:86 msgid "Custom pod spec" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 +#: components/TemplateList/TemplateListItem.jsx:145 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93 +#: screens/Project/ProjectList/ProjectListItem.jsx:109 +msgid "Custom virtual environment {0} must be replaced by an execution environment." +msgstr "" + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:54 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 msgid "Customize messages…" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:72 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:73 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:70 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:71 msgid "Customize pod specification" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:125 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:314 msgid "DELETED" msgstr "" -#: src/routeConfig.js:34 -#: src/screens/Dashboard/Dashboard.jsx:122 +#: routeConfig.js:35 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Dashboard" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:144 +#: screens/ActivityStream/ActivityStream.jsx:144 msgid "Dashboard (all activity)" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 msgid "Data retention period" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:353 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:457 -#: src/components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/ScheduleForm.jsx:165 msgid "Day" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 -#: src/components/Schedule/shared/ScheduleForm.jsx:176 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 +#: components/Schedule/shared/ScheduleForm.jsx:176 msgid "Days of Data to Keep" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: screens/Job/JobOutput/JobOutput.jsx:663 +msgid "Debug" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 msgid "December" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: src/screens/Template/Survey/SurveyListItem.jsx:119 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 +#: screens/Template/Survey/SurveyListItem.jsx:121 msgid "Default" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:193 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:201 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:208 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:234 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +msgid "Default Execution Environment" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.jsx:201 +#: screens/Template/Survey/SurveyQuestionForm.jsx:208 +#: screens/Template/Survey/SurveyQuestionForm.jsx:234 msgid "Default answer" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:85 +#: screens/Template/Survey/SurveyQuestionForm.jsx:85 msgid "Default choice must be answered from the choices listed." msgstr "" -#: src/screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.jsx:106 msgid "Define system-level features and functions" msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:22 -#: src/components/DeleteButton/DeleteButton.jsx:26 -#: src/components/DeleteButton/DeleteButton.jsx:37 -#: src/components/DeleteButton/DeleteButton.jsx:41 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:108 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:130 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:137 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:141 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:159 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:37 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:410 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:130 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:261 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:129 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:168 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:70 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:73 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:82 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:103 -#: src/screens/Job/JobDetail/JobDetail.jsx:374 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:368 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:158 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:171 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:72 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:393 -#: src/screens/Template/Survey/SurveyList.jsx:106 -#: src/screens/Template/Survey/SurveyToolbar.jsx:72 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 -#: src/screens/User/UserDetail/UserDetail.jsx:103 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:216 +#: components/DeleteButton/DeleteButton.jsx:76 +#: components/DeleteButton/DeleteButton.jsx:81 +#: components/DeleteButton/DeleteButton.jsx:90 +#: components/DeleteButton/DeleteButton.jsx:94 +#: components/DeleteButton/DeleteButton.jsx:114 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:287 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:140 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:74 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:101 +#: screens/Job/JobDetail/JobDetail.jsx:427 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:369 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:180 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Team/TeamDetail/TeamDetail.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:414 +#: screens/Template/Survey/SurveyList.jsx:107 +#: screens/Template/Survey/SurveyToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:254 +#: screens/User/UserDetail/UserDetail.jsx:104 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 msgid "Delete" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:129 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:128 msgid "Delete All Groups and Hosts" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:257 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:279 msgid "Delete Credential" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 -msgid "Delete Group?" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131 +msgid "Delete Execution Environment" msgstr "" +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 +#~ msgid "Delete Group?" +#~ msgstr "" + #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91 -msgid "Delete Groups?" -msgstr "" +#~ msgid "Delete Groups?" +#~ msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:122 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:112 +#: screens/Host/HostDetail/HostDetail.jsx:123 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113 msgid "Delete Host" msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 msgid "Delete Inventory" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:371 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:186 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:189 +#: screens/Job/JobDetail/JobDetail.jsx:423 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:201 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:205 msgid "Delete Job" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 msgid "Delete Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:364 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:365 msgid "Delete Notification" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:154 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 msgid "Delete Organization" msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:172 msgid "Delete Project" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Delete Schedule" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:68 +#: screens/Team/TeamDetail/TeamDetail.jsx:69 msgid "Delete Team" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:99 +#: screens/User/UserDetail/UserDetail.jsx:100 msgid "Delete User" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 msgid "Delete User Token" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:212 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 msgid "Delete Workflow Approval" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:246 msgid "Delete Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 msgid "Delete all nodes" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 msgid "Delete application" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:82 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 msgid "Delete credential type" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:232 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:244 msgid "Delete error" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:100 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:141 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 msgid "Delete instance group" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288 msgid "Delete inventory source" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:39 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: components/PromptDetail/PromptProjectDetail.jsx:40 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:68 msgid "Delete on Update" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:164 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 msgid "Delete smart inventory" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 -msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +msgid "" +"Delete the local repository in its entirety prior to\n" +"performing an update. Depending on the size of the\n" +"repository this may significantly increase the amount\n" +"of time required to complete an update." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 msgid "Delete this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:227 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:233 msgid "Delete this node" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:113 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162 msgid "Delete {pluralizedItemName}?" msgstr "" -#: src/components/DetailList/DeletedDetail.jsx:15 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 +#: components/DetailList/DeletedDetail.jsx:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 msgid "Deleted" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:259 -#: src/screens/Credential/CredentialList/CredentialList.jsx:190 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:245 -#: src/screens/Project/ProjectList/ProjectList.jsx:223 +#: components/TemplateList/TemplateList.jsx:269 +#: screens/Credential/CredentialList/CredentialList.jsx:189 +#: screens/Inventory/InventoryList/InventoryList.jsx:255 +#: screens/Project/ProjectList/ProjectList.jsx:233 msgid "Deletion Error" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:195 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:252 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259 msgid "Deletion error" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 msgid "Denied" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 msgid "Denied by {0} - {1}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:198 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:203 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:59 msgid "Deny" msgstr "" -#: src/components/HostForm/HostForm.jsx:95 -#: src/components/Lookup/ApplicationLookup.jsx:83 -#: src/components/Lookup/ApplicationLookup.jsx:101 -#: src/components/NotificationList/NotificationList.jsx:186 -#: src/components/PromptDetail/PromptDetail.jsx:110 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: src/components/Schedule/shared/ScheduleForm.jsx:110 -#: src/components/TemplateList/TemplateList.jsx:189 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:126 -#: src/screens/Application/shared/ApplicationForm.jsx:62 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:198 -#: src/screens/Credential/CredentialList/CredentialList.jsx:137 -#: src/screens/Credential/shared/CredentialForm.jsx:126 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:45 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:128 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: src/screens/Host/HostDetail/HostDetail.jsx:81 -#: src/screens/Host/HostList/HostList.jsx:152 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:73 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:172 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:191 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: src/screens/Inventory/shared/InventoryForm.jsx:55 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:49 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:110 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:61 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:126 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:89 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:138 -#: src/screens/Organization/shared/OrganizationForm.jsx:60 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:86 -#: src/screens/Project/ProjectList/ProjectList.jsx:138 -#: src/screens/Project/shared/ProjectForm.jsx:168 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:38 -#: src/screens/Team/TeamList/TeamList.jsx:134 -#: src/screens/Team/shared/TeamForm.jsx:43 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:168 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:124 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:109 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:133 -#: src/screens/Template/shared/JobTemplateForm.jsx:208 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:107 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:48 -#: src/screens/User/UserTokenList/UserTokenList.jsx:116 -#: src/screens/User/shared/UserTokenForm.jsx:59 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 +#: screens/Job/JobOutput/JobOutput.jsx:665 +msgid "Deprecated" +msgstr "" + +#: components/HostForm/HostForm.jsx:95 +#: components/Lookup/ApplicationLookup.jsx:83 +#: components/Lookup/ApplicationLookup.jsx:101 +#: components/NotificationList/NotificationList.jsx:186 +#: components/PromptDetail/PromptDetail.jsx:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 +#: components/Schedule/ScheduleList/ScheduleList.jsx:197 +#: components/Schedule/shared/ScheduleForm.jsx:110 +#: components/TemplateList/TemplateList.jsx:194 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/shared/ApplicationForm.jsx:62 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211 +#: screens/Credential/CredentialList/CredentialList.jsx:129 +#: screens/Credential/shared/CredentialForm.jsx:126 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/Host/HostDetail/HostDetail.jsx:81 +#: screens/Host/HostList/HostList.jsx:152 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 +#: screens/Inventory/InventoryList/InventoryList.jsx:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 +#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryGroupForm.jsx:49 +#: screens/Inventory/shared/InventorySourceForm.jsx:113 +#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 +#: screens/Organization/OrganizationList/OrganizationList.jsx:142 +#: screens/Organization/shared/OrganizationForm.jsx:68 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 +#: screens/Project/ProjectList/ProjectList.jsx:143 +#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Team/TeamDetail/TeamDetail.jsx:38 +#: screens/Team/TeamList/TeamList.jsx:134 +#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 +#: screens/Template/Survey/SurveyQuestionForm.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:163 +#: screens/Template/shared/JobTemplateForm.jsx:215 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:118 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 +#: screens/User/UserTokenList/UserTokenList.jsx:116 +#: screens/User/shared/UserTokenForm.jsx:59 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 msgid "Description" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 msgid "Destination Channels" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 msgid "Destination Channels or Users" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 msgid "Destination SMS Number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 msgid "Destination SMS number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 msgid "Destination channels" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 msgid "Destination channels or users" msgstr "" -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 msgid "Detail coming soon :)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:60 -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:70 -#: src/components/ErrorDetail/ErrorDetail.jsx:73 -#: src/components/Schedule/Schedule.jsx:67 -#: src/screens/Application/Application/Application.jsx:77 -#: src/screens/Application/Applications.jsx:39 -#: src/screens/Credential/Credential.jsx:58 -#: src/screens/Credential/Credentials.jsx:28 -#: src/screens/CredentialType/CredentialType.jsx:62 -#: src/screens/CredentialType/CredentialTypes.jsx:29 -#: src/screens/Host/Host.jsx:52 -#: src/screens/Host/Hosts.jsx:29 -#: src/screens/InstanceGroup/ContainerGroup.jsx:63 -#: src/screens/InstanceGroup/InstanceGroup.jsx:64 -#: src/screens/InstanceGroup/InstanceGroups.jsx:33 -#: src/screens/InstanceGroup/InstanceGroups.jsx:42 -#: src/screens/Inventory/Inventories.jsx:60 -#: src/screens/Inventory/Inventories.jsx:104 -#: src/screens/Inventory/Inventory.jsx:62 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:88 -#: src/screens/Inventory/SmartInventory.jsx:69 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: src/screens/Job/Job.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:113 -#: src/screens/Job/Jobs.jsx:29 -#: src/screens/ManagementJob/ManagementJobs.jsx:29 -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:27 -#: src/screens/Organization/Organization.jsx:122 -#: src/screens/Organization/Organizations.jsx:31 -#: src/screens/Project/Project.jsx:105 -#: src/screens/Project/Projects.jsx:29 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: src/screens/Setting/Settings.jsx:45 -#: src/screens/Setting/Settings.jsx:48 -#: src/screens/Setting/Settings.jsx:52 -#: src/screens/Setting/Settings.jsx:55 -#: src/screens/Setting/Settings.jsx:58 -#: src/screens/Setting/Settings.jsx:61 -#: src/screens/Setting/Settings.jsx:66 -#: src/screens/Setting/Settings.jsx:69 -#: src/screens/Setting/Settings.jsx:72 -#: src/screens/Setting/Settings.jsx:75 -#: src/screens/Setting/Settings.jsx:84 -#: src/screens/Setting/Settings.jsx:85 -#: src/screens/Setting/Settings.jsx:86 -#: src/screens/Setting/Settings.jsx:87 -#: src/screens/Setting/Settings.jsx:88 -#: src/screens/Setting/Settings.jsx:89 -#: src/screens/Setting/Settings.jsx:98 -#: src/screens/Setting/Settings.jsx:101 -#: src/screens/Setting/Settings.jsx:104 -#: src/screens/Setting/Settings.jsx:107 -#: src/screens/Setting/Settings.jsx:110 -#: src/screens/Setting/Settings.jsx:113 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:55 -#: src/screens/Team/Team.jsx:55 -#: src/screens/Team/Teams.jsx:29 -#: src/screens/Template/Template.jsx:131 -#: src/screens/Template/Templates.jsx:44 -#: src/screens/Template/WorkflowJobTemplate.jsx:121 -#: src/screens/User/User.jsx:63 -#: src/screens/User/UserToken/UserToken.jsx:54 -#: src/screens/User/Users.jsx:31 -#: src/screens/User/Users.jsx:41 -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:21 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:60 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:70 +#: components/ErrorDetail/ErrorDetail.jsx:73 +#: components/Schedule/Schedule.jsx:68 +#: screens/Application/Application/Application.jsx:77 +#: screens/Application/Applications.jsx:39 +#: screens/Credential/Credential.jsx:58 +#: screens/Credential/Credentials.jsx:28 +#: screens/CredentialType/CredentialType.jsx:62 +#: screens/CredentialType/CredentialTypes.jsx:29 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:30 +#: screens/Host/Host.jsx:52 +#: screens/Host/Hosts.jsx:29 +#: screens/InstanceGroup/ContainerGroup.jsx:63 +#: screens/InstanceGroup/InstanceGroup.jsx:64 +#: screens/InstanceGroup/InstanceGroups.jsx:33 +#: screens/InstanceGroup/InstanceGroups.jsx:42 +#: screens/Inventory/Inventories.jsx:60 +#: screens/Inventory/Inventories.jsx:102 +#: screens/Inventory/Inventory.jsx:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 +#: screens/Inventory/InventorySource/InventorySource.jsx:88 +#: screens/Inventory/SmartInventory.jsx:69 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 +#: screens/Job/Job.jsx:103 +#: screens/Job/JobOutput/HostEventModal.jsx:113 +#: screens/Job/Jobs.jsx:29 +#: screens/ManagementJob/ManagementJobs.jsx:29 +#: screens/NotificationTemplate/NotificationTemplate.jsx:83 +#: screens/NotificationTemplate/NotificationTemplates.jsx:27 +#: screens/Organization/Organization.jsx:123 +#: screens/Organization/Organizations.jsx:31 +#: screens/Project/Project.jsx:105 +#: screens/Project/Projects.jsx:29 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:115 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 +#: screens/Setting/Settings.jsx:45 +#: screens/Setting/Settings.jsx:48 +#: screens/Setting/Settings.jsx:52 +#: screens/Setting/Settings.jsx:55 +#: screens/Setting/Settings.jsx:58 +#: screens/Setting/Settings.jsx:61 +#: screens/Setting/Settings.jsx:66 +#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.jsx:72 +#: screens/Setting/Settings.jsx:75 +#: screens/Setting/Settings.jsx:84 +#: screens/Setting/Settings.jsx:85 +#: screens/Setting/Settings.jsx:86 +#: screens/Setting/Settings.jsx:87 +#: screens/Setting/Settings.jsx:88 +#: screens/Setting/Settings.jsx:89 +#: screens/Setting/Settings.jsx:98 +#: screens/Setting/Settings.jsx:101 +#: screens/Setting/Settings.jsx:104 +#: screens/Setting/Settings.jsx:107 +#: 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/Team/Team.jsx:55 +#: screens/Team/Teams.jsx:29 +#: screens/Template/Template.jsx:144 +#: screens/Template/Templates.jsx:44 +#: screens/Template/WorkflowJobTemplate.jsx:121 +#: screens/User/User.jsx:63 +#: screens/User/UserToken/UserToken.jsx:54 +#: screens/User/Users.jsx:31 +#: screens/User/Users.jsx:41 +#: screens/WorkflowApproval/WorkflowApproval.jsx:76 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.jsx:111 msgid "Details tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 msgid "Disable SSL Verification" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 msgid "Disable SSL verification" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:60 -#: src/components/DisassociateButton/DisassociateButton.jsx:87 -#: src/components/DisassociateButton/DisassociateButton.jsx:94 -#: src/components/DisassociateButton/DisassociateButton.jsx:98 -#: src/components/DisassociateButton/DisassociateButton.jsx:117 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:204 -#: src/screens/User/UserRoles/UserRolesList.jsx:204 +#: components/DisassociateButton/DisassociateButton.jsx:60 +#: components/DisassociateButton/DisassociateButton.jsx:87 +#: components/DisassociateButton/DisassociateButton.jsx:95 +#: components/DisassociateButton/DisassociateButton.jsx:99 +#: components/DisassociateButton/DisassociateButton.jsx:119 +#: screens/Team/TeamRoles/TeamRolesList.jsx:205 +#: screens/User/UserRoles/UserRolesList.jsx:205 msgid "Disassociate" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:211 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 +#: screens/Host/HostGroups/HostGroupsList.jsx:211 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 msgid "Disassociate group from host?" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 msgid "Disassociate host from group?" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:191 +#: screens/InstanceGroup/Instances/InstanceList.jsx:191 msgid "Disassociate instance from instance group?" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 msgid "Disassociate related group(s)?" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:212 +#: screens/User/UserTeams/UserTeamList.jsx:212 msgid "Disassociate related team(s)?" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:192 -#: src/screens/User/UserRoles/UserRolesList.jsx:192 +#: screens/Team/TeamRoles/TeamRolesList.jsx:192 +#: screens/User/UserRoles/UserRolesList.jsx:192 msgid "Disassociate role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:195 -#: src/screens/User/UserRoles/UserRolesList.jsx:195 +#: screens/Team/TeamRoles/TeamRolesList.jsx:195 +#: screens/User/UserRoles/UserRolesList.jsx:195 msgid "Disassociate role!" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:19 +#: components/DisassociateButton/DisassociateButton.jsx:19 msgid "Disassociate?" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:429 -msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#: screens/Template/shared/JobTemplateForm.jsx:459 +msgid "" +"Divide the work done by this job template\n" +"into the specified number of job slices, each running the\n" +"same tasks against a portion of the inventory." msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:161 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:163 +#: src/screens/Template/shared/JobTemplateForm.jsx:429 +#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#~ msgstr "" + +#: components/CodeEditor/VariablesDetail.jsx:114 +#: components/CodeEditor/VariablesDetail.jsx:120 +#: components/CodeEditor/VariablesField.jsx:63 +#: components/CodeEditor/VariablesField.jsx:69 +msgid "Done" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:172 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:177 msgid "Download Output" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 msgid "E-mail" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 msgid "E-mail options" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:220 +#: screens/Template/Survey/SurveyQuestionForm.jsx:220 msgid "Each answer choice must be on a separate line." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175 +msgid "" +"Each time a job runs using this inventory,\n" +"refresh the inventory from the selected source before\n" +"executing job tasks." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168 -msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 +msgid "" +"Each time a job runs using this project, update the\n" +"revision of the project prior to starting the job." msgstr "" #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 -msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." -msgstr "" +#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." +#~ msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:400 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:117 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:119 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:251 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:75 -#: src/screens/Host/HostDetail/HostDetail.jsx:116 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:120 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:67 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:106 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:158 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:355 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:357 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:125 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:143 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:147 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:158 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:87 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:79 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:142 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:79 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:96 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:160 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:14 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:100 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:141 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:79 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:80 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:99 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:57 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:61 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:373 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:207 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:207 -#: src/screens/User/UserDetail/UserDetail.jsx:92 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125 +#: screens/Host/HostDetail/HostDetail.jsx:117 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:137 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:163 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:15 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:150 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Team/TeamDetail/TeamDetail.jsx:58 +#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 +#: screens/User/UserDetail/UserDetail.jsx:93 msgid "Edit" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:67 +#: screens/Credential/CredentialList/CredentialListItem.jsx:64 +#: screens/Credential/CredentialList/CredentialListItem.jsx:68 msgid "Edit Credential" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:38 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:43 msgid "Edit Credential Plugin Configuration" msgstr "" -#: src/screens/Application/Applications.jsx:38 -#: src/screens/Credential/Credentials.jsx:27 -#: src/screens/Host/Hosts.jsx:28 -#: src/screens/ManagementJob/ManagementJobs.jsx:32 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:26 -#: src/screens/Organization/Organizations.jsx:30 -#: src/screens/Project/Projects.jsx:28 -#: src/screens/Project/Projects.jsx:40 -#: src/screens/Setting/Settings.jsx:46 -#: src/screens/Setting/Settings.jsx:49 -#: src/screens/Setting/Settings.jsx:53 -#: src/screens/Setting/Settings.jsx:56 -#: src/screens/Setting/Settings.jsx:59 -#: src/screens/Setting/Settings.jsx:62 -#: src/screens/Setting/Settings.jsx:67 -#: src/screens/Setting/Settings.jsx:70 -#: src/screens/Setting/Settings.jsx:73 -#: src/screens/Setting/Settings.jsx:76 -#: src/screens/Setting/Settings.jsx:90 -#: src/screens/Setting/Settings.jsx:91 -#: src/screens/Setting/Settings.jsx:92 -#: src/screens/Setting/Settings.jsx:93 -#: src/screens/Setting/Settings.jsx:94 -#: src/screens/Setting/Settings.jsx:95 -#: src/screens/Setting/Settings.jsx:99 -#: src/screens/Setting/Settings.jsx:102 -#: src/screens/Setting/Settings.jsx:105 -#: src/screens/Setting/Settings.jsx:108 -#: src/screens/Setting/Settings.jsx:111 -#: src/screens/Setting/Settings.jsx:114 -#: src/screens/Team/Teams.jsx:28 -#: src/screens/Template/Templates.jsx:45 -#: src/screens/User/Users.jsx:30 +#: screens/Application/Applications.jsx:38 +#: screens/Credential/Credentials.jsx:27 +#: screens/Host/Hosts.jsx:28 +#: screens/ManagementJob/ManagementJobs.jsx:32 +#: screens/NotificationTemplate/NotificationTemplates.jsx:26 +#: screens/Organization/Organizations.jsx:30 +#: screens/Project/Projects.jsx:28 +#: screens/Project/Projects.jsx:40 +#: screens/Setting/Settings.jsx:46 +#: screens/Setting/Settings.jsx:49 +#: screens/Setting/Settings.jsx:53 +#: screens/Setting/Settings.jsx:56 +#: screens/Setting/Settings.jsx:59 +#: screens/Setting/Settings.jsx:62 +#: screens/Setting/Settings.jsx:67 +#: screens/Setting/Settings.jsx:70 +#: screens/Setting/Settings.jsx:73 +#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.jsx:90 +#: screens/Setting/Settings.jsx:91 +#: screens/Setting/Settings.jsx:92 +#: screens/Setting/Settings.jsx:93 +#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.jsx:95 +#: screens/Setting/Settings.jsx:99 +#: screens/Setting/Settings.jsx:102 +#: screens/Setting/Settings.jsx:105 +#: screens/Setting/Settings.jsx:108 +#: screens/Setting/Settings.jsx:111 +#: screens/Setting/Settings.jsx:114 +#: screens/Team/Teams.jsx:28 +#: screens/Template/Templates.jsx:45 +#: screens/User/Users.jsx:30 msgid "Edit Details" msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:50 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:58 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:85 +msgid "Edit Execution Environment" +msgstr "" + +#: screens/Host/HostGroups/HostGroupItem.jsx:50 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:59 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:67 msgid "Edit Group" msgstr "" -#: src/screens/Host/HostList/HostListItem.jsx:52 -#: src/screens/Host/HostList/HostListItem.jsx:55 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 +#: screens/Host/HostList/HostListItem.jsx:52 +#: screens/Host/HostList/HostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:78 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 msgid "Edit Host" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:115 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:119 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:115 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:120 msgid "Edit Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 msgid "Edit Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:204 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 msgid "Edit Node" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:137 msgid "Edit Notification Template" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:47 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:50 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:74 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:78 msgid "Edit Organization" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:134 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:138 +#: screens/Project/ProjectList/ProjectListItem.jsx:161 +#: screens/Project/ProjectList/ProjectListItem.jsx:166 msgid "Edit Project" msgstr "" -#: src/screens/Template/Templates.jsx:51 +#: screens/Template/Templates.jsx:51 msgid "Edit Question" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:116 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: src/screens/Template/Templates.jsx:58 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:116 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:120 +#: screens/Template/Templates.jsx:58 msgid "Edit Schedule" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:98 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:126 msgid "Edit Source" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:42 -#: src/screens/Team/TeamList/TeamListItem.jsx:57 -#: src/screens/Team/TeamList/TeamListItem.jsx:60 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 +#: screens/Team/TeamList/TeamListItem.jsx:57 +#: screens/Team/TeamList/TeamListItem.jsx:61 msgid "Edit Team" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:167 -#: src/components/TemplateList/TemplateListItem.jsx:172 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:109 +#: components/TemplateList/TemplateListItem.jsx:194 +#: components/TemplateList/TemplateListItem.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:133 msgid "Edit Template" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:82 -#: src/screens/User/UserList/UserListItem.jsx:85 +#: screens/User/UserList/UserListItem.jsx:82 +#: screens/User/UserList/UserListItem.jsx:86 msgid "Edit User" msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:50 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:50 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:54 msgid "Edit application" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:44 msgid "Edit credential type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:27 -#: src/screens/InstanceGroup/InstanceGroups.jsx:38 -#: src/screens/InstanceGroup/InstanceGroups.jsx:48 -#: src/screens/Inventory/Inventories.jsx:61 -#: src/screens/Inventory/Inventories.jsx:67 -#: src/screens/Inventory/Inventories.jsx:82 -#: src/screens/Inventory/Inventories.jsx:107 +#: screens/CredentialType/CredentialTypes.jsx:27 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:27 +#: screens/InstanceGroup/InstanceGroups.jsx:38 +#: screens/InstanceGroup/InstanceGroups.jsx:48 +#: screens/Inventory/Inventories.jsx:61 +#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.jsx:105 msgid "Edit details" msgstr "" -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 msgid "Edit form coming soon :)" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:108 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:109 msgid "Edit instance group" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 msgid "Edit this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:199 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:205 msgid "Edit this node" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:146 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:123 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: components/Workflow/WorkflowNodeHelp.jsx:146 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:130 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 msgid "Elapsed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:122 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:129 msgid "Elapsed Time" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:124 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:131 msgid "Elapsed time that the job ran" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:193 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 -#: src/screens/User/UserDetail/UserDetail.jsx:64 -#: src/screens/User/shared/UserForm.jsx:77 +#: components/NotificationList/NotificationList.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 +#: screens/User/UserDetail/UserDetail.jsx:64 +#: screens/User/shared/UserForm.jsx:77 msgid "Email" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 msgid "Email Options" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:63 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:128 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:265 msgid "Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:557 +#: screens/Template/shared/JobTemplateForm.jsx:587 msgid "Enable Fact Storage" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 msgid "Enable HTTPS certificate verification" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:57 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 msgid "Enable Privilege Escalation" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:531 -#: src/screens/Template/shared/JobTemplateForm.jsx:534 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:216 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:219 +#: screens/Template/shared/JobTemplateForm.jsx:561 +#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 msgid "Enable Webhook" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:223 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Enable Webhook for this workflow job template." msgstr "" -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 msgid "Enable Webhooks" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 msgid "Enable external logging" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 msgid "Enable log system tracking facts individually" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:236 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:239 +#: components/AdHocCommands/AdHocDetailsStep.jsx:236 +#: components/AdHocCommands/AdHocDetailsStep.jsx:239 msgid "Enable privilege escalation" msgstr "" -#: src/screens/Setting/SettingList.jsx:57 +#: screens/Setting/SettingList.jsx:57 msgid "Enable simplified login for your {brandName} applications" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:537 +#: screens/Template/shared/JobTemplateForm.jsx:567 msgid "Enable webhook for this template." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:94 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 +#: components/Lookup/HostFilterLookup.jsx:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 msgid "Enabled" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267 msgid "Enabled Value" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:231 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254 msgid "Enabled Variable" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:517 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#: screens/Template/shared/JobTemplateForm.jsx:547 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact BRAND_NAME\n" +"and request a configuration update using this job\n" +"template." msgstr "" +#: components/AdHocCommands/AdHocDetailsStep.jsx:244 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact {brandName}\n" +"and request a configuration update using this job\n" +"template" +msgstr "" + +#: src/screens/Template/shared/JobTemplateForm.jsx:517 +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#~ msgstr "" + #: src/components/AdHocCommands/AdHocDetailsStep.jsx:244 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" -msgstr "" +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" +#~ msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:149 -#: src/screens/Setting/shared/SettingDetail.jsx:75 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:154 +#: screens/Setting/shared/SettingDetail.jsx:75 msgid "Encrypted" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:504 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 msgid "End" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:562 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 msgid "End date/time" msgstr "" -#: src/components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:96 msgid "End did not match an expected value" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:31 +#: screens/Host/HostList/SmartInventoryButton.jsx:31 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:39 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:39 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:85 +#: screens/Inventory/shared/SmartInventoryForm.jsx:100 +msgid "" +"Enter inventory variables using either JSON or YAML syntax.\n" +"Use the radio button to toggle between the two. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: screens/Inventory/shared/InventoryForm.jsx:85 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "" #: src/screens/Inventory/shared/SmartInventoryForm.jsx:100 -msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." -msgstr "" +#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 msgid "Enter one Annotation Tag per line, without commas." msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +msgid "" +"Enter one IRC channel or username per line. The pound\n" +"symbol (#) for channels, and the at (@) symbol for users, are not\n" +"required." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 -msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +msgid "" +"Enter one Slack channel per line. The pound symbol (#)\n" +"is required for channels." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 -msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +msgid "" +"Enter one email address per line to create a recipient\n" +"list for this type of notification." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 -msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +msgid "" +"Enter one phone number per line to specify where to\n" +"route SMS messages." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 -msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +msgid "" +"Enter the number associated with the \"Messaging\n" +"Service\" in Twilio in the format +18005550199." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 -msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." -msgstr "" +#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." +#~ msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:37 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "" #: src/screens/Job/JobDetail/JobDetail.jsx:224 -msgid "Environment" -msgstr "" +#~ msgid "Environment" +#~ msgstr "" -#: src/components/JobList/JobList.jsx:227 -#: src/components/Workflow/WorkflowNodeHelp.jsx:92 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:198 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:255 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/JobList/JobList.jsx:205 +#: components/Workflow/WorkflowNodeHelp.jsx:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:161 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262 +#: screens/Job/JobOutput/JobOutput.jsx:668 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Error" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:431 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:432 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 msgid "Error message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:440 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:441 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 msgid "Error message body" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:98 -#: src/components/AppContainer/AppContainer.jsx:215 -#: src/components/CopyButton/CopyButton.jsx:49 -#: src/components/HostToggle/HostToggle.jsx:73 -#: src/components/InstanceToggle/InstanceToggle.jsx:69 -#: src/components/JobList/JobList.jsx:288 -#: src/components/JobList/JobList.jsx:299 -#: src/components/LaunchButton/LaunchButton.jsx:150 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:66 -#: src/components/NotificationList/NotificationList.jsx:248 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:234 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:418 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:241 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:77 -#: src/components/TemplateList/TemplateList.jsx:262 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:191 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:269 -#: src/screens/Credential/CredentialList/CredentialList.jsx:193 -#: src/screens/Host/HostDetail/HostDetail.jsx:60 -#: src/screens/Host/HostDetail/HostDetail.jsx:131 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:243 -#: src/screens/Host/HostList/HostList.jsx:222 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:232 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:83 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:121 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:246 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:289 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:235 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:84 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:95 -#: src/screens/Login/Login.jsx:270 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:376 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:206 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:199 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:180 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: src/screens/Project/ProjectList/ProjectList.jsx:224 -#: src/screens/Project/shared/ProjectSyncButton.jsx:40 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:80 -#: src/screens/Team/TeamList/TeamList.jsx:205 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:229 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:402 -#: src/screens/Template/TemplateSurvey.jsx:126 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:164 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:179 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:291 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:586 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:293 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:304 -#: src/screens/User/UserDetail/UserDetail.jsx:111 -#: src/screens/User/UserList/UserList.jsx:197 -#: src/screens/User/UserRoles/UserRolesList.jsx:229 -#: src/screens/User/UserTeams/UserTeamList.jsx:257 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:89 -#: src/screens/User/UserTokenList/UserTokenList.jsx:191 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:235 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:246 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:596 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:598 +msgid "Error saving the workflow!" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:98 +#: components/AppContainer/AppContainer.jsx:214 +#: components/CopyButton/CopyButton.jsx:51 +#: components/DeleteButton/DeleteButton.jsx:57 +#: components/HostToggle/HostToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:69 +#: components/JobList/JobList.jsx:266 +#: components/JobList/JobList.jsx:277 +#: components/LaunchButton/LaunchButton.jsx:162 +#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/NotificationList/NotificationList.jsx:248 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204 +#: components/ResourceAccessList/ResourceAccessList.jsx:236 +#: components/ResourceAccessList/ResourceAccessList.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419 +#: components/Schedule/ScheduleList/ScheduleList.jsx:241 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 +#: components/Schedule/shared/SchedulePromptableFields.jsx:77 +#: components/TemplateList/TemplateList.jsx:272 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:139 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialList/CredentialList.jsx:192 +#: screens/Host/HostDetail/HostDetail.jsx:60 +#: screens/Host/HostDetail/HostDetail.jsx:132 +#: screens/Host/HostGroups/HostGroupsList.jsx:243 +#: screens/Host/HostList/HostList.jsx:222 +#: screens/InstanceGroup/Instances/InstanceList.jsx:232 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:148 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:84 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 +#: screens/Inventory/InventoryList/InventoryList.jsx:256 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:234 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:247 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:97 +#: screens/Login/Login.jsx:184 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:377 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:189 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 +#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/shared/ProjectSyncButton.jsx:41 +#: screens/Team/TeamDetail/TeamDetail.jsx:81 +#: screens/Team/TeamList/TeamList.jsx:205 +#: screens/Team/TeamRoles/TeamRolesList.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:423 +#: screens/Template/TemplateSurvey.jsx:126 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:331 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:342 +#: screens/User/UserDetail/UserDetail.jsx:112 +#: screens/User/UserList/UserList.jsx:197 +#: screens/User/UserRoles/UserRolesList.jsx:231 +#: screens/User/UserTeams/UserTeamList.jsx:257 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 +#: screens/User/UserTokenList/UserTokenList.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 msgid "Error!" msgstr "" -#: src/components/CodeMirrorInput/VariablesDetail.jsx:115 +#: components/CodeEditor/VariablesDetail.jsx:103 msgid "Error:" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:252 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/ActivityStream/ActivityStream.jsx:258 +#: screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/Job/JobOutput/JobOutput.jsx:635 msgid "Event" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:34 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 msgid "Event detail" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 msgid "Event detail modal" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:564 +#: screens/ActivityStream/ActivityStreamDescription.jsx:564 msgid "Event summary not available" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:221 +#: screens/ActivityStream/ActivityStream.jsx:227 msgid "Events" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.jsx:160 msgid "Exact match (default lookup if not specified)." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 msgid "Example URLs for GIT Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 msgid "Example URLs for Remote Archive Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 msgid "Example URLs for Subversion Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 msgid "Examples include:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 msgid "Execute regardless of the parent node's final state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 msgid "Execute when the parent node results in a failure state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 msgid "Execute when the parent node results in a successful state." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:225 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:135 +msgid "Execution Environment" +msgstr "" + +#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: routeConfig.js:143 +#: screens/ActivityStream/ActivityStream.jsx:210 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/Organization/Organization.jsx:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 +#: screens/Organization/Organizations.jsx:38 +#: util/getRelatedResourceDeleteDetails.js:88 +#: util/getRelatedResourceDeleteDetails.js:212 +msgid "Execution Environments" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:256 msgid "Execution Node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:22 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:25 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:41 +msgid "Execution environment image" +msgstr "" + +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:33 +msgid "Execution environment name" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +msgid "Execution environment not found." +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +msgid "Execution environments" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 msgid "Exit Without Saving" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:50 +#: components/ExpandCollapse/ExpandCollapse.jsx:52 msgid "Expand" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 +#: components/CodeEditor/VariablesDetail.jsx:214 +#: components/CodeEditor/VariablesField.jsx:165 +msgid "Expand input" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:65 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 +#: screens/User/UserTokenList/UserTokenListItem.jsx:65 msgid "Expiration" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:58 -#: src/screens/User/UserTokenList/UserTokenList.jsx:130 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:66 -#: src/screens/User/UserTokens/UserTokens.jsx:90 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 +#: screens/User/UserTokenList/UserTokenList.jsx:130 +#: screens/User/UserTokenList/UserTokenListItem.jsx:66 +#: screens/User/UserTokens/UserTokens.jsx:90 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 msgid "Expires" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 msgid "Expires on {0}" msgstr "" -#: src/components/JobList/JobListItem.jsx:167 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.jsx:168 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 msgid "Explanation" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:112 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:116 msgid "External Secret Management System" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:309 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:310 +#: components/AdHocCommands/AdHocDetailsStep.jsx:309 +#: components/AdHocCommands/AdHocDetailsStep.jsx:310 msgid "Extra variables" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:35 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:61 +#: components/Sparkline/Sparkline.jsx:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49 +#: screens/Project/ProjectList/ProjectListItem.jsx:69 msgid "FINISHED:" msgstr "" -#: src/screens/Host/Host.jsx:57 -#: src/screens/Host/HostFacts/HostFacts.jsx:39 -#: src/screens/Host/Hosts.jsx:30 -#: src/screens/Inventory/Inventories.jsx:75 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Host/Host.jsx:57 +#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/Hosts.jsx:30 +#: screens/Inventory/Inventories.jsx:73 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 msgid "Facts" msgstr "" -#: src/components/JobList/JobList.jsx:226 -#: src/components/Workflow/WorkflowNodeHelp.jsx:89 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:111 +#: components/JobList/JobList.jsx:204 +#: components/Workflow/WorkflowNodeHelp.jsx:89 +#: screens/Dashboard/shared/ChartTooltip.jsx:66 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:118 msgid "Failed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:110 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:117 msgid "Failed Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:112 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:119 msgid "Failed Hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:50 -#: src/screens/Dashboard/Dashboard.jsx:135 +#: components/LaunchButton/ReLaunchDropDown.jsx:50 +#: screens/Dashboard/Dashboard.jsx:135 msgid "Failed hosts" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 msgid "Failed to approve one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:238 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 msgid "Failed to approve workflow approval." msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:240 +msgid "Failed to assign roles properly" +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 msgid "Failed to associate role" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:247 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:236 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 -#: src/screens/User/UserTeams/UserTeamList.jsx:261 +#: screens/Host/HostGroups/HostGroupsList.jsx:247 +#: screens/InstanceGroup/Instances/InstanceList.jsx:236 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 +#: screens/User/UserTeams/UserTeamList.jsx:261 msgid "Failed to associate." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:98 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:100 msgid "Failed to cancel inventory source sync." msgstr "" -#: src/components/JobList/JobList.jsx:302 +#: components/JobList/JobList.jsx:280 msgid "Failed to cancel one or more jobs." msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:84 +#: screens/Credential/CredentialList/CredentialListItem.jsx:85 msgid "Failed to copy credential." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:103 +msgid "Failed to copy execution environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:143 msgid "Failed to copy inventory." msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/ProjectList/ProjectListItem.jsx:183 msgid "Failed to copy project." msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:186 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:145 +#: components/TemplateList/TemplateListItem.jsx:214 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:155 msgid "Failed to copy template." msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:141 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:142 msgid "Failed to delete application." msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:298 msgid "Failed to delete credential." msgstr "" -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:88 msgid "Failed to delete group {0}." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:134 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:124 +#: screens/Host/HostDetail/HostDetail.jsx:135 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:125 msgid "Failed to delete host." msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:293 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306 msgid "Failed to delete inventory source {name}." msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:141 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:151 msgid "Failed to delete inventory." msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:426 msgid "Failed to delete job template." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:380 msgid "Failed to delete notification." msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 msgid "Failed to delete one or more applications." msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:201 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 msgid "Failed to delete one or more credential types." msgstr "" -#: src/screens/Credential/CredentialList/CredentialList.jsx:196 +#: screens/Credential/CredentialList/CredentialList.jsx:195 msgid "Failed to delete one or more credentials." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:152 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 +msgid "Failed to delete one or more execution environments" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:151 msgid "Failed to delete one or more groups." msgstr "" -#: src/screens/Host/HostList/HostList.jsx:225 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 +#: screens/Host/HostList/HostList.jsx:225 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 msgid "Failed to delete one or more hosts." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:258 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Failed to delete one or more instance groups." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:249 +#: screens/Inventory/InventoryList/InventoryList.jsx:259 msgid "Failed to delete one or more inventories." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:238 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:250 msgid "Failed to delete one or more inventory sources." msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 msgid "Failed to delete one or more job templates." msgstr "" -#: src/components/JobList/JobList.jsx:291 +#: components/JobList/JobList.jsx:269 msgid "Failed to delete one or more jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 msgid "Failed to delete one or more notification template." msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:202 +#: screens/Organization/OrganizationList/OrganizationList.jsx:211 msgid "Failed to delete one or more organizations." msgstr "" -#: src/screens/Project/ProjectList/ProjectList.jsx:227 +#: screens/Project/ProjectList/ProjectList.jsx:237 msgid "Failed to delete one or more projects." msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:244 +#: components/Schedule/ScheduleList/ScheduleList.jsx:244 msgid "Failed to delete one or more schedules." msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:208 msgid "Failed to delete one or more teams." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:265 +#: components/TemplateList/TemplateList.jsx:275 msgid "Failed to delete one or more templates." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 msgid "Failed to delete one or more tokens." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.jsx:194 msgid "Failed to delete one or more user tokens." msgstr "" -#: src/screens/User/UserList/UserList.jsx:200 +#: screens/User/UserList/UserList.jsx:200 msgid "Failed to delete one or more users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 msgid "Failed to delete one or more workflow approval." msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:182 msgid "Failed to delete organization." msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:183 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:192 msgid "Failed to delete project." msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:237 +#: components/ResourceAccessList/ResourceAccessList.jsx:251 msgid "Failed to delete role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:232 -#: src/screens/User/UserRoles/UserRolesList.jsx:232 +#: screens/Team/TeamRoles/TeamRolesList.jsx:234 +#: screens/User/UserRoles/UserRolesList.jsx:234 msgid "Failed to delete role." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:421 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:422 msgid "Failed to delete schedule." msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:180 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:181 msgid "Failed to delete smart inventory." msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:83 +#: screens/Team/TeamDetail/TeamDetail.jsx:84 msgid "Failed to delete team." msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:114 +#: screens/User/UserDetail/UserDetail.jsx:115 msgid "Failed to delete user." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 msgid "Failed to delete workflow approval." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:238 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 msgid "Failed to delete workflow job template." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:63 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.jsx:63 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 msgid "Failed to delete {name}." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Failed to deny one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:249 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 msgid "Failed to deny workflow approval." msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:248 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 +#: screens/Host/HostGroups/HostGroupsList.jsx:248 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 msgid "Failed to disassociate one or more groups." msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 msgid "Failed to disassociate one or more hosts." msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:237 +#: screens/InstanceGroup/Instances/InstanceList.jsx:237 msgid "Failed to disassociate one or more instances." msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:262 +#: screens/User/UserTeams/UserTeamList.jsx:262 msgid "Failed to disassociate one or more teams." msgstr "" -#: src/screens/Login/Login.jsx:274 +#: screens/Login/Login.jsx:189 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:106 -#: src/components/LaunchButton/LaunchButton.jsx:153 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: components/AdHocCommands/AdHocCommands.jsx:106 +#: components/LaunchButton/LaunchButton.jsx:165 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 msgid "Failed to launch job." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:218 +#: components/AppContainer/AppContainer.jsx:217 msgid "Failed to retrieve configuration." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:296 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:334 msgid "Failed to retrieve full node resource object." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:345 msgid "Failed to retrieve node credentials." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:87 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:167 +msgid "Failed to send test notification." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:89 msgid "Failed to sync inventory source." msgstr "" -#: src/screens/Project/shared/ProjectSyncButton.jsx:43 +#: screens/Project/shared/ProjectSyncButton.jsx:44 msgid "Failed to sync project." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:225 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:237 msgid "Failed to sync some or all inventory sources." msgstr "" -#: src/components/HostToggle/HostToggle.jsx:77 +#: components/HostToggle/HostToggle.jsx:77 msgid "Failed to toggle host." msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:73 msgid "Failed to toggle instance." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:252 +#: components/NotificationList/NotificationList.jsx:252 msgid "Failed to toggle notification." msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 msgid "Failed to toggle schedule." msgstr "" -#: src/screens/Template/TemplateSurvey.jsx:129 +#: screens/Template/TemplateSurvey.jsx:129 msgid "Failed to update survey." msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 msgid "Failed to user token." msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:83 -#: src/components/NotificationList/NotificationListItem.jsx:84 +#: components/NotificationList/NotificationListItem.jsx:83 +#: components/NotificationList/NotificationListItem.jsx:84 msgid "Failure" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 msgid "False" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 msgid "February" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:170 +#: components/Search/AdvancedSearch.jsx:171 msgid "Field contains value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:190 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field ends with value." msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:84 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:82 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:200 +#: components/Search/AdvancedSearch.jsx:201 msgid "Field matches the given regular expression." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:180 +#: components/Search/AdvancedSearch.jsx:181 msgid "Field starts with value." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 msgid "Fifth" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 +#: screens/Job/JobOutput/JobOutput.jsx:652 +msgid "File Difference" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 msgid "File upload rejected. Please select a single .json file." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 msgid "File, directory or script" msgstr "" -#: src/components/JobList/JobList.jsx:243 -#: src/components/JobList/JobListItem.jsx:77 +#: components/JobList/JobList.jsx:221 +#: components/JobList/JobListItem.jsx:77 msgid "Finish Time" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:156 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.jsx:157 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 msgid "Finished" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 msgid "First" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:119 -#: src/components/AddRole/AddResourceRole.jsx:133 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:130 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:163 -#: src/screens/User/UserDetail/UserDetail.jsx:65 -#: src/screens/User/UserList/UserList.jsx:123 -#: src/screens/User/UserList/UserList.jsx:166 -#: src/screens/User/UserList/UserListItem.jsx:62 -#: src/screens/User/UserList/UserListItem.jsx:65 -#: src/screens/User/shared/UserForm.jsx:109 +#: components/AddRole/AddResourceRole.jsx:130 +#: components/AddRole/AddResourceRole.jsx:144 +#: components/ResourceAccessList/ResourceAccessList.jsx:132 +#: components/ResourceAccessList/ResourceAccessList.jsx:165 +#: screens/User/UserDetail/UserDetail.jsx:65 +#: screens/User/UserList/UserList.jsx:123 +#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserListItem.jsx:62 +#: screens/User/UserList/UserListItem.jsx:65 +#: screens/User/shared/UserForm.jsx:109 msgid "First Name" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 msgid "First Run" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:248 +#: components/Search/AdvancedSearch.jsx:249 msgid "First, select a key" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:89 +#: components/Workflow/WorkflowTools.jsx:89 msgid "Fit the graph to the available screen size" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:64 +#: screens/Template/Survey/SurveyQuestionForm.jsx:64 msgid "Float" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:223 +msgid "" +"For job templates, select run to execute\n" +"the playbook. Select check to only check playbook syntax,\n" +"test environment setup, and report problems without\n" +"executing the playbook." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 +msgid "" +"For job templates, select run to execute the playbook.\n" +"Select check to only check playbook syntax, test environment setup,\n" +"and report problems without executing the playbook." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 #: src/screens/Template/shared/JobTemplateForm.jsx:216 -msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." -msgstr "" +#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 msgid "For more information, refer to the" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:192 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:193 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:214 -#: src/screens/Template/shared/JobTemplateForm.jsx:374 +#: components/AdHocCommands/AdHocDetailsStep.jsx:192 +#: components/AdHocCommands/AdHocDetailsStep.jsx:193 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:404 msgid "Forks" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:411 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 msgid "Fourth" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:186 +#: components/Schedule/shared/ScheduleForm.jsx:186 msgid "Frequency Details" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:212 -#: src/components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/buildRuleObj.js:69 msgid "Frequency did not match an expected value" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:309 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 msgid "Fri" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:314 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:450 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 msgid "Friday" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:125 -#: src/screens/Organization/shared/OrganizationForm.jsx:105 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 +#: screens/Organization/shared/OrganizationForm.jsx:110 msgid "Galaxy Credentials" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:55 msgid "Galaxy credentials must be owned by an Organization." msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: src/screens/Project/ProjectList/ProjectList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Job/JobOutput/JobOutput.jsx:660 +msgid "Gathering Facts" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:114 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 +#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 msgid "Git" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 -#: src/screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:253 +#: screens/Template/shared/WebhookSubForm.jsx:108 msgid "GitHub" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: src/screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 +#: screens/Setting/Settings.jsx:51 msgid "GitHub Default" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: src/screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 +#: screens/Setting/Settings.jsx:60 msgid "GitHub Enterprise" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: src/screens/Setting/Settings.jsx:64 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 +#: screens/Setting/Settings.jsx:64 msgid "GitHub Enterprise Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: src/screens/Setting/Settings.jsx:68 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 +#: screens/Setting/Settings.jsx:68 msgid "GitHub Enterprise Team" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: src/screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 +#: screens/Setting/Settings.jsx:54 msgid "GitHub Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: src/screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 +#: screens/Setting/Settings.jsx:57 msgid "GitHub Team" msgstr "" -#: src/screens/Setting/SettingList.jsx:66 +#: screens/Setting/SettingList.jsx:66 msgid "GitHub settings" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:244 -#: src/screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 +#: screens/Template/shared/WebhookSubForm.jsx:114 msgid "GitLab" msgstr "" -#: src/components/Pagination/Pagination.jsx:31 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +msgid "Global Default Execution Environment" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:75 +msgid "Globally Available" +msgstr "" + +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: src/components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: src/components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: src/components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 msgid "Google Compute Engine" msgstr "" -#: src/screens/Setting/SettingList.jsx:70 +#: screens/Setting/SettingList.jsx:70 msgid "Google OAuth 2 settings" msgstr "" -#: src/screens/Setting/Settings.jsx:71 +#: screens/Setting/Settings.jsx:71 msgid "Google OAuth2" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:194 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 +#: components/NotificationList/NotificationList.jsx:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 msgid "Grafana" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 msgid "Grafana API key" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 msgid "Grafana URL" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:210 +#: components/Search/AdvancedSearch.jsx:211 msgid "Greater than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.jsx:216 msgid "Greater than or equal to comparison." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.jsx:86 msgid "Group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:85 +#: screens/Inventory/Inventories.jsx:83 msgid "Group details" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 msgid "Group type" msgstr "" -#: src/screens/Host/Host.jsx:62 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:230 -#: src/screens/Host/Hosts.jsx:31 -#: src/screens/Inventory/Inventories.jsx:76 -#: src/screens/Inventory/Inventories.jsx:78 -#: src/screens/Inventory/Inventory.jsx:64 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:108 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: screens/Host/Host.jsx:62 +#: screens/Host/HostGroups/HostGroupsList.jsx:230 +#: screens/Host/Hosts.jsx:31 +#: screens/Inventory/Inventories.jsx:74 +#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventory.jsx:64 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: util/getRelatedResourceDeleteDetails.js:143 msgid "Groups" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 msgid "HTTP Headers" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 msgid "HTTP Method" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:121 +#: components/AppContainer/PageHeaderToolbar.jsx:121 msgid "Help" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Hide" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:135 +#: components/NotificationList/NotificationList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Hipchat" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 msgid "Host" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:143 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: src/screens/Template/shared/JobTemplateForm.jsx:592 +#: screens/Job/JobOutput/JobOutput.jsx:647 +msgid "Host Async Failure" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:646 +msgid "Host Async OK" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239 +#: screens/Template/shared/JobTemplateForm.jsx:622 msgid "Host Config Key" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:94 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:101 msgid "Host Count" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.jsx:101 msgid "Host Details" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +#: screens/Job/JobOutput/JobOutput.jsx:638 +msgid "Host Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:641 +msgid "Host Failure" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281 msgid "Host Filter" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.jsx:120 msgid "Host Name" msgstr "" -#: src/screens/Inventory/Inventories.jsx:70 +#: screens/Job/JobOutput/JobOutput.jsx:640 +msgid "Host OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:645 +msgid "Host Polling" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:651 +msgid "Host Retry" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:642 +msgid "Host Skipped" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:639 +msgid "Host Started" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:643 +msgid "Host Unreachable" +msgstr "" + +#: screens/Inventory/Inventories.jsx:70 msgid "Host details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.jsx:102 msgid "Host details modal" msgstr "" -#: src/screens/Host/Host.jsx:90 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.jsx:90 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 msgid "Host not found." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:77 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:77 msgid "Host status information for this job is unavailable." msgstr "" -#: src/routeConfig.js:85 -#: src/screens/ActivityStream/ActivityStream.jsx:173 -#: src/screens/Dashboard/Dashboard.jsx:129 -#: src/screens/Host/HostList/HostList.jsx:142 -#: src/screens/Host/HostList/HostList.jsx:188 -#: src/screens/Host/Hosts.jsx:15 -#: src/screens/Host/Hosts.jsx:25 -#: src/screens/Inventory/Inventories.jsx:63 -#: src/screens/Inventory/Inventories.jsx:88 -#: src/screens/Inventory/Inventory.jsx:65 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 -#: src/screens/Inventory/SmartInventory.jsx:71 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:95 +#: routeConfig.js:86 +#: screens/ActivityStream/ActivityStream.jsx:173 +#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:188 +#: screens/Host/Hosts.jsx:15 +#: screens/Host/Hosts.jsx:25 +#: screens/Inventory/Inventories.jsx:63 +#: screens/Inventory/Inventories.jsx:86 +#: screens/Inventory/Inventory.jsx:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 +#: screens/Inventory/SmartInventory.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: util/getRelatedResourceDeleteDetails.js:147 msgid "Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.jsx:164 msgid "Hour" msgstr "" -#: src/components/JobList/JobList.jsx:194 -#: src/components/Lookup/HostFilterLookup.jsx:82 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:155 -#: src/screens/User/UserRoles/UserRolesList.jsx:152 +#: components/JobList/JobList.jsx:172 +#: components/Lookup/HostFilterLookup.jsx:82 +#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:152 msgid "ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 msgid "ID of the Dashboard" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 msgid "ID of the Panel" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 msgid "ID of the dashboard (optional)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 msgid "ID of the panel (optional)" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:196 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:136 +#: components/NotificationList/NotificationList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "IRC" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 msgid "IRC Nick" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 msgid "IRC Server Address" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 msgid "IRC Server Port" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 msgid "IRC nick" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 msgid "IRC server address" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 msgid "IRC server password" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 msgid "IRC server port" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 msgid "Icon URL" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156 +msgid "" +"If checked, all variables for child groups\n" +"and hosts will be removed and replaced by those found\n" +"on the external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 -msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135 +msgid "" +"If checked, any hosts and groups that were\n" +"previously present on the external source but are now removed\n" +"will be removed from the Tower inventory. Hosts and groups\n" +"that were not managed by the inventory source will be promoted\n" +"to the next manually created group or if there is no manually\n" +"created group to promote them into, they will be left in the \"all\"\n" +"default group for the inventory." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 -msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:537 +msgid "" +"If enabled, run this playbook as an\n" +"administrator." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:507 -msgid "If enabled, run this playbook as an administrator." +#~ msgid "If enabled, run this playbook as an administrator." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +msgid "" +"If enabled, show the changes made\n" +"by Ansible tasks, where supported. This is equivalent to Ansible’s\n" +"--diff mode." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:478 +msgid "" +"If enabled, show the changes made by\n" +"Ansible tasks, where supported. This is equivalent\n" +"to Ansible's --diff mode." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:448 -msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." -msgstr "" +#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:216 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +#: components/AdHocCommands/AdHocDetailsStep.jsx:216 msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:551 -msgid "If enabled, simultaneous runs of this job template will be allowed." +#: screens/Template/shared/JobTemplateForm.jsx:581 +msgid "" +"If enabled, simultaneous runs of this job\n" +"template will be allowed." msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: src/screens/Template/shared/JobTemplateForm.jsx:551 +#~ msgid "If enabled, simultaneous runs of this job template will be allowed." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:263 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:559 -msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#: screens/Template/shared/JobTemplateForm.jsx:589 +msgid "" +"If enabled, this will store gathered facts so they can\n" +"be viewed at the host level. Facts are persisted and\n" +"injected into the fact cache at runtime." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:52 +#: src/screens/Template/shared/JobTemplateForm.jsx:559 +#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#~ msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "" -#: src/components/HostToggle/HostToggle.jsx:18 -msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +msgid "" +"If you want the Inventory Source to update on\n" +"launch and on project update, click on Update on launch, and also go to" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:104 -#: src/components/AppContainer/PageHeaderToolbar.jsx:114 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:64 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +msgid "Image" +msgstr "" + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:76 +msgid "Image name" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:655 +msgid "Including File" +msgstr "" + +#: components/HostToggle/HostToggle.jsx:18 +msgid "" +"Indicates if a host is available and should be included in running\n" +"jobs. For hosts that are part of an external inventory, this may be\n" +"reset by the inventory sync process." +msgstr "" + +#: src/components/HostToggle/HostToggle.jsx:18 +#~ msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#~ msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:104 +#: components/AppContainer/PageHeaderToolbar.jsx:114 msgid "Info" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.jsx:45 msgid "Initiated By" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:240 -#: src/screens/ActivityStream/ActivityStream.jsx:250 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:43 +#: screens/ActivityStream/ActivityStream.jsx:246 +#: screens/ActivityStream/ActivityStream.jsx:256 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:230 +#: screens/ActivityStream/ActivityStream.jsx:236 msgid "Initiated by (username)" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:52 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:53 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:53 msgid "Injector configuration" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:47 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:43 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:43 msgid "Input configuration" msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:71 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 msgid "Insights Credential" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:136 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:137 msgid "Instance Filters" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:228 +#: screens/Job/JobDetail/JobDetail.jsx:259 msgid "Instance Group" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:71 -#: src/components/Lookup/InstanceGroupsLookup.jsx:77 -#: src/components/Lookup/InstanceGroupsLookup.jsx:109 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:212 -#: src/routeConfig.js:132 -#: src/screens/ActivityStream/ActivityStream.jsx:198 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:86 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:317 +#: components/Lookup/InstanceGroupsLookup.jsx:71 +#: components/Lookup/InstanceGroupsLookup.jsx:77 +#: components/Lookup/InstanceGroupsLookup.jsx:109 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:218 +#: routeConfig.js:133 +#: screens/ActivityStream/ActivityStream.jsx:198 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:327 msgid "Instance Groups" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.jsx:99 msgid "Instance ID" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 -#: src/screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:86 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 +#: screens/InstanceGroup/InstanceGroups.jsx:27 msgid "Instance group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.jsx:87 msgid "Instance group not found." msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:16 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 +#: screens/InstanceGroup/InstanceGroups.jsx:16 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 msgid "Instance groups" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:69 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:231 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 -#: src/screens/InstanceGroup/InstanceGroups.jsx:35 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:218 +#: screens/InstanceGroup/InstanceGroup.jsx:69 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 +#: screens/InstanceGroup/InstanceGroups.jsx:35 +#: screens/InstanceGroup/Instances/InstanceList.jsx:148 +#: screens/InstanceGroup/Instances/InstanceList.jsx:218 msgid "Instances" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:63 +#: screens/Template/Survey/SurveyQuestionForm.jsx:63 msgid "Integer" msgstr "" -#: src/util/validators.jsx:69 +#: util/validators.jsx:69 msgid "Invalid email address" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:151 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "" -#: src/screens/Login/Login.jsx:110 +#: screens/Login/Login.jsx:118 msgid "Invalid username or password. Please try again." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: src/routeConfig.js:80 -#: src/screens/ActivityStream/ActivityStream.jsx:170 -#: src/screens/Dashboard/Dashboard.jsx:140 -#: src/screens/Inventory/Inventories.jsx:16 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:163 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 +#: routeConfig.js:81 +#: screens/ActivityStream/ActivityStream.jsx:170 +#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Inventory/Inventories.jsx:16 +#: screens/Inventory/InventoryList/InventoryList.jsx:169 +#: screens/Inventory/InventoryList/InventoryList.jsx:220 +#: util/getRelatedResourceDeleteDetails.js:67 +#: util/getRelatedResourceDeleteDetails.js:226 +#: util/getRelatedResourceDeleteDetails.js:294 msgid "Inventories" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:133 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:134 msgid "Inventories with sources cannot be copied" msgstr "" -#: src/components/HostForm/HostForm.jsx:28 -#: src/components/JobList/JobListItem.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:98 -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:47 -#: src/components/Lookup/InventoryLookup.jsx:85 -#: src/components/Lookup/InventoryLookup.jsx:94 -#: src/components/Lookup/InventoryLookup.jsx:131 -#: src/components/Lookup/InventoryLookup.jsx:147 -#: src/components/Lookup/InventoryLookup.jsx:184 -#: src/components/PromptDetail/PromptDetail.jsx:183 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:77 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:105 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:116 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 -#: src/components/TemplateList/TemplateListItem.jsx:223 -#: src/components/TemplateList/TemplateListItem.jsx:232 -#: src/screens/Host/HostDetail/HostDetail.jsx:83 -#: src/screens/Host/HostList/HostList.jsx:169 -#: src/screens/Host/HostList/HostListItem.jsx:39 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:195 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:186 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:194 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:131 +#: components/HostForm/HostForm.jsx:28 +#: components/JobList/JobListItem.jsx:150 +#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/Lookup/InventoryLookup.jsx:85 +#: components/Lookup/InventoryLookup.jsx:94 +#: components/Lookup/InventoryLookup.jsx:131 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:184 +#: components/PromptDetail/PromptDetail.jsx:183 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:78 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:107 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 +#: components/TemplateList/TemplateListItem.jsx:251 +#: components/TemplateList/TemplateListItem.jsx:260 +#: screens/Host/HostDetail/HostDetail.jsx:83 +#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostListItem.jsx:39 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:196 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:200 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 msgid "Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Inventory (Name)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:100 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:101 msgid "Inventory File" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.jsx:90 msgid "Inventory ID" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:61 +#: screens/Job/JobDetail/JobDetail.jsx:212 +msgid "Inventory Source" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:89 msgid "Inventory Source Sync" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:157 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:176 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:163 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: util/getRelatedResourceDeleteDetails.js:74 +#: util/getRelatedResourceDeleteDetails.js:171 msgid "Inventory Sources" msgstr "" -#: src/components/JobList/JobList.jsx:206 -#: src/components/JobList/JobListItem.jsx:32 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: src/components/Workflow/WorkflowLegend.jsx:100 -#: src/screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.jsx:184 +#: components/JobList/JobListItem.jsx:32 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 +#: components/Workflow/WorkflowLegend.jsx:100 +#: screens/Job/JobDetail/JobDetail.jsx:94 msgid "Inventory Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:59 +#: components/Workflow/WorkflowNodeHelp.jsx:59 msgid "Inventory Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:219 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 msgid "Inventory file" msgstr "" -#: src/screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.jsx:91 msgid "Inventory not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:229 +#: screens/Dashboard/Dashboard.jsx:229 msgid "Inventory sync" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:146 msgid "Inventory sync failures" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:49 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 -#: src/screens/Job/JobDetail/JobDetail.jsx:119 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 +#: screens/Job/JobDetail/JobDetail.jsx:120 msgid "Isolated" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:21 -#: src/components/Lookup/Lookup.jsx:129 +#: screens/Job/JobOutput/JobOutput.jsx:649 +msgid "Item Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:648 +msgid "Item OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:650 +msgid "Item Skipped" +msgstr "" + +#: components/AssociateModal/AssociateModal.jsx:21 msgid "Items" msgstr "" -#: src/components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:28 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:32 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:54 +#: components/Sparkline/Sparkline.jsx:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42 +#: screens/Project/ProjectList/ProjectListItem.jsx:62 msgid "JOB ID:" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:144 +#: screens/Job/JobOutput/HostEventModal.jsx:144 msgid "JSON" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:145 +#: screens/Job/JobOutput/HostEventModal.jsx:145 msgid "JSON tab" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 msgid "JSON:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 msgid "January" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 msgid "Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:713 -#: src/screens/Job/JobOutput/JobOutput.jsx:714 +#: screens/Job/JobDetail/JobDetail.jsx:470 +#: screens/Job/JobDetail/JobDetail.jsx:471 +#: screens/Job/JobOutput/JobOutput.jsx:832 +#: screens/Job/JobOutput/JobOutput.jsx:833 msgid "Job Cancel Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:383 -#: src/screens/Job/JobOutput/JobOutput.jsx:728 -#: src/screens/Job/JobOutput/JobOutput.jsx:729 +#: screens/Job/JobDetail/JobDetail.jsx:481 +#: screens/Job/JobOutput/JobOutput.jsx:821 +#: screens/Job/JobOutput/JobOutput.jsx:822 msgid "Job Delete Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:241 +#: screens/Job/JobDetail/JobDetail.jsx:272 msgid "Job Slice" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 -#: src/screens/Template/shared/JobTemplateForm.jsx:428 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:148 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235 +#: screens/Template/shared/JobTemplateForm.jsx:458 msgid "Job Slicing" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.jsx:140 msgid "Job Status" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 -#: src/components/PromptDetail/PromptDetail.jsx:206 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:227 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 -#: src/screens/Job/JobDetail/JobDetail.jsx:290 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:332 -#: src/screens/Template/shared/JobTemplateForm.jsx:468 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 +#: components/PromptDetail/PromptDetail.jsx:206 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:233 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.jsx:321 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342 +#: screens/Template/shared/JobTemplateForm.jsx:498 msgid "Job Tags" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:196 -#: src/components/Workflow/WorkflowLegend.jsx:92 -#: src/components/Workflow/WorkflowNodeHelp.jsx:47 -#: src/screens/Job/JobDetail/JobDetail.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:67 +#: components/TemplateList/TemplateList.jsx:201 +#: components/Workflow/WorkflowLegend.jsx:92 +#: components/Workflow/WorkflowNodeHelp.jsx:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:33 +#: screens/Job/JobDetail/JobDetail.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:95 msgid "Job Template" msgstr "" -#: src/screens/Project/Project.jsx:117 -#: src/screens/Project/Projects.jsx:32 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:42 +msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" +msgstr "" + +#: screens/Project/Project.jsx:117 +#: screens/Project/Projects.jsx:32 +#: util/getRelatedResourceDeleteDetails.js:56 +#: util/getRelatedResourceDeleteDetails.js:108 +#: util/getRelatedResourceDeleteDetails.js:157 msgid "Job Templates" msgstr "" -#: src/components/JobList/JobList.jsx:202 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 -#: src/components/PromptDetail/PromptDetail.jsx:156 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:88 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 -#: src/screens/Job/JobDetail/JobDetail.jsx:191 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:169 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:128 -#: src/screens/Template/shared/JobTemplateForm.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:24 +msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useWorkflowNodeSteps.js:267 +msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" +msgstr "" + +#: components/JobList/JobList.jsx:180 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 +#: components/PromptDetail/PromptDetail.jsx:156 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:90 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 +#: screens/Job/JobDetail/JobDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145 +#: screens/Template/shared/JobTemplateForm.jsx:220 msgid "Job Type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:172 msgid "Job status" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:170 msgid "Job status graph tab" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 msgid "Job templates" msgstr "" -#: src/components/JobList/JobList.jsx:185 -#: src/components/JobList/JobList.jsx:262 -#: src/routeConfig.js:39 -#: src/screens/ActivityStream/ActivityStream.jsx:147 -#: src/screens/Dashboard/shared/LineChart.jsx:69 -#: src/screens/InstanceGroup/ContainerGroup.jsx:68 -#: src/screens/InstanceGroup/InstanceGroup.jsx:74 -#: src/screens/InstanceGroup/InstanceGroups.jsx:37 -#: src/screens/InstanceGroup/InstanceGroups.jsx:45 -#: src/screens/Job/Jobs.jsx:15 -#: src/screens/Job/Jobs.jsx:26 -#: src/screens/Setting/SettingList.jsx:92 -#: src/screens/Setting/Settings.jsx:74 +#: components/JobList/JobList.jsx:163 +#: components/JobList/JobList.jsx:240 +#: routeConfig.js:40 +#: screens/ActivityStream/ActivityStream.jsx:147 +#: screens/Dashboard/shared/LineChart.jsx:69 +#: screens/Host/Host.jsx:67 +#: screens/Host/Hosts.jsx:32 +#: screens/InstanceGroup/ContainerGroup.jsx:68 +#: screens/InstanceGroup/InstanceGroup.jsx:74 +#: screens/InstanceGroup/InstanceGroups.jsx:37 +#: screens/InstanceGroup/InstanceGroups.jsx:45 +#: screens/Inventory/Inventories.jsx:59 +#: screens/Inventory/Inventories.jsx:72 +#: screens/Inventory/Inventory.jsx:68 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 +#: screens/Inventory/SmartInventory.jsx:73 +#: screens/Job/Jobs.jsx:15 +#: screens/Job/Jobs.jsx:26 +#: screens/Setting/SettingList.jsx:92 +#: screens/Setting/Settings.jsx:74 +#: screens/Template/Template.jsx:164 +#: screens/Template/Templates.jsx:48 +#: screens/Template/WorkflowJobTemplate.jsx:145 msgid "Jobs" msgstr "" -#: src/screens/Setting/SettingList.jsx:99 +#: screens/Setting/SettingList.jsx:99 msgid "Jobs settings" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 msgid "July" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 msgid "June" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:129 +#: components/Search/AdvancedSearch.jsx:130 msgid "Key" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:120 +#: components/Search/AdvancedSearch.jsx:121 msgid "Key select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.jsx:124 msgid "Key typeahead" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.jsx:231 msgid "Keyword" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:51 -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserDetail/UserDetail.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "LDAP" msgstr "" -#: src/screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.jsx:79 msgid "LDAP 1" msgstr "" -#: src/screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.jsx:80 msgid "LDAP 2" msgstr "" -#: src/screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.jsx:81 msgid "LDAP 3" msgstr "" -#: src/screens/Setting/Settings.jsx:82 +#: screens/Setting/Settings.jsx:82 msgid "LDAP 4" msgstr "" -#: src/screens/Setting/Settings.jsx:83 +#: screens/Setting/Settings.jsx:83 msgid "LDAP 5" msgstr "" -#: src/screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.jsx:78 msgid "LDAP Default" msgstr "" -#: src/screens/Setting/SettingList.jsx:74 +#: screens/Setting/SettingList.jsx:74 msgid "LDAP settings" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 msgid "LDAP1" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 msgid "LDAP2" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 msgid "LDAP3" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 msgid "LDAP4" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 msgid "LDAP5" msgstr "" -#: src/components/JobList/JobList.jsx:198 +#: components/JobList/JobList.jsx:176 msgid "Label Name" msgstr "" -#: src/components/JobList/JobListItem.jsx:135 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:194 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 -#: src/components/TemplateList/TemplateListItem.jsx:237 -#: src/screens/Job/JobDetail/JobDetail.jsx:275 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:299 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:178 -#: src/screens/Template/shared/JobTemplateForm.jsx:339 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: components/JobList/JobListItem.jsx:136 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:200 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 +#: components/TemplateList/TemplateListItem.jsx:265 +#: screens/Job/JobDetail/JobDetail.jsx:306 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195 +#: screens/Template/shared/JobTemplateForm.jsx:369 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209 msgid "Labels" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:414 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 msgid "Last" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:78 +#: screens/User/UserDetail/UserDetail.jsx:78 msgid "Last Login" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:140 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 -#: src/components/TemplateList/TemplateListItem.jsx:265 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:44 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:236 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:62 -#: src/screens/Host/HostDetail/HostDetail.jsx:99 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:68 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:328 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:146 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:49 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:276 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.jsx:140 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 +#: components/TemplateList/TemplateListItem.jsx:293 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:44 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:253 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 +#: screens/Host/HostDetail/HostDetail.jsx:99 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:122 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 +#: screens/Team/TeamDetail/TeamDetail.jsx:49 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:286 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 msgid "Last Modified" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:123 -#: src/components/AddRole/AddResourceRole.jsx:137 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:134 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:167 -#: src/screens/User/UserDetail/UserDetail.jsx:66 -#: src/screens/User/UserList/UserList.jsx:127 -#: src/screens/User/UserList/UserList.jsx:169 -#: src/screens/User/UserList/UserListItem.jsx:70 -#: src/screens/User/UserList/UserListItem.jsx:73 -#: src/screens/User/shared/UserForm.jsx:115 +#: components/AddRole/AddResourceRole.jsx:134 +#: components/AddRole/AddResourceRole.jsx:148 +#: components/ResourceAccessList/ResourceAccessList.jsx:136 +#: components/ResourceAccessList/ResourceAccessList.jsx:169 +#: screens/User/UserDetail/UserDetail.jsx:66 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:169 +#: screens/User/UserList/UserListItem.jsx:70 +#: screens/User/UserList/UserListItem.jsx:73 +#: screens/User/shared/UserForm.jsx:115 msgid "Last Name" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:220 -#: src/components/TemplateList/TemplateListItem.jsx:130 +#: components/TemplateList/TemplateList.jsx:225 +#: components/TemplateList/TemplateListItem.jsx:155 msgid "Last Ran" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 msgid "Last Run" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.jsx:103 msgid "Last job" msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 msgid "Last job run" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:259 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 msgid "Last modified" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:377 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:214 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 +#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:237 msgid "Launch" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 msgid "Launch Management Job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:149 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:94 +#: components/TemplateList/TemplateListItem.jsx:175 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:117 msgid "Launch Template" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:98 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:99 msgid "Launch management job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:156 +#: components/TemplateList/TemplateListItem.jsx:183 msgid "Launch template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 msgid "Launch workflow" msgstr "" -#: src/components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "" -#: src/components/JobList/JobList.jsx:214 +#: components/JobList/JobList.jsx:192 msgid "Launched By (Username)" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:86 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:120 +msgid "Leave this field blank to make the execution environment globally available." +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:86 msgid "Legend" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:220 +#: components/Search/AdvancedSearch.jsx:221 msgid "Less than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:225 +#: components/Search/AdvancedSearch.jsx:226 msgid "Less than or equal to comparison." msgstr "" -#: src/screens/Setting/SettingList.jsx:137 -#: src/screens/Setting/Settings.jsx:96 +#: screens/Setting/SettingList.jsx:137 +#: screens/Setting/Settings.jsx:96 msgid "License" msgstr "" -#: src/screens/Setting/License/License.jsx:15 -#: src/screens/Setting/SettingList.jsx:142 +#: screens/Setting/License/License.jsx:15 +#: screens/Setting/SettingList.jsx:142 msgid "License settings" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:170 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:171 -#: src/components/JobList/JobList.jsx:232 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: src/components/PromptDetail/PromptDetail.jsx:194 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 -#: src/screens/Job/JobDetail/JobDetail.jsx:222 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:215 -#: src/screens/Template/shared/JobTemplateForm.jsx:390 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:144 +#: components/AdHocCommands/AdHocDetailsStep.jsx:170 +#: components/AdHocCommands/AdHocDetailsStep.jsx:171 +#: components/JobList/JobList.jsx:210 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 +#: components/PromptDetail/PromptDetail.jsx:194 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:140 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 +#: screens/Job/JobDetail/JobDetail.jsx:250 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 +#: screens/Template/shared/JobTemplateForm.jsx:420 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:155 msgid "Limit" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:219 msgid "Link to an available node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 msgid "Loading" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 msgid "Local Time Zone" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:141 +#: components/Schedule/shared/ScheduleForm.jsx:141 msgid "Local time zone" msgstr "" -#: src/screens/Login/Login.jsx:248 +#: screens/Login/Login.jsx:162 msgid "Log In" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:14 +#: screens/Setting/shared/LoggingTestAlert.jsx:14 msgid "Log aggregator test sent successfully." msgstr "" -#: src/screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.jsx:97 msgid "Logging" msgstr "" -#: src/screens/Setting/SettingList.jsx:118 +#: screens/Setting/SettingList.jsx:118 msgid "Logging settings" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:236 -#: src/components/AppContainer/PageHeaderToolbar.jsx:171 +#: components/AppContainer/AppContainer.jsx:242 +#: components/AppContainer/PageHeaderToolbar.jsx:171 msgid "Logout" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:307 -#: src/components/Lookup/Lookup.jsx:130 +#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/Lookup.jsx:130 msgid "Lookup modal" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:142 +#: components/Search/AdvancedSearch.jsx:143 msgid "Lookup select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:152 msgid "Lookup type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:145 +#: components/Search/AdvancedSearch.jsx:146 msgid "Lookup typeahead" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:30 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:52 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40 +#: screens/Project/ProjectList/ProjectListItem.jsx:60 msgid "MOST RECENT SYNC" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:86 -#: src/screens/Job/JobDetail/JobDetail.jsx:247 +#: components/AdHocCommands/AdHocCredentialStep.jsx:67 +#: components/AdHocCommands/AdHocCredentialStep.jsx:68 +#: components/AdHocCommands/AdHocCredentialStep.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:278 msgid "Machine Credential" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:84 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:84 msgid "Machine credential" msgstr "" -#: src/components/JobList/JobList.jsx:209 -#: src/components/JobList/JobListItem.jsx:35 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: src/screens/Job/JobDetail/JobDetail.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 +msgid "Managed by Tower" +msgstr "" + +#: components/JobList/JobList.jsx:187 +#: components/JobList/JobListItem.jsx:35 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 +#: screens/Job/JobDetail/JobDetail.jsx:100 msgid "Management Job" msgstr "" -#: src/routeConfig.js:127 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:128 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 msgid "Management Jobs" msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:22 +#: screens/ManagementJob/ManagementJobs.jsx:22 msgid "Management job" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:117 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:119 msgid "Management job launch error" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.jsx:132 msgid "Management job not found." msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.jsx:14 msgid "Management jobs" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:113 -#: src/components/PromptDetail/PromptProjectDetail.jsx:69 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:90 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:102 -#: src/screens/Project/ProjectList/ProjectList.jsx:145 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: components/Lookup/ProjectLookup.jsx:113 +#: components/PromptDetail/PromptProjectDetail.jsx:75 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:104 +#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectListItem.jsx:134 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 msgid "Manual" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 msgid "March" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:197 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:137 +#: components/NotificationList/NotificationList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 msgid "Mattermost" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 -#: src/screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 +#: screens/Organization/shared/OrganizationForm.jsx:75 msgid "Max Hosts" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.jsx:175 msgid "Maximum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:159 +#: screens/Template/Survey/SurveyQuestionForm.jsx:159 msgid "Maximum length" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 msgid "May" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:38 +#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 msgid "Members" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 msgid "Metadata" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 msgid "Microsoft Azure Resource Manager" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:169 +#: screens/Template/Survey/SurveyQuestionForm.jsx:169 msgid "Minimum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:153 +#: screens/Template/Survey/SurveyQuestionForm.jsx:153 msgid "Minimum length" msgstr "" +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 +msgid "" +"Minimum number of instances that will be automatically\n" +"assigned to this group when new instances come online." +msgstr "" + #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 -msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" + +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 +msgid "" +"Minimum percentage of all instances that will be automatically\n" +"assigned to this group when new instances come online." msgstr "" #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 -msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." -msgstr "" +#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.jsx:163 msgid "Minute" msgstr "" -#: src/screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.jsx:100 msgid "Miscellaneous System" msgstr "" -#: src/screens/Setting/SettingList.jsx:110 +#: screens/Setting/SettingList.jsx:110 msgid "Miscellaneous System settings" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:104 +#: components/Workflow/WorkflowNodeHelp.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 msgid "Missing" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:353 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: src/screens/User/UserTokenList/UserTokenList.jsx:138 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 +msgid "Missing resource" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:360 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:100 -#: src/components/AddRole/AddResourceRole.jsx:152 -#: src/components/AssociateModal/AssociateModal.jsx:146 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: src/components/Lookup/CredentialLookup.jsx:157 -#: src/components/Lookup/InventoryLookup.jsx:118 -#: src/components/Lookup/InventoryLookup.jsx:171 -#: src/components/Lookup/MultiCredentialsLookup.jsx:185 -#: src/components/Lookup/OrganizationLookup.jsx:113 -#: src/components/Lookup/ProjectLookup.jsx:125 -#: src/components/NotificationList/NotificationList.jsx:210 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:205 -#: src/components/TemplateList/TemplateList.jsx:209 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 -#: src/screens/Credential/CredentialList/CredentialList.jsx:145 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:167 -#: src/screens/Host/HostList/HostList.jsx:160 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:180 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:146 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: src/screens/Project/ProjectList/ProjectList.jsx:157 -#: src/screens/Team/TeamList/TeamList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 +#: components/AdHocCommands/AdHocCredentialStep.jsx:100 +#: components/AddRole/AddResourceRole.jsx:163 +#: components/AssociateModal/AssociateModal.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:183 +#: components/LaunchPrompt/steps/InventoryStep.jsx:95 +#: components/Lookup/CredentialLookup.jsx:157 +#: components/Lookup/InventoryLookup.jsx:118 +#: components/Lookup/InventoryLookup.jsx:171 +#: components/Lookup/MultiCredentialsLookup.jsx:185 +#: components/Lookup/OrganizationLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:125 +#: components/NotificationList/NotificationList.jsx:210 +#: components/Schedule/ScheduleList/ScheduleList.jsx:205 +#: components/TemplateList/TemplateList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 +#: screens/Credential/CredentialList/CredentialList.jsx:137 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: 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:192 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 +#: screens/Organization/OrganizationList/OrganizationList.jsx:150 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 +#: screens/Project/ProjectList/ProjectList.jsx:162 +#: 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:109 msgid "Modified By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:167 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.jsx:63 +#: screens/Job/JobOutput/HostEventModal.jsx:131 msgid "Module" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:269 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 msgid "Mon" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:274 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:430 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 msgid "Monday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:167 +#: components/Schedule/shared/ScheduleForm.jsx:167 msgid "Month" msgstr "" -#: src/components/Popover/Popover.jsx:39 +#: components/Popover/Popover.jsx:39 msgid "More information" msgstr "" -#: src/screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.jsx:63 msgid "More information for" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:111 +#: screens/Template/Survey/SurveyPreviewModal.jsx:111 msgid "Multi-Select" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.jsx:90 msgid "Multiple Choice" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:61 +#: screens/Template/Survey/SurveyQuestionForm.jsx:61 msgid "Multiple Choice (multiple select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:56 +#: screens/Template/Survey/SurveyQuestionForm.jsx:56 msgid "Multiple Choice (single select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:217 +#: screens/Template/Survey/SurveyQuestionForm.jsx:217 msgid "Multiple Choice Options" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:91 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:106 -#: src/components/AddRole/AddResourceRole.jsx:143 -#: src/components/AddRole/AddResourceRole.jsx:159 -#: src/components/AssociateModal/AssociateModal.jsx:137 -#: src/components/AssociateModal/AssociateModal.jsx:152 -#: src/components/HostForm/HostForm.jsx:87 -#: src/components/JobList/JobList.jsx:189 -#: src/components/JobList/JobList.jsx:238 -#: src/components/JobList/JobListItem.jsx:59 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:140 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:155 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:77 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:92 -#: src/components/Lookup/ApplicationLookup.jsx:78 -#: src/components/Lookup/ApplicationLookup.jsx:89 -#: src/components/Lookup/CredentialLookup.jsx:148 -#: src/components/Lookup/CredentialLookup.jsx:163 -#: src/components/Lookup/HostFilterLookup.jsx:77 -#: src/components/Lookup/HostFilterLookup.jsx:345 -#: src/components/Lookup/InstanceGroupsLookup.jsx:91 -#: src/components/Lookup/InstanceGroupsLookup.jsx:102 -#: src/components/Lookup/InventoryLookup.jsx:109 -#: src/components/Lookup/InventoryLookup.jsx:124 -#: src/components/Lookup/InventoryLookup.jsx:162 -#: src/components/Lookup/InventoryLookup.jsx:177 -#: src/components/Lookup/MultiCredentialsLookup.jsx:176 -#: src/components/Lookup/MultiCredentialsLookup.jsx:191 -#: src/components/Lookup/OrganizationLookup.jsx:104 -#: src/components/Lookup/OrganizationLookup.jsx:119 -#: src/components/Lookup/ProjectLookup.jsx:105 -#: src/components/Lookup/ProjectLookup.jsx:135 -#: src/components/NotificationList/NotificationList.jsx:181 -#: src/components/NotificationList/NotificationList.jsx:218 -#: src/components/NotificationList/NotificationListItem.jsx:25 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:77 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:86 -#: src/components/PaginatedTable/PaginatedTable.jsx:69 -#: src/components/PromptDetail/PromptDetail.jsx:109 -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:100 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:173 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:192 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:78 -#: src/components/Schedule/shared/ScheduleForm.jsx:102 -#: src/components/TemplateList/TemplateList.jsx:184 -#: src/components/TemplateList/TemplateList.jsx:217 -#: src/components/TemplateList/TemplateListItem.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: src/components/Workflow/WorkflowNodeHelp.jsx:132 -#: src/components/Workflow/WorkflowNodeHelp.jsx:158 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: src/screens/Application/Applications.jsx:84 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:32 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:161 -#: src/screens/Application/shared/ApplicationForm.jsx:54 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:193 -#: src/screens/Credential/CredentialList/CredentialList.jsx:132 -#: src/screens/Credential/CredentialList/CredentialList.jsx:151 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: src/screens/Credential/shared/CredentialForm.jsx:118 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:41 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:123 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:24 -#: src/screens/Host/HostDetail/HostDetail.jsx:74 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:158 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:173 -#: src/screens/Host/HostList/HostList.jsx:147 -#: src/screens/Host/HostList/HostList.jsx:168 -#: src/screens/Host/HostList/HostListItem.jsx:34 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:42 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:74 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:227 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:69 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:167 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:186 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:194 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:81 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:190 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: src/screens/Inventory/shared/InventoryForm.jsx:47 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:41 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:102 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:53 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:121 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:178 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:100 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:85 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:133 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:154 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:33 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: src/screens/Organization/shared/OrganizationForm.jsx:52 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:82 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: src/screens/Project/ProjectList/ProjectList.jsx:133 -#: src/screens/Project/ProjectList/ProjectList.jsx:169 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:88 -#: src/screens/Project/shared/ProjectForm.jsx:160 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:34 -#: src/screens/Team/TeamList/TeamList.jsx:129 -#: src/screens/Team/TeamList/TeamList.jsx:154 -#: src/screens/Team/TeamList/TeamListItem.jsx:40 -#: src/screens/Team/shared/TeamForm.jsx:35 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:167 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:128 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 -#: src/screens/Template/shared/JobTemplateForm.jsx:200 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:99 -#: src/screens/User/UserTeams/UserTeamList.jsx:230 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 +#: components/AdHocCommands/AdHocCredentialStep.jsx:91 +#: components/AdHocCommands/AdHocCredentialStep.jsx:106 +#: components/AddRole/AddResourceRole.jsx:154 +#: components/AddRole/AddResourceRole.jsx:170 +#: components/AssociateModal/AssociateModal.jsx:139 +#: components/AssociateModal/AssociateModal.jsx:154 +#: components/HostForm/HostForm.jsx:87 +#: components/JobList/JobList.jsx:167 +#: components/JobList/JobList.jsx:216 +#: components/JobList/JobListItem.jsx:59 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:174 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:189 +#: components/LaunchPrompt/steps/InventoryStep.jsx:86 +#: components/LaunchPrompt/steps/InventoryStep.jsx:101 +#: components/Lookup/ApplicationLookup.jsx:78 +#: components/Lookup/ApplicationLookup.jsx:89 +#: components/Lookup/CredentialLookup.jsx:148 +#: components/Lookup/CredentialLookup.jsx:163 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/Lookup/HostFilterLookup.jsx:77 +#: components/Lookup/HostFilterLookup.jsx:352 +#: components/Lookup/InstanceGroupsLookup.jsx:91 +#: components/Lookup/InstanceGroupsLookup.jsx:102 +#: components/Lookup/InventoryLookup.jsx:109 +#: components/Lookup/InventoryLookup.jsx:124 +#: components/Lookup/InventoryLookup.jsx:162 +#: components/Lookup/InventoryLookup.jsx:177 +#: components/Lookup/MultiCredentialsLookup.jsx:176 +#: components/Lookup/MultiCredentialsLookup.jsx:191 +#: components/Lookup/OrganizationLookup.jsx:106 +#: components/Lookup/OrganizationLookup.jsx:121 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:135 +#: components/NotificationList/NotificationList.jsx:181 +#: components/NotificationList/NotificationList.jsx:218 +#: components/NotificationList/NotificationListItem.jsx:25 +#: components/PaginatedDataList/PaginatedDataList.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PromptDetail/PromptDetail.jsx:109 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:100 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 +#: components/Schedule/ScheduleList/ScheduleList.jsx:173 +#: components/Schedule/ScheduleList/ScheduleList.jsx:192 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78 +#: components/Schedule/shared/ScheduleForm.jsx:102 +#: components/TemplateList/TemplateList.jsx:189 +#: components/TemplateList/TemplateList.jsx:222 +#: components/TemplateList/TemplateListItem.jsx:126 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 +#: components/Workflow/WorkflowNodeHelp.jsx:132 +#: components/Workflow/WorkflowNodeHelp.jsx:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 +#: screens/Application/Applications.jsx:84 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:32 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/shared/ApplicationForm.jsx:54 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205 +#: screens/Credential/CredentialList/CredentialList.jsx:124 +#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialListItem.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:118 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:24 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:59 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:23 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:68 +#: screens/Host/HostDetail/HostDetail.jsx:74 +#: screens/Host/HostGroups/HostGroupsList.jsx:158 +#: screens/Host/HostGroups/HostGroupsList.jsx:173 +#: screens/Host/HostList/HostList.jsx:147 +#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostListItem.jsx:34 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:77 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 +#: screens/InstanceGroup/Instances/InstanceList.jsx:155 +#: screens/InstanceGroup/Instances/InstanceList.jsx:162 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 +#: screens/Inventory/InventoryList/InventoryList.jsx:173 +#: screens/Inventory/InventoryList/InventoryList.jsx:192 +#: screens/Inventory/InventoryList/InventoryList.jsx:200 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:81 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 +#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryGroupForm.jsx:41 +#: screens/Inventory/shared/InventorySourceForm.jsx:105 +#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:107 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 +#: screens/Organization/OrganizationList/OrganizationList.jsx:137 +#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 +#: screens/Organization/shared/OrganizationForm.jsx:60 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:84 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:138 +#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectListItem.jsx:99 +#: screens/Project/shared/ProjectForm.jsx:167 +#: screens/Team/TeamDetail/TeamDetail.jsx:34 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamListItem.jsx:40 +#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: 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/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:158 +#: 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:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 +#: screens/Template/shared/JobTemplateForm.jsx:207 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:110 +#: screens/User/UserTeams/UserTeamList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 msgid "Name" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:185 +#: components/AppContainer/AppContainer.jsx:185 msgid "Navigation" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:509 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:106 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 +#: screens/Dashboard/shared/ChartTooltip.jsx:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 msgid "Never" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.jsx:98 msgid "Never Updated" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 msgid "Never expires" msgstr "" -#: src/components/JobList/JobList.jsx:221 -#: src/components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.jsx:199 +#: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:79 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:113 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:122 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:79 +#: components/LaunchPrompt/LaunchPrompt.jsx:120 +#: components/Schedule/shared/SchedulePromptableFields.jsx:124 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:175 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:102 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:106 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 +#: components/Schedule/ScheduleList/ScheduleList.jsx:175 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:102 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:106 msgid "Next Run" msgstr "" -#: src/components/Search/Search.jsx:249 +#: components/Search/Search.jsx:257 msgid "No" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:157 +#: screens/Job/JobOutput/JobOutput.jsx:656 +msgid "No Hosts Matched" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:657 +msgid "No Hosts Remaining" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:157 msgid "No JSON Available" msgstr "" -#: src/screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.jsx:82 msgid "No Jobs" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:193 +#: screens/Job/JobOutput/HostEventModal.jsx:193 msgid "No Standard Error Available" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:175 +#: screens/Job/JobOutput/HostEventModal.jsx:175 msgid "No Standard Out Available" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:65 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:65 msgid "No inventory sync failures." msgstr "" -#: src/components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.jsx:16 msgid "No items found." msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:133 +#: screens/Job/JobOutput/HostEventModal.jsx:133 msgid "No result found" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:95 -#: src/components/Search/AdvancedSearch.jsx:133 -#: src/components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.jsx:96 +#: components/Search/AdvancedSearch.jsx:134 +#: components/Search/AdvancedSearch.jsx:154 msgid "No results found" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:174 +#: screens/Template/Survey/SurveyList.jsx:176 msgid "No survey questions found." msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:96 -#: src/components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:96 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:74 msgid "Node Type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:74 msgid "Node type" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.jsx:107 msgid "None" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 msgid "None (Run Once)" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/ScheduleForm.jsx:162 msgid "None (run once)" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:46 -#: src/screens/User/UserList/UserListItem.jsx:30 -#: src/screens/User/shared/UserForm.jsx:29 +#: screens/User/UserDetail/UserDetail.jsx:46 +#: screens/User/UserList/UserListItem.jsx:30 +#: screens/User/shared/UserForm.jsx:29 msgid "Normal User" msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Not Found" msgstr "" -#: src/screens/Setting/shared/SettingDetail.jsx:59 -#: src/screens/Setting/shared/SettingDetail.jsx:98 -#: src/screens/Setting/shared/SettingDetail.jsx:121 +#: screens/Setting/shared/SettingDetail.jsx:59 +#: screens/Setting/shared/SettingDetail.jsx:100 msgid "Not configured" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:68 msgid "Not configured for inventory sync." msgstr "" +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 +msgid "" +"Note that only hosts directly in this group can\n" +"be disassociated. Hosts in sub-groups must be disassociated\n" +"directly from the sub-group level that they belong." +msgstr "" + #: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 -msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgstr "" + +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s\n" +"children. This list shows all groups the host is associated\n" +"with directly and indirectly." +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:212 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s \n" +"children. This list shows all groups the host is associated \n" +"with directly and indirectly." msgstr "" #: src/screens/Host/HostGroups/HostGroupsList.jsx:212 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" #: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 -msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +msgid "" +"Note: When using SSH protocol for GitHub or\n" +"Bitbucket, enter an SSH key only, do not enter a username\n" +"(other than git). Additionally, GitHub and Bitbucket do\n" +"not support password authentication when using SSH. GIT\n" +"read only protocol (git://) does not use username or\n" +"password information." msgstr "" +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#~ msgstr "" + #: src/screens/Inventory/Inventories.jsx:120 -msgid "Notifcations" -msgstr "" +#~ msgid "Notifcations" +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 msgid "Notification Color" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:51 +#: screens/NotificationTemplate/NotificationTemplate.jsx:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 msgid "Notification Template not found." msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:171 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:13 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/ActivityStream/ActivityStream.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188 +#: screens/NotificationTemplate/NotificationTemplates.jsx:13 +#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: util/getRelatedResourceDeleteDetails.js:205 msgid "Notification Templates" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 msgid "Notification Type" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 msgid "Notification color" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:130 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:249 +msgid "Notification sent successfully" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:253 +msgid "Notification timed out" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:147 msgid "Notification type" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:177 -#: src/routeConfig.js:122 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:104 -#: src/screens/ManagementJob/ManagementJob.jsx:115 -#: src/screens/ManagementJob/ManagementJobs.jsx:24 -#: src/screens/Organization/Organization.jsx:129 -#: src/screens/Organization/Organizations.jsx:35 -#: src/screens/Project/Project.jsx:111 -#: src/screens/Project/Projects.jsx:31 -#: src/screens/Template/Template.jsx:137 -#: src/screens/Template/Templates.jsx:47 -#: src/screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.jsx:177 +#: routeConfig.js:123 +#: screens/Inventory/Inventories.jsx:118 +#: screens/Inventory/InventorySource/InventorySource.jsx:104 +#: screens/ManagementJob/ManagementJob.jsx:115 +#: screens/ManagementJob/ManagementJobs.jsx:24 +#: screens/Organization/Organization.jsx:135 +#: screens/Organization/Organizations.jsx:35 +#: screens/Project/Project.jsx:111 +#: screens/Project/Projects.jsx:31 +#: screens/Template/Template.jsx:150 +#: screens/Template/Templates.jsx:47 +#: screens/Template/WorkflowJobTemplate.jsx:127 msgid "Notifications" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 msgid "November" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:101 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.jsx:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:543 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 msgid "Occurrences" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 msgid "October" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:225 -#: src/components/HostToggle/HostToggle.jsx:59 -#: src/components/InstanceToggle/InstanceToggle.jsx:59 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:53 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:225 +#: components/HostToggle/HostToggle.jsx:59 +#: components/InstanceToggle/InstanceToggle.jsx:59 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:53 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "Off" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: src/components/HostToggle/HostToggle.jsx:58 -#: src/components/InstanceToggle/InstanceToggle.jsx:58 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:96 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:52 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:224 +#: components/HostToggle/HostToggle.jsx:58 +#: components/InstanceToggle/InstanceToggle.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:96 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:52 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "On" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:122 -#: src/components/Workflow/WorkflowLinkHelp.jsx:30 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 +#: components/Workflow/WorkflowLegend.jsx:122 +#: components/Workflow/WorkflowLinkHelp.jsx:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 msgid "On Failure" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:118 -#: src/components/Workflow/WorkflowLinkHelp.jsx:27 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:61 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 +#: components/Workflow/WorkflowLegend.jsx:118 +#: components/Workflow/WorkflowLinkHelp.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 msgid "On Success" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 msgid "On date" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:255 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 msgid "On days" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:154 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:155 msgid "Only Group By" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 msgid "OpenStack" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 msgid "Option Details" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:372 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:212 +msgid "" +"Optional labels that describe this job template,\n" +"such as 'dev' or 'test'. Labels can be used to group and filter\n" +"job templates and completed jobs." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:342 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187 -msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." -msgstr "" +#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." +#~ msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:218 +#: screens/Template/shared/WebhookSubForm.jsx:219 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:222 -#: src/components/NotificationList/NotificationListItem.jsx:34 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:166 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:174 -#: src/components/PromptDetail/PromptProjectDetail.jsx:86 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:137 -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:49 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:121 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:163 -#: src/screens/Template/shared/JobTemplateForm.jsx:500 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: components/NotificationList/NotificationList.jsx:222 +#: components/NotificationList/NotificationListItem.jsx:34 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:167 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:180 +#: components/PromptDetail/PromptProjectDetail.jsx:92 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141 +#: screens/Credential/shared/TypeInputsSubForm.jsx:49 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180 +#: screens/Template/shared/JobTemplateForm.jsx:530 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Options" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:97 -#: src/components/Lookup/OrganizationLookup.jsx:81 -#: src/components/Lookup/OrganizationLookup.jsx:86 -#: src/components/Lookup/OrganizationLookup.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:63 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:73 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:91 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:101 -#: src/components/PromptDetail/PromptProjectDetail.jsx:55 -#: src/components/PromptDetail/PromptProjectDetail.jsx:65 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:37 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:163 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:204 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:76 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:197 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:100 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:89 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:40 -#: src/screens/Team/TeamList/TeamList.jsx:155 -#: src/screens/Team/TeamList/TeamListItem.jsx:45 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:172 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:182 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 -#: src/screens/User/UserTeams/UserTeamList.jsx:235 -#: src/screens/User/UserTeams/UserTeamListItem.jsx:42 +#: components/Lookup/ApplicationLookup.jsx:97 +#: components/Lookup/OrganizationLookup.jsx:82 +#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/OrganizationLookup.jsx:101 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:64 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:74 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:93 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:103 +#: components/PromptDetail/PromptProjectDetail.jsx:56 +#: components/PromptDetail/PromptProjectDetail.jsx:66 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:37 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:67 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 +#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:91 +#: screens/Team/TeamDetail/TeamDetail.jsx:40 +#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamListItem.jsx:45 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:123 +#: screens/User/UserTeams/UserTeamList.jsx:235 +#: screens/User/UserTeams/UserTeamListItem.jsx:42 msgid "Organization" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 msgid "Organization (Name)" msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:138 msgid "Organization Name" msgstr "" -#: src/screens/Organization/Organization.jsx:148 +#: screens/Organization/Organization.jsx:154 msgid "Organization not found." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: src/routeConfig.js:96 -#: src/screens/ActivityStream/ActivityStream.jsx:178 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:129 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:175 -#: src/screens/Organization/Organizations.jsx:16 -#: src/screens/Organization/Organizations.jsx:27 -#: src/screens/User/User.jsx:65 -#: src/screens/User/UserOrganizations/UserOrganizationsList.jsx:55 -#: src/screens/User/Users.jsx:34 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 +#: routeConfig.js:97 +#: screens/ActivityStream/ActivityStream.jsx:178 +#: screens/Organization/OrganizationList/OrganizationList.jsx:133 +#: screens/Organization/OrganizationList/OrganizationList.jsx:179 +#: screens/Organization/Organizations.jsx:16 +#: screens/Organization/Organizations.jsx:27 +#: screens/User/User.jsx:65 +#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55 +#: screens/User/Users.jsx:34 +#: util/getRelatedResourceDeleteDetails.js:256 +#: util/getRelatedResourceDeleteDetails.js:290 msgid "Organizations" msgstr "" -#: src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 msgid "Other prompts" msgstr "" -#: src/screens/Job/Job.jsx:64 -#: src/screens/Job/Jobs.jsx:28 +#: screens/Job/Job.jsx:104 +#: screens/Job/Jobs.jsx:28 msgid "Output" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:47 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:114 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:129 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 msgid "Overwrite" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:49 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 msgid "Overwrite Variables" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:137 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:150 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 msgid "Overwrite variables" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 msgid "POST" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 msgid "PUT" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:198 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: components/NotificationList/NotificationList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 msgid "Pagerduty" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 msgid "Pagerduty Subdomain" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 msgid "Pagerduty subdomain" msgstr "" -#: src/components/Pagination/Pagination.jsx:37 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:157 +#: components/Workflow/WorkflowTools.jsx:166 msgid "Pan Down" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:130 +#: components/Workflow/WorkflowTools.jsx:133 msgid "Pan Left" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:167 +#: components/Workflow/WorkflowTools.jsx:177 msgid "Pan Right" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:140 +#: components/Workflow/WorkflowTools.jsx:144 msgid "Pan Up" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:279 +#: components/AdHocCommands/AdHocDetailsStep.jsx:279 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:362 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:209 +#: screens/Template/shared/JobTemplateForm.jsx:392 +msgid "" +"Pass extra command line variables to the playbook. This is the\n" +"-e or --extra-vars command line parameter for ansible-playbook.\n" +"Provide key/value pairs using either YAML or JSON. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: 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 "" -#: src/screens/Login/Login.jsx:258 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:52 -#: src/screens/User/shared/UserForm.jsx:85 +#: screens/Login/Login.jsx:172 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 +#: screens/Template/Survey/SurveyQuestionForm.jsx:52 +#: screens/User/shared/UserForm.jsx:85 msgid "Password" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:204 +#: screens/Dashboard/Dashboard.jsx:204 msgid "Past month" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:207 +#: screens/Dashboard/Dashboard.jsx:207 msgid "Past two weeks" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:210 +#: screens/Dashboard/Dashboard.jsx:210 msgid "Past week" msgstr "" -#: src/components/JobList/JobList.jsx:222 -#: src/components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.jsx:200 +#: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:88 +#: components/AppContainer/PageHeaderToolbar.jsx:88 msgid "Pending Workflow Approvals" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:109 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:109 msgid "Pending delete" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:310 +#: components/Lookup/HostFilterLookup.jsx:311 msgid "Perform a search to define a host filter" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:43 msgid "Personal access token" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.jsx:128 msgid "Play" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:82 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:89 msgid "Play Count" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: src/screens/Job/JobDetail/JobDetail.jsx:221 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 -#: src/screens/Template/shared/JobTemplateForm.jsx:300 +#: screens/Job/JobOutput/JobOutput.jsx:661 +msgid "Play Started" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 +#: screens/Job/JobDetail/JobDetail.jsx:249 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 +#: screens/Template/shared/JobTemplateForm.jsx:330 msgid "Playbook" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:139 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:97 +msgid "Playbook Check" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:662 +msgid "Playbook Complete" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:142 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 msgid "Playbook Directory" msgstr "" -#: src/components/JobList/JobList.jsx:207 -#: src/components/JobList/JobListItem.jsx:33 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: src/screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.jsx:185 +#: components/JobList/JobListItem.jsx:33 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 +#: screens/Job/JobDetail/JobDetail.jsx:98 msgid "Playbook Run" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:201 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Job/JobOutput/JobOutput.jsx:653 +msgid "Playbook Started" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:206 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 msgid "Playbook name" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:235 +#: screens/Dashboard/Dashboard.jsx:235 msgid "Playbook run" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:83 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:90 msgid "Plays" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.jsx:179 msgid "Please add survey questions." msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:94 -#: src/components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:94 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 msgid "Please click the Start button to begin." msgstr "" -#: src/util/validators.jsx:118 +#: util/validators.jsx:118 msgid "Please enter a valid URL" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:22 msgid "Please enter a value." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:507 +#: components/Schedule/shared/ScheduleForm.jsx:581 msgid "Please select a day number between 1 and 31." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:723 +#: screens/Template/shared/JobTemplateForm.jsx:755 msgid "Please select an Inventory or check the Prompt on Launch option." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:497 +#: components/Schedule/shared/ScheduleForm.jsx:571 msgid "Please select an end date/time that comes after the start date/time." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:298 +#: components/Lookup/HostFilterLookup.jsx:299 msgid "Please select an organization before editing the host filter" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:74 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 msgid "Pod spec override" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:88 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:91 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 msgid "Policy instance minimum" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:93 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:96 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 msgid "Policy instance percentage" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:54 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:61 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:71 msgid "Populate field from an external secret management system" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:287 -msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#: components/Lookup/HostFilterLookup.jsx:288 +msgid "" +"Populate the hosts for this inventory by using a search\n" +"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" +"Refer to the Ansible Tower documentation for further syntax and\n" +"examples." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: src/components/Lookup/HostFilterLookup.jsx:287 +#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#~ msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 msgid "Port" msgstr "" -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: src/screens/Template/Survey/SurveyList.jsx:161 -#: src/screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:212 +msgid "Preconditions for running this node when there are multiple parents. Refer to the" +msgstr "" + +#: components/CodeEditor/CodeEditor.jsx:176 +msgid "Press Enter to edit. Press ESC to stop editing." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 +#: screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/Survey/SurveyList.jsx:165 msgid "Preview" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 msgid "Private key passphrase" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:506 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Privilege Escalation" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 msgid "Privilege escalation password" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:86 -#: src/components/Lookup/ProjectLookup.jsx:91 -#: src/components/Lookup/ProjectLookup.jsx:144 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:92 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:121 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:129 -#: src/components/TemplateList/TemplateListItem.jsx:255 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:209 -#: src/screens/Job/JobDetail/JobDetail.jsx:211 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:207 +#: components/Lookup/ProjectLookup.jsx:86 +#: components/Lookup/ProjectLookup.jsx:91 +#: components/Lookup/ProjectLookup.jsx:144 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:89 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 +#: components/TemplateList/TemplateListItem.jsx:283 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217 +#: screens/Job/JobDetail/JobDetail.jsx:224 +#: screens/Job/JobDetail/JobDetail.jsx:239 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:205 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 msgid "Project" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:134 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 +#: components/PromptDetail/PromptProjectDetail.jsx:100 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:137 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 msgid "Project Base Path" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:73 +#: components/Workflow/WorkflowLegend.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:101 msgid "Project Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.jsx:55 msgid "Project Update" msgstr "" -#: src/screens/Project/Project.jsx:139 +#: screens/Project/Project.jsx:139 msgid "Project not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:157 msgid "Project sync failures" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: src/routeConfig.js:75 -#: src/screens/ActivityStream/ActivityStream.jsx:167 -#: src/screens/Dashboard/Dashboard.jsx:151 -#: src/screens/Project/ProjectList/ProjectList.jsx:128 -#: src/screens/Project/ProjectList/ProjectList.jsx:196 -#: src/screens/Project/Projects.jsx:14 -#: src/screens/Project/Projects.jsx:25 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 +#: routeConfig.js:76 +#: screens/ActivityStream/ActivityStream.jsx:167 +#: screens/Dashboard/Dashboard.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:133 +#: screens/Project/ProjectList/ProjectList.jsx:201 +#: screens/Project/Projects.jsx:14 +#: screens/Project/Projects.jsx:25 +#: util/getRelatedResourceDeleteDetails.js:60 +#: util/getRelatedResourceDeleteDetails.js:219 +#: util/getRelatedResourceDeleteDetails.js:249 msgid "Projects" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:137 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:136 msgid "Promote Child Groups and Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:557 -#: src/components/Schedule/shared/ScheduleForm.jsx:560 +#: components/Schedule/shared/ScheduleForm.jsx:633 +#: components/Schedule/shared/ScheduleForm.jsx:636 msgid "Prompt" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:153 +#: components/PromptDetail/PromptDetail.jsx:153 msgid "Prompt Overrides" msgstr "" -#: src/components/CodeMirrorInput/VariablesField.jsx:74 -#: src/components/FieldWithPrompt/FieldWithPrompt.jsx:47 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:161 +#: components/CodeEditor/VariablesField.jsx:158 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167 msgid "Prompt on launch" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:150 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 +#: components/PromptDetail/PromptDetail.jsx:150 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 msgid "Prompted Values" msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:100 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:109 +#: components/LaunchPrompt/LaunchPrompt.jsx:107 +#: components/Schedule/shared/SchedulePromptableFields.jsx:111 msgid "Prompts" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:423 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:158 +msgid "" +"Provide a host pattern to further constrain\n" +"the list of hosts that will be managed or affected by the\n" +"playbook. Multiple patterns are allowed. Refer to Ansible\n" +"documentation for more information and examples on patterns." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +msgid "" +"Provide a host pattern to further constrain the list\n" +"of hosts that will be managed or affected by the playbook. Multiple\n" +"patterns are allowed. Refer to Ansible documentation for more\n" +"information and examples on patterns." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 #: src/screens/Template/shared/JobTemplateForm.jsx:393 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147 -msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." -msgstr "" +#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." +#~ msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/CredentialField.jsx:97 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 -msgid "Provide key/value pairs using either YAML or JSON." +#: components/AdHocCommands/AdHocDetailsStep.jsx:284 +msgid "" +"Provide key/value pairs using either\n" +"YAML or JSON." msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 -#: src/screens/Template/shared/JobTemplateForm.jsx:579 +#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 +#~ msgid "Provide key/value pairs using either YAML or JSON." +#~ msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:152 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Provisioning Callback URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:574 +#: screens/Template/shared/JobTemplateForm.jsx:604 msgid "Provisioning Callback details" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:511 -#: src/screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:544 msgid "Provisioning Callbacks" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:116 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:93 +msgid "Pull" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:116 msgid "Question" msgstr "" -#: src/screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.jsx:103 msgid "RADIUS" msgstr "" -#: src/screens/Setting/SettingList.jsx:78 +#: screens/Setting/SettingList.jsx:78 msgid "RADIUS settings" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Read" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:177 +#: screens/Dashboard/Dashboard.jsx:177 msgid "Recent Jobs" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:175 +#: screens/Dashboard/Dashboard.jsx:175 msgid "Recent Jobs list tab" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:183 +#: screens/Dashboard/Dashboard.jsx:183 msgid "Recent Templates" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:180 +#: screens/Dashboard/Dashboard.jsx:180 msgid "Recent Templates list tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 msgid "Recipient List" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 msgid "Recipient list" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:117 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: src/screens/Project/ProjectList/ProjectList.jsx:149 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: components/Lookup/ProjectLookup.jsx:117 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 +#: screens/Project/ProjectList/ProjectList.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 msgid "Red Hat Insights" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 msgid "Red Hat Satellite 6" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "Red Hat Virtualization" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:108 +#: screens/Application/shared/ApplicationForm.jsx:108 msgid "Redirect URIs" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 msgid "Redirect uris" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:383 -msgid "Refer to the Ansible documentation for details about the configuration file." +#: screens/Template/shared/JobTemplateForm.jsx:413 +msgid "" +"Refer to the Ansible documentation for details\n" +"about the configuration file." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:78 +#: src/screens/Template/shared/JobTemplateForm.jsx:383 +#~ msgid "Refer to the Ansible documentation for details about the configuration file." +#~ msgstr "" + +#: screens/User/UserTokens/UserTokens.jsx:78 msgid "Refresh Token" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:85 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:118 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:119 msgid "Regions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:240 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +msgid "Registry credential" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:283 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "" -#: src/screens/Inventory/Inventories.jsx:94 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 +#: screens/Inventory/Inventories.jsx:92 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 msgid "Related Groups" msgstr "" -#: src/components/JobList/JobListItem.jsx:104 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:69 -#: src/screens/Job/JobDetail/JobDetail.jsx:360 -#: src/screens/Job/JobDetail/JobDetail.jsx:363 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:150 +#: components/JobList/JobListItem.jsx:105 +#: components/LaunchButton/ReLaunchDropDown.jsx:70 +#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:402 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:161 msgid "Relaunch" msgstr "" -#: src/components/JobList/JobListItem.jsx:89 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:135 +#: components/JobList/JobListItem.jsx:89 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:142 msgid "Relaunch Job" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:33 +#: components/LaunchButton/ReLaunchDropDown.jsx:33 msgid "Relaunch all hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:44 +#: components/LaunchButton/ReLaunchDropDown.jsx:44 msgid "Relaunch failed hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:23 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:28 +#: components/LaunchButton/ReLaunchDropDown.jsx:23 +#: components/LaunchButton/ReLaunchDropDown.jsx:28 msgid "Relaunch on" msgstr "" -#: src/components/JobList/JobListItem.jsx:88 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:134 +#: components/JobList/JobListItem.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:141 msgid "Relaunch using host parameters" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:116 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: src/screens/Project/ProjectList/ProjectList.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: components/Lookup/ProjectLookup.jsx:116 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 +#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 msgid "Remote Archive" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:20 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:28 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 msgid "Remove" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 msgid "Remove All Nodes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 msgid "Remove Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 msgid "Remove Node" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:23 msgid "Remove {0} Access" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:60 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:60 msgid "Remove {0} chip" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:47 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:49 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 msgid "Repeat Frequency" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:104 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:143 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:45 +msgid "Replace" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:54 +msgid "Replace field with new value" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:106 +#: screens/Template/Survey/SurveyQuestionForm.jsx:143 msgid "Required" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 msgid "Resource deleted" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:21 +#: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Resource name" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:40 +#: screens/User/UserRoles/UserRolesListItem.jsx:40 msgid "Resource role" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:30 +#: screens/User/UserRoles/UserRolesListItem.jsx:30 msgid "Resource type" msgstr "" -#: src/routeConfig.js:61 -#: src/screens/ActivityStream/ActivityStream.jsx:156 +#: routeConfig.js:62 +#: screens/ActivityStream/ActivityStream.jsx:156 msgid "Resources" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:121 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:71 +#: components/TemplateList/TemplateListItem.jsx:133 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:81 msgid "Resources are missing from this template." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:44 msgid "Restore initial value." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 -msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255 +msgid "" +"Retrieve the enabled state from the given dict of host variables.\n" +"The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:148 -#: src/components/JobList/JobListCancelButton.jsx:151 -#: src/screens/Job/JobOutput/JobOutput.jsx:692 -#: src/screens/Job/JobOutput/JobOutput.jsx:695 +#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 +#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:143 +#: components/JobList/JobListCancelButton.jsx:146 +#: screens/Job/JobDetail/JobDetail.jsx:453 +#: screens/Job/JobDetail/JobDetail.jsx:456 +#: screens/Job/JobOutput/JobOutput.jsx:804 +#: screens/Job/JobOutput/JobOutput.jsx:807 msgid "Return" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:115 +#: components/Search/AdvancedSearch.jsx:116 msgid "Returns results that have values other than this one as well as other filters." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:101 +#: components/Search/AdvancedSearch.jsx:102 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:108 +#: components/Search/AdvancedSearch.jsx:109 msgid "Returns results that satisfy this one or any other filters." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Revert" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.jsx:23 msgid "Revert all" msgstr "" -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:28 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:34 +#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.jsx:34 msgid "Revert all to default" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:53 +msgid "Revert field to previously saved value" +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:11 msgid "Revert settings" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.jsx:43 msgid "Revert to factory default." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:220 -#: src/screens/Project/ProjectList/ProjectList.jsx:172 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:111 +#: screens/Job/JobDetail/JobDetail.jsx:248 +#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectListItem.jsx:137 msgid "Revision" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 msgid "Revision #" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:199 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 +#: components/NotificationList/NotificationList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Rocket.Chat" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:40 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: src/screens/User/UserList/UserList.jsx:171 -#: src/screens/User/UserList/UserListItem.jsx:78 -#: src/screens/User/UserRoles/UserRolesList.jsx:145 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:44 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.jsx:148 +#: screens/User/UserList/UserList.jsx:171 +#: screens/User/UserList/UserListItem.jsx:78 +#: screens/User/UserRoles/UserRolesList.jsx:145 +#: screens/User/UserRoles/UserRolesListItem.jsx:44 msgid "Role" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:141 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:154 -#: src/screens/Team/Team.jsx:57 -#: src/screens/Team/Teams.jsx:32 -#: src/screens/User/User.jsx:70 -#: src/screens/User/Users.jsx:32 +#: components/ResourceAccessList/ResourceAccessList.jsx:143 +#: components/ResourceAccessList/ResourceAccessList.jsx:156 +#: screens/Team/Team.jsx:57 +#: screens/Team/Teams.jsx:32 +#: screens/User/User.jsx:70 +#: screens/User/Users.jsx:32 msgid "Roles" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 -#: src/components/Workflow/WorkflowLinkHelp.jsx:39 -#: src/screens/Credential/shared/ExternalTestModal.jsx:89 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:47 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: src/screens/Template/shared/JobTemplateForm.jsx:164 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/Workflow/WorkflowLinkHelp.jsx:39 +#: screens/Credential/shared/ExternalTestModal.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 +#: screens/Template/shared/JobTemplateForm.jsx:171 msgid "Run" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:124 -#: src/components/AdHocCommands/AdHocCommands.jsx:127 -#: src/components/AdHocCommands/AdHocCommands.jsx:132 -#: src/components/AdHocCommands/AdHocCommands.jsx:136 +#: components/AdHocCommands/AdHocCommands.jsx:124 +#: components/AdHocCommands/AdHocCommands.jsx:127 +#: components/AdHocCommands/AdHocCommands.jsx:133 +#: components/AdHocCommands/AdHocCommands.jsx:137 msgid "Run Command" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:109 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:109 msgid "Run command" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:227 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 msgid "Run every" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:157 +#: components/Schedule/shared/ScheduleForm.jsx:157 msgid "Run frequency" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 msgid "Run on" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 msgid "Run type" msgstr "" -#: src/components/JobList/JobList.jsx:224 -#: src/components/TemplateList/TemplateListItem.jsx:93 -#: src/components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.jsx:202 +#: components/TemplateList/TemplateListItem.jsx:105 +#: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:229 +#: screens/Job/JobOutput/JobOutput.jsx:654 +msgid "Running Handlers" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236 msgid "Running Jobs" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:99 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:99 msgid "Running jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:106 +#: screens/Setting/Settings.jsx:106 msgid "SAML" msgstr "" -#: src/screens/Setting/SettingList.jsx:82 +#: screens/Setting/SettingList.jsx:82 msgid "SAML settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:232 +#: screens/Dashboard/Dashboard.jsx:232 msgid "SCM update" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:53 -#: src/screens/User/UserList/UserListItem.jsx:57 +#: screens/User/UserDetail/UserDetail.jsx:53 +#: screens/User/UserList/UserListItem.jsx:57 msgid "SOCIAL" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 msgid "SSH password" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 msgid "SSL Connection" msgstr "" -#: src/components/Workflow/workflowReducer.js:411 +#: components/Workflow/WorkflowStartNode.jsx:61 +#: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:31 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:35 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:57 +#: components/Sparkline/Sparkline.jsx:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45 +#: screens/Project/ProjectList/ProjectListItem.jsx:65 msgid "STATUS:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:319 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 msgid "Sat" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:324 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:455 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 msgid "Saturday" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:255 -#: src/components/AssociateModal/AssociateModal.jsx:104 -#: src/components/AssociateModal/AssociateModal.jsx:110 -#: src/components/FormActionGroup/FormActionGroup.jsx:13 -#: src/components/FormActionGroup/FormActionGroup.jsx:19 -#: src/components/Schedule/shared/ScheduleForm.jsx:544 -#: src/components/Schedule/shared/ScheduleForm.jsx:550 -#: src/components/Schedule/shared/useSchedulePromptSteps.js:47 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: src/screens/Credential/shared/CredentialForm.jsx:269 -#: src/screens/Credential/shared/CredentialForm.jsx:274 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:19 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:25 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:34 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:118 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:165 +#: components/AddRole/AddResourceRole.jsx:266 +#: components/AssociateModal/AssociateModal.jsx:105 +#: components/AssociateModal/AssociateModal.jsx:111 +#: components/FormActionGroup/FormActionGroup.jsx:14 +#: components/FormActionGroup/FormActionGroup.jsx:20 +#: components/Schedule/shared/ScheduleForm.jsx:619 +#: components/Schedule/shared/ScheduleForm.jsx:625 +#: components/Schedule/shared/useSchedulePromptSteps.js:46 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 +#: screens/Credential/shared/CredentialForm.jsx:274 +#: screens/Credential/shared/CredentialForm.jsx:279 +#: screens/Setting/shared/RevertFormActionGroup.jsx:19 +#: screens/Setting/shared/RevertFormActionGroup.jsx:25 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:166 msgid "Save" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:31 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 msgid "Save & Exit" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 msgid "Save and enable log aggregation before testing the log aggregator." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 msgid "Save link changes" msgstr "" -#: src/screens/Project/Projects.jsx:38 -#: src/screens/Template/Templates.jsx:56 +#: screens/Project/Projects.jsx:38 +#: screens/Template/Templates.jsx:56 msgid "Schedule Details" msgstr "" -#: src/screens/Inventory/Inventories.jsx:117 +#: screens/Inventory/Inventories.jsx:115 msgid "Schedule details" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 msgid "Schedule is active" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 msgid "Schedule is inactive" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:460 +#: components/Schedule/shared/ScheduleForm.jsx:534 msgid "Schedule is missing rrule" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:231 -#: src/routeConfig.js:44 -#: src/screens/ActivityStream/ActivityStream.jsx:150 -#: src/screens/Inventory/Inventories.jsx:110 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:93 -#: src/screens/ManagementJob/ManagementJob.jsx:107 -#: src/screens/ManagementJob/ManagementJobs.jsx:25 -#: src/screens/Project/Project.jsx:123 -#: src/screens/Project/Projects.jsx:34 -#: src/screens/Schedule/AllSchedules.jsx:25 -#: src/screens/Template/Template.jsx:144 -#: src/screens/Template/Templates.jsx:52 -#: src/screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/ScheduleList/ScheduleList.jsx:231 +#: routeConfig.js:45 +#: screens/ActivityStream/ActivityStream.jsx:150 +#: screens/Inventory/Inventories.jsx:108 +#: screens/Inventory/InventorySource/InventorySource.jsx:93 +#: screens/ManagementJob/ManagementJob.jsx:107 +#: screens/ManagementJob/ManagementJobs.jsx:25 +#: screens/Project/Project.jsx:123 +#: screens/Project/Projects.jsx:34 +#: screens/Schedule/AllSchedules.jsx:25 +#: screens/Template/Template.jsx:157 +#: screens/Template/Templates.jsx:52 +#: screens/Template/WorkflowJobTemplate.jsx:134 msgid "Schedules" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: src/screens/User/UserTokenList/UserTokenList.jsx:126 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: src/screens/User/shared/UserTokenForm.jsx:68 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 +#: screens/User/UserTokenList/UserTokenList.jsx:126 +#: screens/User/UserTokenList/UserTokenListItem.jsx:61 +#: screens/User/UserTokenList/UserTokenListItem.jsx:62 +#: screens/User/shared/UserTokenForm.jsx:68 msgid "Scope" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:57 +#: screens/Job/JobOutput/PageControls.jsx:61 msgid "Scroll first" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:64 +#: screens/Job/JobOutput/PageControls.jsx:69 msgid "Scroll last" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:50 +#: screens/Job/JobOutput/PageControls.jsx:53 msgid "Scroll next" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:43 +#: screens/Job/JobOutput/PageControls.jsx:45 msgid "Scroll previous" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:250 -#: src/components/Lookup/Lookup.jsx:106 +#: components/Lookup/HostFilterLookup.jsx:251 +#: components/Lookup/Lookup.jsx:106 msgid "Search" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:257 -#: src/components/Search/Search.jsx:273 +#: screens/Job/JobOutput/JobOutput.jsx:723 +msgid "Search is disabled while the job is running" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:258 +#: components/Search/Search.jsx:282 msgid "Search submit button" msgstr "" -#: src/components/Search/Search.jsx:264 +#: components/Search/Search.jsx:272 msgid "Search text input" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:405 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 msgid "Second" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:104 -#: src/components/PromptDetail/PromptProjectDetail.jsx:89 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:125 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:105 +#: components/PromptDetail/PromptProjectDetail.jsx:95 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:127 msgid "Seconds" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:67 +#: components/LaunchPrompt/steps/PreviewStep.jsx:67 msgid "See errors on the left" msgstr "" -#: src/components/JobList/JobListItem.jsx:57 -#: src/components/Lookup/HostFilterLookup.jsx:319 -#: src/components/Lookup/Lookup.jsx:140 -#: src/components/Pagination/Pagination.jsx:35 +#: components/JobList/JobListItem.jsx:57 +#: components/Lookup/HostFilterLookup.jsx:321 +#: components/Lookup/Lookup.jsx:141 +#: components/Pagination/Pagination.jsx:33 msgid "Select" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:236 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 +#: screens/Host/HostGroups/HostGroupsList.jsx:236 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 msgid "Select Groups" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 msgid "Select Hosts" msgstr "" -#: src/components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.jsx:38 msgid "Select Input" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:223 +#: screens/InstanceGroup/Instances/InstanceList.jsx:223 msgid "Select Instances" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:22 +#: components/AssociateModal/AssociateModal.jsx:22 msgid "Select Items" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:210 +#: components/AddRole/AddResourceRole.jsx:221 msgid "Select Items from List" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:255 msgid "Select Roles to Apply" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:249 +#: screens/User/UserTeams/UserTeamList.jsx:249 msgid "Select Teams" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:50 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:78 msgid "Select a Node Type" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:180 +#: components/AddRole/AddResourceRole.jsx:191 msgid "Select a Resource Type" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:280 -msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#: screens/Template/shared/JobTemplateForm.jsx:310 +msgid "" +"Select a branch for the job template. This branch is applied to\n" +"all job template nodes that prompt for a branch." msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 +#: src/screens/Template/shared/JobTemplateForm.jsx:280 +#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:170 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:162 +#: screens/Credential/shared/CredentialForm.jsx:162 msgid "Select a credential Type" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:88 +#: components/JobList/JobListCancelButton.jsx:84 msgid "Select a job to cancel" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:81 +#: components/AdHocCommands/AdHocDetailsStep.jsx:81 msgid "Select a module" msgstr "" -#: src/screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.jsx:58 msgid "Select a playbook" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/Template/shared/JobTemplateForm.jsx:296 +msgid "Select a project before editing the execution environment." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 msgid "Select a row to approve" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:110 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 msgid "Select a row to delete" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 msgid "Select a row to deny" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:62 +#: components/DisassociateButton/DisassociateButton.jsx:62 msgid "Select a row to disassociate" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:85 +#: components/Schedule/shared/ScheduleForm.jsx:85 msgid "Select a valid date and time for this field" msgstr "" -#: src/components/HostForm/HostForm.jsx:23 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: src/components/Schedule/shared/ScheduleForm.jsx:91 -#: src/components/Schedule/shared/ScheduleForm.jsx:95 -#: src/screens/Credential/shared/CredentialForm.jsx:43 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:28 -#: src/screens/Inventory/shared/InventoryForm.jsx:24 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:33 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: src/screens/Project/shared/ProjectForm.jsx:101 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 -#: src/screens/Team/shared/TeamForm.jsx:20 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:28 -#: src/screens/Template/shared/JobTemplateForm.jsx:82 -#: src/screens/Template/shared/JobTemplateForm.jsx:140 -#: src/screens/User/shared/UserForm.jsx:49 +#: components/HostForm/HostForm.jsx:23 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 +#: components/Schedule/shared/ScheduleForm.jsx:91 +#: components/Schedule/shared/ScheduleForm.jsx:95 +#: screens/Credential/shared/CredentialForm.jsx:43 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:24 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 +#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 +#: screens/Project/shared/ProjectForm.jsx:100 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 +#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Template/Survey/SurveyQuestionForm.jsx:28 +#: screens/Template/shared/JobTemplateForm.jsx:83 +#: screens/Template/shared/JobTemplateForm.jsx:147 +#: screens/User/shared/UserForm.jsx:49 msgid "Select a value for this field" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.jsx:132 msgid "Select a webhook service." msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:74 -#: src/screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.jsx:74 +#: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:131 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" +#: screens/Project/shared/ProjectForm.jsx:200 +msgid "Select an organization before editing the default execution environment." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:354 +msgid "" +"Select credentials that allow Tower to access the nodes this job will be ran\n" +"against. You can only select one credential of each type. For machine credentials (SSH),\n" +"checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" +"credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" +"credential(s) become the defaults that can be updated at run time." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:324 -msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 +msgid "" +"Select from the list of directories found in\n" +"the Project Base Path. Together the base path and the playbook\n" +"directory provide the full path used to locate playbooks." msgstr "" #: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 -msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." -msgstr "" +#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." +#~ msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 msgid "Select items from list" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:215 -#: src/screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/Dashboard.jsx:215 +#: screens/Dashboard/Dashboard.jsx:216 msgid "Select job type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:193 -#: src/screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/Dashboard.jsx:193 +#: screens/Dashboard/Dashboard.jsx:194 msgid "Select period" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 msgid "Select roles to apply" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 msgid "Select source path" msgstr "" -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:91 +#: screens/Inventory/shared/SmartInventoryForm.jsx:91 msgid "Select the Instance Groups for this Inventory to run on." msgstr "" -#: src/screens/Organization/shared/OrganizationForm.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:463 +#: screens/Template/shared/JobTemplateForm.jsx:493 +msgid "" +"Select the Instance Groups for this Organization\n" +"to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:90 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:47 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Select the application that this token will belong to." msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:77 +#: components/AdHocCommands/AdHocCredentialStep.jsx:77 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 "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:146 -msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:201 +msgid "Select the default execution environment for this organization to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:102 +msgid "Select the default execution environment for this organization." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:197 +msgid "Select the default execution environment for this project." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:293 +msgid "Select the execution environment for this job template." +msgstr "" + +#: components/Lookup/InventoryLookup.jsx:89 +#: screens/Template/shared/JobTemplateForm.jsx:255 +msgid "" +"Select the inventory containing the hosts\n" +"you want this job to manage." msgstr "" #: src/components/Lookup/InventoryLookup.jsx:89 #: src/screens/Template/shared/JobTemplateForm.jsx:248 -msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +msgid "" +"Select the inventory file\n" +"to be synced by this source. You can select from\n" +"the dropdown or enter a file within the input." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 -msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." -msgstr "" +#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." +#~ msgstr "" -#: src/components/HostForm/HostForm.jsx:32 -#: src/components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.jsx:32 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:277 -#: src/screens/Template/shared/JobTemplateForm.jsx:304 +#: screens/Template/shared/JobTemplateForm.jsx:334 msgid "Select the playbook to be executed by this job." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:264 -msgid "Select the project containing the playbook you want this job to execute." +#: screens/Template/shared/JobTemplateForm.jsx:272 +msgid "" +"Select the project containing the playbook\n" +"you want this job to execute." msgstr "" -#: src/components/Lookup/Lookup.jsx:129 +#: src/screens/Template/shared/JobTemplateForm.jsx:264 +#~ msgid "Select the project containing the playbook you want this job to execute." +#~ msgstr "" + +#: components/Lookup/Lookup.jsx:129 msgid "Select {0}" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:221 -#: src/components/AddRole/AddResourceRole.jsx:233 -#: src/components/AddRole/AddResourceRole.jsx:250 -#: src/components/AddRole/SelectRoleStep.jsx:31 -#: src/components/OptionsList/OptionsList.jsx:51 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:76 -#: src/components/TemplateList/TemplateListItem.jsx:112 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:30 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 -#: src/screens/Host/HostList/HostListItem.jsx:32 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:98 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:31 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:86 -#: src/screens/Team/TeamList/TeamListItem.jsx:38 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 +#: components/AddRole/AddResourceRole.jsx:232 +#: components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:261 +#: components/AddRole/SelectRoleStep.jsx:31 +#: components/OptionsList/OptionsList.jsx:51 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:76 +#: components/TemplateList/TemplateListItem.jsx:124 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:30 +#: screens/Credential/CredentialList/CredentialListItem.jsx:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 +#: screens/Host/HostList/HostListItem.jsx:32 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43 +#: screens/Project/ProjectList/ProjectListItem.jsx:97 +#: screens/Team/TeamList/TeamListItem.jsx:38 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 msgid "Selected" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:114 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:119 -#: src/components/Lookup/MultiCredentialsLookup.jsx:149 -#: src/components/Lookup/MultiCredentialsLookup.jsx:154 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:153 +#: components/Lookup/MultiCredentialsLookup.jsx:149 +#: components/Lookup/MultiCredentialsLookup.jsx:154 msgid "Selected Category" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 msgid "Send a test log message to the configured log aggregator." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 msgid "Sender Email" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 msgid "Sender e-mail" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 msgid "September" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 msgid "Service account JSON file" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:52 -#: src/screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.jsx:56 +#: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 msgid "Set how many days of data should be retained." msgstr "" -#: src/screens/Setting/SettingList.jsx:126 +#: screens/Setting/SettingList.jsx:126 msgid "Set preferences for data collection, logos, and logins" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +msgid "Set source path to" +msgstr "" + +#: components/InstanceToggle/InstanceToggle.jsx:50 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:132 +#: screens/Application/shared/ApplicationForm.jsx:132 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:93 +#: components/Search/AdvancedSearch.jsx:94 msgid "Set type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:84 +#: components/Search/AdvancedSearch.jsx:85 msgid "Set type select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:87 +#: components/Search/AdvancedSearch.jsx:88 msgid "Set type typeahead" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:150 +#: components/Workflow/WorkflowTools.jsx:155 msgid "Set zoom to 100% and center graph" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:45 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 msgid "Setting category" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:47 +#: screens/Setting/shared/RevertButton.jsx:47 msgid "Setting matches factory default." msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 msgid "Setting name" msgstr "" -#: src/routeConfig.js:144 -#: src/routeConfig.js:148 -#: src/screens/ActivityStream/ActivityStream.jsx:207 -#: src/screens/ActivityStream/ActivityStream.jsx:209 -#: src/screens/Setting/Settings.jsx:43 +#: routeConfig.js:150 +#: routeConfig.js:154 +#: screens/ActivityStream/ActivityStream.jsx:213 +#: screens/ActivityStream/ActivityStream.jsx:215 +#: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Show" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 -#: src/components/PromptDetail/PromptDetail.jsx:251 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 -#: src/screens/Template/shared/JobTemplateForm.jsx:445 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/PromptDetail/PromptDetail.jsx:251 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:144 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232 +#: screens/Template/shared/JobTemplateForm.jsx:475 msgid "Show Changes" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 msgid "Show all groups" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:211 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:212 +#: components/AdHocCommands/AdHocDetailsStep.jsx:211 +#: components/AdHocCommands/AdHocDetailsStep.jsx:212 msgid "Show changes" msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Show only root groups" msgstr "" -#: src/screens/Login/Login.jsx:133 +#: screens/Login/Login.jsx:208 msgid "Sign in with Azure AD" msgstr "" -#: src/screens/Login/Login.jsx:142 +#: screens/Login/Login.jsx:221 msgid "Sign in with GitHub" msgstr "" -#: src/screens/Login/Login.jsx:172 +#: screens/Login/Login.jsx:263 msgid "Sign in with GitHub Enterprise" msgstr "" -#: src/screens/Login/Login.jsx:184 +#: screens/Login/Login.jsx:279 msgid "Sign in with GitHub Enterprise Organizations" msgstr "" -#: src/screens/Login/Login.jsx:196 +#: screens/Login/Login.jsx:296 msgid "Sign in with GitHub Enterprise Teams" msgstr "" -#: src/screens/Login/Login.jsx:152 +#: screens/Login/Login.jsx:235 msgid "Sign in with GitHub Organizations" msgstr "" -#: src/screens/Login/Login.jsx:162 +#: screens/Login/Login.jsx:249 msgid "Sign in with GitHub Teams" msgstr "" -#: src/screens/Login/Login.jsx:206 +#: screens/Login/Login.jsx:311 msgid "Sign in with Google" msgstr "" -#: src/screens/Login/Login.jsx:220 +#: screens/Login/Login.jsx:329 msgid "Sign in with SAML" msgstr "" -#: src/screens/Login/Login.jsx:219 +#: screens/Login/Login.jsx:328 msgid "Sign in with SAML {samlIDP}" msgstr "" -#: src/components/Search/Search.jsx:175 +#: components/Search/Search.jsx:177 msgid "Simple key select" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 -#: src/components/PromptDetail/PromptDetail.jsx:229 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:242 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 -#: src/screens/Job/JobDetail/JobDetail.jsx:308 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:347 -#: src/screens/Template/shared/JobTemplateForm.jsx:484 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 +#: components/PromptDetail/PromptDetail.jsx:229 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 +#: screens/Job/JobDetail/JobDetail.jsx:339 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "Skip Tags" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:517 +msgid "" +"Skip tags are useful when you have a\n" +"large playbook, and you want to skip specific parts of a\n" +"play or task. Use commas to separate multiple tags. Refer\n" +"to Ansible Tower documentation for details on the usage\n" +"of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 +msgid "" +"Skip tags are useful when you have a large\n" +"playbook, and you want to skip specific parts of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 #: src/screens/Template/shared/JobTemplateForm.jsx:487 -msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 msgid "Skipped" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:140 +#: components/NotificationList/NotificationList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Slack" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:19 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:39 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:43 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:97 +#: screens/Host/HostList/SmartInventoryButton.jsx:19 +#: screens/Host/HostList/SmartInventoryButton.jsx:40 +#: screens/Host/HostList/SmartInventoryButton.jsx:44 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:97 msgid "Smart Inventory" msgstr "" -#: src/screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.jsx:96 msgid "Smart Inventory not found." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 +#: components/Lookup/HostFilterLookup.jsx:283 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 msgid "Smart host filter" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 msgid "Smart inventory" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:64 +#: components/LaunchPrompt/steps/PreviewStep.jsx:64 msgid "Some of the previous step(s) have errors" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 msgid "Something went wrong with the request to test this credential and metadata." msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Something went wrong..." msgstr "" -#: src/components/Sort/Sort.jsx:129 +#: components/Sort/Sort.jsx:129 msgid "Sort" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:63 -#: src/screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.jsx:63 +#: screens/Template/Survey/SurveyListItem.jsx:64 msgid "Sort question order" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:85 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:192 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:121 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:86 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200 +#: screens/Inventory/shared/InventorySourceForm.jsx:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 msgid "Source" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: src/components/PromptDetail/PromptDetail.jsx:189 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: src/components/PromptDetail/PromptProjectDetail.jsx:72 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:106 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:210 -#: src/screens/Template/shared/JobTemplateForm.jsx:276 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 +#: components/PromptDetail/PromptDetail.jsx:189 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:137 +#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/shared/JobTemplateForm.jsx:306 msgid "Source Control Branch" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 msgid "Source Control Branch/Tag/Commit" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:76 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:110 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 +#: components/PromptDetail/PromptProjectDetail.jsx:82 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:112 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 msgid "Source Control Credential" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:188 +#: screens/Project/shared/ProjectForm.jsx:214 msgid "Source Control Credential Type" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:73 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:107 -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 +#: components/PromptDetail/PromptProjectDetail.jsx:79 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:109 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 msgid "Source Control Refspec" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:68 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:74 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:102 msgid "Source Control Type" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:121 -#: src/components/PromptDetail/PromptProjectDetail.jsx:71 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:153 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: components/Lookup/ProjectLookup.jsx:121 +#: components/PromptDetail/PromptProjectDetail.jsx:77 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:107 +#: screens/Project/ProjectList/ProjectList.jsx:158 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Source Control URL" msgstr "" -#: src/components/JobList/JobList.jsx:205 -#: src/components/JobList/JobListItem.jsx:31 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: src/screens/Job/JobDetail/JobDetail.jsx:77 +#: components/JobList/JobList.jsx:183 +#: components/JobList/JobListItem.jsx:31 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 +#: screens/Job/JobDetail/JobDetail.jsx:93 msgid "Source Control Update" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 msgid "Source Phone Number" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:169 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:170 msgid "Source Variables" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:183 +#: screens/Job/JobDetail/JobDetail.jsx:184 msgid "Source Workflow Job" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:166 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:177 msgid "Source control branch" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:167 +#: screens/Inventory/shared/InventorySourceForm.jsx:157 msgid "Source details" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 msgid "Source phone number" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:247 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:33 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 msgid "Source variables" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 msgid "Sourced from a project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:100 -#: src/screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.jsx:98 +#: screens/Inventory/Inventory.jsx:66 msgid "Sources" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +msgid "" +"Specify HTTP Headers in JSON format. Refer to\n" +"the Ansible Tower documentation for example syntax." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 -msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +msgid "" +"Specify a notification color. Acceptable colors are hex\n" +"color code (example: #3af or #789abc)." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 -msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." -msgstr "" +#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." +#~ msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 msgid "Specify the conditions under which this node should be executed" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:180 +#: screens/Job/JobOutput/HostEventModal.jsx:180 msgid "Standard Error" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:162 +#: screens/Job/JobOutput/HostEventModal.jsx:162 msgid "Standard Out" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:181 +#: screens/Job/JobOutput/HostEventModal.jsx:181 msgid "Standard error tab" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:163 +#: screens/Job/JobOutput/HostEventModal.jsx:163 msgid "Standard out tab" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:57 -#: src/components/NotificationList/NotificationListItem.jsx:58 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:48 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:54 +#: components/NotificationList/NotificationListItem.jsx:57 +#: components/NotificationList/NotificationListItem.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:55 msgid "Start" msgstr "" -#: src/components/JobList/JobList.jsx:241 -#: src/components/JobList/JobListItem.jsx:74 +#: components/JobList/JobList.jsx:219 +#: components/JobList/JobListItem.jsx:74 msgid "Start Time" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:123 +#: components/Schedule/shared/ScheduleForm.jsx:123 msgid "Start date/time" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:395 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:396 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 msgid "Start message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:404 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:405 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 msgid "Start message body" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:69 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:70 msgid "Start sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:72 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:74 msgid "Start sync source" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:152 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: screens/Job/JobDetail/JobDetail.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Started" msgstr "" -#: src/components/JobList/JobList.jsx:218 -#: src/components/JobList/JobList.jsx:239 -#: src/components/JobList/JobListItem.jsx:68 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:195 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:141 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:179 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:170 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:93 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 +#: components/JobList/JobList.jsx:196 +#: components/JobList/JobList.jsx:217 +#: components/JobList/JobListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryList.jsx:201 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:142 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 +#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectListItem.jsx:119 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 msgid "Status" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:115 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: src/screens/Project/ProjectList/ProjectList.jsx:147 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Job/JobOutput/JobOutput.jsx:630 +msgid "Stdout" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:115 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 +#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 msgid "Subversion" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:70 -#: src/components/NotificationList/NotificationListItem.jsx:71 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/NotificationList/NotificationListItem.jsx:70 +#: components/NotificationList/NotificationListItem.jsx:71 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Success" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:413 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:414 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 msgid "Success message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:422 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:423 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 msgid "Success message body" msgstr "" -#: src/components/JobList/JobList.jsx:225 -#: src/components/Workflow/WorkflowNodeHelp.jsx:86 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.jsx:203 +#: components/Workflow/WorkflowNodeHelp.jsx:86 +#: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:122 +#: screens/Project/ProjectList/ProjectListItem.jsx:148 msgid "Successfully copied to clipboard!" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:259 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 msgid "Sun" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:264 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:425 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 msgid "Sunday" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:27 -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/Templates.jsx:49 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: screens/Template/Template.jsx:168 +#: screens/Template/Templates.jsx:49 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:136 +#: screens/Template/Survey/SurveyList.jsx:138 msgid "Survey List" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.jsx:32 msgid "Survey Preview" msgstr "" -#: src/screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.jsx:50 msgid "Survey Toggle" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:33 +#: screens/Template/Survey/SurveyPreviewModal.jsx:33 msgid "Survey preview modal" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.jsx:57 msgid "Survey questions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:76 -#: src/screens/Project/shared/ProjectSyncButton.jsx:34 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:78 +#: screens/Project/shared/ProjectSyncButton.jsx:35 msgid "Sync" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:128 -#: src/screens/Project/shared/ProjectSyncButton.jsx:30 +#: screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/shared/ProjectSyncButton.jsx:31 msgid "Sync Project" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:199 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:202 msgid "Sync all" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:193 msgid "Sync all sources" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:231 msgid "Sync error" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:115 +#: screens/Project/ProjectList/ProjectListItem.jsx:141 msgid "Sync for revision" msgstr "" -#: src/screens/Setting/SettingList.jsx:105 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:27 +#: screens/Setting/SettingList.jsx:105 +#: screens/User/UserRoles/UserRolesListItem.jsx:27 msgid "System" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:126 -#: src/screens/User/UserDetail/UserDetail.jsx:42 -#: src/screens/User/UserList/UserListItem.jsx:26 -#: src/screens/User/UserRoles/UserRolesList.jsx:124 -#: src/screens/User/shared/UserForm.jsx:41 +#: screens/Team/TeamRoles/TeamRolesList.jsx:126 +#: screens/User/UserDetail/UserDetail.jsx:42 +#: screens/User/UserList/UserListItem.jsx:26 +#: screens/User/UserRoles/UserRolesList.jsx:124 +#: screens/User/shared/UserForm.jsx:41 msgid "System Administrator" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:44 -#: src/screens/User/UserList/UserListItem.jsx:28 -#: src/screens/User/shared/UserForm.jsx:35 +#: screens/User/UserDetail/UserDetail.jsx:44 +#: screens/User/UserList/UserListItem.jsx:28 +#: screens/User/shared/UserForm.jsx:35 msgid "System Auditor" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:130 -#: src/screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/Job/JobOutput/JobOutput.jsx:667 +msgid "System Warning" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:130 +#: screens/User/UserRoles/UserRolesList.jsx:128 msgid "System administrators have unrestricted access to all resources." msgstr "" -#: src/screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.jsx:109 msgid "TACACS+" msgstr "" -#: src/screens/Setting/SettingList.jsx:86 +#: screens/Setting/SettingList.jsx:86 msgid "TACACS+ settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:165 -#: src/screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:501 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a\n" +"play or task. Use commas to separate multiple tags.\n" +"Refer to Ansible Tower documentation for details on\n" +"the usage of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 #: src/screens/Template/shared/JobTemplateForm.jsx:471 -msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 msgid "Tags for the Annotation" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 msgid "Tags for the annotation (optional)" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 msgid "Target URL" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.jsx:129 msgid "Task" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:95 msgid "Task Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:89 +#: screens/Job/JobOutput/JobOutput.jsx:658 +msgid "Task Started" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:96 msgid "Tasks" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:19 msgid "Team" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:120 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:120 +#: screens/Team/TeamRoles/TeamRolesList.jsx:144 msgid "Team Roles" msgstr "" -#: src/screens/Team/Team.jsx:73 +#: screens/Team/Team.jsx:73 msgid "Team not found." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:198 -#: src/components/AddRole/AddResourceRole.jsx:199 -#: src/routeConfig.js:106 -#: src/screens/ActivityStream/ActivityStream.jsx:184 -#: src/screens/Organization/Organization.jsx:124 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:156 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:41 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 -#: src/screens/Organization/Organizations.jsx:33 -#: src/screens/Team/TeamList/TeamList.jsx:124 -#: src/screens/Team/TeamList/TeamList.jsx:179 -#: src/screens/Team/Teams.jsx:14 -#: src/screens/Team/Teams.jsx:25 -#: src/screens/User/User.jsx:69 -#: src/screens/User/UserTeams/UserTeamList.jsx:176 -#: src/screens/User/UserTeams/UserTeamList.jsx:244 -#: src/screens/User/Users.jsx:33 +#: components/AddRole/AddResourceRole.jsx:209 +#: components/AddRole/AddResourceRole.jsx:210 +#: routeConfig.js:107 +#: screens/ActivityStream/ActivityStream.jsx:184 +#: screens/Organization/Organization.jsx:125 +#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 +#: screens/Organization/Organizations.jsx:33 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/Teams.jsx:14 +#: screens/Team/Teams.jsx:25 +#: screens/User/User.jsx:69 +#: screens/User/UserTeams/UserTeamList.jsx:176 +#: screens/User/UserTeams/UserTeamList.jsx:244 +#: screens/User/Users.jsx:33 +#: util/getRelatedResourceDeleteDetails.js:198 msgid "Teams" msgstr "" -#: src/screens/Template/Template.jsx:171 -#: src/screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.jsx:184 +#: screens/Template/WorkflowJobTemplate.jsx:179 msgid "Template not found." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:179 -#: src/components/TemplateList/TemplateList.jsx:238 -#: src/routeConfig.js:65 -#: src/screens/ActivityStream/ActivityStream.jsx:161 -#: src/screens/Template/Templates.jsx:16 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 +msgid "Template type" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:184 +#: components/TemplateList/TemplateList.jsx:243 +#: routeConfig.js:66 +#: screens/ActivityStream/ActivityStream.jsx:161 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 +#: screens/Template/Templates.jsx:16 +#: util/getRelatedResourceDeleteDetails.js:242 +#: util/getRelatedResourceDeleteDetails.js:299 msgid "Templates" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:281 -#: src/screens/Credential/shared/CredentialForm.jsx:287 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 +#: screens/Credential/shared/CredentialForm.jsx:287 +#: screens/Credential/shared/CredentialForm.jsx:293 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:83 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 msgid "Test" msgstr "" -#: src/screens/Credential/shared/ExternalTestModal.jsx:78 +#: screens/Credential/shared/ExternalTestModal.jsx:78 msgid "Test External Credential" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:123 msgid "Test Notification" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 msgid "Test logging" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:113 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:120 msgid "Test notification" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 msgid "Test passed" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:53 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:50 +#: screens/Template/Survey/SurveyPreviewModal.jsx:53 +#: screens/Template/Survey/SurveyQuestionForm.jsx:50 msgid "Text" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:67 +#: screens/Template/Survey/SurveyPreviewModal.jsx:67 msgid "Text Area" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:51 +#: screens/Template/Survey/SurveyQuestionForm.jsx:51 msgid "Textarea" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:88 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +msgid "The Execution Environment to be used when one has not been configured for a job template." +msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:88 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +msgid "" +"The amount of time (in seconds) before the email\n" +"notification stops trying to reach the host and times out. Ranges\n" +"from 1 to 120 seconds." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 -msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:469 +msgid "" +"The amount of time (in seconds) to run\n" +"before the job is canceled. Defaults to 0 for no job\n" +"timeout." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:439 -msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +msgid "" +"The base URL of the Grafana server - the\n" +"/api/annotations endpoint will be added automatically to the base\n" +"Grafana URL." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 -msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 +msgid "" +"The first fetches all references. The second\n" +"fetches the Github pull request number 62, in this example\n" +"the branch needs to be \"pull/62/head\"." msgstr "" #: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 -msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:77 +msgid "" +"The maximum number of hosts allowed to be managed by this organization.\n" +"Value defaults to 0 which means no limit. Refer to the Ansible\n" +"documentation for more details." msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:69 -msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:407 +msgid "" +"The number of parallel or simultaneous\n" +"processes to use while executing the playbook. An empty value,\n" +"or a value less than 1 will use the Ansible default which is\n" +"usually 5. The default number of forks can be overwritten\n" +"with a change to" msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:377 -msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" -msgstr "" +#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:197 +#: components/AdHocCommands/AdHocDetailsStep.jsx:197 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "" -#: src/components/ContentError/ContentError.jsx:43 -#: src/screens/Job/Job.jsx:84 +#: components/ContentError/ContentError.jsx:43 +#: screens/Job/Job.jsx:124 msgid "The page you requested could not be found." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:175 +#: components/AdHocCommands/AdHocDetailsStep.jsx:175 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:123 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:82 +msgid "The registry location where the container is stored." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 msgid "The resource associated with this node has been deleted." msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 -msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#: screens/Template/Survey/SurveyQuestionForm.jsx:134 +msgid "" +"The suggested format for variable names is lowercase and\n" +"underscore-separated (for example, foo_bar, user_id, host_name,\n" +"etc.). Variable names with spaces are not allowed." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 +#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#~ msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 msgid "The tower instance group cannot be deleted." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 -msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +msgid "" +"There are no available playbook directories in {project_base_dir}.\n" +"Either that directory is empty, or all of the contents are already\n" +"assigned to other projects. Create a new directory there and make\n" +"sure the playbook files can be read by the \"awx\" system user,\n" +"or have {brandName} directly retrieve your playbooks from\n" +"source control using the Source Control Type option above." msgstr "" -#: src/screens/Login/Login.jsx:112 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#~ msgstr "" + +#: screens/Login/Login.jsx:120 msgid "There was a problem signing in. Please try again." msgstr "" -#: src/components/ContentError/ContentError.jsx:45 +#: components/ContentError/ContentError.jsx:45 msgid "There was an error loading this content. Please reload the page." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:589 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:600 msgid "There was an error saving the workflow." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:19 +#: screens/Setting/shared/LoggingTestAlert.jsx:19 msgid "There was an error testing the log aggregator." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:74 +#: components/AdHocCommands/AdHocDetailsStep.jsx:74 msgid "These are the modules that {brandName} supports running commands against." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:151 +#: components/AdHocCommands/AdHocDetailsStep.jsx:151 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:133 +#: components/AdHocCommands/AdHocDetailsStep.jsx:133 msgid "These arguments are used with the specified module." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:121 +#: components/AdHocCommands/AdHocDetailsStep.jsx:121 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:407 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 msgid "Third" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:171 -#: src/screens/Template/Survey/SurveyList.jsx:121 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282 +#: screens/Template/Survey/SurveyList.jsx:123 msgid "This action will delete the following:" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:214 +#: screens/User/UserTeams/UserTeamList.jsx:214 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:218 -#: src/screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: screens/User/UserRoles/UserRolesList.jsx:220 msgid "This action will disassociate the following role from {0}:" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.jsx:134 msgid "This action will disassociate the following:" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:226 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +msgid "This container group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 +msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:122 +msgid "This credential type is currently being used by some credentials and cannot be deleted" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 +msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:269 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 msgid "This field may not be blank" msgstr "" -#: src/util/validators.jsx:102 +#: util/validators.jsx:102 msgid "This field must be a number" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:113 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:113 msgid "This field must be a number and have a value between {0} and {1}" msgstr "" -#: src/util/validators.jsx:41 +#: util/validators.jsx:41 msgid "This field must be a number and have a value between {min} and {max}" msgstr "" -#: src/util/validators.jsx:142 +#: util/validators.jsx:142 msgid "This field must be a regular expression" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: src/util/validators.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 +#: util/validators.jsx:86 msgid "This field must be an integer" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:104 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:104 msgid "This field must be at least {0} characters" msgstr "" -#: src/util/validators.jsx:31 +#: util/validators.jsx:31 msgid "This field must be at least {min} characters" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 msgid "This field must be greater than 0" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:118 -#: src/screens/User/shared/UserForm.jsx:89 -#: src/screens/User/shared/UserForm.jsx:100 -#: src/util/validators.jsx:4 -#: src/util/validators.jsx:51 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:118 +#: screens/User/shared/UserForm.jsx:89 +#: screens/User/shared/UserForm.jsx:100 +#: util/validators.jsx:4 +#: util/validators.jsx:51 msgid "This field must not be blank" msgstr "" -#: src/util/validators.jsx:76 +#: util/validators.jsx:76 msgid "This field must not contain spaces" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:107 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:107 msgid "This field must not exceed {0} characters" msgstr "" -#: src/util/validators.jsx:22 +#: util/validators.jsx:22 msgid "This field must not exceed {max} characters" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:50 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:52 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Application/Applications.jsx:78 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:150 +msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/LaunchPrompt/steps/useInventoryStep.jsx:66 +msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" + +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292 +msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" +msgstr "" + +#: screens/Application/Applications.jsx:78 msgid "This is the only time the client secret will be shown." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:59 +#: screens/User/UserTokens/UserTokens.jsx:59 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:143 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:411 +msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 +msgid "This organization is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.jsx:177 +msgid "This project is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:150 msgid "This project needs to be updated" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:131 +#: components/Schedule/ScheduleList/ScheduleList.jsx:131 msgid "This schedule is missing an Inventory" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:158 +#: components/Schedule/ScheduleList/ScheduleList.jsx:158 msgid "This schedule is missing required survey values" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:63 -#: src/components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:63 +#: components/LaunchPrompt/steps/StepName.jsx:27 msgid "This step contains errors" msgstr "" -#: src/screens/User/shared/UserForm.jsx:155 +#: screens/User/shared/UserForm.jsx:155 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:36 -msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#: screens/Setting/shared/RevertAllAlert.jsx:36 +msgid "" +"This will revert all configuration values on this page to\n" +"their factory defaults. Are you sure you want to proceed?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 +#: src/screens/Setting/shared/RevertAllAlert.jsx:36 +#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 msgid "This workflow does not have any nodes configured." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:299 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 msgid "Thu" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:304 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 msgid "Thursday" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:236 -#: src/screens/ActivityStream/ActivityStream.jsx:248 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:40 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.jsx:242 +#: screens/ActivityStream/ActivityStream.jsx:254 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 +#: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "" +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 +msgid "" +"Time in seconds to consider a project\n" +"to be current. During job runs and callbacks the task\n" +"system will evaluate the timestamp of the latest project\n" +"update. If it is older than Cache Timeout, it is not\n" +"considered current, and a new project update will be\n" +"performed." +msgstr "" + #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 -msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +msgid "" +"Time in seconds to consider an inventory sync\n" +"to be current. During job runs and callbacks the task system will\n" +"evaluate the timestamp of the latest sync. If it is older than\n" +"Cache Timeout, it is not considered current, and a new\n" +"inventory sync will be performed." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 -msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." -msgstr "" +#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." +#~ msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 msgid "Timed out" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:136 -#: src/screens/Template/shared/JobTemplateForm.jsx:438 +#: components/PromptDetail/PromptDetail.jsx:116 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 +#: screens/Template/shared/JobTemplateForm.jsx:468 msgid "Timeout" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:173 msgid "Timeout minutes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:157 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:187 msgid "Timeout seconds" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 msgid "Toggle Legend" msgstr "" -#: src/components/FormField/PasswordInput.jsx:40 +#: components/FormField/PasswordInput.jsx:41 msgid "Toggle Password" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 msgid "Toggle Tools" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:36 +#: screens/Job/JobOutput/PageControls.jsx:37 msgid "Toggle expand/collapse event lines" msgstr "" -#: src/components/HostToggle/HostToggle.jsx:67 +#: components/HostToggle/HostToggle.jsx:67 msgid "Toggle host" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:63 +#: components/InstanceToggle/InstanceToggle.jsx:63 msgid "Toggle instance" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 msgid "Toggle legend" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:51 +#: components/NotificationList/NotificationListItem.jsx:51 msgid "Toggle notification approvals" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:90 +#: components/NotificationList/NotificationListItem.jsx:90 msgid "Toggle notification failure" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:64 +#: components/NotificationList/NotificationListItem.jsx:64 msgid "Toggle notification start" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:77 +#: components/NotificationList/NotificationListItem.jsx:77 msgid "Toggle notification success" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 msgid "Toggle schedule" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 msgid "Toggle tools" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: src/screens/User/UserTokens/UserTokens.jsx:65 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 +#: screens/User/UserTokens/UserTokens.jsx:65 msgid "Token" msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:49 -#: src/screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.jsx:49 +#: screens/User/UserTokens/UserTokens.jsx:52 msgid "Token information" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.jsx:73 msgid "Token not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:39 +#: screens/User/UserTokenList/UserTokenListItem.jsx:39 msgid "Token type" msgstr "" -#: src/screens/Application/Application/Application.jsx:78 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: src/screens/Application/Applications.jsx:40 -#: src/screens/User/User.jsx:75 -#: src/screens/User/UserTokenList/UserTokenList.jsx:106 -#: src/screens/User/Users.jsx:35 +#: screens/Application/Application/Application.jsx:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 +#: screens/Application/Applications.jsx:40 +#: screens/User/User.jsx:75 +#: screens/User/UserTokenList/UserTokenList.jsx:106 +#: screens/User/Users.jsx:35 msgid "Tokens" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:84 +#: components/Workflow/WorkflowTools.jsx:84 msgid "Tools" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:230 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237 msgid "Total Jobs" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 msgid "Total Nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:103 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:103 msgid "Total jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 msgid "True" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:279 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 msgid "Tue" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:284 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:435 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 msgid "Tuesday" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:201 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:141 +#: components/NotificationList/NotificationList.jsx:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "Twilio" msgstr "" -#: src/components/JobList/JobList.jsx:240 -#: src/components/JobList/JobListItem.jsx:72 -#: src/components/Lookup/ProjectLookup.jsx:110 -#: src/components/NotificationList/NotificationList.jsx:220 -#: src/components/NotificationList/NotificationListItem.jsx:30 -#: src/components/PromptDetail/PromptDetail.jsx:112 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:174 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:95 -#: src/components/TemplateList/TemplateList.jsx:193 -#: src/components/TemplateList/TemplateList.jsx:218 -#: src/components/TemplateList/TemplateListItem.jsx:129 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 -#: src/components/Workflow/WorkflowNodeHelp.jsx:136 -#: src/components/Workflow/WorkflowNodeHelp.jsx:162 -#: src/screens/Credential/CredentialList/CredentialList.jsx:152 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:60 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:47 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:79 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:86 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:196 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:95 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:181 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:108 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: src/screens/Project/ProjectList/ProjectList.jsx:142 -#: src/screens/Project/ProjectList/ProjectList.jsx:171 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:106 -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:30 -#: src/screens/Template/Survey/SurveyListItem.jsx:115 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 -#: src/screens/User/UserDetail/UserDetail.jsx:70 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:34 +#: components/JobList/JobList.jsx:218 +#: components/JobList/JobListItem.jsx:72 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/NotificationList/NotificationList.jsx:220 +#: components/NotificationList/NotificationListItem.jsx:30 +#: components/PromptDetail/PromptDetail.jsx:112 +#: components/Schedule/ScheduleList/ScheduleList.jsx:174 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95 +#: components/TemplateList/TemplateList.jsx:198 +#: components/TemplateList/TemplateList.jsx:223 +#: components/TemplateList/TemplateListItem.jsx:154 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 +#: components/Workflow/WorkflowNodeHelp.jsx:136 +#: components/Workflow/WorkflowNodeHelp.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Credential/CredentialList/CredentialListItem.jsx:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:95 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 +#: screens/Project/ProjectList/ProjectList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectListItem.jsx:132 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30 +#: screens/Template/Survey/SurveyListItem.jsx:117 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/User/UserDetail/UserDetail.jsx:70 +#: screens/User/UserRoles/UserRolesListItem.jsx:34 msgid "Type" msgstr "" -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: src/screens/Project/shared/ProjectForm.jsx:220 +#: screens/Credential/shared/TypeInputsSubForm.jsx:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 +#: screens/Project/shared/ProjectForm.jsx:246 msgid "Type Details" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:108 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:63 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:111 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:63 msgid "Unavailable" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Undo" msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:101 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:108 msgid "Unreachable" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:100 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:107 msgid "Unreachable Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:109 msgid "Unreachable Hosts" msgstr "" -#: src/util/dates.jsx:81 +#: util/dates.jsx:81 msgid "Unrecognized day string" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 msgid "Unsaved changes modal" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:42 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:69 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 +#: components/PromptDetail/PromptProjectDetail.jsx:43 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 msgid "Update Revision on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:51 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 msgid "Update on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:53 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:54 msgid "Update on Project Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:156 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 msgid "Update on launch" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 msgid "Update on project update" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:126 msgid "Update options" msgstr "" -#: src/screens/Setting/SettingList.jsx:94 +#: screens/Setting/SettingList.jsx:94 msgid "Update settings pertaining to Jobs within {brandName}" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:205 +#: screens/Template/shared/WebhookSubForm.jsx:206 msgid "Update webhook key" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.jsx:110 msgid "Updating" msgstr "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:57 #: src/screens/Organization/shared/OrganizationForm.jsx:33 #: src/screens/Project/shared/ProjectForm.jsx:286 -msgid "Use Default Ansible Environment" -msgstr "" +#~ msgid "Use Default Ansible Environment" +#~ msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:133 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:67 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 msgid "Use Fact Storage" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 msgid "Use SSL" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 msgid "Use TLS" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:99 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:107 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:59 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:102 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:59 msgid "Used capacity" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:135 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/AppContainer/PageHeaderToolbar.jsx:135 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:20 msgid "User" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:163 +#: components/AppContainer/PageHeaderToolbar.jsx:163 msgid "User Details" msgstr "" -#: src/screens/Setting/SettingList.jsx:124 -#: src/screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.jsx:124 +#: screens/Setting/Settings.jsx:112 msgid "User Interface" msgstr "" -#: src/screens/Setting/SettingList.jsx:131 +#: screens/Setting/SettingList.jsx:131 msgid "User Interface settings" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:110 -#: src/screens/User/UserRoles/UserRolesList.jsx:141 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:110 +#: screens/User/UserRoles/UserRolesList.jsx:141 msgid "User Roles" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:67 -#: src/screens/User/shared/UserForm.jsx:137 +#: screens/User/UserDetail/UserDetail.jsx:67 +#: screens/User/shared/UserForm.jsx:137 msgid "User Type" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:156 +#: components/AppContainer/PageHeaderToolbar.jsx:156 msgid "User details" msgstr "" -#: src/screens/User/User.jsx:95 +#: screens/User/User.jsx:95 msgid "User not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.jsx:166 msgid "User tokens" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:114 -#: src/components/AddRole/AddResourceRole.jsx:129 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:125 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:159 -#: src/screens/Login/Login.jsx:261 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: src/screens/User/UserDetail/UserDetail.jsx:60 -#: src/screens/User/UserList/UserList.jsx:118 -#: src/screens/User/UserList/UserList.jsx:163 -#: src/screens/User/UserList/UserListItem.jsx:45 -#: src/screens/User/shared/UserForm.jsx:67 +#: components/AddRole/AddResourceRole.jsx:125 +#: components/AddRole/AddResourceRole.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:127 +#: components/ResourceAccessList/ResourceAccessList.jsx:161 +#: screens/Login/Login.jsx:175 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 +#: screens/User/UserDetail/UserDetail.jsx:60 +#: screens/User/UserList/UserList.jsx:118 +#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserListItem.jsx:45 +#: screens/User/shared/UserForm.jsx:67 msgid "Username" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:190 -#: src/components/AddRole/AddResourceRole.jsx:191 -#: src/routeConfig.js:101 -#: src/screens/ActivityStream/ActivityStream.jsx:181 -#: src/screens/Team/Teams.jsx:30 -#: src/screens/User/UserList/UserList.jsx:113 -#: src/screens/User/UserList/UserList.jsx:155 -#: src/screens/User/Users.jsx:15 -#: src/screens/User/Users.jsx:27 +#: components/AddRole/AddResourceRole.jsx:201 +#: components/AddRole/AddResourceRole.jsx:202 +#: routeConfig.js:102 +#: screens/ActivityStream/ActivityStream.jsx:181 +#: screens/Team/Teams.jsx:30 +#: screens/User/UserList/UserList.jsx:113 +#: screens/User/UserList/UserList.jsx:155 +#: screens/User/Users.jsx:15 +#: screens/User/Users.jsx:27 msgid "Users" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "VMware vCenter" msgstr "" -#: src/components/HostForm/HostForm.jsx:102 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 -#: src/components/PromptDetail/PromptDetail.jsx:260 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:256 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 -#: src/screens/Host/HostDetail/HostDetail.jsx:104 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:99 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 -#: src/screens/Inventory/shared/InventoryForm.jsx:89 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:55 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:98 -#: src/screens/Job/JobDetail/JobDetail.jsx:337 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:362 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:194 -#: src/screens/Template/shared/JobTemplateForm.jsx:359 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: components/HostForm/HostForm.jsx:102 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 +#: components/PromptDetail/PromptDetail.jsx:260 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:262 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 +#: screens/Host/HostDetail/HostDetail.jsx:104 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 +#: screens/Inventory/shared/InventoryForm.jsx:89 +#: screens/Inventory/shared/InventoryGroupForm.jsx:55 +#: screens/Inventory/shared/SmartInventoryForm.jsx:98 +#: screens/Job/JobDetail/JobDetail.jsx:368 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 +#: screens/Template/shared/JobTemplateForm.jsx:389 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231 msgid "Variables" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 +#: screens/Job/JobOutput/JobOutput.jsx:659 +msgid "Variables Prompted" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 msgid "Vault password" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 msgid "Vault password | {credId}" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:140 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 -#: src/components/PromptDetail/PromptDetail.jsx:199 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:101 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:135 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:225 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:89 -#: src/screens/Job/JobDetail/JobDetail.jsx:223 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: src/screens/Template/shared/JobTemplateForm.jsx:411 +#: screens/Job/JobOutput/JobOutput.jsx:664 +msgid "Verbose" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:140 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 +#: components/PromptDetail/PromptDetail.jsx:199 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:102 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:141 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:251 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 +#: screens/Template/shared/JobTemplateForm.jsx:441 msgid "Verbosity" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStream.jsx:33 +#: screens/Setting/ActivityStream/ActivityStream.jsx:33 msgid "View Activity Stream settings" msgstr "" -#: src/screens/Setting/AzureAD/AzureAD.jsx:26 +#: screens/Setting/AzureAD/AzureAD.jsx:26 msgid "View Azure AD settings" msgstr "" -#: src/screens/Credential/Credential.jsx:119 -#: src/screens/Credential/Credential.jsx:131 +#: screens/Credential/Credential.jsx:119 +#: screens/Credential/Credential.jsx:131 msgid "View Credential Details" msgstr "" -#: src/components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.jsx:135 msgid "View Details" msgstr "" -#: src/screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.jsx:58 msgid "View GitHub Settings" msgstr "" -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 msgid "View Google OAuth 2.0 settings" msgstr "" -#: src/screens/Host/Host.jsx:132 +#: screens/Host/Host.jsx:132 msgid "View Host Details" msgstr "" -#: src/screens/Inventory/Inventory.jsx:183 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 -#: src/screens/Inventory/SmartInventory.jsx:174 +#: screens/Inventory/Inventory.jsx:180 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 +#: screens/Inventory/SmartInventory.jsx:171 msgid "View Inventory Details" msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 msgid "View Inventory Groups" msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:162 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:162 msgid "View Inventory Host Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:49 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 msgid "View JSON examples at <0>www.json.org" msgstr "" -#: src/screens/Job/Job.jsx:120 +#: screens/Job/Job.jsx:165 msgid "View Job Details" msgstr "" -#: src/screens/Setting/Jobs/Jobs.jsx:26 +#: screens/Setting/Jobs/Jobs.jsx:26 msgid "View Jobs settings" msgstr "" -#: src/screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.jsx:38 msgid "View LDAP Settings" msgstr "" -#: src/screens/Setting/Logging/Logging.jsx:33 +#: screens/Setting/Logging/Logging.jsx:33 msgid "View Logging settings" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscSystem/MiscSystem.jsx:33 msgid "View Miscellaneous System settings" msgstr "" -#: src/screens/Organization/Organization.jsx:216 +#: screens/Organization/Organization.jsx:227 msgid "View Organization Details" msgstr "" -#: src/screens/Project/Project.jsx:198 +#: screens/Project/Project.jsx:198 msgid "View Project Details" msgstr "" -#: src/screens/Setting/RADIUS/RADIUS.jsx:26 +#: screens/Setting/RADIUS/RADIUS.jsx:26 msgid "View RADIUS settings" msgstr "" -#: src/screens/Setting/SAML/SAML.jsx:26 +#: screens/Setting/SAML/SAML.jsx:26 msgid "View SAML settings" msgstr "" -#: src/components/Schedule/Schedule.jsx:84 +#: components/Schedule/Schedule.jsx:85 msgid "View Schedules" msgstr "" -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.jsx:168 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "View Survey" msgstr "" -#: src/screens/Setting/TACACS/TACACS.jsx:26 +#: screens/Setting/TACACS/TACACS.jsx:26 msgid "View TACACS+ settings" msgstr "" -#: src/screens/Team/Team.jsx:116 +#: screens/Team/Team.jsx:116 msgid "View Team Details" msgstr "" -#: src/screens/Template/Template.jsx:251 -#: src/screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.jsx:265 +#: screens/Template/WorkflowJobTemplate.jsx:279 msgid "View Template Details" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:103 +#: screens/User/UserToken/UserToken.jsx:103 msgid "View Tokens" msgstr "" -#: src/screens/User/User.jsx:140 +#: screens/User/User.jsx:140 msgid "View User Details" msgstr "" -#: src/screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.jsx:26 msgid "View User Interface settings" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.jsx:104 msgid "View Workflow Approval Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 msgid "View YAML examples at <0>docs.ansible.com" msgstr "" -#: src/components/ScreenHeader/ScreenHeader.jsx:54 -#: src/components/ScreenHeader/ScreenHeader.jsx:56 +#: components/ScreenHeader/ScreenHeader.jsx:54 +#: components/ScreenHeader/ScreenHeader.jsx:57 msgid "View activity stream" msgstr "" -#: src/screens/Credential/Credential.jsx:81 +#: screens/Credential/Credential.jsx:81 msgid "View all Credentials." msgstr "" -#: src/screens/Host/Host.jsx:91 +#: screens/Host/Host.jsx:91 msgid "View all Hosts." msgstr "" -#: src/screens/Inventory/Inventory.jsx:93 -#: src/screens/Inventory/SmartInventory.jsx:98 +#: screens/Inventory/Inventory.jsx:93 +#: screens/Inventory/SmartInventory.jsx:98 msgid "View all Inventories." msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:102 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:102 msgid "View all Inventory Hosts." msgstr "" -#: src/screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.jsx:40 msgid "View all Jobs" msgstr "" -#: src/screens/Job/Job.jsx:85 +#: screens/Job/Job.jsx:125 msgid "View all Jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:53 +#: screens/NotificationTemplate/NotificationTemplate.jsx:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 msgid "View all Notification Templates." msgstr "" -#: src/screens/Organization/Organization.jsx:150 +#: screens/Organization/Organization.jsx:156 msgid "View all Organizations." msgstr "" -#: src/screens/Project/Project.jsx:140 +#: screens/Project/Project.jsx:140 msgid "View all Projects." msgstr "" -#: src/screens/Team/Team.jsx:74 +#: screens/Team/Team.jsx:74 msgid "View all Teams." msgstr "" -#: src/screens/Template/Template.jsx:172 -#: src/screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.jsx:185 +#: screens/Template/WorkflowJobTemplate.jsx:180 msgid "View all Templates." msgstr "" -#: src/screens/User/User.jsx:96 +#: screens/User/User.jsx:96 msgid "View all Users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.jsx:54 msgid "View all Workflow Approvals." msgstr "" -#: src/screens/Application/Application/Application.jsx:95 +#: screens/Application/Application/Application.jsx:95 msgid "View all applications." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.jsx:77 msgid "View all credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:84 -#: src/screens/InstanceGroup/InstanceGroup.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +msgid "View all execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:84 +#: screens/InstanceGroup/InstanceGroup.jsx:90 msgid "View all instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.jsx:134 msgid "View all management jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.jsx:195 msgid "View all settings" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:75 +#: screens/User/UserToken/UserToken.jsx:75 msgid "View all tokens." msgstr "" -#: src/screens/Setting/SettingList.jsx:138 +#: screens/Setting/SettingList.jsx:138 msgid "View and edit your license information" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:24 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 +#: screens/ActivityStream/ActivityStreamListItem.jsx:50 msgid "View event details" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.jsx:172 msgid "View inventory source details" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.jsx:44 msgid "View job {0}" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:171 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:177 msgid "View node details" msgstr "" -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 msgid "View smart inventory host details" msgstr "" -#: src/routeConfig.js:30 -#: src/screens/ActivityStream/ActivityStream.jsx:142 +#: routeConfig.js:31 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Views" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:134 -#: src/components/TemplateList/TemplateListItem.jsx:139 -#: src/screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.jsx:159 +#: components/TemplateList/TemplateListItem.jsx:165 +#: screens/Template/WorkflowJobTemplate.jsx:141 msgid "Visualizer" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 msgid "WARNING:" msgstr "" -#: src/components/JobList/JobList.jsx:223 -#: src/components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.jsx:201 +#: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:114 +#: components/Workflow/WorkflowLegend.jsx:114 +#: screens/Job/JobOutput/JobOutput.jsx:666 msgid "Warning" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 msgid "Warning: Unsaved Changes" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:202 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:142 +#: components/NotificationList/NotificationList.jsx:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Webhook" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:164 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:257 -#: src/screens/Template/shared/WebhookSubForm.jsx:216 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:170 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:267 +#: screens/Template/shared/WebhookSubForm.jsx:217 msgid "Webhook Credential" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:152 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 msgid "Webhook Credentials" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:160 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 -#: src/screens/Template/shared/WebhookSubForm.jsx:185 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:166 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:264 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:165 +#: screens/Template/shared/WebhookSubForm.jsx:185 msgid "Webhook Key" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:151 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:240 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:139 -#: src/screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:156 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 -#: src/screens/Template/shared/WebhookSubForm.jsx:167 -#: src/screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:162 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:161 +#: screens/Template/shared/WebhookSubForm.jsx:167 +#: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:607 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/JobTemplateForm.jsx:637 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "Webhook details" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:171 +#: screens/Template/shared/WebhookSubForm.jsx:171 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:189 +#: screens/Template/shared/WebhookSubForm.jsx:189 msgid "Webhook services can use this as a shared secret." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:289 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 msgid "Wed" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:294 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:440 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 msgid "Wednesday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:166 +#: components/Schedule/shared/ScheduleForm.jsx:166 msgid "Week" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:461 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 msgid "Weekday" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:466 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 msgid "Weekend day" msgstr "" -#: src/screens/Login/Login.jsx:121 +#: screens/Login/Login.jsx:142 msgid "Welcome to Ansible {brandName}! Please Sign In." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161 +msgid "" +"When not checked, a merge will be performed,\n" +"combining local variables with those found on the\n" +"external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158 -msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144 +msgid "" +"When not checked, local child\n" +"hosts and groups not found on the external source will remain\n" +"untouched by the inventory update process." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141 -msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." -msgstr "" +#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." +#~ msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.jsx:96 msgid "Workflow" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.jsx:63 msgid "Workflow Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.jsx:52 msgid "Workflow Approval not found." msgstr "" -#: src/routeConfig.js:54 -#: src/screens/ActivityStream/ActivityStream.jsx:153 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:12 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:19 +#: routeConfig.js:55 +#: screens/ActivityStream/ActivityStream.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:19 msgid "Workflow Approvals" msgstr "" -#: src/components/JobList/JobList.jsx:210 -#: src/components/JobList/JobListItem.jsx:36 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:41 -#: src/screens/Job/JobDetail/JobDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.jsx:188 +#: components/JobList/JobListItem.jsx:36 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41 +#: screens/Job/JobDetail/JobDetail.jsx:101 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 msgid "Workflow Job" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:51 -#: src/screens/Job/JobDetail/JobDetail.jsx:171 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:79 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: components/Workflow/WorkflowNodeHelp.jsx:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:172 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: util/getRelatedResourceDeleteDetails.js:112 msgid "Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:181 +#: util/getRelatedResourceDeleteDetails.js:284 +msgid "Workflow Job Template Nodes" +msgstr "" + +#: util/getRelatedResourceDeleteDetails.js:164 +msgid "Workflow Job Templates" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 msgid "Workflow Link" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:197 +#: components/TemplateList/TemplateList.jsx:202 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:449 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:450 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 msgid "Workflow approved message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:461 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:462 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 msgid "Workflow approved message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:473 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:474 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 msgid "Workflow denied message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:485 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:486 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 msgid "Workflow denied message body" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 msgid "Workflow documentation" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 msgid "Workflow job templates" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 msgid "Workflow link modal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 msgid "Workflow node view modal" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:497 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:498 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 msgid "Workflow pending message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:509 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:510 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 msgid "Workflow pending message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:521 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:522 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 msgid "Workflow timed out message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:533 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:534 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 msgid "Workflow timed out message body" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:81 +#: screens/User/shared/UserTokenForm.jsx:81 msgid "Write" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:46 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 msgid "YAML:" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:168 +#: components/Schedule/shared/ScheduleForm.jsx:168 msgid "Year" msgstr "" -#: src/components/Search/Search.jsx:246 +#: components/Search/Search.jsx:254 msgid "Yes" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "" -#: src/components/Lookup/MultiCredentialsLookup.jsx:142 +#: components/Lookup/MultiCredentialsLookup.jsx:142 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:102 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:52 +#: components/DisassociateButton/DisassociateButton.jsx:52 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 msgid "You may apply a number of possible variables in the message. Refer to the" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:241 +#: components/AppContainer/AppContainer.jsx:247 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:222 +#: components/AppContainer/AppContainer.jsx:222 msgid "Your session is about to expire" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:120 +#: components/Workflow/WorkflowTools.jsx:122 msgid "Zoom In" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.jsx:101 msgid "Zoom Out" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:704 -#: src/screens/Template/shared/WebhookSubForm.jsx:155 +#: screens/Template/shared/JobTemplateForm.jsx:734 +#: screens/Template/shared/WebhookSubForm.jsx:155 msgid "a new webhook key will be generated on save." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:701 -#: src/screens/Template/shared/WebhookSubForm.jsx:143 +#: screens/Template/shared/JobTemplateForm.jsx:731 +#: screens/Template/shared/WebhookSubForm.jsx:143 msgid "a new webhook url will be generated on save." msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:45 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:116 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:91 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 +#: screens/Host/HostGroups/HostGroupItem.jsx:45 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:116 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 msgid "actions" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:514 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:219 +msgid "and click on Update Revision on Launch" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:514 msgid "approved" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:164 -#: src/screens/Template/Survey/SurveyList.jsx:111 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275 +#: screens/Template/Survey/SurveyList.jsx:113 msgid "cancel delete" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:252 +#: components/AdHocCommands/AdHocDetailsStep.jsx:252 msgid "command" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:156 -#: src/screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264 +#: screens/Template/Survey/SurveyList.jsx:104 msgid "confirm delete" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:114 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:201 +#: components/DisassociateButton/DisassociateButton.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:202 msgid "confirm disassociate" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:60 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 msgid "controller instance" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:114 +#: screens/Project/ProjectList/ProjectListItem.jsx:140 msgid "copy to clipboard disabled" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:147 msgid "deletion error" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:522 +#: screens/ActivityStream/ActivityStreamDescription.jsx:522 msgid "denied" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:82 +#: components/DisassociateButton/DisassociateButton.jsx:82 msgid "disassociate" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:71 -#: src/screens/Host/HostDetail/HostDetail.jsx:112 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:89 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:129 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:102 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: src/screens/User/UserDetail/UserDetail.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:219 +msgid "documentation" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:121 +#: screens/Host/HostDetail/HostDetail.jsx:113 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:159 +#: screens/User/UserDetail/UserDetail.jsx:89 msgid "edit" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Template/Survey/SurveyListItem.jsx:123 msgid "encrypted" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 msgid "expiration" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 msgid "for more details." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "group" +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:221 +msgid "for more info." msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "groups" -msgstr "" +#~ msgid "group" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:182 +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 +#~ msgid "groups" +#~ msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:182 msgid "here" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:129 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:204 +#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.jsx:204 msgid "here." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:333 +#: components/Lookup/HostFilterLookup.jsx:340 msgid "hosts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:95 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:95 msgid "instance counts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:109 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:109 msgid "instance group used capacity" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:82 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:82 msgid "instance host name" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:85 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:85 msgid "instance type" msgstr "" -#: src/components/Lookup/HostListItem.jsx:30 +#: components/Lookup/HostListItem.jsx:30 msgid "inventory" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 -#: src/screens/Job/JobDetail/JobDetail.jsx:118 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 +#: screens/Job/JobDetail/JobDetail.jsx:119 msgid "isolated instance" msgstr "" -#: src/components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "ldap user" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:72 +#: screens/User/UserDetail/UserDetail.jsx:72 msgid "login type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:183 msgid "min" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:80 +#: screens/Template/Survey/SurveyListItem.jsx:82 msgid "move down" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:70 +#: screens/Template/Survey/SurveyListItem.jsx:71 msgid "move up" msgstr "" -#: src/components/Lookup/HostListItem.jsx:23 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:76 +#: components/Lookup/HostListItem.jsx:23 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:90 msgid "name" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:477 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 msgid "of" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:250 +#: components/AdHocCommands/AdHocDetailsStep.jsx:250 msgid "option to the" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 msgid "or attributes of the job such as" msgstr "" -#: src/components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "" -#: src/components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: src/components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:21 +#: components/LaunchButton/ReLaunchDropDown.jsx:66 +#: components/LaunchButton/ReLaunchDropDown.jsx:88 +msgid "relaunch jobs" +msgstr "" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:21 msgid "resource name" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:36 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:36 msgid "resource role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:26 msgid "resource type" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 msgid "scope" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:197 msgid "sec" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 msgid "seconds" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.jsx:62 msgid "select module" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:139 +#: components/AdHocCommands/AdHocDetailsStep.jsx:139 msgid "select verbosity" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:56 +#: screens/User/UserList/UserListItem.jsx:56 msgid "social login" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.jsx:30 msgid "system" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 msgid "team name" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:520 +#: screens/ActivityStream/ActivityStreamDescription.jsx:520 msgid "timed out" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:230 +#: components/AdHocCommands/AdHocDetailsStep.jsx:230 msgid "toggle changes" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 msgid "token name" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:83 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:110 msgid "type" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:525 +#: screens/ActivityStream/ActivityStreamDescription.jsx:525 msgid "updated" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:199 +#: screens/Template/shared/WebhookSubForm.jsx:199 msgid "workflow job template webhook key" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:27 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:113 +msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:86 +msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.jsx:223 +msgid "{0, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:65 +msgid "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:56 +msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +msgstr "" + +#: screens/Setting/shared/LoggingTestAlert.jsx:27 msgid "{0}" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.jsx:28 msgid "{0} (deleted)" msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.jsx:13 msgid "{0} more" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:62 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:62 msgid "{0} sources with sync failures." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:25 +#: screens/Setting/shared/LoggingTestAlert.jsx:25 msgid "{0}: {1}" msgstr "" -#: src/components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.jsx:23 msgid "{dateStr} by <0>{username}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:204 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:208 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:43 +#: components/PromptDetail/PromptDetail.jsx:43 msgid "{minutes} min {seconds} sec" msgstr "" #: src/screens/Inventory/InventoryList/InventoryList.jsx:215 -msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:92 +msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:81 -msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" -msgstr "" +#~ msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" +#~ msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:156 +#: components/JobList/JobListCancelButton.jsx:151 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:68 -msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#: components/JobList/JobListCancelButton.jsx:77 +msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" +#: src/components/JobList/JobListCancelButton.jsx:68 +#~ msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#~ msgstr "" + #: src/components/JobList/JobListCancelButton.jsx:57 -msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" -msgstr "" +#~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +#~ msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:92 -#: src/components/PaginatedTable/PaginatedTable.jsx:76 +#: components/PaginatedDataList/PaginatedDataList.jsx:92 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:96 -msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" -msgstr "" +#~ msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" +#~ msgstr "" diff --git a/awx/ui_next/src/locales/ja/messages.po b/awx/ui_next/src/locales/ja/messages.po index fdc11c00ad..5e97ddc6cb 100644 --- a/awx/ui_next/src/locales/ja/messages.po +++ b/awx/ui_next/src/locales/ja/messages.po @@ -17,103 +17,103 @@ msgstr "" #~ msgid "404" #~ msgstr "" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 msgid "(Limited to first 10)" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:147 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:90 +#: components/TemplateList/TemplateListItem.jsx:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:91 msgid "(Prompt on launch)" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:244 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:58 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:59 msgid "- Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:63 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:64 msgid "- Enable Webhooks" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 msgid "/ (project root)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:26 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: src/components/PromptDetail/PromptDetail.jsx:95 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:31 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:40 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocCommands.jsx:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/PromptDetail/PromptDetail.jsx:95 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 +#: screens/Template/shared/JobTemplateForm.jsx:180 msgid "0 (Normal)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:98 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:81 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 msgid "0 (Warning)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:99 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 msgid "1 (Info)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:27 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: src/components/PromptDetail/PromptDetail.jsx:96 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:41 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:101 -#: src/screens/Template/shared/JobTemplateForm.jsx:174 +#: components/AdHocCommands/AdHocCommands.jsx:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 +#: components/PromptDetail/PromptDetail.jsx:96 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 +#: screens/Template/shared/JobTemplateForm.jsx:181 msgid "1 (Verbose)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:100 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 msgid "2 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:28 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: src/components/PromptDetail/PromptDetail.jsx:97 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:102 -#: src/screens/Template/shared/JobTemplateForm.jsx:175 +#: components/AdHocCommands/AdHocCommands.jsx:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 +#: components/PromptDetail/PromptDetail.jsx:97 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 +#: screens/Template/shared/JobTemplateForm.jsx:182 msgid "2 (More Verbose)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:29 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 -#: src/components/PromptDetail/PromptDetail.jsx:98 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:103 -#: src/screens/Template/shared/JobTemplateForm.jsx:176 +#: components/AdHocCommands/AdHocCommands.jsx:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 +#: components/PromptDetail/PromptDetail.jsx:98 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:183 msgid "3 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:30 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 -#: src/components/PromptDetail/PromptDetail.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:177 +#: components/AdHocCommands/AdHocCommands.jsx:30 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 +#: components/PromptDetail/PromptDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 +#: screens/Template/shared/JobTemplateForm.jsx:184 msgid "4 (Connection Debug)" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:105 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 msgid "5 (WinRM Debug)" msgstr "" @@ -125,19 +125,31 @@ msgstr "" #~ msgid "> edit" #~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 -msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +msgid "" +"A refspec to fetch (passed to the Ansible git\n" +"module). This parameter allows access to references via\n" +"the branch field not otherwise available." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#~ msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281 +msgid "ALL" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 msgid "API Service/Integration Key" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 msgid "API Token" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 msgid "API service/integration key" msgstr "" @@ -145,7 +157,7 @@ msgstr "" #~ msgid "AWX Logo" #~ msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:129 +#: components/AppContainer/PageHeaderToolbar.jsx:129 msgid "About" msgstr "" @@ -153,206 +165,209 @@ msgstr "" #~ msgid "AboutModal Logo" #~ msgstr "" -#: src/routeConfig.js:92 -#: src/screens/ActivityStream/ActivityStream.jsx:176 -#: src/screens/Credential/Credential.jsx:60 -#: src/screens/Credential/Credentials.jsx:29 -#: src/screens/Inventory/Inventories.jsx:58 -#: src/screens/Inventory/Inventory.jsx:63 -#: src/screens/Inventory/SmartInventory.jsx:70 -#: src/screens/Organization/Organization.jsx:123 -#: src/screens/Organization/Organizations.jsx:32 -#: src/screens/Project/Project.jsx:106 -#: src/screens/Project/Projects.jsx:30 -#: src/screens/Team/Team.jsx:56 -#: src/screens/Team/Teams.jsx:31 -#: src/screens/Template/Template.jsx:132 -#: src/screens/Template/Templates.jsx:46 -#: src/screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:93 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Credential/Credential.jsx:60 +#: screens/Credential/Credentials.jsx:29 +#: screens/Inventory/Inventories.jsx:58 +#: screens/Inventory/Inventory.jsx:63 +#: screens/Inventory/SmartInventory.jsx:70 +#: screens/Organization/Organization.jsx:124 +#: screens/Organization/Organizations.jsx:32 +#: screens/Project/Project.jsx:106 +#: screens/Project/Projects.jsx:30 +#: screens/Team/Team.jsx:56 +#: screens/Team/Teams.jsx:31 +#: screens/Template/Template.jsx:145 +#: screens/Template/Templates.jsx:46 +#: screens/Template/WorkflowJobTemplate.jsx:122 msgid "Access" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:71 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:79 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 msgid "Account SID" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 msgid "Account token" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:52 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 msgid "Action" msgstr "" -#: src/components/JobList/JobList.jsx:245 -#: src/components/JobList/JobListItem.jsx:80 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:176 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:112 -#: src/components/TemplateList/TemplateList.jsx:222 -#: src/components/TemplateList/TemplateListItem.jsx:131 -#: src/screens/ActivityStream/ActivityStream.jsx:253 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:47 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: src/screens/Credential/CredentialList/CredentialList.jsx:153 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:172 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 -#: src/screens/Host/HostList/HostList.jsx:170 -#: src/screens/Host/HostList/HostListItem.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:233 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:198 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:112 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:183 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:157 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:44 -#: src/screens/Project/ProjectList/ProjectList.jsx:173 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:125 -#: src/screens/Team/TeamList/TeamList.jsx:156 -#: src/screens/Team/TeamList/TeamListItem.jsx:54 -#: src/screens/User/UserList/UserList.jsx:172 -#: src/screens/User/UserList/UserListItem.jsx:79 +#: components/JobList/JobList.jsx:223 +#: components/JobList/JobListItem.jsx:80 +#: components/Schedule/ScheduleList/ScheduleList.jsx:176 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112 +#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateListItem.jsx:156 +#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStreamListItem.jsx:49 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 +#: screens/Credential/CredentialList/CredentialList.jsx:145 +#: screens/Credential/CredentialList/CredentialListItem.jsx:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:78 +#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostListItem.jsx:48 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 +#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/Organization/OrganizationList/OrganizationList.jsx:161 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 +#: screens/Project/ProjectList/ProjectList.jsx:178 +#: screens/Project/ProjectList/ProjectListItem.jsx:152 +#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/User/UserList/UserList.jsx:172 +#: screens/User/UserList/UserListItem.jsx:79 msgid "Actions" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: src/components/TemplateList/TemplateListItem.jsx:201 -#: src/screens/Host/HostDetail/HostDetail.jsx:77 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:87 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 +#: components/TemplateList/TemplateListItem.jsx:229 +#: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 msgid "Activity" msgstr "" -#: src/routeConfig.js:49 -#: src/screens/ActivityStream/ActivityStream.jsx:119 -#: src/screens/Setting/Settings.jsx:44 +#: routeConfig.js:50 +#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "" -#: src/screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.jsx:114 msgid "Activity Stream settings" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:122 msgid "Activity Stream type selector" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 msgid "Actor" msgstr "" -#: src/components/AddDropDownButton/AddDropDownButton.jsx:39 -#: src/components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:160 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:164 +#: components/AddDropDownButton/AddDropDownButton.jsx:39 +#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 msgid "Add Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:66 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 msgid "Add Node" msgstr "" -#: src/screens/Template/Templates.jsx:50 +#: screens/Template/Templates.jsx:50 msgid "Add Question" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:174 +#: components/AddRole/AddResourceRole.jsx:185 msgid "Add Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:171 +#: components/AddRole/AddResourceRole.jsx:182 msgid "Add Team Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:168 +#: components/AddRole/AddResourceRole.jsx:179 msgid "Add User Roles" msgstr "" -#: src/components/Workflow/WorkflowStartNode.jsx:57 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:189 +#: components/Workflow/WorkflowStartNode.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:195 msgid "Add a new node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 msgid "Add a new node between these two nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 msgid "Add container group" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 msgid "Add existing group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 msgid "Add existing host" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 msgid "Add instance group" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:129 +#: screens/Inventory/InventoryList/InventoryList.jsx:135 msgid "Add inventory" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:141 msgid "Add job template" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 msgid "Add new group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 msgid "Add new host" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 msgid "Add resource type" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:130 +#: screens/Inventory/InventoryList/InventoryList.jsx:136 msgid "Add smart inventory" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:171 msgid "Add team permissions" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:182 +#: screens/User/UserRoles/UserRolesList.jsx:182 msgid "Add user permissions" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:142 msgid "Add workflow template" msgstr "" #: src/screens/ActivityStream/ActivityStream.jsx:187 -msgid "Adminisration" -msgstr "" +#~ msgid "Adminisration" +#~ msgstr "" -#: src/routeConfig.js:113 +#: routeConfig.js:114 +#: screens/ActivityStream/ActivityStream.jsx:187 msgid "Administration" msgstr "" @@ -360,70 +375,87 @@ msgstr "" #~ msgid "Admins" #~ msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:86 +#: components/DataListToolbar/DataListToolbar.jsx:86 +#: screens/Job/JobOutput/JobOutput.jsx:671 msgid "Advanced" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.jsx:246 msgid "Advanced search value input" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203 +msgid "" +"After every project update where the SCM revision\n" +"changes, refresh the inventory from the selected source\n" +"before executing job tasks. This is intended for static content,\n" +"like the Ansible inventory .ini file format." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177 -msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." -msgstr "" +#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." +#~ msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:520 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 msgid "After number of occurrences" msgstr "" -#: src/components/AlertModal/AlertModal.jsx:77 +#: components/AlertModal/AlertModal.jsx:77 msgid "Alert modal" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:39 +#: components/LaunchButton/ReLaunchDropDown.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:244 msgid "All" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:226 +#: screens/Dashboard/Dashboard.jsx:226 msgid "All job types" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:45 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:46 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:74 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 msgid "Allow Branch Override" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:60 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 msgid "Allow Provisioning Callbacks" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 -msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +msgid "" +"Allow changing the Source Control branch or revision in a job\n" +"template that uses this project." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:119 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#~ msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:119 msgid "Allowed URIs list, space separated" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:126 -#: src/components/Workflow/WorkflowLinkHelp.jsx:24 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 +#: components/Workflow/WorkflowLegend.jsx:126 +#: components/Workflow/WorkflowLinkHelp.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 msgid "Always" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 msgid "Amazon EC2" msgstr "" -#: src/components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.jsx:12 msgid "An error occurred" msgstr "" -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:34 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 msgid "An inventory must be selected" msgstr "" @@ -434,73 +466,78 @@ msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:82 #: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128 #: src/screens/Project/shared/ProjectForm.jsx:274 -msgid "Ansible Environment" -msgstr "" +#~ msgid "Ansible Environment" +#~ msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Ansible Tower" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 msgid "Ansible Tower Documentation." msgstr "" #: src/components/About/About.jsx:58 -msgid "Ansible Version" -msgstr "" +#~ msgid "Ansible Version" +#~ msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204 -msgid "Ansible environment" -msgstr "" +#~ msgid "Ansible environment" +#~ msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:33 +#: screens/Template/Survey/SurveyQuestionForm.jsx:33 msgid "Answer type" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:130 +#: screens/Template/Survey/SurveyQuestionForm.jsx:130 msgid "Answer variable name" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:65 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: src/screens/User/shared/UserTokenForm.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:241 +msgid "Any" +msgstr "" + +#: components/Lookup/ApplicationLookup.jsx:65 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:52 +#: screens/User/shared/UserTokenForm.jsx:44 msgid "Application" msgstr "" -#: src/screens/User/Users.jsx:38 +#: screens/User/Users.jsx:38 msgid "Application Name" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:42 +#: screens/User/UserTokenList/UserTokenListItem.jsx:42 msgid "Application access token" msgstr "" -#: src/screens/Application/Applications.jsx:67 -#: src/screens/Application/Applications.jsx:70 +#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.jsx:70 msgid "Application information" msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:111 -#: src/screens/User/UserTokenList/UserTokenList.jsx:122 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.jsx:111 +#: screens/User/UserTokenList/UserTokenList.jsx:122 +#: screens/User/UserTokenList/UserTokenListItem.jsx:47 msgid "Application name" msgstr "" -#: src/screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.jsx:93 msgid "Application not found." msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:74 -#: src/routeConfig.js:137 -#: src/screens/Application/Applications.jsx:25 -#: src/screens/Application/Applications.jsx:35 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: components/Lookup/ApplicationLookup.jsx:74 +#: routeConfig.js:138 +#: screens/Application/Applications.jsx:25 +#: screens/Application/Applications.jsx:35 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: util/getRelatedResourceDeleteDetails.js:233 msgid "Applications" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:204 +#: screens/ActivityStream/ActivityStream.jsx:204 msgid "Applications & Tokens" msgstr "" @@ -508,105 +545,106 @@ msgstr "" #~ msgid "Apply roles" #~ msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:40 -#: src/components/NotificationList/NotificationListItem.jsx:41 -#: src/components/Workflow/WorkflowLegend.jsx:110 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:55 +#: components/NotificationList/NotificationListItem.jsx:40 +#: components/NotificationList/NotificationListItem.jsx:41 +#: components/Workflow/WorkflowLegend.jsx:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:83 msgid "Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:190 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:195 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:59 msgid "Approve" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 msgid "Approved" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 msgid "Approved by {0} - {1}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 msgid "April" msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116 -msgid "Are you sure you want to delete the {0} below?" -msgstr "" +#~ msgid "Are you sure you want to delete the {0} below?" +#~ msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:53 +#: components/DeleteButton/DeleteButton.jsx:127 msgid "Are you sure you want to delete:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:41 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 msgid "Are you sure you want to remove the node below:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 msgid "Are you sure you want to remove this link?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:51 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 msgid "Are you sure you want to remove this node?" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:53 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:64 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobDetail/JobDetail.jsx:461 +#: screens/Job/JobOutput/JobOutput.jsx:812 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:108 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:110 +#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.jsx:110 msgid "Arguments" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:347 +#: screens/Job/JobDetail/JobDetail.jsx:378 msgid "Artifacts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: src/screens/User/UserTeams/UserTeamList.jsx:204 +#: screens/InstanceGroup/Instances/InstanceList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:204 msgid "Associate" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 msgid "Associate role error" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:99 +#: components/AssociateModal/AssociateModal.jsx:99 msgid "Association modal" msgstr "" -#: src/components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 msgid "August" msgstr "" -#: src/screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.jsx:55 msgid "Authentication" msgstr "" @@ -614,270 +652,310 @@ msgstr "" #~ msgid "Authentication Settings" #~ msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:92 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:86 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 -#: src/screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:89 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:89 msgid "Auto" msgstr "" -#: src/screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.jsx:47 msgid "Azure AD" msgstr "" -#: src/screens/Setting/SettingList.jsx:62 +#: screens/Setting/SettingList.jsx:62 msgid "Azure AD settings" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:111 -#: src/components/AddRole/AddResourceRole.jsx:275 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:111 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:120 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:139 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:142 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:111 +#: components/AddRole/AddResourceRole.jsx:286 +#: components/LaunchPrompt/LaunchPrompt.jsx:118 +#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" msgstr "" -#: src/screens/Credential/Credential.jsx:52 +#: screens/Credential/Credential.jsx:52 msgid "Back to Credentials" msgstr "" -#: src/components/ContentError/ContentError.jsx:48 +#: components/ContentError/ContentError.jsx:48 msgid "Back to Dashboard." msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 msgid "Back to Groups" msgstr "" -#: src/screens/Host/Host.jsx:45 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.jsx:45 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 msgid "Back to Hosts" msgstr "" -#: src/screens/Inventory/Inventory.jsx:56 -#: src/screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.jsx:56 +#: screens/Inventory/SmartInventory.jsx:63 msgid "Back to Inventories" msgstr "" -#: src/screens/Job/Job.jsx:57 +#: screens/Job/Job.jsx:97 msgid "Back to Jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.jsx:76 msgid "Back to Notifications" msgstr "" -#: src/screens/Organization/Organization.jsx:116 +#: screens/Organization/Organization.jsx:117 msgid "Back to Organizations" msgstr "" -#: src/screens/Project/Project.jsx:99 +#: screens/Project/Project.jsx:99 msgid "Back to Projects" msgstr "" -#: src/components/Schedule/Schedule.jsx:60 +#: components/Schedule/Schedule.jsx:61 msgid "Back to Schedules" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:104 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:108 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 msgid "Back to Settings" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.jsx:81 msgid "Back to Sources" msgstr "" -#: src/screens/Team/Team.jsx:49 +#: screens/Team/Team.jsx:49 msgid "Back to Teams" msgstr "" -#: src/screens/Template/Template.jsx:125 -#: src/screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.jsx:138 +#: screens/Template/WorkflowJobTemplate.jsx:115 msgid "Back to Templates" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.jsx:47 msgid "Back to Tokens" msgstr "" -#: src/screens/User/User.jsx:57 +#: screens/User/User.jsx:57 msgid "Back to Users" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.jsx:69 msgid "Back to Workflow Approvals" msgstr "" -#: src/screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.jsx:71 msgid "Back to applications" msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.jsx:55 msgid "Back to credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:56 -#: src/screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +msgid "Back to execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:56 +#: screens/InstanceGroup/InstanceGroup.jsx:57 msgid "Back to instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.jsx:98 msgid "Back to management jobs" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 -msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +msgid "" +"Base path used for locating playbooks. Directories\n" +"found inside this path will be listed in the playbook directory drop-down.\n" +"Together the base path and selected playbook directory provide the full\n" +"path used to locate playbooks." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 msgid "Basic auth password" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 -msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +msgid "" +"Branch to checkout. In addition to branches,\n" +"you can input tags, commit hashes, and arbitrary refs. Some\n" +"commit hashes and refs may not be available unless you also\n" +"provide a custom refspec." msgstr "" -#: src/components/About/About.jsx:42 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#~ msgstr "" + +#: components/About/About.jsx:37 msgid "Brand Image" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: src/components/PromptDetail/PromptProjectDetail.jsx:88 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:124 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:104 +#: components/PromptDetail/PromptProjectDetail.jsx:94 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:126 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 msgid "Cache Timeout" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235 msgid "Cache timeout" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:194 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:237 msgid "Cache timeout (seconds)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:112 -#: src/components/AddRole/AddResourceRole.jsx:276 -#: src/components/AssociateModal/AssociateModal.jsx:113 -#: src/components/AssociateModal/AssociateModal.jsx:118 -#: src/components/DeleteButton/DeleteButton.jsx:46 -#: src/components/DeleteButton/DeleteButton.jsx:49 -#: src/components/DisassociateButton/DisassociateButton.jsx:122 -#: src/components/DisassociateButton/DisassociateButton.jsx:125 -#: src/components/FormActionGroup/FormActionGroup.jsx:22 -#: src/components/FormActionGroup/FormActionGroup.jsx:27 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:112 -#: src/components/Lookup/HostFilterLookup.jsx:322 -#: src/components/Lookup/Lookup.jsx:148 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:167 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:40 -#: src/components/Schedule/shared/ScheduleForm.jsx:564 -#: src/components/Schedule/shared/ScheduleForm.jsx:569 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:121 -#: src/screens/Credential/shared/CredentialForm.jsx:292 -#: src/screens/Credential/shared/CredentialForm.jsx:297 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:99 -#: src/screens/Credential/shared/ExternalTestModal.jsx:97 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 -#: src/screens/Setting/shared/RevertAllAlert.jsx:32 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:38 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:44 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:209 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:212 -#: src/screens/Template/Survey/SurveyList.jsx:117 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:29 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:37 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:43 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:38 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 -#: src/screens/User/UserRoles/UserRolesList.jsx:209 -#: src/screens/User/UserRoles/UserRolesList.jsx:212 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:112 +#: components/AddRole/AddResourceRole.jsx:287 +#: components/AssociateModal/AssociateModal.jsx:115 +#: components/AssociateModal/AssociateModal.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:123 +#: components/DisassociateButton/DisassociateButton.jsx:125 +#: components/DisassociateButton/DisassociateButton.jsx:128 +#: components/FormActionGroup/FormActionGroup.jsx:24 +#: components/FormActionGroup/FormActionGroup.jsx:29 +#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/Lookup/HostFilterLookup.jsx:329 +#: components/Lookup/Lookup.jsx:150 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46 +#: components/Schedule/shared/ScheduleForm.jsx:641 +#: components/Schedule/shared/ScheduleForm.jsx:646 +#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: screens/Credential/shared/CredentialForm.jsx:299 +#: screens/Credential/shared/CredentialForm.jsx:304 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:103 +#: screens/Credential/shared/ExternalTestModal.jsx:99 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:109 +#: screens/Job/JobDetail/JobDetail.jsx:411 +#: screens/Job/JobDetail/JobDetail.jsx:416 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 +#: screens/Setting/shared/RevertAllAlert.jsx:32 +#: screens/Setting/shared/RevertFormActionGroup.jsx:38 +#: screens/Setting/shared/RevertFormActionGroup.jsx:44 +#: screens/Team/TeamRoles/TeamRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.jsx:214 +#: screens/Template/Survey/SurveyList.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/User/UserRoles/UserRolesList.jsx:214 msgid "Cancel" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:675 -#: src/screens/Job/JobOutput/JobOutput.jsx:676 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:171 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:174 +#: screens/Job/JobDetail/JobDetail.jsx:436 +#: screens/Job/JobDetail/JobDetail.jsx:437 +#: screens/Job/JobOutput/JobOutput.jsx:787 +#: screens/Job/JobOutput/JobOutput.jsx:788 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:186 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:190 msgid "Cancel Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:683 -#: src/screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobDetail/JobDetail.jsx:444 +#: screens/Job/JobDetail/JobDetail.jsx:447 +#: screens/Job/JobOutput/JobOutput.jsx:795 +#: screens/Job/JobOutput/JobOutput.jsx:798 msgid "Cancel job" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 msgid "Cancel link changes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 msgid "Cancel link removal" msgstr "" -#: src/components/Lookup/Lookup.jsx:146 +#: components/Lookup/Lookup.jsx:148 msgid "Cancel lookup" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:26 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 msgid "Cancel node removal" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:28 +#: screens/Setting/shared/RevertAllAlert.jsx:29 msgid "Cancel revert" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:65 +#: components/JobList/JobListCancelButton.jsx:79 +msgid "Cancel selected job" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:80 +msgid "Cancel selected jobs" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:66 msgid "Cancel sync" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:58 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:58 msgid "Cancel sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:61 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:62 msgid "Cancel sync source" msgstr "" -#: src/components/JobList/JobList.jsx:228 -#: src/components/Workflow/WorkflowNodeHelp.jsx:95 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 +#: components/JobList/JobList.jsx:206 +#: components/Workflow/WorkflowNodeHelp.jsx:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 msgid "Canceled" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 -msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +msgid "" +"Cannot enable log aggregator without providing\n" +"logging aggregator host and logging aggregator type." msgstr "" +#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#~ msgstr "" + #: src/pages/Organizations/Organizations.jsx:77 #~ msgid "Cannot find organization with ID" #~ msgstr "" @@ -890,187 +968,201 @@ msgstr "" #~ msgid "Cannot find route {0}." #~ msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:232 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 msgid "Capacity" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:175 +#: components/Search/AdvancedSearch.jsx:176 msgid "Case-insensitive version of contains" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:195 +#: components/Search/AdvancedSearch.jsx:196 msgid "Case-insensitive version of endswith." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:165 +#: components/Search/AdvancedSearch.jsx:166 msgid "Case-insensitive version of exact." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:205 +#: components/Search/AdvancedSearch.jsx:206 msgid "Case-insensitive version of regex." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:185 +#: components/Search/AdvancedSearch.jsx:186 msgid "Case-insensitive version of startswith." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 -msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +msgid "" +"Change PROJECTS_ROOT when deploying\n" +"{brandName} to change this location." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#~ msgstr "" + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 msgid "Changed" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:55 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:56 msgid "Changes" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 msgid "Channel" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:168 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 +#: screens/Template/shared/JobTemplateForm.jsx:175 msgid "Check" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:232 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:238 +#: components/Search/AdvancedSearch.jsx:239 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 msgid "Choose a .json file" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 msgid "Choose a Notification Type" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 msgid "Choose a Playbook Directory" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:223 msgid "Choose a Source Control Type" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.jsx:102 msgid "Choose a Webhook Service" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 -#: src/screens/Template/shared/JobTemplateForm.jsx:161 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 +#: screens/Template/shared/JobTemplateForm.jsx:168 msgid "Choose a job type" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:88 +#: components/AdHocCommands/AdHocDetailsStep.jsx:88 msgid "Choose a module" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:130 +#: screens/Inventory/shared/InventorySourceForm.jsx:144 msgid "Choose a source" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 msgid "Choose an HTTP method" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 -msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#: screens/Template/Survey/SurveyQuestionForm.jsx:37 +msgid "" +"Choose an answer type or format you want as the prompt for the user.\n" +"Refer to the Ansible Tower Documentation for more additional\n" +"information about each option." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 +#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 msgid "Choose an email option" msgstr "" -#: src/components/AddRole/SelectRoleStep.jsx:23 +#: components/AddRole/SelectRoleStep.jsx:23 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "" -#: src/components/AddRole/SelectResourceStep.jsx:82 +#: components/AddRole/SelectResourceStep.jsx:82 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:185 +#: components/AddRole/AddResourceRole.jsx:196 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:37 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:64 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: components/PromptDetail/PromptProjectDetail.jsx:38 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 msgid "Clean" msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:65 +#: components/DataListToolbar/DataListToolbar.jsx:65 +#: screens/Job/JobOutput/JobOutput.jsx:715 msgid "Clear all filters" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 msgid "Click the Edit button below to reconfigure the node." msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:73 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:147 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:153 msgid "Click to create a new link to this node." msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.jsx:168 msgid "Click to view job details" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 -#: src/screens/Application/Applications.jsx:89 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 +#: screens/Application/Applications.jsx:89 msgid "Client ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 msgid "Client Identifier" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 msgid "Client identifier" msgstr "" -#: src/screens/Application/Applications.jsx:102 +#: screens/Application/Applications.jsx:102 msgid "Client secret" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 -#: src/screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 +#: screens/Application/shared/ApplicationForm.jsx:128 msgid "Client type" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:106 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:171 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:173 msgid "Close" msgstr "" -#: src/components/CredentialChip/CredentialChip.jsx:12 +#: components/CredentialChip/CredentialChip.jsx:12 msgid "Cloud" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:40 +#: components/ExpandCollapse/ExpandCollapse.jsx:41 msgid "Collapse" msgstr "" -#: src/components/JobList/JobList.jsx:208 -#: src/components/JobList/JobListItem.jsx:34 -#: src/screens/Job/JobDetail/JobDetail.jsx:80 -#: src/screens/Job/JobOutput/HostEventModal.jsx:137 +#: components/JobList/JobList.jsx:186 +#: components/JobList/JobListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:99 +#: screens/Job/JobOutput/HostEventModal.jsx:137 msgid "Command" msgstr "" @@ -1081,117 +1173,148 @@ msgstr "" #: src/screens/Template/Template.jsx:151 #: src/screens/Template/Templates.jsx:48 #: src/screens/Template/WorkflowJobTemplate.jsx:145 -msgid "Completed Jobs" -msgstr "" +#~ msgid "Completed Jobs" +#~ msgstr "" #: src/screens/Inventory/Inventories.jsx:59 #: src/screens/Inventory/Inventories.jsx:73 #: src/screens/Inventory/SmartInventory.jsx:73 -msgid "Completed jobs" -msgstr "" +#~ msgid "Completed jobs" +#~ msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:550 +#: screens/Template/shared/JobTemplateForm.jsx:580 msgid "Concurrent Jobs" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:97 +#: components/DeleteButton/DeleteButton.jsx:107 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:95 msgid "Confirm Delete" msgstr "" -#: src/screens/User/shared/UserForm.jsx:96 +#: screens/User/shared/UserForm.jsx:96 msgid "Confirm Password" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:34 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:35 msgid "Confirm delete" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.jsx:202 msgid "Confirm disassociate" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 msgid "Confirm link removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 msgid "Confirm node removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 msgid "Confirm removal of all nodes" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:19 +#: screens/Setting/shared/RevertAllAlert.jsx:20 msgid "Confirm revert all" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:234 +#: screens/Job/JobDetail/JobDetail.jsx:265 msgid "Container Group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 msgid "Container group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.jsx:81 msgid "Container group not found." msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:106 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:115 +#: components/LaunchPrompt/LaunchPrompt.jsx:113 +#: components/Schedule/shared/SchedulePromptableFields.jsx:117 msgid "Content Loading" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:234 msgid "Continue" msgstr "" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +msgid "" +"Control the level of output Ansible\n" +"will produce for inventory source update jobs." +msgstr "" + #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92 -msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 +msgid "" +"Control the level of output ansible\n" +"will produce as the playbook executes." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:444 +msgid "" +"Control the level of output ansible will\n" +"produce as the playbook executes." msgstr "" #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 #: src/screens/Template/shared/JobTemplateForm.jsx:414 -msgid "Control the level of output ansible will produce as the playbook executes." -msgstr "" +#~ msgid "Control the level of output ansible will produce as the playbook executes." +#~ msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:61 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 msgid "Controller" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:205 +msgid "Convergence" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:236 +msgid "Convergence select" +msgstr "" + +#: components/CopyButton/CopyButton.jsx:41 msgid "Copy" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:76 +#: screens/Credential/CredentialList/CredentialListItem.jsx:77 msgid "Copy Credential" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:46 +#: components/CopyButton/CopyButton.jsx:48 msgid "Copy Error" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:95 +msgid "Copy Execution Environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:135 msgid "Copy Inventory" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:147 msgid "Copy Notification Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:147 +#: screens/Project/ProjectList/ProjectListItem.jsx:175 msgid "Copy Project" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.jsx:209 msgid "Copy Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:121 +#: screens/Project/ProjectList/ProjectListItem.jsx:147 msgid "Copy full revision to clipboard." msgstr "" @@ -1199,503 +1322,568 @@ msgstr "" #~ msgid "Copyright 2018 Red Hat, Inc." #~ msgstr "" -#: src/components/About/About.jsx:40 +#: components/About/About.jsx:35 msgid "Copyright 2019 Red Hat, Inc." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:353 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/JobTemplateForm.jsx:383 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:223 msgid "Create" msgstr "" -#: src/screens/Application/Applications.jsx:26 -#: src/screens/Application/Applications.jsx:36 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:24 +msgid "Create Execution environments" +msgstr "" + +#: screens/Application/Applications.jsx:26 +#: screens/Application/Applications.jsx:36 msgid "Create New Application" msgstr "" -#: src/screens/Credential/Credentials.jsx:14 -#: src/screens/Credential/Credentials.jsx:25 +#: screens/Credential/Credentials.jsx:14 +#: screens/Credential/Credentials.jsx:25 msgid "Create New Credential" msgstr "" -#: src/screens/Host/Hosts.jsx:16 -#: src/screens/Host/Hosts.jsx:26 +#: screens/Host/Hosts.jsx:16 +#: screens/Host/Hosts.jsx:26 msgid "Create New Host" msgstr "" -#: src/screens/Template/Templates.jsx:17 +#: screens/Template/Templates.jsx:17 msgid "Create New Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:23 +#: screens/NotificationTemplate/NotificationTemplates.jsx:14 +#: screens/NotificationTemplate/NotificationTemplates.jsx:23 msgid "Create New Notification Template" msgstr "" -#: src/screens/Organization/Organizations.jsx:17 -#: src/screens/Organization/Organizations.jsx:28 +#: screens/Organization/Organizations.jsx:17 +#: screens/Organization/Organizations.jsx:28 msgid "Create New Organization" msgstr "" -#: src/screens/Project/Projects.jsx:15 -#: src/screens/Project/Projects.jsx:26 +#: screens/Project/Projects.jsx:15 +#: screens/Project/Projects.jsx:26 msgid "Create New Project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:114 -#: src/screens/ManagementJob/ManagementJobs.jsx:26 -#: src/screens/Project/Projects.jsx:35 -#: src/screens/Template/Templates.jsx:53 +#: screens/Inventory/Inventories.jsx:112 +#: screens/ManagementJob/ManagementJobs.jsx:26 +#: screens/Project/Projects.jsx:35 +#: screens/Template/Templates.jsx:53 msgid "Create New Schedule" msgstr "" -#: src/screens/Team/Teams.jsx:15 -#: src/screens/Team/Teams.jsx:26 +#: screens/Team/Teams.jsx:15 +#: screens/Team/Teams.jsx:26 msgid "Create New Team" msgstr "" -#: src/screens/User/Users.jsx:16 -#: src/screens/User/Users.jsx:28 +#: screens/User/Users.jsx:16 +#: screens/User/Users.jsx:28 msgid "Create New User" msgstr "" -#: src/screens/Template/Templates.jsx:19 +#: screens/Template/Templates.jsx:19 msgid "Create New Workflow Template" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.jsx:29 msgid "Create a new Smart Inventory with the applied filter" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:18 -#: src/screens/InstanceGroup/InstanceGroups.jsx:30 +#: screens/InstanceGroup/InstanceGroups.jsx:18 +#: screens/InstanceGroup/InstanceGroups.jsx:30 msgid "Create container group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:17 -#: src/screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.jsx:17 +#: screens/InstanceGroup/InstanceGroups.jsx:28 msgid "Create instance group" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:24 +#: screens/CredentialType/CredentialTypes.jsx:24 msgid "Create new credential Type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.jsx:14 msgid "Create new credential type" msgstr "" -#: src/screens/Inventory/Inventories.jsx:79 -#: src/screens/Inventory/Inventories.jsx:97 +#: screens/Inventory/Inventories.jsx:77 +#: screens/Inventory/Inventories.jsx:95 msgid "Create new group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:64 -#: src/screens/Inventory/Inventories.jsx:91 +#: screens/Inventory/Inventories.jsx:64 +#: screens/Inventory/Inventories.jsx:89 msgid "Create new host" msgstr "" -#: src/screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.jsx:17 msgid "Create new inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.jsx:18 msgid "Create new smart inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:101 +#: screens/Inventory/Inventories.jsx:99 msgid "Create new source" msgstr "" -#: src/screens/User/Users.jsx:36 +#: screens/User/Users.jsx:36 msgid "Create user token" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:93 -#: src/components/Lookup/HostFilterLookup.jsx:349 -#: src/components/PromptDetail/PromptDetail.jsx:133 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:57 -#: src/screens/Host/HostDetail/HostDetail.jsx:93 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:63 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:114 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:324 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:141 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:47 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:271 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: src/screens/User/UserDetail/UserDetail.jsx:82 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: src/screens/User/UserTokenList/UserTokenList.jsx:134 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/HostFilterLookup.jsx:356 +#: components/PromptDetail/PromptDetail.jsx:133 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 +#: screens/Host/HostDetail/HostDetail.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:117 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:355 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:145 +#: screens/Team/TeamDetail/TeamDetail.jsx:47 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:183 +#: screens/User/UserDetail/UserDetail.jsx:82 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 +#: screens/User/UserTokenList/UserTokenList.jsx:134 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 msgid "Created" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:96 -#: src/components/AddRole/AddResourceRole.jsx:148 -#: src/components/AssociateModal/AssociateModal.jsx:142 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:82 -#: src/components/Lookup/CredentialLookup.jsx:153 -#: src/components/Lookup/InventoryLookup.jsx:114 -#: src/components/Lookup/InventoryLookup.jsx:167 -#: src/components/Lookup/MultiCredentialsLookup.jsx:181 -#: src/components/Lookup/OrganizationLookup.jsx:109 -#: src/components/Lookup/ProjectLookup.jsx:129 -#: src/components/NotificationList/NotificationList.jsx:206 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: src/components/TemplateList/TemplateList.jsx:205 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 -#: src/screens/Credential/CredentialList/CredentialList.jsx:141 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:163 -#: src/screens/Host/HostList/HostList.jsx:156 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:176 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:142 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: src/screens/Project/ProjectList/ProjectList.jsx:161 -#: src/screens/Team/TeamList/TeamList.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: components/AdHocCommands/AdHocCredentialStep.jsx:96 +#: components/AddRole/AddResourceRole.jsx:159 +#: components/AssociateModal/AssociateModal.jsx:144 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:179 +#: components/LaunchPrompt/steps/InventoryStep.jsx:91 +#: components/Lookup/CredentialLookup.jsx:153 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:167 +#: components/Lookup/MultiCredentialsLookup.jsx:181 +#: components/Lookup/OrganizationLookup.jsx:111 +#: components/Lookup/ProjectLookup.jsx:129 +#: components/NotificationList/NotificationList.jsx:206 +#: components/Schedule/ScheduleList/ScheduleList.jsx:201 +#: components/TemplateList/TemplateList.jsx:210 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: 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:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 +#: screens/Inventory/InventoryList/InventoryList.jsx:182 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 +#: screens/Organization/OrganizationList/OrganizationList.jsx:146 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 +#: screens/Project/ProjectList/ProjectList.jsx:166 +#: 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:105 msgid "Created By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:146 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:109 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:53 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:110 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: util/getRelatedResourceDeleteDetails.js:191 msgid "Credential" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:96 +#: util/getRelatedResourceDeleteDetails.js:81 +msgid "Credential Input Sources" +msgstr "" + +#: components/Lookup/InstanceGroupsLookup.jsx:96 msgid "Credential Name" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:214 -#: src/screens/Credential/shared/CredentialForm.jsx:148 -#: src/screens/Credential/shared/CredentialForm.jsx:152 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:229 +#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:152 msgid "Credential Type" msgstr "" -#: src/routeConfig.js:117 -#: src/screens/ActivityStream/ActivityStream.jsx:189 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:118 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:164 -#: src/screens/CredentialType/CredentialTypes.jsx:13 -#: src/screens/CredentialType/CredentialTypes.jsx:23 +#: routeConfig.js:118 +#: screens/ActivityStream/ActivityStream.jsx:189 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/CredentialType/CredentialTypes.jsx:13 +#: screens/CredentialType/CredentialTypes.jsx:23 msgid "Credential Types" msgstr "" -#: src/screens/Credential/Credential.jsx:79 +#: screens/Credential/Credential.jsx:79 msgid "Credential not found." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 msgid "Credential passwords" msgstr "" #: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60 -msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgstr "" + +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:75 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:136 +msgid "Credential to authenticate with a protected container registry." +msgstr "" + +#: screens/CredentialType/CredentialType.jsx:75 msgid "Credential type not found." msgstr "" -#: src/components/JobList/JobListItem.jsx:123 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:162 -#: src/components/LaunchPrompt/steps/useCredentialsStep.jsx:31 -#: src/components/Lookup/MultiCredentialsLookup.jsx:126 -#: src/components/Lookup/MultiCredentialsLookup.jsx:198 -#: src/components/PromptDetail/PromptDetail.jsx:163 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:178 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 -#: src/components/TemplateList/TemplateListItem.jsx:207 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: src/routeConfig.js:70 -#: src/screens/ActivityStream/ActivityStream.jsx:164 -#: src/screens/Credential/CredentialList/CredentialList.jsx:182 -#: src/screens/Credential/Credentials.jsx:13 -#: src/screens/Credential/Credentials.jsx:24 -#: src/screens/Job/JobDetail/JobDetail.jsx:262 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:283 -#: src/screens/Template/shared/JobTemplateForm.jsx:321 +#: components/JobList/JobListItem.jsx:124 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:196 +#: components/LaunchPrompt/steps/useCredentialsStep.jsx:65 +#: components/Lookup/MultiCredentialsLookup.jsx:126 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/PromptDetail/PromptDetail.jsx:163 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:184 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 +#: components/TemplateList/TemplateListItem.jsx:235 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 +#: routeConfig.js:71 +#: screens/ActivityStream/ActivityStream.jsx:164 +#: screens/Credential/CredentialList/CredentialList.jsx:176 +#: screens/Credential/Credentials.jsx:13 +#: screens/Credential/Credentials.jsx:24 +#: screens/Job/JobDetail/JobDetail.jsx:293 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293 +#: screens/Template/shared/JobTemplateForm.jsx:351 +#: util/getRelatedResourceDeleteDetails.js:98 msgid "Credentials" msgstr "" -#: src/components/Pagination/Pagination.jsx:36 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:58 +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:34 msgid "Current page" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:88 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:86 msgid "Custom pod spec" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 +#: components/TemplateList/TemplateListItem.jsx:145 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93 +#: screens/Project/ProjectList/ProjectListItem.jsx:109 +msgid "Custom virtual environment {0} must be replaced by an execution environment." +msgstr "" + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:54 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 msgid "Customize messages…" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:72 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:73 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:70 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:71 msgid "Customize pod specification" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:125 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:314 msgid "DELETED" msgstr "" -#: src/routeConfig.js:34 -#: src/screens/Dashboard/Dashboard.jsx:122 +#: routeConfig.js:35 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Dashboard" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:144 +#: screens/ActivityStream/ActivityStream.jsx:144 msgid "Dashboard (all activity)" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 msgid "Data retention period" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:353 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:457 -#: src/components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/ScheduleForm.jsx:165 msgid "Day" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 -#: src/components/Schedule/shared/ScheduleForm.jsx:176 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 +#: components/Schedule/shared/ScheduleForm.jsx:176 msgid "Days of Data to Keep" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: screens/Job/JobOutput/JobOutput.jsx:663 +msgid "Debug" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 msgid "December" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: src/screens/Template/Survey/SurveyListItem.jsx:119 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 +#: screens/Template/Survey/SurveyListItem.jsx:121 msgid "Default" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:193 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:201 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:208 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:234 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +msgid "Default Execution Environment" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.jsx:201 +#: screens/Template/Survey/SurveyQuestionForm.jsx:208 +#: screens/Template/Survey/SurveyQuestionForm.jsx:234 msgid "Default answer" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:85 +#: screens/Template/Survey/SurveyQuestionForm.jsx:85 msgid "Default choice must be answered from the choices listed." msgstr "" -#: src/screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.jsx:106 msgid "Define system-level features and functions" msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:22 -#: src/components/DeleteButton/DeleteButton.jsx:26 -#: src/components/DeleteButton/DeleteButton.jsx:37 -#: src/components/DeleteButton/DeleteButton.jsx:41 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:108 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:130 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:137 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:141 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:159 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:37 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:410 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:130 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:261 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:129 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:168 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:70 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:73 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:82 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:103 -#: src/screens/Job/JobDetail/JobDetail.jsx:374 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:368 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:158 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:171 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:72 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:393 -#: src/screens/Template/Survey/SurveyList.jsx:106 -#: src/screens/Template/Survey/SurveyToolbar.jsx:72 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 -#: src/screens/User/UserDetail/UserDetail.jsx:103 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:216 +#: components/DeleteButton/DeleteButton.jsx:76 +#: components/DeleteButton/DeleteButton.jsx:81 +#: components/DeleteButton/DeleteButton.jsx:90 +#: components/DeleteButton/DeleteButton.jsx:94 +#: components/DeleteButton/DeleteButton.jsx:114 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:287 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:140 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:74 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:101 +#: screens/Job/JobDetail/JobDetail.jsx:427 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:369 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:180 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Team/TeamDetail/TeamDetail.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:414 +#: screens/Template/Survey/SurveyList.jsx:107 +#: screens/Template/Survey/SurveyToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:254 +#: screens/User/UserDetail/UserDetail.jsx:104 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 msgid "Delete" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:129 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:128 msgid "Delete All Groups and Hosts" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:257 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:279 msgid "Delete Credential" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 -msgid "Delete Group?" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131 +msgid "Delete Execution Environment" msgstr "" +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 +#~ msgid "Delete Group?" +#~ msgstr "" + #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91 -msgid "Delete Groups?" -msgstr "" +#~ msgid "Delete Groups?" +#~ msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:122 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:112 +#: screens/Host/HostDetail/HostDetail.jsx:123 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113 msgid "Delete Host" msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 msgid "Delete Inventory" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:371 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:186 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:189 +#: screens/Job/JobDetail/JobDetail.jsx:423 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:201 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:205 msgid "Delete Job" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 msgid "Delete Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:364 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:365 msgid "Delete Notification" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:154 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 msgid "Delete Organization" msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:172 msgid "Delete Project" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Delete Schedule" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:68 +#: screens/Team/TeamDetail/TeamDetail.jsx:69 msgid "Delete Team" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:99 +#: screens/User/UserDetail/UserDetail.jsx:100 msgid "Delete User" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 msgid "Delete User Token" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:212 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 msgid "Delete Workflow Approval" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:246 msgid "Delete Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 msgid "Delete all nodes" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 msgid "Delete application" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:82 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 msgid "Delete credential type" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:232 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:244 msgid "Delete error" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:100 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:141 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 msgid "Delete instance group" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288 msgid "Delete inventory source" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:39 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: components/PromptDetail/PromptProjectDetail.jsx:40 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:68 msgid "Delete on Update" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:164 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 msgid "Delete smart inventory" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 -msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +msgid "" +"Delete the local repository in its entirety prior to\n" +"performing an update. Depending on the size of the\n" +"repository this may significantly increase the amount\n" +"of time required to complete an update." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 msgid "Delete this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:227 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:233 msgid "Delete this node" msgstr "" @@ -1707,1822 +1895,2150 @@ msgstr "" #~ msgid "Delete {itemName}" #~ msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:113 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162 msgid "Delete {pluralizedItemName}?" msgstr "" -#: src/components/DetailList/DeletedDetail.jsx:15 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 +#: components/DetailList/DeletedDetail.jsx:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 msgid "Deleted" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:259 -#: src/screens/Credential/CredentialList/CredentialList.jsx:190 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:245 -#: src/screens/Project/ProjectList/ProjectList.jsx:223 +#: components/TemplateList/TemplateList.jsx:269 +#: screens/Credential/CredentialList/CredentialList.jsx:189 +#: screens/Inventory/InventoryList/InventoryList.jsx:255 +#: screens/Project/ProjectList/ProjectList.jsx:233 msgid "Deletion Error" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:195 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:252 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259 msgid "Deletion error" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 msgid "Denied" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 msgid "Denied by {0} - {1}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:198 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:203 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:59 msgid "Deny" msgstr "" -#: src/components/HostForm/HostForm.jsx:95 -#: src/components/Lookup/ApplicationLookup.jsx:83 -#: src/components/Lookup/ApplicationLookup.jsx:101 -#: src/components/NotificationList/NotificationList.jsx:186 -#: src/components/PromptDetail/PromptDetail.jsx:110 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: src/components/Schedule/shared/ScheduleForm.jsx:110 -#: src/components/TemplateList/TemplateList.jsx:189 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:126 -#: src/screens/Application/shared/ApplicationForm.jsx:62 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:198 -#: src/screens/Credential/CredentialList/CredentialList.jsx:137 -#: src/screens/Credential/shared/CredentialForm.jsx:126 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:45 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:128 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: src/screens/Host/HostDetail/HostDetail.jsx:81 -#: src/screens/Host/HostList/HostList.jsx:152 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:73 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:172 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:191 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: src/screens/Inventory/shared/InventoryForm.jsx:55 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:49 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:110 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:61 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:126 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:89 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:138 -#: src/screens/Organization/shared/OrganizationForm.jsx:60 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:86 -#: src/screens/Project/ProjectList/ProjectList.jsx:138 -#: src/screens/Project/shared/ProjectForm.jsx:168 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:38 -#: src/screens/Team/TeamList/TeamList.jsx:134 -#: src/screens/Team/shared/TeamForm.jsx:43 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:168 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:124 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:109 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:133 -#: src/screens/Template/shared/JobTemplateForm.jsx:208 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:107 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:48 -#: src/screens/User/UserTokenList/UserTokenList.jsx:116 -#: src/screens/User/shared/UserTokenForm.jsx:59 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 +#: screens/Job/JobOutput/JobOutput.jsx:665 +msgid "Deprecated" +msgstr "" + +#: components/HostForm/HostForm.jsx:95 +#: components/Lookup/ApplicationLookup.jsx:83 +#: components/Lookup/ApplicationLookup.jsx:101 +#: components/NotificationList/NotificationList.jsx:186 +#: components/PromptDetail/PromptDetail.jsx:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 +#: components/Schedule/ScheduleList/ScheduleList.jsx:197 +#: components/Schedule/shared/ScheduleForm.jsx:110 +#: components/TemplateList/TemplateList.jsx:194 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/shared/ApplicationForm.jsx:62 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211 +#: screens/Credential/CredentialList/CredentialList.jsx:129 +#: screens/Credential/shared/CredentialForm.jsx:126 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/Host/HostDetail/HostDetail.jsx:81 +#: screens/Host/HostList/HostList.jsx:152 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 +#: screens/Inventory/InventoryList/InventoryList.jsx:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 +#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryGroupForm.jsx:49 +#: screens/Inventory/shared/InventorySourceForm.jsx:113 +#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 +#: screens/Organization/OrganizationList/OrganizationList.jsx:142 +#: screens/Organization/shared/OrganizationForm.jsx:68 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 +#: screens/Project/ProjectList/ProjectList.jsx:143 +#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Team/TeamDetail/TeamDetail.jsx:38 +#: screens/Team/TeamList/TeamList.jsx:134 +#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 +#: screens/Template/Survey/SurveyQuestionForm.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:163 +#: screens/Template/shared/JobTemplateForm.jsx:215 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:118 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 +#: screens/User/UserTokenList/UserTokenList.jsx:116 +#: screens/User/shared/UserTokenForm.jsx:59 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 msgid "Description" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 msgid "Destination Channels" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 msgid "Destination Channels or Users" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 msgid "Destination SMS Number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 msgid "Destination SMS number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 msgid "Destination channels" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 msgid "Destination channels or users" msgstr "" -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 msgid "Detail coming soon :)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:60 -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:70 -#: src/components/ErrorDetail/ErrorDetail.jsx:73 -#: src/components/Schedule/Schedule.jsx:67 -#: src/screens/Application/Application/Application.jsx:77 -#: src/screens/Application/Applications.jsx:39 -#: src/screens/Credential/Credential.jsx:58 -#: src/screens/Credential/Credentials.jsx:28 -#: src/screens/CredentialType/CredentialType.jsx:62 -#: src/screens/CredentialType/CredentialTypes.jsx:29 -#: src/screens/Host/Host.jsx:52 -#: src/screens/Host/Hosts.jsx:29 -#: src/screens/InstanceGroup/ContainerGroup.jsx:63 -#: src/screens/InstanceGroup/InstanceGroup.jsx:64 -#: src/screens/InstanceGroup/InstanceGroups.jsx:33 -#: src/screens/InstanceGroup/InstanceGroups.jsx:42 -#: src/screens/Inventory/Inventories.jsx:60 -#: src/screens/Inventory/Inventories.jsx:104 -#: src/screens/Inventory/Inventory.jsx:62 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:88 -#: src/screens/Inventory/SmartInventory.jsx:69 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: src/screens/Job/Job.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:113 -#: src/screens/Job/Jobs.jsx:29 -#: src/screens/ManagementJob/ManagementJobs.jsx:29 -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:27 -#: src/screens/Organization/Organization.jsx:122 -#: src/screens/Organization/Organizations.jsx:31 -#: src/screens/Project/Project.jsx:105 -#: src/screens/Project/Projects.jsx:29 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: src/screens/Setting/Settings.jsx:45 -#: src/screens/Setting/Settings.jsx:48 -#: src/screens/Setting/Settings.jsx:52 -#: src/screens/Setting/Settings.jsx:55 -#: src/screens/Setting/Settings.jsx:58 -#: src/screens/Setting/Settings.jsx:61 -#: src/screens/Setting/Settings.jsx:66 -#: src/screens/Setting/Settings.jsx:69 -#: src/screens/Setting/Settings.jsx:72 -#: src/screens/Setting/Settings.jsx:75 -#: src/screens/Setting/Settings.jsx:84 -#: src/screens/Setting/Settings.jsx:85 -#: src/screens/Setting/Settings.jsx:86 -#: src/screens/Setting/Settings.jsx:87 -#: src/screens/Setting/Settings.jsx:88 -#: src/screens/Setting/Settings.jsx:89 -#: src/screens/Setting/Settings.jsx:98 -#: src/screens/Setting/Settings.jsx:101 -#: src/screens/Setting/Settings.jsx:104 -#: src/screens/Setting/Settings.jsx:107 -#: src/screens/Setting/Settings.jsx:110 -#: src/screens/Setting/Settings.jsx:113 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:55 -#: src/screens/Team/Team.jsx:55 -#: src/screens/Team/Teams.jsx:29 -#: src/screens/Template/Template.jsx:131 -#: src/screens/Template/Templates.jsx:44 -#: src/screens/Template/WorkflowJobTemplate.jsx:121 -#: src/screens/User/User.jsx:63 -#: src/screens/User/UserToken/UserToken.jsx:54 -#: src/screens/User/Users.jsx:31 -#: src/screens/User/Users.jsx:41 -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:21 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:60 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:70 +#: components/ErrorDetail/ErrorDetail.jsx:73 +#: components/Schedule/Schedule.jsx:68 +#: screens/Application/Application/Application.jsx:77 +#: screens/Application/Applications.jsx:39 +#: screens/Credential/Credential.jsx:58 +#: screens/Credential/Credentials.jsx:28 +#: screens/CredentialType/CredentialType.jsx:62 +#: screens/CredentialType/CredentialTypes.jsx:29 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:30 +#: screens/Host/Host.jsx:52 +#: screens/Host/Hosts.jsx:29 +#: screens/InstanceGroup/ContainerGroup.jsx:63 +#: screens/InstanceGroup/InstanceGroup.jsx:64 +#: screens/InstanceGroup/InstanceGroups.jsx:33 +#: screens/InstanceGroup/InstanceGroups.jsx:42 +#: screens/Inventory/Inventories.jsx:60 +#: screens/Inventory/Inventories.jsx:102 +#: screens/Inventory/Inventory.jsx:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 +#: screens/Inventory/InventorySource/InventorySource.jsx:88 +#: screens/Inventory/SmartInventory.jsx:69 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 +#: screens/Job/Job.jsx:103 +#: screens/Job/JobOutput/HostEventModal.jsx:113 +#: screens/Job/Jobs.jsx:29 +#: screens/ManagementJob/ManagementJobs.jsx:29 +#: screens/NotificationTemplate/NotificationTemplate.jsx:83 +#: screens/NotificationTemplate/NotificationTemplates.jsx:27 +#: screens/Organization/Organization.jsx:123 +#: screens/Organization/Organizations.jsx:31 +#: screens/Project/Project.jsx:105 +#: screens/Project/Projects.jsx:29 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:115 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 +#: screens/Setting/Settings.jsx:45 +#: screens/Setting/Settings.jsx:48 +#: screens/Setting/Settings.jsx:52 +#: screens/Setting/Settings.jsx:55 +#: screens/Setting/Settings.jsx:58 +#: screens/Setting/Settings.jsx:61 +#: screens/Setting/Settings.jsx:66 +#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.jsx:72 +#: screens/Setting/Settings.jsx:75 +#: screens/Setting/Settings.jsx:84 +#: screens/Setting/Settings.jsx:85 +#: screens/Setting/Settings.jsx:86 +#: screens/Setting/Settings.jsx:87 +#: screens/Setting/Settings.jsx:88 +#: screens/Setting/Settings.jsx:89 +#: screens/Setting/Settings.jsx:98 +#: screens/Setting/Settings.jsx:101 +#: screens/Setting/Settings.jsx:104 +#: screens/Setting/Settings.jsx:107 +#: 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/Team/Team.jsx:55 +#: screens/Team/Teams.jsx:29 +#: screens/Template/Template.jsx:144 +#: screens/Template/Templates.jsx:44 +#: screens/Template/WorkflowJobTemplate.jsx:121 +#: screens/User/User.jsx:63 +#: screens/User/UserToken/UserToken.jsx:54 +#: screens/User/Users.jsx:31 +#: screens/User/Users.jsx:41 +#: screens/WorkflowApproval/WorkflowApproval.jsx:76 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.jsx:111 msgid "Details tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 msgid "Disable SSL Verification" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 msgid "Disable SSL verification" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:60 -#: src/components/DisassociateButton/DisassociateButton.jsx:87 -#: src/components/DisassociateButton/DisassociateButton.jsx:94 -#: src/components/DisassociateButton/DisassociateButton.jsx:98 -#: src/components/DisassociateButton/DisassociateButton.jsx:117 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:204 -#: src/screens/User/UserRoles/UserRolesList.jsx:204 +#: components/DisassociateButton/DisassociateButton.jsx:60 +#: components/DisassociateButton/DisassociateButton.jsx:87 +#: components/DisassociateButton/DisassociateButton.jsx:95 +#: components/DisassociateButton/DisassociateButton.jsx:99 +#: components/DisassociateButton/DisassociateButton.jsx:119 +#: screens/Team/TeamRoles/TeamRolesList.jsx:205 +#: screens/User/UserRoles/UserRolesList.jsx:205 msgid "Disassociate" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:211 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 +#: screens/Host/HostGroups/HostGroupsList.jsx:211 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 msgid "Disassociate group from host?" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 msgid "Disassociate host from group?" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:191 +#: screens/InstanceGroup/Instances/InstanceList.jsx:191 msgid "Disassociate instance from instance group?" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 msgid "Disassociate related group(s)?" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:212 +#: screens/User/UserTeams/UserTeamList.jsx:212 msgid "Disassociate related team(s)?" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:192 -#: src/screens/User/UserRoles/UserRolesList.jsx:192 +#: screens/Team/TeamRoles/TeamRolesList.jsx:192 +#: screens/User/UserRoles/UserRolesList.jsx:192 msgid "Disassociate role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:195 -#: src/screens/User/UserRoles/UserRolesList.jsx:195 +#: screens/Team/TeamRoles/TeamRolesList.jsx:195 +#: screens/User/UserRoles/UserRolesList.jsx:195 msgid "Disassociate role!" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:19 +#: components/DisassociateButton/DisassociateButton.jsx:19 msgid "Disassociate?" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:429 -msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#: screens/Template/shared/JobTemplateForm.jsx:459 +msgid "" +"Divide the work done by this job template\n" +"into the specified number of job slices, each running the\n" +"same tasks against a portion of the inventory." msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:161 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:163 +#: src/screens/Template/shared/JobTemplateForm.jsx:429 +#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#~ msgstr "" + +#: components/CodeEditor/VariablesDetail.jsx:114 +#: components/CodeEditor/VariablesDetail.jsx:120 +#: components/CodeEditor/VariablesField.jsx:63 +#: components/CodeEditor/VariablesField.jsx:69 +msgid "Done" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:172 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:177 msgid "Download Output" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 msgid "E-mail" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 msgid "E-mail options" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:220 +#: screens/Template/Survey/SurveyQuestionForm.jsx:220 msgid "Each answer choice must be on a separate line." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175 +msgid "" +"Each time a job runs using this inventory,\n" +"refresh the inventory from the selected source before\n" +"executing job tasks." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168 -msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 +msgid "" +"Each time a job runs using this project, update the\n" +"revision of the project prior to starting the job." msgstr "" #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 -msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." -msgstr "" +#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." +#~ msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:400 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:117 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:119 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:251 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:75 -#: src/screens/Host/HostDetail/HostDetail.jsx:116 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:120 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:67 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:106 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:158 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:355 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:357 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:125 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:143 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:147 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:158 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:87 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:79 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:142 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:79 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:96 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:160 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:14 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:100 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:141 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:79 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:80 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:99 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:57 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:61 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:373 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:207 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:207 -#: src/screens/User/UserDetail/UserDetail.jsx:92 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125 +#: screens/Host/HostDetail/HostDetail.jsx:117 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:137 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:163 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:15 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:150 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Team/TeamDetail/TeamDetail.jsx:58 +#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 +#: screens/User/UserDetail/UserDetail.jsx:93 msgid "Edit" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:67 +#: screens/Credential/CredentialList/CredentialListItem.jsx:64 +#: screens/Credential/CredentialList/CredentialListItem.jsx:68 msgid "Edit Credential" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:38 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:43 msgid "Edit Credential Plugin Configuration" msgstr "" -#: src/screens/Application/Applications.jsx:38 -#: src/screens/Credential/Credentials.jsx:27 -#: src/screens/Host/Hosts.jsx:28 -#: src/screens/ManagementJob/ManagementJobs.jsx:32 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:26 -#: src/screens/Organization/Organizations.jsx:30 -#: src/screens/Project/Projects.jsx:28 -#: src/screens/Project/Projects.jsx:40 -#: src/screens/Setting/Settings.jsx:46 -#: src/screens/Setting/Settings.jsx:49 -#: src/screens/Setting/Settings.jsx:53 -#: src/screens/Setting/Settings.jsx:56 -#: src/screens/Setting/Settings.jsx:59 -#: src/screens/Setting/Settings.jsx:62 -#: src/screens/Setting/Settings.jsx:67 -#: src/screens/Setting/Settings.jsx:70 -#: src/screens/Setting/Settings.jsx:73 -#: src/screens/Setting/Settings.jsx:76 -#: src/screens/Setting/Settings.jsx:90 -#: src/screens/Setting/Settings.jsx:91 -#: src/screens/Setting/Settings.jsx:92 -#: src/screens/Setting/Settings.jsx:93 -#: src/screens/Setting/Settings.jsx:94 -#: src/screens/Setting/Settings.jsx:95 -#: src/screens/Setting/Settings.jsx:99 -#: src/screens/Setting/Settings.jsx:102 -#: src/screens/Setting/Settings.jsx:105 -#: src/screens/Setting/Settings.jsx:108 -#: src/screens/Setting/Settings.jsx:111 -#: src/screens/Setting/Settings.jsx:114 -#: src/screens/Team/Teams.jsx:28 -#: src/screens/Template/Templates.jsx:45 -#: src/screens/User/Users.jsx:30 +#: screens/Application/Applications.jsx:38 +#: screens/Credential/Credentials.jsx:27 +#: screens/Host/Hosts.jsx:28 +#: screens/ManagementJob/ManagementJobs.jsx:32 +#: screens/NotificationTemplate/NotificationTemplates.jsx:26 +#: screens/Organization/Organizations.jsx:30 +#: screens/Project/Projects.jsx:28 +#: screens/Project/Projects.jsx:40 +#: screens/Setting/Settings.jsx:46 +#: screens/Setting/Settings.jsx:49 +#: screens/Setting/Settings.jsx:53 +#: screens/Setting/Settings.jsx:56 +#: screens/Setting/Settings.jsx:59 +#: screens/Setting/Settings.jsx:62 +#: screens/Setting/Settings.jsx:67 +#: screens/Setting/Settings.jsx:70 +#: screens/Setting/Settings.jsx:73 +#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.jsx:90 +#: screens/Setting/Settings.jsx:91 +#: screens/Setting/Settings.jsx:92 +#: screens/Setting/Settings.jsx:93 +#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.jsx:95 +#: screens/Setting/Settings.jsx:99 +#: screens/Setting/Settings.jsx:102 +#: screens/Setting/Settings.jsx:105 +#: screens/Setting/Settings.jsx:108 +#: screens/Setting/Settings.jsx:111 +#: screens/Setting/Settings.jsx:114 +#: screens/Team/Teams.jsx:28 +#: screens/Template/Templates.jsx:45 +#: screens/User/Users.jsx:30 msgid "Edit Details" msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:50 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:58 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:85 +msgid "Edit Execution Environment" +msgstr "" + +#: screens/Host/HostGroups/HostGroupItem.jsx:50 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:59 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:67 msgid "Edit Group" msgstr "" -#: src/screens/Host/HostList/HostListItem.jsx:52 -#: src/screens/Host/HostList/HostListItem.jsx:55 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 +#: screens/Host/HostList/HostListItem.jsx:52 +#: screens/Host/HostList/HostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:78 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 msgid "Edit Host" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:115 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:119 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:115 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:120 msgid "Edit Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 msgid "Edit Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:204 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 msgid "Edit Node" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:137 msgid "Edit Notification Template" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:47 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:50 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:74 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:78 msgid "Edit Organization" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:134 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:138 +#: screens/Project/ProjectList/ProjectListItem.jsx:161 +#: screens/Project/ProjectList/ProjectListItem.jsx:166 msgid "Edit Project" msgstr "" -#: src/screens/Template/Templates.jsx:51 +#: screens/Template/Templates.jsx:51 msgid "Edit Question" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:116 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: src/screens/Template/Templates.jsx:58 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:116 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:120 +#: screens/Template/Templates.jsx:58 msgid "Edit Schedule" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:98 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:126 msgid "Edit Source" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:42 -#: src/screens/Team/TeamList/TeamListItem.jsx:57 -#: src/screens/Team/TeamList/TeamListItem.jsx:60 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 +#: screens/Team/TeamList/TeamListItem.jsx:57 +#: screens/Team/TeamList/TeamListItem.jsx:61 msgid "Edit Team" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:167 -#: src/components/TemplateList/TemplateListItem.jsx:172 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:109 +#: components/TemplateList/TemplateListItem.jsx:194 +#: components/TemplateList/TemplateListItem.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:133 msgid "Edit Template" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:82 -#: src/screens/User/UserList/UserListItem.jsx:85 +#: screens/User/UserList/UserListItem.jsx:82 +#: screens/User/UserList/UserListItem.jsx:86 msgid "Edit User" msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:50 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:50 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:54 msgid "Edit application" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:44 msgid "Edit credential type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:27 -#: src/screens/InstanceGroup/InstanceGroups.jsx:38 -#: src/screens/InstanceGroup/InstanceGroups.jsx:48 -#: src/screens/Inventory/Inventories.jsx:61 -#: src/screens/Inventory/Inventories.jsx:67 -#: src/screens/Inventory/Inventories.jsx:82 -#: src/screens/Inventory/Inventories.jsx:107 +#: screens/CredentialType/CredentialTypes.jsx:27 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:27 +#: screens/InstanceGroup/InstanceGroups.jsx:38 +#: screens/InstanceGroup/InstanceGroups.jsx:48 +#: screens/Inventory/Inventories.jsx:61 +#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.jsx:105 msgid "Edit details" msgstr "" -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 msgid "Edit form coming soon :)" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:108 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:109 msgid "Edit instance group" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 msgid "Edit this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:199 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:205 msgid "Edit this node" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:146 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:123 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: components/Workflow/WorkflowNodeHelp.jsx:146 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:130 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 msgid "Elapsed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:122 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:129 msgid "Elapsed Time" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:124 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:131 msgid "Elapsed time that the job ran" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:193 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 -#: src/screens/User/UserDetail/UserDetail.jsx:64 -#: src/screens/User/shared/UserForm.jsx:77 +#: components/NotificationList/NotificationList.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 +#: screens/User/UserDetail/UserDetail.jsx:64 +#: screens/User/shared/UserForm.jsx:77 msgid "Email" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 msgid "Email Options" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:63 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:128 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:265 msgid "Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:557 +#: screens/Template/shared/JobTemplateForm.jsx:587 msgid "Enable Fact Storage" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 msgid "Enable HTTPS certificate verification" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:57 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 msgid "Enable Privilege Escalation" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:531 -#: src/screens/Template/shared/JobTemplateForm.jsx:534 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:216 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:219 +#: screens/Template/shared/JobTemplateForm.jsx:561 +#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 msgid "Enable Webhook" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:223 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Enable Webhook for this workflow job template." msgstr "" -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 msgid "Enable Webhooks" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 msgid "Enable external logging" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 msgid "Enable log system tracking facts individually" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:236 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:239 +#: components/AdHocCommands/AdHocDetailsStep.jsx:236 +#: components/AdHocCommands/AdHocDetailsStep.jsx:239 msgid "Enable privilege escalation" msgstr "" -#: src/screens/Setting/SettingList.jsx:57 +#: screens/Setting/SettingList.jsx:57 msgid "Enable simplified login for your {brandName} applications" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:537 +#: screens/Template/shared/JobTemplateForm.jsx:567 msgid "Enable webhook for this template." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:94 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 +#: components/Lookup/HostFilterLookup.jsx:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 msgid "Enabled" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267 msgid "Enabled Value" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:231 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254 msgid "Enabled Variable" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:517 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#: screens/Template/shared/JobTemplateForm.jsx:547 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact BRAND_NAME\n" +"and request a configuration update using this job\n" +"template." msgstr "" +#: components/AdHocCommands/AdHocDetailsStep.jsx:244 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact {brandName}\n" +"and request a configuration update using this job\n" +"template" +msgstr "" + +#: src/screens/Template/shared/JobTemplateForm.jsx:517 +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#~ msgstr "" + #: src/components/AdHocCommands/AdHocDetailsStep.jsx:244 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" -msgstr "" +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" +#~ msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:149 -#: src/screens/Setting/shared/SettingDetail.jsx:75 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:154 +#: screens/Setting/shared/SettingDetail.jsx:75 msgid "Encrypted" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:504 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 msgid "End" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:562 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 msgid "End date/time" msgstr "" -#: src/components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:96 msgid "End did not match an expected value" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:31 +#: screens/Host/HostList/SmartInventoryButton.jsx:31 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:39 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:39 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:85 +#: screens/Inventory/shared/SmartInventoryForm.jsx:100 +msgid "" +"Enter inventory variables using either JSON or YAML syntax.\n" +"Use the radio button to toggle between the two. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: screens/Inventory/shared/InventoryForm.jsx:85 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "" #: src/screens/Inventory/shared/SmartInventoryForm.jsx:100 -msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." -msgstr "" +#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 msgid "Enter one Annotation Tag per line, without commas." msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +msgid "" +"Enter one IRC channel or username per line. The pound\n" +"symbol (#) for channels, and the at (@) symbol for users, are not\n" +"required." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 -msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +msgid "" +"Enter one Slack channel per line. The pound symbol (#)\n" +"is required for channels." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 -msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +msgid "" +"Enter one email address per line to create a recipient\n" +"list for this type of notification." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 -msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +msgid "" +"Enter one phone number per line to specify where to\n" +"route SMS messages." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 -msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +msgid "" +"Enter the number associated with the \"Messaging\n" +"Service\" in Twilio in the format +18005550199." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 -msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." -msgstr "" +#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." +#~ msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:37 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "" #: src/screens/Job/JobDetail/JobDetail.jsx:224 -msgid "Environment" -msgstr "" +#~ msgid "Environment" +#~ msgstr "" -#: src/components/JobList/JobList.jsx:227 -#: src/components/Workflow/WorkflowNodeHelp.jsx:92 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:198 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:255 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/JobList/JobList.jsx:205 +#: components/Workflow/WorkflowNodeHelp.jsx:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:161 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262 +#: screens/Job/JobOutput/JobOutput.jsx:668 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Error" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:431 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:432 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 msgid "Error message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:440 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:441 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 msgid "Error message body" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:98 -#: src/components/AppContainer/AppContainer.jsx:215 -#: src/components/CopyButton/CopyButton.jsx:49 -#: src/components/HostToggle/HostToggle.jsx:73 -#: src/components/InstanceToggle/InstanceToggle.jsx:69 -#: src/components/JobList/JobList.jsx:288 -#: src/components/JobList/JobList.jsx:299 -#: src/components/LaunchButton/LaunchButton.jsx:150 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:66 -#: src/components/NotificationList/NotificationList.jsx:248 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:234 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:418 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:241 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:77 -#: src/components/TemplateList/TemplateList.jsx:262 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:191 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:269 -#: src/screens/Credential/CredentialList/CredentialList.jsx:193 -#: src/screens/Host/HostDetail/HostDetail.jsx:60 -#: src/screens/Host/HostDetail/HostDetail.jsx:131 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:243 -#: src/screens/Host/HostList/HostList.jsx:222 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:232 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:83 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:121 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:246 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:289 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:235 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:84 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:95 -#: src/screens/Login/Login.jsx:270 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:376 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:206 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:199 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:180 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: src/screens/Project/ProjectList/ProjectList.jsx:224 -#: src/screens/Project/shared/ProjectSyncButton.jsx:40 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:80 -#: src/screens/Team/TeamList/TeamList.jsx:205 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:229 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:402 -#: src/screens/Template/TemplateSurvey.jsx:126 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:164 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:179 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:291 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:586 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:293 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:304 -#: src/screens/User/UserDetail/UserDetail.jsx:111 -#: src/screens/User/UserList/UserList.jsx:197 -#: src/screens/User/UserRoles/UserRolesList.jsx:229 -#: src/screens/User/UserTeams/UserTeamList.jsx:257 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:89 -#: src/screens/User/UserTokenList/UserTokenList.jsx:191 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:235 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:246 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:596 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:598 +msgid "Error saving the workflow!" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:98 +#: components/AppContainer/AppContainer.jsx:214 +#: components/CopyButton/CopyButton.jsx:51 +#: components/DeleteButton/DeleteButton.jsx:57 +#: components/HostToggle/HostToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:69 +#: components/JobList/JobList.jsx:266 +#: components/JobList/JobList.jsx:277 +#: components/LaunchButton/LaunchButton.jsx:162 +#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/NotificationList/NotificationList.jsx:248 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204 +#: components/ResourceAccessList/ResourceAccessList.jsx:236 +#: components/ResourceAccessList/ResourceAccessList.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419 +#: components/Schedule/ScheduleList/ScheduleList.jsx:241 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 +#: components/Schedule/shared/SchedulePromptableFields.jsx:77 +#: components/TemplateList/TemplateList.jsx:272 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:139 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialList/CredentialList.jsx:192 +#: screens/Host/HostDetail/HostDetail.jsx:60 +#: screens/Host/HostDetail/HostDetail.jsx:132 +#: screens/Host/HostGroups/HostGroupsList.jsx:243 +#: screens/Host/HostList/HostList.jsx:222 +#: screens/InstanceGroup/Instances/InstanceList.jsx:232 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:148 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:84 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 +#: screens/Inventory/InventoryList/InventoryList.jsx:256 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:234 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:247 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:97 +#: screens/Login/Login.jsx:184 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:377 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:189 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 +#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/shared/ProjectSyncButton.jsx:41 +#: screens/Team/TeamDetail/TeamDetail.jsx:81 +#: screens/Team/TeamList/TeamList.jsx:205 +#: screens/Team/TeamRoles/TeamRolesList.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:423 +#: screens/Template/TemplateSurvey.jsx:126 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:331 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:342 +#: screens/User/UserDetail/UserDetail.jsx:112 +#: screens/User/UserList/UserList.jsx:197 +#: screens/User/UserRoles/UserRolesList.jsx:231 +#: screens/User/UserTeams/UserTeamList.jsx:257 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 +#: screens/User/UserTokenList/UserTokenList.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 msgid "Error!" msgstr "" -#: src/components/CodeMirrorInput/VariablesDetail.jsx:115 +#: components/CodeEditor/VariablesDetail.jsx:103 msgid "Error:" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:252 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/ActivityStream/ActivityStream.jsx:258 +#: screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/Job/JobOutput/JobOutput.jsx:635 msgid "Event" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:34 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 msgid "Event detail" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 msgid "Event detail modal" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:564 +#: screens/ActivityStream/ActivityStreamDescription.jsx:564 msgid "Event summary not available" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:221 +#: screens/ActivityStream/ActivityStream.jsx:227 msgid "Events" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.jsx:160 msgid "Exact match (default lookup if not specified)." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 msgid "Example URLs for GIT Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 msgid "Example URLs for Remote Archive Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 msgid "Example URLs for Subversion Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 msgid "Examples include:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 msgid "Execute regardless of the parent node's final state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 msgid "Execute when the parent node results in a failure state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 msgid "Execute when the parent node results in a successful state." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:225 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:135 +msgid "Execution Environment" +msgstr "" + +#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: routeConfig.js:143 +#: screens/ActivityStream/ActivityStream.jsx:210 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/Organization/Organization.jsx:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 +#: screens/Organization/Organizations.jsx:38 +#: util/getRelatedResourceDeleteDetails.js:88 +#: util/getRelatedResourceDeleteDetails.js:212 +msgid "Execution Environments" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:256 msgid "Execution Node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:22 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:25 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:41 +msgid "Execution environment image" +msgstr "" + +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:33 +msgid "Execution environment name" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +msgid "Execution environment not found." +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +msgid "Execution environments" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 msgid "Exit Without Saving" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:50 +#: components/ExpandCollapse/ExpandCollapse.jsx:52 msgid "Expand" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 +#: components/CodeEditor/VariablesDetail.jsx:214 +#: components/CodeEditor/VariablesField.jsx:165 +msgid "Expand input" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:65 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 +#: screens/User/UserTokenList/UserTokenListItem.jsx:65 msgid "Expiration" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:58 -#: src/screens/User/UserTokenList/UserTokenList.jsx:130 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:66 -#: src/screens/User/UserTokens/UserTokens.jsx:90 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 +#: screens/User/UserTokenList/UserTokenList.jsx:130 +#: screens/User/UserTokenList/UserTokenListItem.jsx:66 +#: screens/User/UserTokens/UserTokens.jsx:90 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 msgid "Expires" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 msgid "Expires on {0}" msgstr "" -#: src/components/JobList/JobListItem.jsx:167 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.jsx:168 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 msgid "Explanation" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:112 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:116 msgid "External Secret Management System" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:309 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:310 +#: components/AdHocCommands/AdHocDetailsStep.jsx:309 +#: components/AdHocCommands/AdHocDetailsStep.jsx:310 msgid "Extra variables" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:35 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:61 +#: components/Sparkline/Sparkline.jsx:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49 +#: screens/Project/ProjectList/ProjectListItem.jsx:69 msgid "FINISHED:" msgstr "" -#: src/screens/Host/Host.jsx:57 -#: src/screens/Host/HostFacts/HostFacts.jsx:39 -#: src/screens/Host/Hosts.jsx:30 -#: src/screens/Inventory/Inventories.jsx:75 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Host/Host.jsx:57 +#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/Hosts.jsx:30 +#: screens/Inventory/Inventories.jsx:73 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 msgid "Facts" msgstr "" -#: src/components/JobList/JobList.jsx:226 -#: src/components/Workflow/WorkflowNodeHelp.jsx:89 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:111 +#: components/JobList/JobList.jsx:204 +#: components/Workflow/WorkflowNodeHelp.jsx:89 +#: screens/Dashboard/shared/ChartTooltip.jsx:66 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:118 msgid "Failed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:110 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:117 msgid "Failed Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:112 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:119 msgid "Failed Hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:50 -#: src/screens/Dashboard/Dashboard.jsx:135 +#: components/LaunchButton/ReLaunchDropDown.jsx:50 +#: screens/Dashboard/Dashboard.jsx:135 msgid "Failed hosts" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 msgid "Failed to approve one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:238 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 msgid "Failed to approve workflow approval." msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:240 +msgid "Failed to assign roles properly" +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 msgid "Failed to associate role" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:247 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:236 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 -#: src/screens/User/UserTeams/UserTeamList.jsx:261 +#: screens/Host/HostGroups/HostGroupsList.jsx:247 +#: screens/InstanceGroup/Instances/InstanceList.jsx:236 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 +#: screens/User/UserTeams/UserTeamList.jsx:261 msgid "Failed to associate." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:98 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:100 msgid "Failed to cancel inventory source sync." msgstr "" -#: src/components/JobList/JobList.jsx:302 +#: components/JobList/JobList.jsx:280 msgid "Failed to cancel one or more jobs." msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:84 +#: screens/Credential/CredentialList/CredentialListItem.jsx:85 msgid "Failed to copy credential." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:103 +msgid "Failed to copy execution environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:143 msgid "Failed to copy inventory." msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/ProjectList/ProjectListItem.jsx:183 msgid "Failed to copy project." msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:186 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:145 +#: components/TemplateList/TemplateListItem.jsx:214 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:155 msgid "Failed to copy template." msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:141 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:142 msgid "Failed to delete application." msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:298 msgid "Failed to delete credential." msgstr "" -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:88 msgid "Failed to delete group {0}." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:134 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:124 +#: screens/Host/HostDetail/HostDetail.jsx:135 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:125 msgid "Failed to delete host." msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:293 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306 msgid "Failed to delete inventory source {name}." msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:141 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:151 msgid "Failed to delete inventory." msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:426 msgid "Failed to delete job template." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:380 msgid "Failed to delete notification." msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 msgid "Failed to delete one or more applications." msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:201 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 msgid "Failed to delete one or more credential types." msgstr "" -#: src/screens/Credential/CredentialList/CredentialList.jsx:196 +#: screens/Credential/CredentialList/CredentialList.jsx:195 msgid "Failed to delete one or more credentials." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:152 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 +msgid "Failed to delete one or more execution environments" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:151 msgid "Failed to delete one or more groups." msgstr "" -#: src/screens/Host/HostList/HostList.jsx:225 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 +#: screens/Host/HostList/HostList.jsx:225 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 msgid "Failed to delete one or more hosts." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:258 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Failed to delete one or more instance groups." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:249 +#: screens/Inventory/InventoryList/InventoryList.jsx:259 msgid "Failed to delete one or more inventories." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:238 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:250 msgid "Failed to delete one or more inventory sources." msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 msgid "Failed to delete one or more job templates." msgstr "" -#: src/components/JobList/JobList.jsx:291 +#: components/JobList/JobList.jsx:269 msgid "Failed to delete one or more jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 msgid "Failed to delete one or more notification template." msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:202 +#: screens/Organization/OrganizationList/OrganizationList.jsx:211 msgid "Failed to delete one or more organizations." msgstr "" -#: src/screens/Project/ProjectList/ProjectList.jsx:227 +#: screens/Project/ProjectList/ProjectList.jsx:237 msgid "Failed to delete one or more projects." msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:244 +#: components/Schedule/ScheduleList/ScheduleList.jsx:244 msgid "Failed to delete one or more schedules." msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:208 msgid "Failed to delete one or more teams." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:265 +#: components/TemplateList/TemplateList.jsx:275 msgid "Failed to delete one or more templates." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 msgid "Failed to delete one or more tokens." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.jsx:194 msgid "Failed to delete one or more user tokens." msgstr "" -#: src/screens/User/UserList/UserList.jsx:200 +#: screens/User/UserList/UserList.jsx:200 msgid "Failed to delete one or more users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 msgid "Failed to delete one or more workflow approval." msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:182 msgid "Failed to delete organization." msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:183 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:192 msgid "Failed to delete project." msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:237 +#: components/ResourceAccessList/ResourceAccessList.jsx:251 msgid "Failed to delete role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:232 -#: src/screens/User/UserRoles/UserRolesList.jsx:232 +#: screens/Team/TeamRoles/TeamRolesList.jsx:234 +#: screens/User/UserRoles/UserRolesList.jsx:234 msgid "Failed to delete role." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:421 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:422 msgid "Failed to delete schedule." msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:180 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:181 msgid "Failed to delete smart inventory." msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:83 +#: screens/Team/TeamDetail/TeamDetail.jsx:84 msgid "Failed to delete team." msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:114 +#: screens/User/UserDetail/UserDetail.jsx:115 msgid "Failed to delete user." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 msgid "Failed to delete workflow approval." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:238 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 msgid "Failed to delete workflow job template." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:63 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.jsx:63 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 msgid "Failed to delete {name}." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Failed to deny one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:249 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 msgid "Failed to deny workflow approval." msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:248 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 +#: screens/Host/HostGroups/HostGroupsList.jsx:248 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 msgid "Failed to disassociate one or more groups." msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 msgid "Failed to disassociate one or more hosts." msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:237 +#: screens/InstanceGroup/Instances/InstanceList.jsx:237 msgid "Failed to disassociate one or more instances." msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:262 +#: screens/User/UserTeams/UserTeamList.jsx:262 msgid "Failed to disassociate one or more teams." msgstr "" -#: src/screens/Login/Login.jsx:274 +#: screens/Login/Login.jsx:189 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:106 -#: src/components/LaunchButton/LaunchButton.jsx:153 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: components/AdHocCommands/AdHocCommands.jsx:106 +#: components/LaunchButton/LaunchButton.jsx:165 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 msgid "Failed to launch job." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:218 +#: components/AppContainer/AppContainer.jsx:217 msgid "Failed to retrieve configuration." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:296 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:334 msgid "Failed to retrieve full node resource object." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:345 msgid "Failed to retrieve node credentials." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:87 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:167 +msgid "Failed to send test notification." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:89 msgid "Failed to sync inventory source." msgstr "" -#: src/screens/Project/shared/ProjectSyncButton.jsx:43 +#: screens/Project/shared/ProjectSyncButton.jsx:44 msgid "Failed to sync project." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:225 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:237 msgid "Failed to sync some or all inventory sources." msgstr "" -#: src/components/HostToggle/HostToggle.jsx:77 +#: components/HostToggle/HostToggle.jsx:77 msgid "Failed to toggle host." msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:73 msgid "Failed to toggle instance." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:252 +#: components/NotificationList/NotificationList.jsx:252 msgid "Failed to toggle notification." msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 msgid "Failed to toggle schedule." msgstr "" -#: src/screens/Template/TemplateSurvey.jsx:129 +#: screens/Template/TemplateSurvey.jsx:129 msgid "Failed to update survey." msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 msgid "Failed to user token." msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:83 -#: src/components/NotificationList/NotificationListItem.jsx:84 +#: components/NotificationList/NotificationListItem.jsx:83 +#: components/NotificationList/NotificationListItem.jsx:84 msgid "Failure" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 msgid "False" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 msgid "February" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:170 +#: components/Search/AdvancedSearch.jsx:171 msgid "Field contains value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:190 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field ends with value." msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:84 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:82 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:200 +#: components/Search/AdvancedSearch.jsx:201 msgid "Field matches the given regular expression." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:180 +#: components/Search/AdvancedSearch.jsx:181 msgid "Field starts with value." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 msgid "Fifth" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 +#: screens/Job/JobOutput/JobOutput.jsx:652 +msgid "File Difference" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 msgid "File upload rejected. Please select a single .json file." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 msgid "File, directory or script" msgstr "" -#: src/components/JobList/JobList.jsx:243 -#: src/components/JobList/JobListItem.jsx:77 +#: components/JobList/JobList.jsx:221 +#: components/JobList/JobListItem.jsx:77 msgid "Finish Time" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:156 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.jsx:157 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 msgid "Finished" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 msgid "First" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:119 -#: src/components/AddRole/AddResourceRole.jsx:133 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:130 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:163 -#: src/screens/User/UserDetail/UserDetail.jsx:65 -#: src/screens/User/UserList/UserList.jsx:123 -#: src/screens/User/UserList/UserList.jsx:166 -#: src/screens/User/UserList/UserListItem.jsx:62 -#: src/screens/User/UserList/UserListItem.jsx:65 -#: src/screens/User/shared/UserForm.jsx:109 +#: components/AddRole/AddResourceRole.jsx:130 +#: components/AddRole/AddResourceRole.jsx:144 +#: components/ResourceAccessList/ResourceAccessList.jsx:132 +#: components/ResourceAccessList/ResourceAccessList.jsx:165 +#: screens/User/UserDetail/UserDetail.jsx:65 +#: screens/User/UserList/UserList.jsx:123 +#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserListItem.jsx:62 +#: screens/User/UserList/UserListItem.jsx:65 +#: screens/User/shared/UserForm.jsx:109 msgid "First Name" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 msgid "First Run" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:248 +#: components/Search/AdvancedSearch.jsx:249 msgid "First, select a key" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:89 +#: components/Workflow/WorkflowTools.jsx:89 msgid "Fit the graph to the available screen size" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:64 +#: screens/Template/Survey/SurveyQuestionForm.jsx:64 msgid "Float" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:223 +msgid "" +"For job templates, select run to execute\n" +"the playbook. Select check to only check playbook syntax,\n" +"test environment setup, and report problems without\n" +"executing the playbook." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 +msgid "" +"For job templates, select run to execute the playbook.\n" +"Select check to only check playbook syntax, test environment setup,\n" +"and report problems without executing the playbook." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 #: src/screens/Template/shared/JobTemplateForm.jsx:216 -msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." -msgstr "" +#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 msgid "For more information, refer to the" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:192 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:193 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:214 -#: src/screens/Template/shared/JobTemplateForm.jsx:374 +#: components/AdHocCommands/AdHocDetailsStep.jsx:192 +#: components/AdHocCommands/AdHocDetailsStep.jsx:193 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:404 msgid "Forks" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:411 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 msgid "Fourth" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:186 +#: components/Schedule/shared/ScheduleForm.jsx:186 msgid "Frequency Details" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:212 -#: src/components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/buildRuleObj.js:69 msgid "Frequency did not match an expected value" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:309 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 msgid "Fri" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:314 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:450 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 msgid "Friday" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:125 -#: src/screens/Organization/shared/OrganizationForm.jsx:105 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 +#: screens/Organization/shared/OrganizationForm.jsx:110 msgid "Galaxy Credentials" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:55 msgid "Galaxy credentials must be owned by an Organization." msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: src/screens/Project/ProjectList/ProjectList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Job/JobOutput/JobOutput.jsx:660 +msgid "Gathering Facts" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:114 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 +#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 msgid "Git" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 -#: src/screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:253 +#: screens/Template/shared/WebhookSubForm.jsx:108 msgid "GitHub" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: src/screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 +#: screens/Setting/Settings.jsx:51 msgid "GitHub Default" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: src/screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 +#: screens/Setting/Settings.jsx:60 msgid "GitHub Enterprise" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: src/screens/Setting/Settings.jsx:64 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 +#: screens/Setting/Settings.jsx:64 msgid "GitHub Enterprise Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: src/screens/Setting/Settings.jsx:68 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 +#: screens/Setting/Settings.jsx:68 msgid "GitHub Enterprise Team" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: src/screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 +#: screens/Setting/Settings.jsx:54 msgid "GitHub Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: src/screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 +#: screens/Setting/Settings.jsx:57 msgid "GitHub Team" msgstr "" -#: src/screens/Setting/SettingList.jsx:66 +#: screens/Setting/SettingList.jsx:66 msgid "GitHub settings" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:244 -#: src/screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 +#: screens/Template/shared/WebhookSubForm.jsx:114 msgid "GitLab" msgstr "" -#: src/components/Pagination/Pagination.jsx:31 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +msgid "Global Default Execution Environment" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:75 +msgid "Globally Available" +msgstr "" + +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: src/components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: src/components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: src/components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 msgid "Google Compute Engine" msgstr "" -#: src/screens/Setting/SettingList.jsx:70 +#: screens/Setting/SettingList.jsx:70 msgid "Google OAuth 2 settings" msgstr "" -#: src/screens/Setting/Settings.jsx:71 +#: screens/Setting/Settings.jsx:71 msgid "Google OAuth2" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:194 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 +#: components/NotificationList/NotificationList.jsx:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 msgid "Grafana" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 msgid "Grafana API key" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 msgid "Grafana URL" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:210 +#: components/Search/AdvancedSearch.jsx:211 msgid "Greater than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.jsx:216 msgid "Greater than or equal to comparison." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.jsx:86 msgid "Group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:85 +#: screens/Inventory/Inventories.jsx:83 msgid "Group details" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 msgid "Group type" msgstr "" -#: src/screens/Host/Host.jsx:62 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:230 -#: src/screens/Host/Hosts.jsx:31 -#: src/screens/Inventory/Inventories.jsx:76 -#: src/screens/Inventory/Inventories.jsx:78 -#: src/screens/Inventory/Inventory.jsx:64 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:108 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: screens/Host/Host.jsx:62 +#: screens/Host/HostGroups/HostGroupsList.jsx:230 +#: screens/Host/Hosts.jsx:31 +#: screens/Inventory/Inventories.jsx:74 +#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventory.jsx:64 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: util/getRelatedResourceDeleteDetails.js:143 msgid "Groups" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 msgid "HTTP Headers" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 msgid "HTTP Method" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:121 +#: components/AppContainer/PageHeaderToolbar.jsx:121 msgid "Help" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Hide" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:135 +#: components/NotificationList/NotificationList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Hipchat" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 msgid "Host" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:143 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: src/screens/Template/shared/JobTemplateForm.jsx:592 +#: screens/Job/JobOutput/JobOutput.jsx:647 +msgid "Host Async Failure" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:646 +msgid "Host Async OK" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239 +#: screens/Template/shared/JobTemplateForm.jsx:622 msgid "Host Config Key" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:94 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:101 msgid "Host Count" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.jsx:101 msgid "Host Details" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +#: screens/Job/JobOutput/JobOutput.jsx:638 +msgid "Host Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:641 +msgid "Host Failure" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281 msgid "Host Filter" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.jsx:120 msgid "Host Name" msgstr "" -#: src/screens/Inventory/Inventories.jsx:70 +#: screens/Job/JobOutput/JobOutput.jsx:640 +msgid "Host OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:645 +msgid "Host Polling" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:651 +msgid "Host Retry" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:642 +msgid "Host Skipped" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:639 +msgid "Host Started" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:643 +msgid "Host Unreachable" +msgstr "" + +#: screens/Inventory/Inventories.jsx:70 msgid "Host details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.jsx:102 msgid "Host details modal" msgstr "" -#: src/screens/Host/Host.jsx:90 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.jsx:90 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 msgid "Host not found." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:77 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:77 msgid "Host status information for this job is unavailable." msgstr "" -#: src/routeConfig.js:85 -#: src/screens/ActivityStream/ActivityStream.jsx:173 -#: src/screens/Dashboard/Dashboard.jsx:129 -#: src/screens/Host/HostList/HostList.jsx:142 -#: src/screens/Host/HostList/HostList.jsx:188 -#: src/screens/Host/Hosts.jsx:15 -#: src/screens/Host/Hosts.jsx:25 -#: src/screens/Inventory/Inventories.jsx:63 -#: src/screens/Inventory/Inventories.jsx:88 -#: src/screens/Inventory/Inventory.jsx:65 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 -#: src/screens/Inventory/SmartInventory.jsx:71 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:95 +#: routeConfig.js:86 +#: screens/ActivityStream/ActivityStream.jsx:173 +#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:188 +#: screens/Host/Hosts.jsx:15 +#: screens/Host/Hosts.jsx:25 +#: screens/Inventory/Inventories.jsx:63 +#: screens/Inventory/Inventories.jsx:86 +#: screens/Inventory/Inventory.jsx:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 +#: screens/Inventory/SmartInventory.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: util/getRelatedResourceDeleteDetails.js:147 msgid "Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.jsx:164 msgid "Hour" msgstr "" -#: src/components/JobList/JobList.jsx:194 -#: src/components/Lookup/HostFilterLookup.jsx:82 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:155 -#: src/screens/User/UserRoles/UserRolesList.jsx:152 +#: components/JobList/JobList.jsx:172 +#: components/Lookup/HostFilterLookup.jsx:82 +#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:152 msgid "ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 msgid "ID of the Dashboard" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 msgid "ID of the Panel" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 msgid "ID of the dashboard (optional)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 msgid "ID of the panel (optional)" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:196 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:136 +#: components/NotificationList/NotificationList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "IRC" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 msgid "IRC Nick" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 msgid "IRC Server Address" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 msgid "IRC Server Port" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 msgid "IRC nick" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 msgid "IRC server address" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 msgid "IRC server password" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 msgid "IRC server port" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 msgid "Icon URL" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156 +msgid "" +"If checked, all variables for child groups\n" +"and hosts will be removed and replaced by those found\n" +"on the external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 -msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135 +msgid "" +"If checked, any hosts and groups that were\n" +"previously present on the external source but are now removed\n" +"will be removed from the Tower inventory. Hosts and groups\n" +"that were not managed by the inventory source will be promoted\n" +"to the next manually created group or if there is no manually\n" +"created group to promote them into, they will be left in the \"all\"\n" +"default group for the inventory." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 -msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:537 +msgid "" +"If enabled, run this playbook as an\n" +"administrator." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:507 -msgid "If enabled, run this playbook as an administrator." +#~ msgid "If enabled, run this playbook as an administrator." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +msgid "" +"If enabled, show the changes made\n" +"by Ansible tasks, where supported. This is equivalent to Ansible’s\n" +"--diff mode." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:478 +msgid "" +"If enabled, show the changes made by\n" +"Ansible tasks, where supported. This is equivalent\n" +"to Ansible's --diff mode." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:448 -msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." -msgstr "" +#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:216 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +#: components/AdHocCommands/AdHocDetailsStep.jsx:216 msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:551 -msgid "If enabled, simultaneous runs of this job template will be allowed." +#: screens/Template/shared/JobTemplateForm.jsx:581 +msgid "" +"If enabled, simultaneous runs of this job\n" +"template will be allowed." msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: src/screens/Template/shared/JobTemplateForm.jsx:551 +#~ msgid "If enabled, simultaneous runs of this job template will be allowed." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:263 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:559 -msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#: screens/Template/shared/JobTemplateForm.jsx:589 +msgid "" +"If enabled, this will store gathered facts so they can\n" +"be viewed at the host level. Facts are persisted and\n" +"injected into the fact cache at runtime." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:52 +#: src/screens/Template/shared/JobTemplateForm.jsx:559 +#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#~ msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +msgid "" +"If you want the Inventory Source to update on\n" +"launch and on project update, click on Update on launch, and also go to" +msgstr "" + #: src/pages/Organizations/components/DeleteRoleConfirmationModal.jsx:54 #~ msgid "If you {0} want to remove access for this particular user, please remove them from the team." #~ msgstr "" -#: src/components/HostToggle/HostToggle.jsx:18 -msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:64 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +msgid "Image" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:104 -#: src/components/AppContainer/PageHeaderToolbar.jsx:114 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:76 +msgid "Image name" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:655 +msgid "Including File" +msgstr "" + +#: components/HostToggle/HostToggle.jsx:18 +msgid "" +"Indicates if a host is available and should be included in running\n" +"jobs. For hosts that are part of an external inventory, this may be\n" +"reset by the inventory sync process." +msgstr "" + +#: src/components/HostToggle/HostToggle.jsx:18 +#~ msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#~ msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:104 +#: components/AppContainer/PageHeaderToolbar.jsx:114 msgid "Info" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.jsx:45 msgid "Initiated By" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:240 -#: src/screens/ActivityStream/ActivityStream.jsx:250 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:43 +#: screens/ActivityStream/ActivityStream.jsx:246 +#: screens/ActivityStream/ActivityStream.jsx:256 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:230 +#: screens/ActivityStream/ActivityStream.jsx:236 msgid "Initiated by (username)" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:52 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:53 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:53 msgid "Injector configuration" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:47 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:43 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:43 msgid "Input configuration" msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:71 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 msgid "Insights Credential" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:136 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:137 msgid "Instance Filters" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:228 +#: screens/Job/JobDetail/JobDetail.jsx:259 msgid "Instance Group" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:71 -#: src/components/Lookup/InstanceGroupsLookup.jsx:77 -#: src/components/Lookup/InstanceGroupsLookup.jsx:109 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:212 -#: src/routeConfig.js:132 -#: src/screens/ActivityStream/ActivityStream.jsx:198 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:86 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:317 +#: components/Lookup/InstanceGroupsLookup.jsx:71 +#: components/Lookup/InstanceGroupsLookup.jsx:77 +#: components/Lookup/InstanceGroupsLookup.jsx:109 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:218 +#: routeConfig.js:133 +#: screens/ActivityStream/ActivityStream.jsx:198 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:327 msgid "Instance Groups" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.jsx:99 msgid "Instance ID" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 -#: src/screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:86 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 +#: screens/InstanceGroup/InstanceGroups.jsx:27 msgid "Instance group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.jsx:87 msgid "Instance group not found." msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:16 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 +#: screens/InstanceGroup/InstanceGroups.jsx:16 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 msgid "Instance groups" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:69 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:231 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 -#: src/screens/InstanceGroup/InstanceGroups.jsx:35 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:218 +#: screens/InstanceGroup/InstanceGroup.jsx:69 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 +#: screens/InstanceGroup/InstanceGroups.jsx:35 +#: screens/InstanceGroup/Instances/InstanceList.jsx:148 +#: screens/InstanceGroup/Instances/InstanceList.jsx:218 msgid "Instances" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:63 +#: screens/Template/Survey/SurveyQuestionForm.jsx:63 msgid "Integer" msgstr "" @@ -3530,73 +4046,76 @@ msgstr "" #~ msgid "Integrations" #~ msgstr "" -#: src/util/validators.jsx:69 +#: util/validators.jsx:69 msgid "Invalid email address" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:151 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "" -#: src/screens/Login/Login.jsx:110 +#: screens/Login/Login.jsx:118 msgid "Invalid username or password. Please try again." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: src/routeConfig.js:80 -#: src/screens/ActivityStream/ActivityStream.jsx:170 -#: src/screens/Dashboard/Dashboard.jsx:140 -#: src/screens/Inventory/Inventories.jsx:16 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:163 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 +#: routeConfig.js:81 +#: screens/ActivityStream/ActivityStream.jsx:170 +#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Inventory/Inventories.jsx:16 +#: screens/Inventory/InventoryList/InventoryList.jsx:169 +#: screens/Inventory/InventoryList/InventoryList.jsx:220 +#: util/getRelatedResourceDeleteDetails.js:67 +#: util/getRelatedResourceDeleteDetails.js:226 +#: util/getRelatedResourceDeleteDetails.js:294 msgid "Inventories" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:133 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:134 msgid "Inventories with sources cannot be copied" msgstr "" -#: src/components/HostForm/HostForm.jsx:28 -#: src/components/JobList/JobListItem.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:98 -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:47 -#: src/components/Lookup/InventoryLookup.jsx:85 -#: src/components/Lookup/InventoryLookup.jsx:94 -#: src/components/Lookup/InventoryLookup.jsx:131 -#: src/components/Lookup/InventoryLookup.jsx:147 -#: src/components/Lookup/InventoryLookup.jsx:184 -#: src/components/PromptDetail/PromptDetail.jsx:183 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:77 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:105 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:116 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 -#: src/components/TemplateList/TemplateListItem.jsx:223 -#: src/components/TemplateList/TemplateListItem.jsx:232 -#: src/screens/Host/HostDetail/HostDetail.jsx:83 -#: src/screens/Host/HostList/HostList.jsx:169 -#: src/screens/Host/HostList/HostListItem.jsx:39 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:195 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:186 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:194 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:131 +#: components/HostForm/HostForm.jsx:28 +#: components/JobList/JobListItem.jsx:150 +#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/Lookup/InventoryLookup.jsx:85 +#: components/Lookup/InventoryLookup.jsx:94 +#: components/Lookup/InventoryLookup.jsx:131 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:184 +#: components/PromptDetail/PromptDetail.jsx:183 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:78 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:107 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 +#: components/TemplateList/TemplateListItem.jsx:251 +#: components/TemplateList/TemplateListItem.jsx:260 +#: screens/Host/HostDetail/HostDetail.jsx:83 +#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostListItem.jsx:39 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:196 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:200 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 msgid "Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Inventory (Name)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:100 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:101 msgid "Inventory File" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.jsx:90 msgid "Inventory ID" msgstr "" @@ -3605,52 +4124,69 @@ msgstr "" #~ msgid "Inventory Scripts" #~ msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:61 +#: screens/Job/JobDetail/JobDetail.jsx:212 +msgid "Inventory Source" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:89 msgid "Inventory Source Sync" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:157 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:176 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:163 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: util/getRelatedResourceDeleteDetails.js:74 +#: util/getRelatedResourceDeleteDetails.js:171 msgid "Inventory Sources" msgstr "" -#: src/components/JobList/JobList.jsx:206 -#: src/components/JobList/JobListItem.jsx:32 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: src/components/Workflow/WorkflowLegend.jsx:100 -#: src/screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.jsx:184 +#: components/JobList/JobListItem.jsx:32 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 +#: components/Workflow/WorkflowLegend.jsx:100 +#: screens/Job/JobDetail/JobDetail.jsx:94 msgid "Inventory Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:59 +#: components/Workflow/WorkflowNodeHelp.jsx:59 msgid "Inventory Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:219 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 msgid "Inventory file" msgstr "" -#: src/screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.jsx:91 msgid "Inventory not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:229 +#: screens/Dashboard/Dashboard.jsx:229 msgid "Inventory sync" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:146 msgid "Inventory sync failures" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:49 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 -#: src/screens/Job/JobDetail/JobDetail.jsx:119 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 +#: screens/Job/JobDetail/JobDetail.jsx:120 msgid "Isolated" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:21 -#: src/components/Lookup/Lookup.jsx:129 +#: screens/Job/JobOutput/JobOutput.jsx:649 +msgid "Item Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:648 +msgid "Item OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:650 +msgid "Item Skipped" +msgstr "" + +#: components/AssociateModal/AssociateModal.jsx:21 msgid "Items" msgstr "" @@ -3658,7 +4194,7 @@ msgstr "" #~ msgid "Items Per Page" #~ msgstr "" -#: src/components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" @@ -3666,121 +4202,150 @@ msgstr "" #~ msgid "Items {itemMin} – {itemMax} of {count}" #~ msgstr "" -#: src/components/Sparkline/Sparkline.jsx:28 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:32 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:54 +#: components/Sparkline/Sparkline.jsx:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42 +#: screens/Project/ProjectList/ProjectListItem.jsx:62 msgid "JOB ID:" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:144 +#: screens/Job/JobOutput/HostEventModal.jsx:144 msgid "JSON" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:145 +#: screens/Job/JobOutput/HostEventModal.jsx:145 msgid "JSON tab" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 msgid "JSON:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 msgid "January" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 msgid "Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:713 -#: src/screens/Job/JobOutput/JobOutput.jsx:714 +#: screens/Job/JobDetail/JobDetail.jsx:470 +#: screens/Job/JobDetail/JobDetail.jsx:471 +#: screens/Job/JobOutput/JobOutput.jsx:832 +#: screens/Job/JobOutput/JobOutput.jsx:833 msgid "Job Cancel Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:383 -#: src/screens/Job/JobOutput/JobOutput.jsx:728 -#: src/screens/Job/JobOutput/JobOutput.jsx:729 +#: screens/Job/JobDetail/JobDetail.jsx:481 +#: screens/Job/JobOutput/JobOutput.jsx:821 +#: screens/Job/JobOutput/JobOutput.jsx:822 msgid "Job Delete Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:241 +#: screens/Job/JobDetail/JobDetail.jsx:272 msgid "Job Slice" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 -#: src/screens/Template/shared/JobTemplateForm.jsx:428 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:148 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235 +#: screens/Template/shared/JobTemplateForm.jsx:458 msgid "Job Slicing" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.jsx:140 msgid "Job Status" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 -#: src/components/PromptDetail/PromptDetail.jsx:206 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:227 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 -#: src/screens/Job/JobDetail/JobDetail.jsx:290 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:332 -#: src/screens/Template/shared/JobTemplateForm.jsx:468 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 +#: components/PromptDetail/PromptDetail.jsx:206 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:233 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.jsx:321 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342 +#: screens/Template/shared/JobTemplateForm.jsx:498 msgid "Job Tags" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:196 -#: src/components/Workflow/WorkflowLegend.jsx:92 -#: src/components/Workflow/WorkflowNodeHelp.jsx:47 -#: src/screens/Job/JobDetail/JobDetail.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:67 +#: components/TemplateList/TemplateList.jsx:201 +#: components/Workflow/WorkflowLegend.jsx:92 +#: components/Workflow/WorkflowNodeHelp.jsx:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:33 +#: screens/Job/JobDetail/JobDetail.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:95 msgid "Job Template" msgstr "" -#: src/screens/Project/Project.jsx:117 -#: src/screens/Project/Projects.jsx:32 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:42 +msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" +msgstr "" + +#: screens/Project/Project.jsx:117 +#: screens/Project/Projects.jsx:32 +#: util/getRelatedResourceDeleteDetails.js:56 +#: util/getRelatedResourceDeleteDetails.js:108 +#: util/getRelatedResourceDeleteDetails.js:157 msgid "Job Templates" msgstr "" -#: src/components/JobList/JobList.jsx:202 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 -#: src/components/PromptDetail/PromptDetail.jsx:156 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:88 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 -#: src/screens/Job/JobDetail/JobDetail.jsx:191 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:169 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:128 -#: src/screens/Template/shared/JobTemplateForm.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:24 +msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useWorkflowNodeSteps.js:267 +msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" +msgstr "" + +#: components/JobList/JobList.jsx:180 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 +#: components/PromptDetail/PromptDetail.jsx:156 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:90 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 +#: screens/Job/JobDetail/JobDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145 +#: screens/Template/shared/JobTemplateForm.jsx:220 msgid "Job Type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:172 msgid "Job status" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:170 msgid "Job status graph tab" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 msgid "Job templates" msgstr "" -#: src/components/JobList/JobList.jsx:185 -#: src/components/JobList/JobList.jsx:262 -#: src/routeConfig.js:39 -#: src/screens/ActivityStream/ActivityStream.jsx:147 -#: src/screens/Dashboard/shared/LineChart.jsx:69 -#: src/screens/InstanceGroup/ContainerGroup.jsx:68 -#: src/screens/InstanceGroup/InstanceGroup.jsx:74 -#: src/screens/InstanceGroup/InstanceGroups.jsx:37 -#: src/screens/InstanceGroup/InstanceGroups.jsx:45 -#: src/screens/Job/Jobs.jsx:15 -#: src/screens/Job/Jobs.jsx:26 -#: src/screens/Setting/SettingList.jsx:92 -#: src/screens/Setting/Settings.jsx:74 +#: components/JobList/JobList.jsx:163 +#: components/JobList/JobList.jsx:240 +#: routeConfig.js:40 +#: screens/ActivityStream/ActivityStream.jsx:147 +#: screens/Dashboard/shared/LineChart.jsx:69 +#: screens/Host/Host.jsx:67 +#: screens/Host/Hosts.jsx:32 +#: screens/InstanceGroup/ContainerGroup.jsx:68 +#: screens/InstanceGroup/InstanceGroup.jsx:74 +#: screens/InstanceGroup/InstanceGroups.jsx:37 +#: screens/InstanceGroup/InstanceGroups.jsx:45 +#: screens/Inventory/Inventories.jsx:59 +#: screens/Inventory/Inventories.jsx:72 +#: screens/Inventory/Inventory.jsx:68 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 +#: screens/Inventory/SmartInventory.jsx:73 +#: screens/Job/Jobs.jsx:15 +#: screens/Job/Jobs.jsx:26 +#: screens/Setting/SettingList.jsx:92 +#: screens/Setting/Settings.jsx:74 +#: screens/Template/Template.jsx:164 +#: screens/Template/Templates.jsx:48 +#: screens/Template/WorkflowJobTemplate.jsx:145 msgid "Jobs" msgstr "" @@ -3788,260 +4353,265 @@ msgstr "" #~ msgid "Jobs Settings" #~ msgstr "" -#: src/screens/Setting/SettingList.jsx:99 +#: screens/Setting/SettingList.jsx:99 msgid "Jobs settings" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 msgid "July" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 msgid "June" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:129 +#: components/Search/AdvancedSearch.jsx:130 msgid "Key" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:120 +#: components/Search/AdvancedSearch.jsx:121 msgid "Key select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.jsx:124 msgid "Key typeahead" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.jsx:231 msgid "Keyword" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:51 -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserDetail/UserDetail.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "LDAP" msgstr "" -#: src/screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.jsx:79 msgid "LDAP 1" msgstr "" -#: src/screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.jsx:80 msgid "LDAP 2" msgstr "" -#: src/screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.jsx:81 msgid "LDAP 3" msgstr "" -#: src/screens/Setting/Settings.jsx:82 +#: screens/Setting/Settings.jsx:82 msgid "LDAP 4" msgstr "" -#: src/screens/Setting/Settings.jsx:83 +#: screens/Setting/Settings.jsx:83 msgid "LDAP 5" msgstr "" -#: src/screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.jsx:78 msgid "LDAP Default" msgstr "" -#: src/screens/Setting/SettingList.jsx:74 +#: screens/Setting/SettingList.jsx:74 msgid "LDAP settings" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 msgid "LDAP1" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 msgid "LDAP2" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 msgid "LDAP3" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 msgid "LDAP4" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 msgid "LDAP5" msgstr "" -#: src/components/JobList/JobList.jsx:198 +#: components/JobList/JobList.jsx:176 msgid "Label Name" msgstr "" -#: src/components/JobList/JobListItem.jsx:135 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:194 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 -#: src/components/TemplateList/TemplateListItem.jsx:237 -#: src/screens/Job/JobDetail/JobDetail.jsx:275 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:299 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:178 -#: src/screens/Template/shared/JobTemplateForm.jsx:339 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: components/JobList/JobListItem.jsx:136 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:200 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 +#: components/TemplateList/TemplateListItem.jsx:265 +#: screens/Job/JobDetail/JobDetail.jsx:306 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195 +#: screens/Template/shared/JobTemplateForm.jsx:369 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209 msgid "Labels" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:414 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 msgid "Last" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:78 +#: screens/User/UserDetail/UserDetail.jsx:78 msgid "Last Login" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:140 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 -#: src/components/TemplateList/TemplateListItem.jsx:265 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:44 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:236 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:62 -#: src/screens/Host/HostDetail/HostDetail.jsx:99 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:68 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:328 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:146 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:49 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:276 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.jsx:140 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 +#: components/TemplateList/TemplateListItem.jsx:293 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:44 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:253 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 +#: screens/Host/HostDetail/HostDetail.jsx:99 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:122 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 +#: screens/Team/TeamDetail/TeamDetail.jsx:49 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:286 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 msgid "Last Modified" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:123 -#: src/components/AddRole/AddResourceRole.jsx:137 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:134 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:167 -#: src/screens/User/UserDetail/UserDetail.jsx:66 -#: src/screens/User/UserList/UserList.jsx:127 -#: src/screens/User/UserList/UserList.jsx:169 -#: src/screens/User/UserList/UserListItem.jsx:70 -#: src/screens/User/UserList/UserListItem.jsx:73 -#: src/screens/User/shared/UserForm.jsx:115 +#: components/AddRole/AddResourceRole.jsx:134 +#: components/AddRole/AddResourceRole.jsx:148 +#: components/ResourceAccessList/ResourceAccessList.jsx:136 +#: components/ResourceAccessList/ResourceAccessList.jsx:169 +#: screens/User/UserDetail/UserDetail.jsx:66 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:169 +#: screens/User/UserList/UserListItem.jsx:70 +#: screens/User/UserList/UserListItem.jsx:73 +#: screens/User/shared/UserForm.jsx:115 msgid "Last Name" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:220 -#: src/components/TemplateList/TemplateListItem.jsx:130 +#: components/TemplateList/TemplateList.jsx:225 +#: components/TemplateList/TemplateListItem.jsx:155 msgid "Last Ran" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 msgid "Last Run" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.jsx:103 msgid "Last job" msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 msgid "Last job run" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:259 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 msgid "Last modified" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:377 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:214 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 +#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:237 msgid "Launch" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 msgid "Launch Management Job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:149 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:94 +#: components/TemplateList/TemplateListItem.jsx:175 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:117 msgid "Launch Template" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:98 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:99 msgid "Launch management job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:156 +#: components/TemplateList/TemplateListItem.jsx:183 msgid "Launch template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 msgid "Launch workflow" msgstr "" -#: src/components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "" -#: src/components/JobList/JobList.jsx:214 +#: components/JobList/JobList.jsx:192 msgid "Launched By (Username)" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:86 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:120 +msgid "Leave this field blank to make the execution environment globally available." +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:86 msgid "Legend" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:220 +#: components/Search/AdvancedSearch.jsx:221 msgid "Less than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:225 +#: components/Search/AdvancedSearch.jsx:226 msgid "Less than or equal to comparison." msgstr "" -#: src/screens/Setting/SettingList.jsx:137 -#: src/screens/Setting/Settings.jsx:96 +#: screens/Setting/SettingList.jsx:137 +#: screens/Setting/Settings.jsx:96 msgid "License" msgstr "" -#: src/screens/Setting/License/License.jsx:15 -#: src/screens/Setting/SettingList.jsx:142 +#: screens/Setting/License/License.jsx:15 +#: screens/Setting/SettingList.jsx:142 msgid "License settings" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:170 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:171 -#: src/components/JobList/JobList.jsx:232 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: src/components/PromptDetail/PromptDetail.jsx:194 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 -#: src/screens/Job/JobDetail/JobDetail.jsx:222 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:215 -#: src/screens/Template/shared/JobTemplateForm.jsx:390 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:144 +#: components/AdHocCommands/AdHocDetailsStep.jsx:170 +#: components/AdHocCommands/AdHocDetailsStep.jsx:171 +#: components/JobList/JobList.jsx:210 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 +#: components/PromptDetail/PromptDetail.jsx:194 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:140 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 +#: screens/Job/JobDetail/JobDetail.jsx:250 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 +#: screens/Template/shared/JobTemplateForm.jsx:420 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:155 msgid "Limit" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:219 msgid "Link to an available node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 msgid "Loading" msgstr "" @@ -4049,278 +4619,303 @@ msgstr "" #~ msgid "Loading..." #~ msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 msgid "Local Time Zone" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:141 +#: components/Schedule/shared/ScheduleForm.jsx:141 msgid "Local time zone" msgstr "" -#: src/screens/Login/Login.jsx:248 +#: screens/Login/Login.jsx:162 msgid "Log In" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:14 +#: screens/Setting/shared/LoggingTestAlert.jsx:14 msgid "Log aggregator test sent successfully." msgstr "" -#: src/screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.jsx:97 msgid "Logging" msgstr "" -#: src/screens/Setting/SettingList.jsx:118 +#: screens/Setting/SettingList.jsx:118 msgid "Logging settings" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:236 -#: src/components/AppContainer/PageHeaderToolbar.jsx:171 +#: components/AppContainer/AppContainer.jsx:242 +#: components/AppContainer/PageHeaderToolbar.jsx:171 msgid "Logout" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:307 -#: src/components/Lookup/Lookup.jsx:130 +#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/Lookup.jsx:130 msgid "Lookup modal" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:142 +#: components/Search/AdvancedSearch.jsx:143 msgid "Lookup select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:152 msgid "Lookup type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:145 +#: components/Search/AdvancedSearch.jsx:146 msgid "Lookup typeahead" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:30 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:52 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40 +#: screens/Project/ProjectList/ProjectListItem.jsx:60 msgid "MOST RECENT SYNC" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:86 -#: src/screens/Job/JobDetail/JobDetail.jsx:247 +#: components/AdHocCommands/AdHocCredentialStep.jsx:67 +#: components/AdHocCommands/AdHocCredentialStep.jsx:68 +#: components/AdHocCommands/AdHocCredentialStep.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:278 msgid "Machine Credential" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:84 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:84 msgid "Machine credential" msgstr "" -#: src/components/JobList/JobList.jsx:209 -#: src/components/JobList/JobListItem.jsx:35 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: src/screens/Job/JobDetail/JobDetail.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 +msgid "Managed by Tower" +msgstr "" + +#: components/JobList/JobList.jsx:187 +#: components/JobList/JobListItem.jsx:35 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 +#: screens/Job/JobDetail/JobDetail.jsx:100 msgid "Management Job" msgstr "" -#: src/routeConfig.js:127 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:128 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 msgid "Management Jobs" msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:22 +#: screens/ManagementJob/ManagementJobs.jsx:22 msgid "Management job" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:117 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:119 msgid "Management job launch error" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.jsx:132 msgid "Management job not found." msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.jsx:14 msgid "Management jobs" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:113 -#: src/components/PromptDetail/PromptProjectDetail.jsx:69 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:90 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:102 -#: src/screens/Project/ProjectList/ProjectList.jsx:145 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: components/Lookup/ProjectLookup.jsx:113 +#: components/PromptDetail/PromptProjectDetail.jsx:75 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:104 +#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectListItem.jsx:134 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 msgid "Manual" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 msgid "March" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:197 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:137 +#: components/NotificationList/NotificationList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 msgid "Mattermost" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 -#: src/screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 +#: screens/Organization/shared/OrganizationForm.jsx:75 msgid "Max Hosts" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.jsx:175 msgid "Maximum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:159 +#: screens/Template/Survey/SurveyQuestionForm.jsx:159 msgid "Maximum length" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 msgid "May" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:38 +#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 msgid "Members" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 msgid "Metadata" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 msgid "Microsoft Azure Resource Manager" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:169 +#: screens/Template/Survey/SurveyQuestionForm.jsx:169 msgid "Minimum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:153 +#: screens/Template/Survey/SurveyQuestionForm.jsx:153 msgid "Minimum length" msgstr "" +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 +msgid "" +"Minimum number of instances that will be automatically\n" +"assigned to this group when new instances come online." +msgstr "" + #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 -msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" + +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 +msgid "" +"Minimum percentage of all instances that will be automatically\n" +"assigned to this group when new instances come online." msgstr "" #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 -msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." -msgstr "" +#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.jsx:163 msgid "Minute" msgstr "" -#: src/screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.jsx:100 msgid "Miscellaneous System" msgstr "" -#: src/screens/Setting/SettingList.jsx:110 +#: screens/Setting/SettingList.jsx:110 msgid "Miscellaneous System settings" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:104 +#: components/Workflow/WorkflowNodeHelp.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 msgid "Missing" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:353 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: src/screens/User/UserTokenList/UserTokenList.jsx:138 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 +msgid "Missing resource" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:360 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:100 -#: src/components/AddRole/AddResourceRole.jsx:152 -#: src/components/AssociateModal/AssociateModal.jsx:146 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: src/components/Lookup/CredentialLookup.jsx:157 -#: src/components/Lookup/InventoryLookup.jsx:118 -#: src/components/Lookup/InventoryLookup.jsx:171 -#: src/components/Lookup/MultiCredentialsLookup.jsx:185 -#: src/components/Lookup/OrganizationLookup.jsx:113 -#: src/components/Lookup/ProjectLookup.jsx:125 -#: src/components/NotificationList/NotificationList.jsx:210 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:205 -#: src/components/TemplateList/TemplateList.jsx:209 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 -#: src/screens/Credential/CredentialList/CredentialList.jsx:145 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:167 -#: src/screens/Host/HostList/HostList.jsx:160 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:180 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:146 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: src/screens/Project/ProjectList/ProjectList.jsx:157 -#: src/screens/Team/TeamList/TeamList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 +#: components/AdHocCommands/AdHocCredentialStep.jsx:100 +#: components/AddRole/AddResourceRole.jsx:163 +#: components/AssociateModal/AssociateModal.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:183 +#: components/LaunchPrompt/steps/InventoryStep.jsx:95 +#: components/Lookup/CredentialLookup.jsx:157 +#: components/Lookup/InventoryLookup.jsx:118 +#: components/Lookup/InventoryLookup.jsx:171 +#: components/Lookup/MultiCredentialsLookup.jsx:185 +#: components/Lookup/OrganizationLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:125 +#: components/NotificationList/NotificationList.jsx:210 +#: components/Schedule/ScheduleList/ScheduleList.jsx:205 +#: components/TemplateList/TemplateList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 +#: screens/Credential/CredentialList/CredentialList.jsx:137 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: 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:192 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 +#: screens/Organization/OrganizationList/OrganizationList.jsx:150 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 +#: screens/Project/ProjectList/ProjectList.jsx:162 +#: 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:109 msgid "Modified By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:167 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.jsx:63 +#: screens/Job/JobOutput/HostEventModal.jsx:131 msgid "Module" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:269 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 msgid "Mon" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:274 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:430 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 msgid "Monday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:167 +#: components/Schedule/shared/ScheduleForm.jsx:167 msgid "Month" msgstr "" -#: src/components/Popover/Popover.jsx:39 +#: components/Popover/Popover.jsx:39 msgid "More information" msgstr "" -#: src/screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.jsx:63 msgid "More information for" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:111 +#: screens/Template/Survey/SurveyPreviewModal.jsx:111 msgid "Multi-Select" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.jsx:90 msgid "Multiple Choice" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:61 +#: screens/Template/Survey/SurveyQuestionForm.jsx:61 msgid "Multiple Choice (multiple select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:56 +#: screens/Template/Survey/SurveyQuestionForm.jsx:56 msgid "Multiple Choice (single select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:217 +#: screens/Template/Survey/SurveyQuestionForm.jsx:217 msgid "Multiple Choice Options" msgstr "" @@ -4329,253 +4924,274 @@ msgstr "" #~ msgid "My View" #~ msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:91 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:106 -#: src/components/AddRole/AddResourceRole.jsx:143 -#: src/components/AddRole/AddResourceRole.jsx:159 -#: src/components/AssociateModal/AssociateModal.jsx:137 -#: src/components/AssociateModal/AssociateModal.jsx:152 -#: src/components/HostForm/HostForm.jsx:87 -#: src/components/JobList/JobList.jsx:189 -#: src/components/JobList/JobList.jsx:238 -#: src/components/JobList/JobListItem.jsx:59 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:140 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:155 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:77 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:92 -#: src/components/Lookup/ApplicationLookup.jsx:78 -#: src/components/Lookup/ApplicationLookup.jsx:89 -#: src/components/Lookup/CredentialLookup.jsx:148 -#: src/components/Lookup/CredentialLookup.jsx:163 -#: src/components/Lookup/HostFilterLookup.jsx:77 -#: src/components/Lookup/HostFilterLookup.jsx:345 -#: src/components/Lookup/InstanceGroupsLookup.jsx:91 -#: src/components/Lookup/InstanceGroupsLookup.jsx:102 -#: src/components/Lookup/InventoryLookup.jsx:109 -#: src/components/Lookup/InventoryLookup.jsx:124 -#: src/components/Lookup/InventoryLookup.jsx:162 -#: src/components/Lookup/InventoryLookup.jsx:177 -#: src/components/Lookup/MultiCredentialsLookup.jsx:176 -#: src/components/Lookup/MultiCredentialsLookup.jsx:191 -#: src/components/Lookup/OrganizationLookup.jsx:104 -#: src/components/Lookup/OrganizationLookup.jsx:119 -#: src/components/Lookup/ProjectLookup.jsx:105 -#: src/components/Lookup/ProjectLookup.jsx:135 -#: src/components/NotificationList/NotificationList.jsx:181 -#: src/components/NotificationList/NotificationList.jsx:218 -#: src/components/NotificationList/NotificationListItem.jsx:25 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:77 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:86 -#: src/components/PaginatedTable/PaginatedTable.jsx:69 -#: src/components/PromptDetail/PromptDetail.jsx:109 -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:100 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:173 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:192 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:78 -#: src/components/Schedule/shared/ScheduleForm.jsx:102 -#: src/components/TemplateList/TemplateList.jsx:184 -#: src/components/TemplateList/TemplateList.jsx:217 -#: src/components/TemplateList/TemplateListItem.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: src/components/Workflow/WorkflowNodeHelp.jsx:132 -#: src/components/Workflow/WorkflowNodeHelp.jsx:158 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: src/screens/Application/Applications.jsx:84 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:32 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:161 -#: src/screens/Application/shared/ApplicationForm.jsx:54 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:193 -#: src/screens/Credential/CredentialList/CredentialList.jsx:132 -#: src/screens/Credential/CredentialList/CredentialList.jsx:151 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: src/screens/Credential/shared/CredentialForm.jsx:118 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:41 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:123 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:24 -#: src/screens/Host/HostDetail/HostDetail.jsx:74 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:158 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:173 -#: src/screens/Host/HostList/HostList.jsx:147 -#: src/screens/Host/HostList/HostList.jsx:168 -#: src/screens/Host/HostList/HostListItem.jsx:34 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:42 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:74 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:227 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:69 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:167 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:186 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:194 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:81 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:190 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: src/screens/Inventory/shared/InventoryForm.jsx:47 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:41 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:102 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:53 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:121 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:178 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:100 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:85 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:133 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:154 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:33 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: src/screens/Organization/shared/OrganizationForm.jsx:52 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:82 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: src/screens/Project/ProjectList/ProjectList.jsx:133 -#: src/screens/Project/ProjectList/ProjectList.jsx:169 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:88 -#: src/screens/Project/shared/ProjectForm.jsx:160 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:34 -#: src/screens/Team/TeamList/TeamList.jsx:129 -#: src/screens/Team/TeamList/TeamList.jsx:154 -#: src/screens/Team/TeamList/TeamListItem.jsx:40 -#: src/screens/Team/shared/TeamForm.jsx:35 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:167 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:128 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 -#: src/screens/Template/shared/JobTemplateForm.jsx:200 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:99 -#: src/screens/User/UserTeams/UserTeamList.jsx:230 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 +#: components/AdHocCommands/AdHocCredentialStep.jsx:91 +#: components/AdHocCommands/AdHocCredentialStep.jsx:106 +#: components/AddRole/AddResourceRole.jsx:154 +#: components/AddRole/AddResourceRole.jsx:170 +#: components/AssociateModal/AssociateModal.jsx:139 +#: components/AssociateModal/AssociateModal.jsx:154 +#: components/HostForm/HostForm.jsx:87 +#: components/JobList/JobList.jsx:167 +#: components/JobList/JobList.jsx:216 +#: components/JobList/JobListItem.jsx:59 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:174 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:189 +#: components/LaunchPrompt/steps/InventoryStep.jsx:86 +#: components/LaunchPrompt/steps/InventoryStep.jsx:101 +#: components/Lookup/ApplicationLookup.jsx:78 +#: components/Lookup/ApplicationLookup.jsx:89 +#: components/Lookup/CredentialLookup.jsx:148 +#: components/Lookup/CredentialLookup.jsx:163 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/Lookup/HostFilterLookup.jsx:77 +#: components/Lookup/HostFilterLookup.jsx:352 +#: components/Lookup/InstanceGroupsLookup.jsx:91 +#: components/Lookup/InstanceGroupsLookup.jsx:102 +#: components/Lookup/InventoryLookup.jsx:109 +#: components/Lookup/InventoryLookup.jsx:124 +#: components/Lookup/InventoryLookup.jsx:162 +#: components/Lookup/InventoryLookup.jsx:177 +#: components/Lookup/MultiCredentialsLookup.jsx:176 +#: components/Lookup/MultiCredentialsLookup.jsx:191 +#: components/Lookup/OrganizationLookup.jsx:106 +#: components/Lookup/OrganizationLookup.jsx:121 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:135 +#: components/NotificationList/NotificationList.jsx:181 +#: components/NotificationList/NotificationList.jsx:218 +#: components/NotificationList/NotificationListItem.jsx:25 +#: components/PaginatedDataList/PaginatedDataList.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PromptDetail/PromptDetail.jsx:109 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:100 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 +#: components/Schedule/ScheduleList/ScheduleList.jsx:173 +#: components/Schedule/ScheduleList/ScheduleList.jsx:192 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78 +#: components/Schedule/shared/ScheduleForm.jsx:102 +#: components/TemplateList/TemplateList.jsx:189 +#: components/TemplateList/TemplateList.jsx:222 +#: components/TemplateList/TemplateListItem.jsx:126 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 +#: components/Workflow/WorkflowNodeHelp.jsx:132 +#: components/Workflow/WorkflowNodeHelp.jsx:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 +#: screens/Application/Applications.jsx:84 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:32 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/shared/ApplicationForm.jsx:54 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205 +#: screens/Credential/CredentialList/CredentialList.jsx:124 +#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialListItem.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:118 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:24 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:59 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:23 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:68 +#: screens/Host/HostDetail/HostDetail.jsx:74 +#: screens/Host/HostGroups/HostGroupsList.jsx:158 +#: screens/Host/HostGroups/HostGroupsList.jsx:173 +#: screens/Host/HostList/HostList.jsx:147 +#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostListItem.jsx:34 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:77 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 +#: screens/InstanceGroup/Instances/InstanceList.jsx:155 +#: screens/InstanceGroup/Instances/InstanceList.jsx:162 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 +#: screens/Inventory/InventoryList/InventoryList.jsx:173 +#: screens/Inventory/InventoryList/InventoryList.jsx:192 +#: screens/Inventory/InventoryList/InventoryList.jsx:200 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:81 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 +#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryGroupForm.jsx:41 +#: screens/Inventory/shared/InventorySourceForm.jsx:105 +#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:107 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 +#: screens/Organization/OrganizationList/OrganizationList.jsx:137 +#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 +#: screens/Organization/shared/OrganizationForm.jsx:60 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:84 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:138 +#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectListItem.jsx:99 +#: screens/Project/shared/ProjectForm.jsx:167 +#: screens/Team/TeamDetail/TeamDetail.jsx:34 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamListItem.jsx:40 +#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: 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/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:158 +#: 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:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 +#: screens/Template/shared/JobTemplateForm.jsx:207 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:110 +#: screens/User/UserTeams/UserTeamList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 msgid "Name" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:185 +#: components/AppContainer/AppContainer.jsx:185 msgid "Navigation" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:509 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:106 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 +#: screens/Dashboard/shared/ChartTooltip.jsx:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 msgid "Never" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.jsx:98 msgid "Never Updated" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 msgid "Never expires" msgstr "" -#: src/components/JobList/JobList.jsx:221 -#: src/components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.jsx:199 +#: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:79 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:113 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:122 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:79 +#: components/LaunchPrompt/LaunchPrompt.jsx:120 +#: components/Schedule/shared/SchedulePromptableFields.jsx:124 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:175 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:102 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:106 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 +#: components/Schedule/ScheduleList/ScheduleList.jsx:175 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:102 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:106 msgid "Next Run" msgstr "" -#: src/components/Search/Search.jsx:249 +#: components/Search/Search.jsx:257 msgid "No" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:157 +#: screens/Job/JobOutput/JobOutput.jsx:656 +msgid "No Hosts Matched" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:657 +msgid "No Hosts Remaining" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:157 msgid "No JSON Available" msgstr "" -#: src/screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.jsx:82 msgid "No Jobs" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:193 +#: screens/Job/JobOutput/HostEventModal.jsx:193 msgid "No Standard Error Available" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:175 +#: screens/Job/JobOutput/HostEventModal.jsx:175 msgid "No Standard Out Available" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:65 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:65 msgid "No inventory sync failures." msgstr "" -#: src/components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.jsx:16 msgid "No items found." msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:133 +#: screens/Job/JobOutput/HostEventModal.jsx:133 msgid "No result found" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:95 -#: src/components/Search/AdvancedSearch.jsx:133 -#: src/components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.jsx:96 +#: components/Search/AdvancedSearch.jsx:134 +#: components/Search/AdvancedSearch.jsx:154 msgid "No results found" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:174 +#: screens/Template/Survey/SurveyList.jsx:176 msgid "No survey questions found." msgstr "" @@ -4583,272 +5199,326 @@ msgstr "" #~ msgid "No {0} Found" #~ msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:96 -#: src/components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:96 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:74 msgid "Node Type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:74 msgid "Node type" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.jsx:107 msgid "None" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 msgid "None (Run Once)" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/ScheduleForm.jsx:162 msgid "None (run once)" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:46 -#: src/screens/User/UserList/UserListItem.jsx:30 -#: src/screens/User/shared/UserForm.jsx:29 +#: screens/User/UserDetail/UserDetail.jsx:46 +#: screens/User/UserList/UserListItem.jsx:30 +#: screens/User/shared/UserForm.jsx:29 msgid "Normal User" msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Not Found" msgstr "" -#: src/screens/Setting/shared/SettingDetail.jsx:59 -#: src/screens/Setting/shared/SettingDetail.jsx:98 -#: src/screens/Setting/shared/SettingDetail.jsx:121 +#: screens/Setting/shared/SettingDetail.jsx:59 +#: screens/Setting/shared/SettingDetail.jsx:100 msgid "Not configured" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:68 msgid "Not configured for inventory sync." msgstr "" +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 +msgid "" +"Note that only hosts directly in this group can\n" +"be disassociated. Hosts in sub-groups must be disassociated\n" +"directly from the sub-group level that they belong." +msgstr "" + #: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 -msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgstr "" + +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s\n" +"children. This list shows all groups the host is associated\n" +"with directly and indirectly." +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:212 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s \n" +"children. This list shows all groups the host is associated \n" +"with directly and indirectly." msgstr "" #: src/screens/Host/HostGroups/HostGroupsList.jsx:212 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" #: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 -msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +msgid "" +"Note: When using SSH protocol for GitHub or\n" +"Bitbucket, enter an SSH key only, do not enter a username\n" +"(other than git). Additionally, GitHub and Bitbucket do\n" +"not support password authentication when using SSH. GIT\n" +"read only protocol (git://) does not use username or\n" +"password information." msgstr "" +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#~ msgstr "" + #: src/screens/Inventory/Inventories.jsx:120 -msgid "Notifcations" -msgstr "" +#~ msgid "Notifcations" +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 msgid "Notification Color" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:51 +#: screens/NotificationTemplate/NotificationTemplate.jsx:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 msgid "Notification Template not found." msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:171 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:13 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/ActivityStream/ActivityStream.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188 +#: screens/NotificationTemplate/NotificationTemplates.jsx:13 +#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: util/getRelatedResourceDeleteDetails.js:205 msgid "Notification Templates" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 msgid "Notification Type" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 msgid "Notification color" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:130 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:249 +msgid "Notification sent successfully" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:253 +msgid "Notification timed out" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:147 msgid "Notification type" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:177 -#: src/routeConfig.js:122 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:104 -#: src/screens/ManagementJob/ManagementJob.jsx:115 -#: src/screens/ManagementJob/ManagementJobs.jsx:24 -#: src/screens/Organization/Organization.jsx:129 -#: src/screens/Organization/Organizations.jsx:35 -#: src/screens/Project/Project.jsx:111 -#: src/screens/Project/Projects.jsx:31 -#: src/screens/Template/Template.jsx:137 -#: src/screens/Template/Templates.jsx:47 -#: src/screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.jsx:177 +#: routeConfig.js:123 +#: screens/Inventory/Inventories.jsx:118 +#: screens/Inventory/InventorySource/InventorySource.jsx:104 +#: screens/ManagementJob/ManagementJob.jsx:115 +#: screens/ManagementJob/ManagementJobs.jsx:24 +#: screens/Organization/Organization.jsx:135 +#: screens/Organization/Organizations.jsx:35 +#: screens/Project/Project.jsx:111 +#: screens/Project/Projects.jsx:31 +#: screens/Template/Template.jsx:150 +#: screens/Template/Templates.jsx:47 +#: screens/Template/WorkflowJobTemplate.jsx:127 msgid "Notifications" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 msgid "November" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:101 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.jsx:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:543 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 msgid "Occurrences" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 msgid "October" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:225 -#: src/components/HostToggle/HostToggle.jsx:59 -#: src/components/InstanceToggle/InstanceToggle.jsx:59 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:53 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:225 +#: components/HostToggle/HostToggle.jsx:59 +#: components/InstanceToggle/InstanceToggle.jsx:59 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:53 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "Off" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: src/components/HostToggle/HostToggle.jsx:58 -#: src/components/InstanceToggle/InstanceToggle.jsx:58 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:96 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:52 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:224 +#: components/HostToggle/HostToggle.jsx:58 +#: components/InstanceToggle/InstanceToggle.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:96 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:52 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "On" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:122 -#: src/components/Workflow/WorkflowLinkHelp.jsx:30 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 +#: components/Workflow/WorkflowLegend.jsx:122 +#: components/Workflow/WorkflowLinkHelp.jsx:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 msgid "On Failure" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:118 -#: src/components/Workflow/WorkflowLinkHelp.jsx:27 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:61 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 +#: components/Workflow/WorkflowLegend.jsx:118 +#: components/Workflow/WorkflowLinkHelp.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 msgid "On Success" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 msgid "On date" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:255 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 msgid "On days" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:154 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:155 msgid "Only Group By" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 msgid "OpenStack" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 msgid "Option Details" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:372 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:212 +msgid "" +"Optional labels that describe this job template,\n" +"such as 'dev' or 'test'. Labels can be used to group and filter\n" +"job templates and completed jobs." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:342 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187 -msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." -msgstr "" +#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." +#~ msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:218 +#: screens/Template/shared/WebhookSubForm.jsx:219 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:222 -#: src/components/NotificationList/NotificationListItem.jsx:34 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:166 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:174 -#: src/components/PromptDetail/PromptProjectDetail.jsx:86 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:137 -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:49 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:121 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:163 -#: src/screens/Template/shared/JobTemplateForm.jsx:500 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: components/NotificationList/NotificationList.jsx:222 +#: components/NotificationList/NotificationListItem.jsx:34 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:167 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:180 +#: components/PromptDetail/PromptProjectDetail.jsx:92 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141 +#: screens/Credential/shared/TypeInputsSubForm.jsx:49 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180 +#: screens/Template/shared/JobTemplateForm.jsx:530 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Options" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:97 -#: src/components/Lookup/OrganizationLookup.jsx:81 -#: src/components/Lookup/OrganizationLookup.jsx:86 -#: src/components/Lookup/OrganizationLookup.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:63 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:73 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:91 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:101 -#: src/components/PromptDetail/PromptProjectDetail.jsx:55 -#: src/components/PromptDetail/PromptProjectDetail.jsx:65 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:37 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:163 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:204 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:76 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:197 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:100 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:89 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:40 -#: src/screens/Team/TeamList/TeamList.jsx:155 -#: src/screens/Team/TeamList/TeamListItem.jsx:45 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:172 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:182 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 -#: src/screens/User/UserTeams/UserTeamList.jsx:235 -#: src/screens/User/UserTeams/UserTeamListItem.jsx:42 +#: components/Lookup/ApplicationLookup.jsx:97 +#: components/Lookup/OrganizationLookup.jsx:82 +#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/OrganizationLookup.jsx:101 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:64 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:74 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:93 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:103 +#: components/PromptDetail/PromptProjectDetail.jsx:56 +#: components/PromptDetail/PromptProjectDetail.jsx:66 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:37 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:67 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 +#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:91 +#: screens/Team/TeamDetail/TeamDetail.jsx:40 +#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamListItem.jsx:45 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:123 +#: screens/User/UserTeams/UserTeamList.jsx:235 +#: screens/User/UserTeams/UserTeamListItem.jsx:42 msgid "Organization" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 msgid "Organization (Name)" msgstr "" @@ -4856,7 +5526,7 @@ msgstr "" #~ msgid "Organization Add" #~ msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:138 msgid "Organization Name" msgstr "" @@ -4864,20 +5534,22 @@ msgstr "" #~ msgid "Organization detail tabs" #~ msgstr "" -#: src/screens/Organization/Organization.jsx:148 +#: screens/Organization/Organization.jsx:154 msgid "Organization not found." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: src/routeConfig.js:96 -#: src/screens/ActivityStream/ActivityStream.jsx:178 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:129 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:175 -#: src/screens/Organization/Organizations.jsx:16 -#: src/screens/Organization/Organizations.jsx:27 -#: src/screens/User/User.jsx:65 -#: src/screens/User/UserOrganizations/UserOrganizationsList.jsx:55 -#: src/screens/User/Users.jsx:34 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 +#: routeConfig.js:97 +#: screens/ActivityStream/ActivityStream.jsx:178 +#: screens/Organization/OrganizationList/OrganizationList.jsx:133 +#: screens/Organization/OrganizationList/OrganizationList.jsx:179 +#: screens/Organization/Organizations.jsx:16 +#: screens/Organization/Organizations.jsx:27 +#: screens/User/User.jsx:65 +#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55 +#: screens/User/Users.jsx:34 +#: util/getRelatedResourceDeleteDetails.js:256 +#: util/getRelatedResourceDeleteDetails.js:290 msgid "Organizations" msgstr "" @@ -4885,35 +5557,35 @@ msgstr "" #~ msgid "Organizations List" #~ msgstr "" -#: src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 msgid "Other prompts" msgstr "" -#: src/screens/Job/Job.jsx:64 -#: src/screens/Job/Jobs.jsx:28 +#: screens/Job/Job.jsx:104 +#: screens/Job/Jobs.jsx:28 msgid "Output" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:47 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:114 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:129 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 msgid "Overwrite" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:49 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 msgid "Overwrite Variables" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:137 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:150 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 msgid "Overwrite variables" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 msgid "POST" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 msgid "PUT" msgstr "" @@ -4929,77 +5601,84 @@ msgstr "" #~ msgid "Page Number" #~ msgstr "" -#: src/components/NotificationList/NotificationList.jsx:198 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: components/NotificationList/NotificationList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 msgid "Pagerduty" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 msgid "Pagerduty Subdomain" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 msgid "Pagerduty subdomain" msgstr "" -#: src/components/Pagination/Pagination.jsx:37 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:157 +#: components/Workflow/WorkflowTools.jsx:166 msgid "Pan Down" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:130 +#: components/Workflow/WorkflowTools.jsx:133 msgid "Pan Left" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:167 +#: components/Workflow/WorkflowTools.jsx:177 msgid "Pan Right" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:140 +#: components/Workflow/WorkflowTools.jsx:144 msgid "Pan Up" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:279 +#: components/AdHocCommands/AdHocDetailsStep.jsx:279 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:362 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:209 +#: screens/Template/shared/JobTemplateForm.jsx:392 +msgid "" +"Pass extra command line variables to the playbook. This is the\n" +"-e or --extra-vars command line parameter for ansible-playbook.\n" +"Provide key/value pairs using either YAML or JSON. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: 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 "" -#: src/screens/Login/Login.jsx:258 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:52 -#: src/screens/User/shared/UserForm.jsx:85 +#: screens/Login/Login.jsx:172 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 +#: screens/Template/Survey/SurveyQuestionForm.jsx:52 +#: screens/User/shared/UserForm.jsx:85 msgid "Password" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:204 +#: screens/Dashboard/Dashboard.jsx:204 msgid "Past month" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:207 +#: screens/Dashboard/Dashboard.jsx:207 msgid "Past two weeks" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:210 +#: screens/Dashboard/Dashboard.jsx:210 msgid "Past week" msgstr "" -#: src/components/JobList/JobList.jsx:222 -#: src/components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.jsx:200 +#: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:88 +#: components/AppContainer/PageHeaderToolbar.jsx:88 msgid "Pending Workflow Approvals" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:109 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:109 msgid "Pending delete" msgstr "" @@ -5007,58 +5686,74 @@ msgstr "" #~ msgid "Per Page" #~ msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:310 +#: components/Lookup/HostFilterLookup.jsx:311 msgid "Perform a search to define a host filter" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:43 msgid "Personal access token" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.jsx:128 msgid "Play" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:82 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:89 msgid "Play Count" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: src/screens/Job/JobDetail/JobDetail.jsx:221 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 -#: src/screens/Template/shared/JobTemplateForm.jsx:300 +#: screens/Job/JobOutput/JobOutput.jsx:661 +msgid "Play Started" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 +#: screens/Job/JobDetail/JobDetail.jsx:249 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 +#: screens/Template/shared/JobTemplateForm.jsx:330 msgid "Playbook" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:139 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:97 +msgid "Playbook Check" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:662 +msgid "Playbook Complete" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:142 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 msgid "Playbook Directory" msgstr "" -#: src/components/JobList/JobList.jsx:207 -#: src/components/JobList/JobListItem.jsx:33 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: src/screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.jsx:185 +#: components/JobList/JobListItem.jsx:33 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 +#: screens/Job/JobDetail/JobDetail.jsx:98 msgid "Playbook Run" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:201 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Job/JobOutput/JobOutput.jsx:653 +msgid "Playbook Started" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:206 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 msgid "Playbook name" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:235 +#: screens/Dashboard/Dashboard.jsx:235 msgid "Playbook run" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:83 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:90 msgid "Plays" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.jsx:179 msgid "Please add survey questions." msgstr "" @@ -5071,64 +5766,72 @@ msgstr "" #~ msgid "Please add {0} {itemName} to populate this list" #~ msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:94 -#: src/components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:94 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 msgid "Please click the Start button to begin." msgstr "" -#: src/util/validators.jsx:118 +#: util/validators.jsx:118 msgid "Please enter a valid URL" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:22 msgid "Please enter a value." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:507 +#: components/Schedule/shared/ScheduleForm.jsx:581 msgid "Please select a day number between 1 and 31." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:723 +#: screens/Template/shared/JobTemplateForm.jsx:755 msgid "Please select an Inventory or check the Prompt on Launch option." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:497 +#: components/Schedule/shared/ScheduleForm.jsx:571 msgid "Please select an end date/time that comes after the start date/time." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:298 +#: components/Lookup/HostFilterLookup.jsx:299 msgid "Please select an organization before editing the host filter" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:74 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 msgid "Pod spec override" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:88 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:91 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 msgid "Policy instance minimum" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:93 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:96 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 msgid "Policy instance percentage" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:54 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:61 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:71 msgid "Populate field from an external secret management system" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:287 -msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#: components/Lookup/HostFilterLookup.jsx:288 +msgid "" +"Populate the hosts for this inventory by using a search\n" +"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" +"Refer to the Ansible Tower documentation for further syntax and\n" +"examples." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: src/components/Lookup/HostFilterLookup.jsx:287 +#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#~ msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 msgid "Port" msgstr "" @@ -5136,9 +5839,17 @@ msgstr "" #~ msgid "Portal Mode" #~ msgstr "" -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: src/screens/Template/Survey/SurveyList.jsx:161 -#: src/screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:212 +msgid "Preconditions for running this node when there are multiple parents. Refer to the" +msgstr "" + +#: components/CodeEditor/CodeEditor.jsx:176 +msgid "Press Enter to edit. Press ESC to stop editing." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 +#: screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/Survey/SurveyList.jsx:165 msgid "Preview" msgstr "" @@ -5150,663 +5861,735 @@ msgstr "" #~ msgid "Primary Navigation" #~ msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 msgid "Private key passphrase" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:506 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Privilege Escalation" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 msgid "Privilege escalation password" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:86 -#: src/components/Lookup/ProjectLookup.jsx:91 -#: src/components/Lookup/ProjectLookup.jsx:144 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:92 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:121 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:129 -#: src/components/TemplateList/TemplateListItem.jsx:255 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:209 -#: src/screens/Job/JobDetail/JobDetail.jsx:211 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:207 +#: components/Lookup/ProjectLookup.jsx:86 +#: components/Lookup/ProjectLookup.jsx:91 +#: components/Lookup/ProjectLookup.jsx:144 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:89 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 +#: components/TemplateList/TemplateListItem.jsx:283 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217 +#: screens/Job/JobDetail/JobDetail.jsx:224 +#: screens/Job/JobDetail/JobDetail.jsx:239 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:205 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 msgid "Project" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:134 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 +#: components/PromptDetail/PromptProjectDetail.jsx:100 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:137 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 msgid "Project Base Path" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:73 +#: components/Workflow/WorkflowLegend.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:101 msgid "Project Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.jsx:55 msgid "Project Update" msgstr "" -#: src/screens/Project/Project.jsx:139 +#: screens/Project/Project.jsx:139 msgid "Project not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:157 msgid "Project sync failures" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: src/routeConfig.js:75 -#: src/screens/ActivityStream/ActivityStream.jsx:167 -#: src/screens/Dashboard/Dashboard.jsx:151 -#: src/screens/Project/ProjectList/ProjectList.jsx:128 -#: src/screens/Project/ProjectList/ProjectList.jsx:196 -#: src/screens/Project/Projects.jsx:14 -#: src/screens/Project/Projects.jsx:25 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 +#: routeConfig.js:76 +#: screens/ActivityStream/ActivityStream.jsx:167 +#: screens/Dashboard/Dashboard.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:133 +#: screens/Project/ProjectList/ProjectList.jsx:201 +#: screens/Project/Projects.jsx:14 +#: screens/Project/Projects.jsx:25 +#: util/getRelatedResourceDeleteDetails.js:60 +#: util/getRelatedResourceDeleteDetails.js:219 +#: util/getRelatedResourceDeleteDetails.js:249 msgid "Projects" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:137 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:136 msgid "Promote Child Groups and Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:557 -#: src/components/Schedule/shared/ScheduleForm.jsx:560 +#: components/Schedule/shared/ScheduleForm.jsx:633 +#: components/Schedule/shared/ScheduleForm.jsx:636 msgid "Prompt" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:153 +#: components/PromptDetail/PromptDetail.jsx:153 msgid "Prompt Overrides" msgstr "" -#: src/components/CodeMirrorInput/VariablesField.jsx:74 -#: src/components/FieldWithPrompt/FieldWithPrompt.jsx:47 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:161 +#: components/CodeEditor/VariablesField.jsx:158 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167 msgid "Prompt on launch" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:150 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 +#: components/PromptDetail/PromptDetail.jsx:150 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 msgid "Prompted Values" msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:100 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:109 +#: components/LaunchPrompt/LaunchPrompt.jsx:107 +#: components/Schedule/shared/SchedulePromptableFields.jsx:111 msgid "Prompts" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:423 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:158 +msgid "" +"Provide a host pattern to further constrain\n" +"the list of hosts that will be managed or affected by the\n" +"playbook. Multiple patterns are allowed. Refer to Ansible\n" +"documentation for more information and examples on patterns." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +msgid "" +"Provide a host pattern to further constrain the list\n" +"of hosts that will be managed or affected by the playbook. Multiple\n" +"patterns are allowed. Refer to Ansible documentation for more\n" +"information and examples on patterns." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 #: src/screens/Template/shared/JobTemplateForm.jsx:393 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147 -msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." -msgstr "" +#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." +#~ msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/CredentialField.jsx:97 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 -msgid "Provide key/value pairs using either YAML or JSON." +#: components/AdHocCommands/AdHocDetailsStep.jsx:284 +msgid "" +"Provide key/value pairs using either\n" +"YAML or JSON." msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 -#: src/screens/Template/shared/JobTemplateForm.jsx:579 +#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 +#~ msgid "Provide key/value pairs using either YAML or JSON." +#~ msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:152 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Provisioning Callback URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:574 +#: screens/Template/shared/JobTemplateForm.jsx:604 msgid "Provisioning Callback details" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:511 -#: src/screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:544 msgid "Provisioning Callbacks" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:116 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:93 +msgid "Pull" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:116 msgid "Question" msgstr "" -#: src/screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.jsx:103 msgid "RADIUS" msgstr "" -#: src/screens/Setting/SettingList.jsx:78 +#: screens/Setting/SettingList.jsx:78 msgid "RADIUS settings" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Read" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:177 +#: screens/Dashboard/Dashboard.jsx:177 msgid "Recent Jobs" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:175 +#: screens/Dashboard/Dashboard.jsx:175 msgid "Recent Jobs list tab" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:183 +#: screens/Dashboard/Dashboard.jsx:183 msgid "Recent Templates" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:180 +#: screens/Dashboard/Dashboard.jsx:180 msgid "Recent Templates list tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 msgid "Recipient List" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 msgid "Recipient list" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:117 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: src/screens/Project/ProjectList/ProjectList.jsx:149 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: components/Lookup/ProjectLookup.jsx:117 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 +#: screens/Project/ProjectList/ProjectList.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 msgid "Red Hat Insights" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 msgid "Red Hat Satellite 6" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "Red Hat Virtualization" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:108 +#: screens/Application/shared/ApplicationForm.jsx:108 msgid "Redirect URIs" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 msgid "Redirect uris" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:383 -msgid "Refer to the Ansible documentation for details about the configuration file." +#: screens/Template/shared/JobTemplateForm.jsx:413 +msgid "" +"Refer to the Ansible documentation for details\n" +"about the configuration file." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:78 +#: src/screens/Template/shared/JobTemplateForm.jsx:383 +#~ msgid "Refer to the Ansible documentation for details about the configuration file." +#~ msgstr "" + +#: screens/User/UserTokens/UserTokens.jsx:78 msgid "Refresh Token" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:85 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:118 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:119 msgid "Regions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:240 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +msgid "Registry credential" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:283 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "" -#: src/screens/Inventory/Inventories.jsx:94 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 +#: screens/Inventory/Inventories.jsx:92 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 msgid "Related Groups" msgstr "" -#: src/components/JobList/JobListItem.jsx:104 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:69 -#: src/screens/Job/JobDetail/JobDetail.jsx:360 -#: src/screens/Job/JobDetail/JobDetail.jsx:363 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:150 +#: components/JobList/JobListItem.jsx:105 +#: components/LaunchButton/ReLaunchDropDown.jsx:70 +#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:402 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:161 msgid "Relaunch" msgstr "" -#: src/components/JobList/JobListItem.jsx:89 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:135 +#: components/JobList/JobListItem.jsx:89 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:142 msgid "Relaunch Job" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:33 +#: components/LaunchButton/ReLaunchDropDown.jsx:33 msgid "Relaunch all hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:44 +#: components/LaunchButton/ReLaunchDropDown.jsx:44 msgid "Relaunch failed hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:23 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:28 +#: components/LaunchButton/ReLaunchDropDown.jsx:23 +#: components/LaunchButton/ReLaunchDropDown.jsx:28 msgid "Relaunch on" msgstr "" -#: src/components/JobList/JobListItem.jsx:88 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:134 +#: components/JobList/JobListItem.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:141 msgid "Relaunch using host parameters" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:116 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: src/screens/Project/ProjectList/ProjectList.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: components/Lookup/ProjectLookup.jsx:116 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 +#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 msgid "Remote Archive" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:20 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:28 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 msgid "Remove" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 msgid "Remove All Nodes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 msgid "Remove Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 msgid "Remove Node" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:23 msgid "Remove {0} Access" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:60 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:60 msgid "Remove {0} chip" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:47 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:49 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 msgid "Repeat Frequency" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:104 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:143 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:45 +msgid "Replace" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:54 +msgid "Replace field with new value" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:106 +#: screens/Template/Survey/SurveyQuestionForm.jsx:143 msgid "Required" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 msgid "Resource deleted" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:21 +#: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Resource name" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:40 +#: screens/User/UserRoles/UserRolesListItem.jsx:40 msgid "Resource role" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:30 +#: screens/User/UserRoles/UserRolesListItem.jsx:30 msgid "Resource type" msgstr "" -#: src/routeConfig.js:61 -#: src/screens/ActivityStream/ActivityStream.jsx:156 +#: routeConfig.js:62 +#: screens/ActivityStream/ActivityStream.jsx:156 msgid "Resources" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:121 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:71 +#: components/TemplateList/TemplateListItem.jsx:133 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:81 msgid "Resources are missing from this template." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:44 msgid "Restore initial value." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 -msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255 +msgid "" +"Retrieve the enabled state from the given dict of host variables.\n" +"The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:148 -#: src/components/JobList/JobListCancelButton.jsx:151 -#: src/screens/Job/JobOutput/JobOutput.jsx:692 -#: src/screens/Job/JobOutput/JobOutput.jsx:695 +#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 +#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:143 +#: components/JobList/JobListCancelButton.jsx:146 +#: screens/Job/JobDetail/JobDetail.jsx:453 +#: screens/Job/JobDetail/JobDetail.jsx:456 +#: screens/Job/JobOutput/JobOutput.jsx:804 +#: screens/Job/JobOutput/JobOutput.jsx:807 msgid "Return" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:115 +#: components/Search/AdvancedSearch.jsx:116 msgid "Returns results that have values other than this one as well as other filters." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:101 +#: components/Search/AdvancedSearch.jsx:102 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:108 +#: components/Search/AdvancedSearch.jsx:109 msgid "Returns results that satisfy this one or any other filters." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Revert" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.jsx:23 msgid "Revert all" msgstr "" -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:28 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:34 +#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.jsx:34 msgid "Revert all to default" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:53 +msgid "Revert field to previously saved value" +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:11 msgid "Revert settings" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.jsx:43 msgid "Revert to factory default." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:220 -#: src/screens/Project/ProjectList/ProjectList.jsx:172 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:111 +#: screens/Job/JobDetail/JobDetail.jsx:248 +#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectListItem.jsx:137 msgid "Revision" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 msgid "Revision #" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:199 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 +#: components/NotificationList/NotificationList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Rocket.Chat" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:40 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: src/screens/User/UserList/UserList.jsx:171 -#: src/screens/User/UserList/UserListItem.jsx:78 -#: src/screens/User/UserRoles/UserRolesList.jsx:145 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:44 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.jsx:148 +#: screens/User/UserList/UserList.jsx:171 +#: screens/User/UserList/UserListItem.jsx:78 +#: screens/User/UserRoles/UserRolesList.jsx:145 +#: screens/User/UserRoles/UserRolesListItem.jsx:44 msgid "Role" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:141 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:154 -#: src/screens/Team/Team.jsx:57 -#: src/screens/Team/Teams.jsx:32 -#: src/screens/User/User.jsx:70 -#: src/screens/User/Users.jsx:32 +#: components/ResourceAccessList/ResourceAccessList.jsx:143 +#: components/ResourceAccessList/ResourceAccessList.jsx:156 +#: screens/Team/Team.jsx:57 +#: screens/Team/Teams.jsx:32 +#: screens/User/User.jsx:70 +#: screens/User/Users.jsx:32 msgid "Roles" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 -#: src/components/Workflow/WorkflowLinkHelp.jsx:39 -#: src/screens/Credential/shared/ExternalTestModal.jsx:89 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:47 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: src/screens/Template/shared/JobTemplateForm.jsx:164 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/Workflow/WorkflowLinkHelp.jsx:39 +#: screens/Credential/shared/ExternalTestModal.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 +#: screens/Template/shared/JobTemplateForm.jsx:171 msgid "Run" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:124 -#: src/components/AdHocCommands/AdHocCommands.jsx:127 -#: src/components/AdHocCommands/AdHocCommands.jsx:132 -#: src/components/AdHocCommands/AdHocCommands.jsx:136 +#: components/AdHocCommands/AdHocCommands.jsx:124 +#: components/AdHocCommands/AdHocCommands.jsx:127 +#: components/AdHocCommands/AdHocCommands.jsx:133 +#: components/AdHocCommands/AdHocCommands.jsx:137 msgid "Run Command" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:109 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:109 msgid "Run command" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:227 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 msgid "Run every" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:157 +#: components/Schedule/shared/ScheduleForm.jsx:157 msgid "Run frequency" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 msgid "Run on" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 msgid "Run type" msgstr "" -#: src/components/JobList/JobList.jsx:224 -#: src/components/TemplateList/TemplateListItem.jsx:93 -#: src/components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.jsx:202 +#: components/TemplateList/TemplateListItem.jsx:105 +#: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:229 +#: screens/Job/JobOutput/JobOutput.jsx:654 +msgid "Running Handlers" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236 msgid "Running Jobs" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:99 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:99 msgid "Running jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:106 +#: screens/Setting/Settings.jsx:106 msgid "SAML" msgstr "" -#: src/screens/Setting/SettingList.jsx:82 +#: screens/Setting/SettingList.jsx:82 msgid "SAML settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:232 +#: screens/Dashboard/Dashboard.jsx:232 msgid "SCM update" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:53 -#: src/screens/User/UserList/UserListItem.jsx:57 +#: screens/User/UserDetail/UserDetail.jsx:53 +#: screens/User/UserList/UserListItem.jsx:57 msgid "SOCIAL" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 msgid "SSH password" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 msgid "SSL Connection" msgstr "" -#: src/components/Workflow/workflowReducer.js:411 +#: components/Workflow/WorkflowStartNode.jsx:61 +#: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:31 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:35 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:57 +#: components/Sparkline/Sparkline.jsx:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45 +#: screens/Project/ProjectList/ProjectListItem.jsx:65 msgid "STATUS:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:319 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 msgid "Sat" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:324 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:455 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 msgid "Saturday" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:255 -#: src/components/AssociateModal/AssociateModal.jsx:104 -#: src/components/AssociateModal/AssociateModal.jsx:110 -#: src/components/FormActionGroup/FormActionGroup.jsx:13 -#: src/components/FormActionGroup/FormActionGroup.jsx:19 -#: src/components/Schedule/shared/ScheduleForm.jsx:544 -#: src/components/Schedule/shared/ScheduleForm.jsx:550 -#: src/components/Schedule/shared/useSchedulePromptSteps.js:47 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: src/screens/Credential/shared/CredentialForm.jsx:269 -#: src/screens/Credential/shared/CredentialForm.jsx:274 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:19 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:25 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:34 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:118 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:165 +#: components/AddRole/AddResourceRole.jsx:266 +#: components/AssociateModal/AssociateModal.jsx:105 +#: components/AssociateModal/AssociateModal.jsx:111 +#: components/FormActionGroup/FormActionGroup.jsx:14 +#: components/FormActionGroup/FormActionGroup.jsx:20 +#: components/Schedule/shared/ScheduleForm.jsx:619 +#: components/Schedule/shared/ScheduleForm.jsx:625 +#: components/Schedule/shared/useSchedulePromptSteps.js:46 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 +#: screens/Credential/shared/CredentialForm.jsx:274 +#: screens/Credential/shared/CredentialForm.jsx:279 +#: screens/Setting/shared/RevertFormActionGroup.jsx:19 +#: screens/Setting/shared/RevertFormActionGroup.jsx:25 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:166 msgid "Save" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:31 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 msgid "Save & Exit" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 msgid "Save and enable log aggregation before testing the log aggregator." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 msgid "Save link changes" msgstr "" -#: src/screens/Project/Projects.jsx:38 -#: src/screens/Template/Templates.jsx:56 +#: screens/Project/Projects.jsx:38 +#: screens/Template/Templates.jsx:56 msgid "Schedule Details" msgstr "" -#: src/screens/Inventory/Inventories.jsx:117 +#: screens/Inventory/Inventories.jsx:115 msgid "Schedule details" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 msgid "Schedule is active" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 msgid "Schedule is inactive" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:460 +#: components/Schedule/shared/ScheduleForm.jsx:534 msgid "Schedule is missing rrule" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:231 -#: src/routeConfig.js:44 -#: src/screens/ActivityStream/ActivityStream.jsx:150 -#: src/screens/Inventory/Inventories.jsx:110 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:93 -#: src/screens/ManagementJob/ManagementJob.jsx:107 -#: src/screens/ManagementJob/ManagementJobs.jsx:25 -#: src/screens/Project/Project.jsx:123 -#: src/screens/Project/Projects.jsx:34 -#: src/screens/Schedule/AllSchedules.jsx:25 -#: src/screens/Template/Template.jsx:144 -#: src/screens/Template/Templates.jsx:52 -#: src/screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/ScheduleList/ScheduleList.jsx:231 +#: routeConfig.js:45 +#: screens/ActivityStream/ActivityStream.jsx:150 +#: screens/Inventory/Inventories.jsx:108 +#: screens/Inventory/InventorySource/InventorySource.jsx:93 +#: screens/ManagementJob/ManagementJob.jsx:107 +#: screens/ManagementJob/ManagementJobs.jsx:25 +#: screens/Project/Project.jsx:123 +#: screens/Project/Projects.jsx:34 +#: screens/Schedule/AllSchedules.jsx:25 +#: screens/Template/Template.jsx:157 +#: screens/Template/Templates.jsx:52 +#: screens/Template/WorkflowJobTemplate.jsx:134 msgid "Schedules" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: src/screens/User/UserTokenList/UserTokenList.jsx:126 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: src/screens/User/shared/UserTokenForm.jsx:68 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 +#: screens/User/UserTokenList/UserTokenList.jsx:126 +#: screens/User/UserTokenList/UserTokenListItem.jsx:61 +#: screens/User/UserTokenList/UserTokenListItem.jsx:62 +#: screens/User/shared/UserTokenForm.jsx:68 msgid "Scope" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:57 +#: screens/Job/JobOutput/PageControls.jsx:61 msgid "Scroll first" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:64 +#: screens/Job/JobOutput/PageControls.jsx:69 msgid "Scroll last" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:50 +#: screens/Job/JobOutput/PageControls.jsx:53 msgid "Scroll next" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:43 +#: screens/Job/JobOutput/PageControls.jsx:45 msgid "Scroll previous" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:250 -#: src/components/Lookup/Lookup.jsx:106 +#: components/Lookup/HostFilterLookup.jsx:251 +#: components/Lookup/Lookup.jsx:106 msgid "Search" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:257 -#: src/components/Search/Search.jsx:273 +#: screens/Job/JobOutput/JobOutput.jsx:723 +msgid "Search is disabled while the job is running" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:258 +#: components/Search/Search.jsx:282 msgid "Search submit button" msgstr "" -#: src/components/Search/Search.jsx:264 +#: components/Search/Search.jsx:272 msgid "Search text input" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:405 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 msgid "Second" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:104 -#: src/components/PromptDetail/PromptProjectDetail.jsx:89 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:125 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:105 +#: components/PromptDetail/PromptProjectDetail.jsx:95 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:127 msgid "Seconds" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:67 +#: components/LaunchPrompt/steps/PreviewStep.jsx:67 msgid "See errors on the left" msgstr "" -#: src/components/JobList/JobListItem.jsx:57 -#: src/components/Lookup/HostFilterLookup.jsx:319 -#: src/components/Lookup/Lookup.jsx:140 -#: src/components/Pagination/Pagination.jsx:35 +#: components/JobList/JobListItem.jsx:57 +#: components/Lookup/HostFilterLookup.jsx:321 +#: components/Lookup/Lookup.jsx:141 +#: components/Pagination/Pagination.jsx:33 msgid "Select" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:236 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 +#: screens/Host/HostGroups/HostGroupsList.jsx:236 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 msgid "Select Groups" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 msgid "Select Hosts" msgstr "" -#: src/components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.jsx:38 msgid "Select Input" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:223 +#: screens/InstanceGroup/Instances/InstanceList.jsx:223 msgid "Select Instances" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:22 +#: components/AssociateModal/AssociateModal.jsx:22 msgid "Select Items" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:210 +#: components/AddRole/AddResourceRole.jsx:221 msgid "Select Items from List" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:255 msgid "Select Roles to Apply" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:249 +#: screens/User/UserTeams/UserTeamList.jsx:249 msgid "Select Teams" msgstr "" @@ -5814,191 +6597,261 @@ msgstr "" #~ msgid "Select Users Or Teams" #~ msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:50 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:78 msgid "Select a Node Type" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:180 +#: components/AddRole/AddResourceRole.jsx:191 msgid "Select a Resource Type" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:280 -msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#: screens/Template/shared/JobTemplateForm.jsx:310 +msgid "" +"Select a branch for the job template. This branch is applied to\n" +"all job template nodes that prompt for a branch." msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 +#: src/screens/Template/shared/JobTemplateForm.jsx:280 +#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:170 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:162 +#: screens/Credential/shared/CredentialForm.jsx:162 msgid "Select a credential Type" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:88 +#: components/JobList/JobListCancelButton.jsx:84 msgid "Select a job to cancel" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:81 +#: components/AdHocCommands/AdHocDetailsStep.jsx:81 msgid "Select a module" msgstr "" -#: src/screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.jsx:58 msgid "Select a playbook" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/Template/shared/JobTemplateForm.jsx:296 +msgid "Select a project before editing the execution environment." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 msgid "Select a row to approve" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:110 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 msgid "Select a row to delete" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 msgid "Select a row to deny" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:62 +#: components/DisassociateButton/DisassociateButton.jsx:62 msgid "Select a row to disassociate" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:85 +#: components/Schedule/shared/ScheduleForm.jsx:85 msgid "Select a valid date and time for this field" msgstr "" -#: src/components/HostForm/HostForm.jsx:23 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: src/components/Schedule/shared/ScheduleForm.jsx:91 -#: src/components/Schedule/shared/ScheduleForm.jsx:95 -#: src/screens/Credential/shared/CredentialForm.jsx:43 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:28 -#: src/screens/Inventory/shared/InventoryForm.jsx:24 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:33 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: src/screens/Project/shared/ProjectForm.jsx:101 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 -#: src/screens/Team/shared/TeamForm.jsx:20 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:28 -#: src/screens/Template/shared/JobTemplateForm.jsx:82 -#: src/screens/Template/shared/JobTemplateForm.jsx:140 -#: src/screens/User/shared/UserForm.jsx:49 +#: components/HostForm/HostForm.jsx:23 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 +#: components/Schedule/shared/ScheduleForm.jsx:91 +#: components/Schedule/shared/ScheduleForm.jsx:95 +#: screens/Credential/shared/CredentialForm.jsx:43 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:24 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 +#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 +#: screens/Project/shared/ProjectForm.jsx:100 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 +#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Template/Survey/SurveyQuestionForm.jsx:28 +#: screens/Template/shared/JobTemplateForm.jsx:83 +#: screens/Template/shared/JobTemplateForm.jsx:147 +#: screens/User/shared/UserForm.jsx:49 msgid "Select a value for this field" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.jsx:132 msgid "Select a webhook service." msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:74 -#: src/screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.jsx:74 +#: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:131 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" +#: screens/Project/shared/ProjectForm.jsx:200 +msgid "Select an organization before editing the default execution environment." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:354 +msgid "" +"Select credentials that allow Tower to access the nodes this job will be ran\n" +"against. You can only select one credential of each type. For machine credentials (SSH),\n" +"checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" +"credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" +"credential(s) become the defaults that can be updated at run time." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:324 -msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 +msgid "" +"Select from the list of directories found in\n" +"the Project Base Path. Together the base path and the playbook\n" +"directory provide the full path used to locate playbooks." msgstr "" #: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 -msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." -msgstr "" +#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." +#~ msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 msgid "Select items from list" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:215 -#: src/screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/Dashboard.jsx:215 +#: screens/Dashboard/Dashboard.jsx:216 msgid "Select job type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:193 -#: src/screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/Dashboard.jsx:193 +#: screens/Dashboard/Dashboard.jsx:194 msgid "Select period" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 msgid "Select roles to apply" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 msgid "Select source path" msgstr "" -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:91 +#: screens/Inventory/shared/SmartInventoryForm.jsx:91 msgid "Select the Instance Groups for this Inventory to run on." msgstr "" -#: src/screens/Organization/shared/OrganizationForm.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:463 +#: screens/Template/shared/JobTemplateForm.jsx:493 +msgid "" +"Select the Instance Groups for this Organization\n" +"to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:90 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:47 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Select the application that this token will belong to." msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:77 +#: components/AdHocCommands/AdHocCredentialStep.jsx:77 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 "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:146 -msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:201 +msgid "Select the default execution environment for this organization to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:102 +msgid "Select the default execution environment for this organization." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:197 +msgid "Select the default execution environment for this project." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:293 +msgid "Select the execution environment for this job template." +msgstr "" + +#: components/Lookup/InventoryLookup.jsx:89 +#: screens/Template/shared/JobTemplateForm.jsx:255 +msgid "" +"Select the inventory containing the hosts\n" +"you want this job to manage." msgstr "" #: src/components/Lookup/InventoryLookup.jsx:89 #: src/screens/Template/shared/JobTemplateForm.jsx:248 -msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +msgid "" +"Select the inventory file\n" +"to be synced by this source. You can select from\n" +"the dropdown or enter a file within the input." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 -msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." -msgstr "" +#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." +#~ msgstr "" -#: src/components/HostForm/HostForm.jsx:32 -#: src/components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.jsx:32 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:277 -#: src/screens/Template/shared/JobTemplateForm.jsx:304 +#: screens/Template/shared/JobTemplateForm.jsx:334 msgid "Select the playbook to be executed by this job." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:264 -msgid "Select the project containing the playbook you want this job to execute." +#: screens/Template/shared/JobTemplateForm.jsx:272 +msgid "" +"Select the project containing the playbook\n" +"you want this job to execute." msgstr "" -#: src/components/Lookup/Lookup.jsx:129 +#: src/screens/Template/shared/JobTemplateForm.jsx:264 +#~ msgid "Select the project containing the playbook you want this job to execute." +#~ msgstr "" + +#: components/Lookup/Lookup.jsx:129 msgid "Select {0}" msgstr "" @@ -6006,554 +6859,592 @@ msgstr "" #~ msgid "Select {header}" #~ msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:221 -#: src/components/AddRole/AddResourceRole.jsx:233 -#: src/components/AddRole/AddResourceRole.jsx:250 -#: src/components/AddRole/SelectRoleStep.jsx:31 -#: src/components/OptionsList/OptionsList.jsx:51 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:76 -#: src/components/TemplateList/TemplateListItem.jsx:112 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:30 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 -#: src/screens/Host/HostList/HostListItem.jsx:32 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:98 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:31 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:86 -#: src/screens/Team/TeamList/TeamListItem.jsx:38 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 +#: components/AddRole/AddResourceRole.jsx:232 +#: components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:261 +#: components/AddRole/SelectRoleStep.jsx:31 +#: components/OptionsList/OptionsList.jsx:51 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:76 +#: components/TemplateList/TemplateListItem.jsx:124 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:30 +#: screens/Credential/CredentialList/CredentialListItem.jsx:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 +#: screens/Host/HostList/HostListItem.jsx:32 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43 +#: screens/Project/ProjectList/ProjectListItem.jsx:97 +#: screens/Team/TeamList/TeamListItem.jsx:38 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 msgid "Selected" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:114 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:119 -#: src/components/Lookup/MultiCredentialsLookup.jsx:149 -#: src/components/Lookup/MultiCredentialsLookup.jsx:154 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:153 +#: components/Lookup/MultiCredentialsLookup.jsx:149 +#: components/Lookup/MultiCredentialsLookup.jsx:154 msgid "Selected Category" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 msgid "Send a test log message to the configured log aggregator." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 msgid "Sender Email" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 msgid "Sender e-mail" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 msgid "September" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 msgid "Service account JSON file" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:52 -#: src/screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.jsx:56 +#: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 msgid "Set how many days of data should be retained." msgstr "" -#: src/screens/Setting/SettingList.jsx:126 +#: screens/Setting/SettingList.jsx:126 msgid "Set preferences for data collection, logos, and logins" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +msgid "Set source path to" +msgstr "" + +#: components/InstanceToggle/InstanceToggle.jsx:50 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:132 +#: screens/Application/shared/ApplicationForm.jsx:132 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:93 +#: components/Search/AdvancedSearch.jsx:94 msgid "Set type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:84 +#: components/Search/AdvancedSearch.jsx:85 msgid "Set type select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:87 +#: components/Search/AdvancedSearch.jsx:88 msgid "Set type typeahead" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:150 +#: components/Workflow/WorkflowTools.jsx:155 msgid "Set zoom to 100% and center graph" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:45 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 msgid "Setting category" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:47 +#: screens/Setting/shared/RevertButton.jsx:47 msgid "Setting matches factory default." msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 msgid "Setting name" msgstr "" -#: src/routeConfig.js:144 -#: src/routeConfig.js:148 -#: src/screens/ActivityStream/ActivityStream.jsx:207 -#: src/screens/ActivityStream/ActivityStream.jsx:209 -#: src/screens/Setting/Settings.jsx:43 +#: routeConfig.js:150 +#: routeConfig.js:154 +#: screens/ActivityStream/ActivityStream.jsx:213 +#: screens/ActivityStream/ActivityStream.jsx:215 +#: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Show" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 -#: src/components/PromptDetail/PromptDetail.jsx:251 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 -#: src/screens/Template/shared/JobTemplateForm.jsx:445 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/PromptDetail/PromptDetail.jsx:251 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:144 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232 +#: screens/Template/shared/JobTemplateForm.jsx:475 msgid "Show Changes" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 msgid "Show all groups" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:211 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:212 +#: components/AdHocCommands/AdHocDetailsStep.jsx:211 +#: components/AdHocCommands/AdHocDetailsStep.jsx:212 msgid "Show changes" msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Show only root groups" msgstr "" -#: src/screens/Login/Login.jsx:133 +#: screens/Login/Login.jsx:208 msgid "Sign in with Azure AD" msgstr "" -#: src/screens/Login/Login.jsx:142 +#: screens/Login/Login.jsx:221 msgid "Sign in with GitHub" msgstr "" -#: src/screens/Login/Login.jsx:172 +#: screens/Login/Login.jsx:263 msgid "Sign in with GitHub Enterprise" msgstr "" -#: src/screens/Login/Login.jsx:184 +#: screens/Login/Login.jsx:279 msgid "Sign in with GitHub Enterprise Organizations" msgstr "" -#: src/screens/Login/Login.jsx:196 +#: screens/Login/Login.jsx:296 msgid "Sign in with GitHub Enterprise Teams" msgstr "" -#: src/screens/Login/Login.jsx:152 +#: screens/Login/Login.jsx:235 msgid "Sign in with GitHub Organizations" msgstr "" -#: src/screens/Login/Login.jsx:162 +#: screens/Login/Login.jsx:249 msgid "Sign in with GitHub Teams" msgstr "" -#: src/screens/Login/Login.jsx:206 +#: screens/Login/Login.jsx:311 msgid "Sign in with Google" msgstr "" -#: src/screens/Login/Login.jsx:220 +#: screens/Login/Login.jsx:329 msgid "Sign in with SAML" msgstr "" -#: src/screens/Login/Login.jsx:219 +#: screens/Login/Login.jsx:328 msgid "Sign in with SAML {samlIDP}" msgstr "" -#: src/components/Search/Search.jsx:175 +#: components/Search/Search.jsx:177 msgid "Simple key select" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 -#: src/components/PromptDetail/PromptDetail.jsx:229 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:242 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 -#: src/screens/Job/JobDetail/JobDetail.jsx:308 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:347 -#: src/screens/Template/shared/JobTemplateForm.jsx:484 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 +#: components/PromptDetail/PromptDetail.jsx:229 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 +#: screens/Job/JobDetail/JobDetail.jsx:339 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "Skip Tags" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:517 +msgid "" +"Skip tags are useful when you have a\n" +"large playbook, and you want to skip specific parts of a\n" +"play or task. Use commas to separate multiple tags. Refer\n" +"to Ansible Tower documentation for details on the usage\n" +"of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 +msgid "" +"Skip tags are useful when you have a large\n" +"playbook, and you want to skip specific parts of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 #: src/screens/Template/shared/JobTemplateForm.jsx:487 -msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 msgid "Skipped" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:140 +#: components/NotificationList/NotificationList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Slack" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:19 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:39 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:43 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:97 +#: screens/Host/HostList/SmartInventoryButton.jsx:19 +#: screens/Host/HostList/SmartInventoryButton.jsx:40 +#: screens/Host/HostList/SmartInventoryButton.jsx:44 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:97 msgid "Smart Inventory" msgstr "" -#: src/screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.jsx:96 msgid "Smart Inventory not found." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 +#: components/Lookup/HostFilterLookup.jsx:283 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 msgid "Smart host filter" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 msgid "Smart inventory" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:64 +#: components/LaunchPrompt/steps/PreviewStep.jsx:64 msgid "Some of the previous step(s) have errors" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 msgid "Something went wrong with the request to test this credential and metadata." msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Something went wrong..." msgstr "" -#: src/components/Sort/Sort.jsx:129 +#: components/Sort/Sort.jsx:129 msgid "Sort" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:63 -#: src/screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.jsx:63 +#: screens/Template/Survey/SurveyListItem.jsx:64 msgid "Sort question order" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:85 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:192 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:121 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:86 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200 +#: screens/Inventory/shared/InventorySourceForm.jsx:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 msgid "Source" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: src/components/PromptDetail/PromptDetail.jsx:189 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: src/components/PromptDetail/PromptProjectDetail.jsx:72 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:106 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:210 -#: src/screens/Template/shared/JobTemplateForm.jsx:276 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 +#: components/PromptDetail/PromptDetail.jsx:189 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:137 +#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/shared/JobTemplateForm.jsx:306 msgid "Source Control Branch" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 msgid "Source Control Branch/Tag/Commit" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:76 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:110 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 +#: components/PromptDetail/PromptProjectDetail.jsx:82 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:112 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 msgid "Source Control Credential" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:188 +#: screens/Project/shared/ProjectForm.jsx:214 msgid "Source Control Credential Type" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:73 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:107 -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 +#: components/PromptDetail/PromptProjectDetail.jsx:79 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:109 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 msgid "Source Control Refspec" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:68 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:74 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:102 msgid "Source Control Type" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:121 -#: src/components/PromptDetail/PromptProjectDetail.jsx:71 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:153 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: components/Lookup/ProjectLookup.jsx:121 +#: components/PromptDetail/PromptProjectDetail.jsx:77 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:107 +#: screens/Project/ProjectList/ProjectList.jsx:158 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Source Control URL" msgstr "" -#: src/components/JobList/JobList.jsx:205 -#: src/components/JobList/JobListItem.jsx:31 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: src/screens/Job/JobDetail/JobDetail.jsx:77 +#: components/JobList/JobList.jsx:183 +#: components/JobList/JobListItem.jsx:31 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 +#: screens/Job/JobDetail/JobDetail.jsx:93 msgid "Source Control Update" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 msgid "Source Phone Number" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:169 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:170 msgid "Source Variables" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:183 +#: screens/Job/JobDetail/JobDetail.jsx:184 msgid "Source Workflow Job" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:166 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:177 msgid "Source control branch" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:167 +#: screens/Inventory/shared/InventorySourceForm.jsx:157 msgid "Source details" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 msgid "Source phone number" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:247 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:33 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 msgid "Source variables" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 msgid "Sourced from a project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:100 -#: src/screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.jsx:98 +#: screens/Inventory/Inventory.jsx:66 msgid "Sources" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +msgid "" +"Specify HTTP Headers in JSON format. Refer to\n" +"the Ansible Tower documentation for example syntax." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 -msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +msgid "" +"Specify a notification color. Acceptable colors are hex\n" +"color code (example: #3af or #789abc)." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 -msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." -msgstr "" +#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." +#~ msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 msgid "Specify the conditions under which this node should be executed" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:180 +#: screens/Job/JobOutput/HostEventModal.jsx:180 msgid "Standard Error" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:162 +#: screens/Job/JobOutput/HostEventModal.jsx:162 msgid "Standard Out" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:181 +#: screens/Job/JobOutput/HostEventModal.jsx:181 msgid "Standard error tab" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:163 +#: screens/Job/JobOutput/HostEventModal.jsx:163 msgid "Standard out tab" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:57 -#: src/components/NotificationList/NotificationListItem.jsx:58 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:48 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:54 +#: components/NotificationList/NotificationListItem.jsx:57 +#: components/NotificationList/NotificationListItem.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:55 msgid "Start" msgstr "" -#: src/components/JobList/JobList.jsx:241 -#: src/components/JobList/JobListItem.jsx:74 +#: components/JobList/JobList.jsx:219 +#: components/JobList/JobListItem.jsx:74 msgid "Start Time" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:123 +#: components/Schedule/shared/ScheduleForm.jsx:123 msgid "Start date/time" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:395 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:396 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 msgid "Start message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:404 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:405 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 msgid "Start message body" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:69 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:70 msgid "Start sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:72 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:74 msgid "Start sync source" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:152 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: screens/Job/JobDetail/JobDetail.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Started" msgstr "" -#: src/components/JobList/JobList.jsx:218 -#: src/components/JobList/JobList.jsx:239 -#: src/components/JobList/JobListItem.jsx:68 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:195 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:141 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:179 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:170 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:93 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 +#: components/JobList/JobList.jsx:196 +#: components/JobList/JobList.jsx:217 +#: components/JobList/JobListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryList.jsx:201 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:142 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 +#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectListItem.jsx:119 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 msgid "Status" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:115 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: src/screens/Project/ProjectList/ProjectList.jsx:147 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Job/JobOutput/JobOutput.jsx:630 +msgid "Stdout" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:115 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 +#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 msgid "Subversion" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:70 -#: src/components/NotificationList/NotificationListItem.jsx:71 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/NotificationList/NotificationListItem.jsx:70 +#: components/NotificationList/NotificationListItem.jsx:71 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Success" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:413 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:414 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 msgid "Success message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:422 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:423 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 msgid "Success message body" msgstr "" -#: src/components/JobList/JobList.jsx:225 -#: src/components/Workflow/WorkflowNodeHelp.jsx:86 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.jsx:203 +#: components/Workflow/WorkflowNodeHelp.jsx:86 +#: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:122 +#: screens/Project/ProjectList/ProjectListItem.jsx:148 msgid "Successfully copied to clipboard!" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:259 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 msgid "Sun" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:264 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:425 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 msgid "Sunday" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:27 -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/Templates.jsx:49 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: screens/Template/Template.jsx:168 +#: screens/Template/Templates.jsx:49 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:136 +#: screens/Template/Survey/SurveyList.jsx:138 msgid "Survey List" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.jsx:32 msgid "Survey Preview" msgstr "" -#: src/screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.jsx:50 msgid "Survey Toggle" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:33 +#: screens/Template/Survey/SurveyPreviewModal.jsx:33 msgid "Survey preview modal" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.jsx:57 msgid "Survey questions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:76 -#: src/screens/Project/shared/ProjectSyncButton.jsx:34 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:78 +#: screens/Project/shared/ProjectSyncButton.jsx:35 msgid "Sync" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:128 -#: src/screens/Project/shared/ProjectSyncButton.jsx:30 +#: screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/shared/ProjectSyncButton.jsx:31 msgid "Sync Project" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:199 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:202 msgid "Sync all" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:193 msgid "Sync all sources" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:231 msgid "Sync error" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:115 +#: screens/Project/ProjectList/ProjectListItem.jsx:141 msgid "Sync for revision" msgstr "" -#: src/screens/Setting/SettingList.jsx:105 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:27 +#: screens/Setting/SettingList.jsx:105 +#: screens/User/UserRoles/UserRolesListItem.jsx:27 msgid "System" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:126 -#: src/screens/User/UserDetail/UserDetail.jsx:42 -#: src/screens/User/UserList/UserListItem.jsx:26 -#: src/screens/User/UserRoles/UserRolesList.jsx:124 -#: src/screens/User/shared/UserForm.jsx:41 +#: screens/Team/TeamRoles/TeamRolesList.jsx:126 +#: screens/User/UserDetail/UserDetail.jsx:42 +#: screens/User/UserList/UserListItem.jsx:26 +#: screens/User/UserRoles/UserRolesList.jsx:124 +#: screens/User/shared/UserForm.jsx:41 msgid "System Administrator" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:44 -#: src/screens/User/UserList/UserListItem.jsx:28 -#: src/screens/User/shared/UserForm.jsx:35 +#: screens/User/UserDetail/UserDetail.jsx:44 +#: screens/User/UserList/UserListItem.jsx:28 +#: screens/User/shared/UserForm.jsx:35 msgid "System Auditor" msgstr "" @@ -6561,703 +7452,881 @@ msgstr "" #~ msgid "System Settings" #~ msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:130 -#: src/screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/Job/JobOutput/JobOutput.jsx:667 +msgid "System Warning" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:130 +#: screens/User/UserRoles/UserRolesList.jsx:128 msgid "System administrators have unrestricted access to all resources." msgstr "" -#: src/screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.jsx:109 msgid "TACACS+" msgstr "" -#: src/screens/Setting/SettingList.jsx:86 +#: screens/Setting/SettingList.jsx:86 msgid "TACACS+ settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:165 -#: src/screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:501 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a\n" +"play or task. Use commas to separate multiple tags.\n" +"Refer to Ansible Tower documentation for details on\n" +"the usage of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 #: src/screens/Template/shared/JobTemplateForm.jsx:471 -msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 msgid "Tags for the Annotation" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 msgid "Tags for the annotation (optional)" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 msgid "Target URL" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.jsx:129 msgid "Task" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:95 msgid "Task Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:89 +#: screens/Job/JobOutput/JobOutput.jsx:658 +msgid "Task Started" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:96 msgid "Tasks" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:19 msgid "Team" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:120 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:120 +#: screens/Team/TeamRoles/TeamRolesList.jsx:144 msgid "Team Roles" msgstr "" -#: src/screens/Team/Team.jsx:73 +#: screens/Team/Team.jsx:73 msgid "Team not found." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:198 -#: src/components/AddRole/AddResourceRole.jsx:199 -#: src/routeConfig.js:106 -#: src/screens/ActivityStream/ActivityStream.jsx:184 -#: src/screens/Organization/Organization.jsx:124 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:156 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:41 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 -#: src/screens/Organization/Organizations.jsx:33 -#: src/screens/Team/TeamList/TeamList.jsx:124 -#: src/screens/Team/TeamList/TeamList.jsx:179 -#: src/screens/Team/Teams.jsx:14 -#: src/screens/Team/Teams.jsx:25 -#: src/screens/User/User.jsx:69 -#: src/screens/User/UserTeams/UserTeamList.jsx:176 -#: src/screens/User/UserTeams/UserTeamList.jsx:244 -#: src/screens/User/Users.jsx:33 +#: components/AddRole/AddResourceRole.jsx:209 +#: components/AddRole/AddResourceRole.jsx:210 +#: routeConfig.js:107 +#: screens/ActivityStream/ActivityStream.jsx:184 +#: screens/Organization/Organization.jsx:125 +#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 +#: screens/Organization/Organizations.jsx:33 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/Teams.jsx:14 +#: screens/Team/Teams.jsx:25 +#: screens/User/User.jsx:69 +#: screens/User/UserTeams/UserTeamList.jsx:176 +#: screens/User/UserTeams/UserTeamList.jsx:244 +#: screens/User/Users.jsx:33 +#: util/getRelatedResourceDeleteDetails.js:198 msgid "Teams" msgstr "" -#: src/screens/Template/Template.jsx:171 -#: src/screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.jsx:184 +#: screens/Template/WorkflowJobTemplate.jsx:179 msgid "Template not found." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:179 -#: src/components/TemplateList/TemplateList.jsx:238 -#: src/routeConfig.js:65 -#: src/screens/ActivityStream/ActivityStream.jsx:161 -#: src/screens/Template/Templates.jsx:16 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 +msgid "Template type" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:184 +#: components/TemplateList/TemplateList.jsx:243 +#: routeConfig.js:66 +#: screens/ActivityStream/ActivityStream.jsx:161 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 +#: screens/Template/Templates.jsx:16 +#: util/getRelatedResourceDeleteDetails.js:242 +#: util/getRelatedResourceDeleteDetails.js:299 msgid "Templates" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:281 -#: src/screens/Credential/shared/CredentialForm.jsx:287 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 +#: screens/Credential/shared/CredentialForm.jsx:287 +#: screens/Credential/shared/CredentialForm.jsx:293 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:83 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 msgid "Test" msgstr "" -#: src/screens/Credential/shared/ExternalTestModal.jsx:78 +#: screens/Credential/shared/ExternalTestModal.jsx:78 msgid "Test External Credential" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:123 msgid "Test Notification" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 msgid "Test logging" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:113 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:120 msgid "Test notification" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 msgid "Test passed" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:53 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:50 +#: screens/Template/Survey/SurveyPreviewModal.jsx:53 +#: screens/Template/Survey/SurveyQuestionForm.jsx:50 msgid "Text" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:67 +#: screens/Template/Survey/SurveyPreviewModal.jsx:67 msgid "Text Area" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:51 +#: screens/Template/Survey/SurveyQuestionForm.jsx:51 msgid "Textarea" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:88 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +msgid "The Execution Environment to be used when one has not been configured for a job template." +msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:88 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +msgid "" +"The amount of time (in seconds) before the email\n" +"notification stops trying to reach the host and times out. Ranges\n" +"from 1 to 120 seconds." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 -msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:469 +msgid "" +"The amount of time (in seconds) to run\n" +"before the job is canceled. Defaults to 0 for no job\n" +"timeout." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:439 -msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +msgid "" +"The base URL of the Grafana server - the\n" +"/api/annotations endpoint will be added automatically to the base\n" +"Grafana URL." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 -msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 +msgid "" +"The first fetches all references. The second\n" +"fetches the Github pull request number 62, in this example\n" +"the branch needs to be \"pull/62/head\"." msgstr "" #: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 -msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:77 +msgid "" +"The maximum number of hosts allowed to be managed by this organization.\n" +"Value defaults to 0 which means no limit. Refer to the Ansible\n" +"documentation for more details." msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:69 -msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:407 +msgid "" +"The number of parallel or simultaneous\n" +"processes to use while executing the playbook. An empty value,\n" +"or a value less than 1 will use the Ansible default which is\n" +"usually 5. The default number of forks can be overwritten\n" +"with a change to" msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:377 -msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" -msgstr "" +#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:197 +#: components/AdHocCommands/AdHocDetailsStep.jsx:197 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "" -#: src/components/ContentError/ContentError.jsx:43 -#: src/screens/Job/Job.jsx:84 +#: components/ContentError/ContentError.jsx:43 +#: screens/Job/Job.jsx:124 msgid "The page you requested could not be found." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:175 +#: components/AdHocCommands/AdHocDetailsStep.jsx:175 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:123 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:82 +msgid "The registry location where the container is stored." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 msgid "The resource associated with this node has been deleted." msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 -msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#: screens/Template/Survey/SurveyQuestionForm.jsx:134 +msgid "" +"The suggested format for variable names is lowercase and\n" +"underscore-separated (for example, foo_bar, user_id, host_name,\n" +"etc.). Variable names with spaces are not allowed." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 +#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#~ msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 msgid "The tower instance group cannot be deleted." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 -msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +msgid "" +"There are no available playbook directories in {project_base_dir}.\n" +"Either that directory is empty, or all of the contents are already\n" +"assigned to other projects. Create a new directory there and make\n" +"sure the playbook files can be read by the \"awx\" system user,\n" +"or have {brandName} directly retrieve your playbooks from\n" +"source control using the Source Control Type option above." msgstr "" -#: src/screens/Login/Login.jsx:112 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#~ msgstr "" + +#: screens/Login/Login.jsx:120 msgid "There was a problem signing in. Please try again." msgstr "" -#: src/components/ContentError/ContentError.jsx:45 +#: components/ContentError/ContentError.jsx:45 msgid "There was an error loading this content. Please reload the page." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:589 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:600 msgid "There was an error saving the workflow." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:19 +#: screens/Setting/shared/LoggingTestAlert.jsx:19 msgid "There was an error testing the log aggregator." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:74 +#: components/AdHocCommands/AdHocDetailsStep.jsx:74 msgid "These are the modules that {brandName} supports running commands against." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:151 +#: components/AdHocCommands/AdHocDetailsStep.jsx:151 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:133 +#: components/AdHocCommands/AdHocDetailsStep.jsx:133 msgid "These arguments are used with the specified module." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:121 +#: components/AdHocCommands/AdHocDetailsStep.jsx:121 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:407 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 msgid "Third" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:171 -#: src/screens/Template/Survey/SurveyList.jsx:121 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282 +#: screens/Template/Survey/SurveyList.jsx:123 msgid "This action will delete the following:" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:214 +#: screens/User/UserTeams/UserTeamList.jsx:214 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:218 -#: src/screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: screens/User/UserRoles/UserRolesList.jsx:220 msgid "This action will disassociate the following role from {0}:" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.jsx:134 msgid "This action will disassociate the following:" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:226 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +msgid "This container group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 +msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:122 +msgid "This credential type is currently being used by some credentials and cannot be deleted" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 +msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:269 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 msgid "This field may not be blank" msgstr "" -#: src/util/validators.jsx:102 +#: util/validators.jsx:102 msgid "This field must be a number" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:113 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:113 msgid "This field must be a number and have a value between {0} and {1}" msgstr "" -#: src/util/validators.jsx:41 +#: util/validators.jsx:41 msgid "This field must be a number and have a value between {min} and {max}" msgstr "" -#: src/util/validators.jsx:142 +#: util/validators.jsx:142 msgid "This field must be a regular expression" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: src/util/validators.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 +#: util/validators.jsx:86 msgid "This field must be an integer" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:104 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:104 msgid "This field must be at least {0} characters" msgstr "" -#: src/util/validators.jsx:31 +#: util/validators.jsx:31 msgid "This field must be at least {min} characters" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 msgid "This field must be greater than 0" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:118 -#: src/screens/User/shared/UserForm.jsx:89 -#: src/screens/User/shared/UserForm.jsx:100 -#: src/util/validators.jsx:4 -#: src/util/validators.jsx:51 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:118 +#: screens/User/shared/UserForm.jsx:89 +#: screens/User/shared/UserForm.jsx:100 +#: util/validators.jsx:4 +#: util/validators.jsx:51 msgid "This field must not be blank" msgstr "" -#: src/util/validators.jsx:76 +#: util/validators.jsx:76 msgid "This field must not contain spaces" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:107 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:107 msgid "This field must not exceed {0} characters" msgstr "" -#: src/util/validators.jsx:22 +#: util/validators.jsx:22 msgid "This field must not exceed {max} characters" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:50 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:52 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Application/Applications.jsx:78 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:150 +msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/LaunchPrompt/steps/useInventoryStep.jsx:66 +msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" + +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292 +msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" +msgstr "" + +#: screens/Application/Applications.jsx:78 msgid "This is the only time the client secret will be shown." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:59 +#: screens/User/UserTokens/UserTokens.jsx:59 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:143 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:411 +msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 +msgid "This organization is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.jsx:177 +msgid "This project is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:150 msgid "This project needs to be updated" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:131 +#: components/Schedule/ScheduleList/ScheduleList.jsx:131 msgid "This schedule is missing an Inventory" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:158 +#: components/Schedule/ScheduleList/ScheduleList.jsx:158 msgid "This schedule is missing required survey values" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:63 -#: src/components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:63 +#: components/LaunchPrompt/steps/StepName.jsx:27 msgid "This step contains errors" msgstr "" -#: src/screens/User/shared/UserForm.jsx:155 +#: screens/User/shared/UserForm.jsx:155 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:36 -msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#: screens/Setting/shared/RevertAllAlert.jsx:36 +msgid "" +"This will revert all configuration values on this page to\n" +"their factory defaults. Are you sure you want to proceed?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 +#: src/screens/Setting/shared/RevertAllAlert.jsx:36 +#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 msgid "This workflow does not have any nodes configured." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:299 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 msgid "Thu" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:304 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 msgid "Thursday" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:236 -#: src/screens/ActivityStream/ActivityStream.jsx:248 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:40 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.jsx:242 +#: screens/ActivityStream/ActivityStream.jsx:254 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 +#: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "" +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 +msgid "" +"Time in seconds to consider a project\n" +"to be current. During job runs and callbacks the task\n" +"system will evaluate the timestamp of the latest project\n" +"update. If it is older than Cache Timeout, it is not\n" +"considered current, and a new project update will be\n" +"performed." +msgstr "" + #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 -msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +msgid "" +"Time in seconds to consider an inventory sync\n" +"to be current. During job runs and callbacks the task system will\n" +"evaluate the timestamp of the latest sync. If it is older than\n" +"Cache Timeout, it is not considered current, and a new\n" +"inventory sync will be performed." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 -msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." -msgstr "" +#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." +#~ msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 msgid "Timed out" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:136 -#: src/screens/Template/shared/JobTemplateForm.jsx:438 +#: components/PromptDetail/PromptDetail.jsx:116 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 +#: screens/Template/shared/JobTemplateForm.jsx:468 msgid "Timeout" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:173 msgid "Timeout minutes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:157 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:187 msgid "Timeout seconds" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 msgid "Toggle Legend" msgstr "" -#: src/components/FormField/PasswordInput.jsx:40 +#: components/FormField/PasswordInput.jsx:41 msgid "Toggle Password" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 msgid "Toggle Tools" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:36 +#: screens/Job/JobOutput/PageControls.jsx:37 msgid "Toggle expand/collapse event lines" msgstr "" -#: src/components/HostToggle/HostToggle.jsx:67 +#: components/HostToggle/HostToggle.jsx:67 msgid "Toggle host" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:63 +#: components/InstanceToggle/InstanceToggle.jsx:63 msgid "Toggle instance" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 msgid "Toggle legend" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:51 +#: components/NotificationList/NotificationListItem.jsx:51 msgid "Toggle notification approvals" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:90 +#: components/NotificationList/NotificationListItem.jsx:90 msgid "Toggle notification failure" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:64 +#: components/NotificationList/NotificationListItem.jsx:64 msgid "Toggle notification start" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:77 +#: components/NotificationList/NotificationListItem.jsx:77 msgid "Toggle notification success" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 msgid "Toggle schedule" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 msgid "Toggle tools" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: src/screens/User/UserTokens/UserTokens.jsx:65 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 +#: screens/User/UserTokens/UserTokens.jsx:65 msgid "Token" msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:49 -#: src/screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.jsx:49 +#: screens/User/UserTokens/UserTokens.jsx:52 msgid "Token information" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.jsx:73 msgid "Token not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:39 +#: screens/User/UserTokenList/UserTokenListItem.jsx:39 msgid "Token type" msgstr "" -#: src/screens/Application/Application/Application.jsx:78 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: src/screens/Application/Applications.jsx:40 -#: src/screens/User/User.jsx:75 -#: src/screens/User/UserTokenList/UserTokenList.jsx:106 -#: src/screens/User/Users.jsx:35 +#: screens/Application/Application/Application.jsx:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 +#: screens/Application/Applications.jsx:40 +#: screens/User/User.jsx:75 +#: screens/User/UserTokenList/UserTokenList.jsx:106 +#: screens/User/Users.jsx:35 msgid "Tokens" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:84 +#: components/Workflow/WorkflowTools.jsx:84 msgid "Tools" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:230 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237 msgid "Total Jobs" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 msgid "Total Nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:103 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:103 msgid "Total jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 msgid "True" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:279 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 msgid "Tue" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:284 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:435 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 msgid "Tuesday" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:201 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:141 +#: components/NotificationList/NotificationList.jsx:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "Twilio" msgstr "" -#: src/components/JobList/JobList.jsx:240 -#: src/components/JobList/JobListItem.jsx:72 -#: src/components/Lookup/ProjectLookup.jsx:110 -#: src/components/NotificationList/NotificationList.jsx:220 -#: src/components/NotificationList/NotificationListItem.jsx:30 -#: src/components/PromptDetail/PromptDetail.jsx:112 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:174 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:95 -#: src/components/TemplateList/TemplateList.jsx:193 -#: src/components/TemplateList/TemplateList.jsx:218 -#: src/components/TemplateList/TemplateListItem.jsx:129 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 -#: src/components/Workflow/WorkflowNodeHelp.jsx:136 -#: src/components/Workflow/WorkflowNodeHelp.jsx:162 -#: src/screens/Credential/CredentialList/CredentialList.jsx:152 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:60 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:47 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:79 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:86 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:196 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:95 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:181 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:108 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: src/screens/Project/ProjectList/ProjectList.jsx:142 -#: src/screens/Project/ProjectList/ProjectList.jsx:171 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:106 -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:30 -#: src/screens/Template/Survey/SurveyListItem.jsx:115 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 -#: src/screens/User/UserDetail/UserDetail.jsx:70 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:34 +#: components/JobList/JobList.jsx:218 +#: components/JobList/JobListItem.jsx:72 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/NotificationList/NotificationList.jsx:220 +#: components/NotificationList/NotificationListItem.jsx:30 +#: components/PromptDetail/PromptDetail.jsx:112 +#: components/Schedule/ScheduleList/ScheduleList.jsx:174 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95 +#: components/TemplateList/TemplateList.jsx:198 +#: components/TemplateList/TemplateList.jsx:223 +#: components/TemplateList/TemplateListItem.jsx:154 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 +#: components/Workflow/WorkflowNodeHelp.jsx:136 +#: components/Workflow/WorkflowNodeHelp.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Credential/CredentialList/CredentialListItem.jsx:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:95 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 +#: screens/Project/ProjectList/ProjectList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectListItem.jsx:132 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30 +#: screens/Template/Survey/SurveyListItem.jsx:117 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/User/UserDetail/UserDetail.jsx:70 +#: screens/User/UserRoles/UserRolesListItem.jsx:34 msgid "Type" msgstr "" -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: src/screens/Project/shared/ProjectForm.jsx:220 +#: screens/Credential/shared/TypeInputsSubForm.jsx:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 +#: screens/Project/shared/ProjectForm.jsx:246 msgid "Type Details" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:108 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:63 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:111 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:63 msgid "Unavailable" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Undo" msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:101 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:108 msgid "Unreachable" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:100 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:107 msgid "Unreachable Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:109 msgid "Unreachable Hosts" msgstr "" -#: src/util/dates.jsx:81 +#: util/dates.jsx:81 msgid "Unrecognized day string" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 msgid "Unsaved changes modal" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:42 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:69 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 +#: components/PromptDetail/PromptProjectDetail.jsx:43 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 msgid "Update Revision on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:51 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 msgid "Update on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:53 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:54 msgid "Update on Project Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:156 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 msgid "Update on launch" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 msgid "Update on project update" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:126 msgid "Update options" msgstr "" -#: src/screens/Setting/SettingList.jsx:94 +#: screens/Setting/SettingList.jsx:94 msgid "Update settings pertaining to Jobs within {brandName}" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:205 +#: screens/Template/shared/WebhookSubForm.jsx:206 msgid "Update webhook key" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.jsx:110 msgid "Updating" msgstr "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:57 #: src/screens/Organization/shared/OrganizationForm.jsx:33 #: src/screens/Project/shared/ProjectForm.jsx:286 -msgid "Use Default Ansible Environment" -msgstr "" +#~ msgid "Use Default Ansible Environment" +#~ msgstr "" #: src/components/AnsibleSelect/AnsibleSelect.jsx:35 #~ msgid "Use Default {label}" #~ msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:133 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:67 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 msgid "Use Fact Storage" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 msgid "Use SSL" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 msgid "Use TLS" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:99 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:107 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:59 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:102 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:59 msgid "Used capacity" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:135 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/AppContainer/PageHeaderToolbar.jsx:135 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:20 msgid "User" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:163 +#: components/AppContainer/PageHeaderToolbar.jsx:163 msgid "User Details" msgstr "" -#: src/screens/Setting/SettingList.jsx:124 -#: src/screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.jsx:124 +#: screens/Setting/Settings.jsx:112 msgid "User Interface" msgstr "" @@ -7265,596 +8334,638 @@ msgstr "" #~ msgid "User Interface Settings" #~ msgstr "" -#: src/screens/Setting/SettingList.jsx:131 +#: screens/Setting/SettingList.jsx:131 msgid "User Interface settings" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:110 -#: src/screens/User/UserRoles/UserRolesList.jsx:141 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:110 +#: screens/User/UserRoles/UserRolesList.jsx:141 msgid "User Roles" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:67 -#: src/screens/User/shared/UserForm.jsx:137 +#: screens/User/UserDetail/UserDetail.jsx:67 +#: screens/User/shared/UserForm.jsx:137 msgid "User Type" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:156 +#: components/AppContainer/PageHeaderToolbar.jsx:156 msgid "User details" msgstr "" -#: src/screens/User/User.jsx:95 +#: screens/User/User.jsx:95 msgid "User not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.jsx:166 msgid "User tokens" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:114 -#: src/components/AddRole/AddResourceRole.jsx:129 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:125 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:159 -#: src/screens/Login/Login.jsx:261 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: src/screens/User/UserDetail/UserDetail.jsx:60 -#: src/screens/User/UserList/UserList.jsx:118 -#: src/screens/User/UserList/UserList.jsx:163 -#: src/screens/User/UserList/UserListItem.jsx:45 -#: src/screens/User/shared/UserForm.jsx:67 +#: components/AddRole/AddResourceRole.jsx:125 +#: components/AddRole/AddResourceRole.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:127 +#: components/ResourceAccessList/ResourceAccessList.jsx:161 +#: screens/Login/Login.jsx:175 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 +#: screens/User/UserDetail/UserDetail.jsx:60 +#: screens/User/UserList/UserList.jsx:118 +#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserListItem.jsx:45 +#: screens/User/shared/UserForm.jsx:67 msgid "Username" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:190 -#: src/components/AddRole/AddResourceRole.jsx:191 -#: src/routeConfig.js:101 -#: src/screens/ActivityStream/ActivityStream.jsx:181 -#: src/screens/Team/Teams.jsx:30 -#: src/screens/User/UserList/UserList.jsx:113 -#: src/screens/User/UserList/UserList.jsx:155 -#: src/screens/User/Users.jsx:15 -#: src/screens/User/Users.jsx:27 +#: components/AddRole/AddResourceRole.jsx:201 +#: components/AddRole/AddResourceRole.jsx:202 +#: routeConfig.js:102 +#: screens/ActivityStream/ActivityStream.jsx:181 +#: screens/Team/Teams.jsx:30 +#: screens/User/UserList/UserList.jsx:113 +#: screens/User/UserList/UserList.jsx:155 +#: screens/User/Users.jsx:15 +#: screens/User/Users.jsx:27 msgid "Users" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "VMware vCenter" msgstr "" -#: src/components/HostForm/HostForm.jsx:102 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 -#: src/components/PromptDetail/PromptDetail.jsx:260 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:256 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 -#: src/screens/Host/HostDetail/HostDetail.jsx:104 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:99 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 -#: src/screens/Inventory/shared/InventoryForm.jsx:89 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:55 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:98 -#: src/screens/Job/JobDetail/JobDetail.jsx:337 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:362 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:194 -#: src/screens/Template/shared/JobTemplateForm.jsx:359 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: components/HostForm/HostForm.jsx:102 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 +#: components/PromptDetail/PromptDetail.jsx:260 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:262 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 +#: screens/Host/HostDetail/HostDetail.jsx:104 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 +#: screens/Inventory/shared/InventoryForm.jsx:89 +#: screens/Inventory/shared/InventoryGroupForm.jsx:55 +#: screens/Inventory/shared/SmartInventoryForm.jsx:98 +#: screens/Job/JobDetail/JobDetail.jsx:368 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 +#: screens/Template/shared/JobTemplateForm.jsx:389 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231 msgid "Variables" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 +#: screens/Job/JobOutput/JobOutput.jsx:659 +msgid "Variables Prompted" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 msgid "Vault password" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 msgid "Vault password | {credId}" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:140 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 -#: src/components/PromptDetail/PromptDetail.jsx:199 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:101 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:135 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:225 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:89 -#: src/screens/Job/JobDetail/JobDetail.jsx:223 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: src/screens/Template/shared/JobTemplateForm.jsx:411 +#: screens/Job/JobOutput/JobOutput.jsx:664 +msgid "Verbose" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:140 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 +#: components/PromptDetail/PromptDetail.jsx:199 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:102 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:141 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:251 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 +#: screens/Template/shared/JobTemplateForm.jsx:441 msgid "Verbosity" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStream.jsx:33 +#: screens/Setting/ActivityStream/ActivityStream.jsx:33 msgid "View Activity Stream settings" msgstr "" -#: src/screens/Setting/AzureAD/AzureAD.jsx:26 +#: screens/Setting/AzureAD/AzureAD.jsx:26 msgid "View Azure AD settings" msgstr "" -#: src/screens/Credential/Credential.jsx:119 -#: src/screens/Credential/Credential.jsx:131 +#: screens/Credential/Credential.jsx:119 +#: screens/Credential/Credential.jsx:131 msgid "View Credential Details" msgstr "" -#: src/components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.jsx:135 msgid "View Details" msgstr "" -#: src/screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.jsx:58 msgid "View GitHub Settings" msgstr "" -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 msgid "View Google OAuth 2.0 settings" msgstr "" -#: src/screens/Host/Host.jsx:132 +#: screens/Host/Host.jsx:132 msgid "View Host Details" msgstr "" -#: src/screens/Inventory/Inventory.jsx:183 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 -#: src/screens/Inventory/SmartInventory.jsx:174 +#: screens/Inventory/Inventory.jsx:180 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 +#: screens/Inventory/SmartInventory.jsx:171 msgid "View Inventory Details" msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 msgid "View Inventory Groups" msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:162 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:162 msgid "View Inventory Host Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:49 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 msgid "View JSON examples at <0>www.json.org" msgstr "" -#: src/screens/Job/Job.jsx:120 +#: screens/Job/Job.jsx:165 msgid "View Job Details" msgstr "" -#: src/screens/Setting/Jobs/Jobs.jsx:26 +#: screens/Setting/Jobs/Jobs.jsx:26 msgid "View Jobs settings" msgstr "" -#: src/screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.jsx:38 msgid "View LDAP Settings" msgstr "" -#: src/screens/Setting/Logging/Logging.jsx:33 +#: screens/Setting/Logging/Logging.jsx:33 msgid "View Logging settings" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscSystem/MiscSystem.jsx:33 msgid "View Miscellaneous System settings" msgstr "" -#: src/screens/Organization/Organization.jsx:216 +#: screens/Organization/Organization.jsx:227 msgid "View Organization Details" msgstr "" -#: src/screens/Project/Project.jsx:198 +#: screens/Project/Project.jsx:198 msgid "View Project Details" msgstr "" -#: src/screens/Setting/RADIUS/RADIUS.jsx:26 +#: screens/Setting/RADIUS/RADIUS.jsx:26 msgid "View RADIUS settings" msgstr "" -#: src/screens/Setting/SAML/SAML.jsx:26 +#: screens/Setting/SAML/SAML.jsx:26 msgid "View SAML settings" msgstr "" -#: src/components/Schedule/Schedule.jsx:84 +#: components/Schedule/Schedule.jsx:85 msgid "View Schedules" msgstr "" -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.jsx:168 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "View Survey" msgstr "" -#: src/screens/Setting/TACACS/TACACS.jsx:26 +#: screens/Setting/TACACS/TACACS.jsx:26 msgid "View TACACS+ settings" msgstr "" -#: src/screens/Team/Team.jsx:116 +#: screens/Team/Team.jsx:116 msgid "View Team Details" msgstr "" -#: src/screens/Template/Template.jsx:251 -#: src/screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.jsx:265 +#: screens/Template/WorkflowJobTemplate.jsx:279 msgid "View Template Details" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:103 +#: screens/User/UserToken/UserToken.jsx:103 msgid "View Tokens" msgstr "" -#: src/screens/User/User.jsx:140 +#: screens/User/User.jsx:140 msgid "View User Details" msgstr "" -#: src/screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.jsx:26 msgid "View User Interface settings" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.jsx:104 msgid "View Workflow Approval Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 msgid "View YAML examples at <0>docs.ansible.com" msgstr "" -#: src/components/ScreenHeader/ScreenHeader.jsx:54 -#: src/components/ScreenHeader/ScreenHeader.jsx:56 +#: components/ScreenHeader/ScreenHeader.jsx:54 +#: components/ScreenHeader/ScreenHeader.jsx:57 msgid "View activity stream" msgstr "" -#: src/screens/Credential/Credential.jsx:81 +#: screens/Credential/Credential.jsx:81 msgid "View all Credentials." msgstr "" -#: src/screens/Host/Host.jsx:91 +#: screens/Host/Host.jsx:91 msgid "View all Hosts." msgstr "" -#: src/screens/Inventory/Inventory.jsx:93 -#: src/screens/Inventory/SmartInventory.jsx:98 +#: screens/Inventory/Inventory.jsx:93 +#: screens/Inventory/SmartInventory.jsx:98 msgid "View all Inventories." msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:102 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:102 msgid "View all Inventory Hosts." msgstr "" -#: src/screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.jsx:40 msgid "View all Jobs" msgstr "" -#: src/screens/Job/Job.jsx:85 +#: screens/Job/Job.jsx:125 msgid "View all Jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:53 +#: screens/NotificationTemplate/NotificationTemplate.jsx:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 msgid "View all Notification Templates." msgstr "" -#: src/screens/Organization/Organization.jsx:150 +#: screens/Organization/Organization.jsx:156 msgid "View all Organizations." msgstr "" -#: src/screens/Project/Project.jsx:140 +#: screens/Project/Project.jsx:140 msgid "View all Projects." msgstr "" -#: src/screens/Team/Team.jsx:74 +#: screens/Team/Team.jsx:74 msgid "View all Teams." msgstr "" -#: src/screens/Template/Template.jsx:172 -#: src/screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.jsx:185 +#: screens/Template/WorkflowJobTemplate.jsx:180 msgid "View all Templates." msgstr "" -#: src/screens/User/User.jsx:96 +#: screens/User/User.jsx:96 msgid "View all Users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.jsx:54 msgid "View all Workflow Approvals." msgstr "" -#: src/screens/Application/Application/Application.jsx:95 +#: screens/Application/Application/Application.jsx:95 msgid "View all applications." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.jsx:77 msgid "View all credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:84 -#: src/screens/InstanceGroup/InstanceGroup.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +msgid "View all execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:84 +#: screens/InstanceGroup/InstanceGroup.jsx:90 msgid "View all instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.jsx:134 msgid "View all management jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.jsx:195 msgid "View all settings" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:75 +#: screens/User/UserToken/UserToken.jsx:75 msgid "View all tokens." msgstr "" -#: src/screens/Setting/SettingList.jsx:138 +#: screens/Setting/SettingList.jsx:138 msgid "View and edit your license information" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:24 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 +#: screens/ActivityStream/ActivityStreamListItem.jsx:50 msgid "View event details" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.jsx:172 msgid "View inventory source details" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.jsx:44 msgid "View job {0}" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:171 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:177 msgid "View node details" msgstr "" -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 msgid "View smart inventory host details" msgstr "" -#: src/routeConfig.js:30 -#: src/screens/ActivityStream/ActivityStream.jsx:142 +#: routeConfig.js:31 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Views" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:134 -#: src/components/TemplateList/TemplateListItem.jsx:139 -#: src/screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.jsx:159 +#: components/TemplateList/TemplateListItem.jsx:165 +#: screens/Template/WorkflowJobTemplate.jsx:141 msgid "Visualizer" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 msgid "WARNING:" msgstr "" -#: src/components/JobList/JobList.jsx:223 -#: src/components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.jsx:201 +#: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:114 +#: components/Workflow/WorkflowLegend.jsx:114 +#: screens/Job/JobOutput/JobOutput.jsx:666 msgid "Warning" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 msgid "Warning: Unsaved Changes" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:202 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:142 +#: components/NotificationList/NotificationList.jsx:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Webhook" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:164 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:257 -#: src/screens/Template/shared/WebhookSubForm.jsx:216 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:170 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:267 +#: screens/Template/shared/WebhookSubForm.jsx:217 msgid "Webhook Credential" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:152 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 msgid "Webhook Credentials" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:160 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 -#: src/screens/Template/shared/WebhookSubForm.jsx:185 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:166 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:264 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:165 +#: screens/Template/shared/WebhookSubForm.jsx:185 msgid "Webhook Key" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:151 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:240 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:139 -#: src/screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:156 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 -#: src/screens/Template/shared/WebhookSubForm.jsx:167 -#: src/screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:162 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:161 +#: screens/Template/shared/WebhookSubForm.jsx:167 +#: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:607 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/JobTemplateForm.jsx:637 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "Webhook details" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:171 +#: screens/Template/shared/WebhookSubForm.jsx:171 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:189 +#: screens/Template/shared/WebhookSubForm.jsx:189 msgid "Webhook services can use this as a shared secret." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:289 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 msgid "Wed" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:294 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:440 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 msgid "Wednesday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:166 +#: components/Schedule/shared/ScheduleForm.jsx:166 msgid "Week" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:461 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 msgid "Weekday" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:466 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 msgid "Weekend day" msgstr "" -#: src/screens/Login/Login.jsx:121 +#: screens/Login/Login.jsx:142 msgid "Welcome to Ansible {brandName}! Please Sign In." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161 +msgid "" +"When not checked, a merge will be performed,\n" +"combining local variables with those found on the\n" +"external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158 -msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144 +msgid "" +"When not checked, local child\n" +"hosts and groups not found on the external source will remain\n" +"untouched by the inventory update process." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141 -msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." -msgstr "" +#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." +#~ msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.jsx:96 msgid "Workflow" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.jsx:63 msgid "Workflow Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.jsx:52 msgid "Workflow Approval not found." msgstr "" -#: src/routeConfig.js:54 -#: src/screens/ActivityStream/ActivityStream.jsx:153 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:12 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:19 +#: routeConfig.js:55 +#: screens/ActivityStream/ActivityStream.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:19 msgid "Workflow Approvals" msgstr "" -#: src/components/JobList/JobList.jsx:210 -#: src/components/JobList/JobListItem.jsx:36 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:41 -#: src/screens/Job/JobDetail/JobDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.jsx:188 +#: components/JobList/JobListItem.jsx:36 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41 +#: screens/Job/JobDetail/JobDetail.jsx:101 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 msgid "Workflow Job" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:51 -#: src/screens/Job/JobDetail/JobDetail.jsx:171 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:79 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: components/Workflow/WorkflowNodeHelp.jsx:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:172 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: util/getRelatedResourceDeleteDetails.js:112 msgid "Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:181 +#: util/getRelatedResourceDeleteDetails.js:284 +msgid "Workflow Job Template Nodes" +msgstr "" + +#: util/getRelatedResourceDeleteDetails.js:164 +msgid "Workflow Job Templates" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 msgid "Workflow Link" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:197 +#: components/TemplateList/TemplateList.jsx:202 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:449 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:450 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 msgid "Workflow approved message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:461 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:462 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 msgid "Workflow approved message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:473 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:474 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 msgid "Workflow denied message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:485 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:486 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 msgid "Workflow denied message body" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 msgid "Workflow documentation" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 msgid "Workflow job templates" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 msgid "Workflow link modal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 msgid "Workflow node view modal" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:497 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:498 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 msgid "Workflow pending message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:509 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:510 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 msgid "Workflow pending message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:521 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:522 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 msgid "Workflow timed out message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:533 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:534 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 msgid "Workflow timed out message body" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:81 +#: screens/User/shared/UserTokenForm.jsx:81 msgid "Write" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:46 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 msgid "YAML:" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:168 +#: components/Schedule/shared/ScheduleForm.jsx:168 msgid "Year" msgstr "" -#: src/components/Search/Search.jsx:246 +#: components/Search/Search.jsx:254 msgid "Yes" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "" -#: src/components/Lookup/MultiCredentialsLookup.jsx:142 +#: components/Lookup/MultiCredentialsLookup.jsx:142 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "" @@ -7862,15 +8973,15 @@ msgstr "" #~ msgid "You do not have permission to delete the following {0}: {itemsUnableToDelete}" #~ msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:102 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:52 +#: components/DisassociateButton/DisassociateButton.jsx:52 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "" @@ -7878,46 +8989,46 @@ msgstr "" #~ msgid "You have been logged out." #~ msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 msgid "You may apply a number of possible variables in the message. Refer to the" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:241 +#: components/AppContainer/AppContainer.jsx:247 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:222 +#: components/AppContainer/AppContainer.jsx:222 msgid "Your session is about to expire" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:120 +#: components/Workflow/WorkflowTools.jsx:122 msgid "Zoom In" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.jsx:101 msgid "Zoom Out" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:704 -#: src/screens/Template/shared/WebhookSubForm.jsx:155 +#: screens/Template/shared/JobTemplateForm.jsx:734 +#: screens/Template/shared/WebhookSubForm.jsx:155 msgid "a new webhook key will be generated on save." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:701 -#: src/screens/Template/shared/WebhookSubForm.jsx:143 +#: screens/Template/shared/JobTemplateForm.jsx:731 +#: screens/Template/shared/WebhookSubForm.jsx:143 msgid "a new webhook url will be generated on save." msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:45 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:116 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:91 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 +#: screens/Host/HostGroups/HostGroupItem.jsx:45 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:116 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 msgid "actions" msgstr "" @@ -7929,26 +9040,31 @@ msgstr "" #~ msgid "adding {currentTab}" #~ msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:514 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:219 +msgid "and click on Update Revision on Launch" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:514 msgid "approved" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:164 -#: src/screens/Template/Survey/SurveyList.jsx:111 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275 +#: screens/Template/Survey/SurveyList.jsx:113 msgid "cancel delete" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:252 +#: components/AdHocCommands/AdHocDetailsStep.jsx:252 msgid "command" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:156 -#: src/screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264 +#: screens/Template/Survey/SurveyList.jsx:104 msgid "confirm delete" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:114 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:201 +#: components/DisassociateButton/DisassociateButton.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:202 msgid "confirm disassociate" msgstr "" @@ -7956,12 +9072,12 @@ msgstr "" #~ msgid "confirm removal of {currentTab}/cancel and go back to {currentTab} view." #~ msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:60 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 msgid "controller instance" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:114 +#: screens/Project/ProjectList/ProjectListItem.jsx:140 msgid "copy to clipboard disabled" msgstr "" @@ -7973,27 +9089,32 @@ msgstr "" #~ msgid "deleting {currentTab} association with orgs" #~ msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:147 msgid "deletion error" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:522 +#: screens/ActivityStream/ActivityStreamDescription.jsx:522 msgid "denied" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:82 +#: components/DisassociateButton/DisassociateButton.jsx:82 msgid "disassociate" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:71 -#: src/screens/Host/HostDetail/HostDetail.jsx:112 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:89 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:129 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:102 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: src/screens/User/UserDetail/UserDetail.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:219 +msgid "documentation" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:121 +#: screens/Host/HostDetail/HostDetail.jsx:113 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:159 +#: screens/User/UserDetail/UserDetail.jsx:89 msgid "edit" msgstr "" @@ -8001,95 +9122,99 @@ msgstr "" #~ msgid "edit view" #~ msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Template/Survey/SurveyListItem.jsx:123 msgid "encrypted" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 msgid "expiration" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 msgid "for more details." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "group" +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:221 +msgid "for more info." msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "groups" -msgstr "" +#~ msgid "group" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:182 +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 +#~ msgid "groups" +#~ msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:182 msgid "here" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:129 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:204 +#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.jsx:204 msgid "here." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:333 +#: components/Lookup/HostFilterLookup.jsx:340 msgid "hosts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:95 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:95 msgid "instance counts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:109 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:109 msgid "instance group used capacity" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:82 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:82 msgid "instance host name" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:85 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:85 msgid "instance type" msgstr "" -#: src/components/Lookup/HostListItem.jsx:30 +#: components/Lookup/HostListItem.jsx:30 msgid "inventory" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 -#: src/screens/Job/JobDetail/JobDetail.jsx:118 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 +#: screens/Job/JobDetail/JobDetail.jsx:119 msgid "isolated instance" msgstr "" -#: src/components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "ldap user" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:72 +#: screens/User/UserDetail/UserDetail.jsx:72 msgid "login type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:183 msgid "min" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:80 +#: screens/Template/Survey/SurveyListItem.jsx:82 msgid "move down" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:70 +#: screens/Template/Survey/SurveyListItem.jsx:71 msgid "move up" msgstr "" -#: src/components/Lookup/HostListItem.jsx:23 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:76 +#: components/Lookup/HostListItem.jsx:23 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:90 msgid "name" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:477 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 msgid "of" msgstr "" @@ -8097,35 +9222,40 @@ msgstr "" #~ msgid "of {pageCount}" #~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:250 +#: components/AdHocCommands/AdHocDetailsStep.jsx:250 msgid "option to the" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 msgid "or attributes of the job such as" msgstr "" -#: src/components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "" -#: src/components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: src/components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:21 +#: components/LaunchButton/ReLaunchDropDown.jsx:66 +#: components/LaunchButton/ReLaunchDropDown.jsx:88 +msgid "relaunch jobs" +msgstr "" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:21 msgid "resource name" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:36 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:36 msgid "resource role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:26 msgid "resource type" msgstr "" @@ -8137,19 +9267,19 @@ msgstr "" #~ msgid "save/cancel and go back to {currentTab} view" #~ msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 msgid "scope" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:197 msgid "sec" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 msgid "seconds" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.jsx:62 msgid "select module" msgstr "" @@ -8157,51 +9287,71 @@ msgstr "" #~ msgid "select organization {itemId}" #~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:139 +#: components/AdHocCommands/AdHocDetailsStep.jsx:139 msgid "select verbosity" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:56 +#: screens/User/UserList/UserListItem.jsx:56 msgid "social login" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.jsx:30 msgid "system" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 msgid "team name" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:520 +#: screens/ActivityStream/ActivityStreamDescription.jsx:520 msgid "timed out" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:230 +#: components/AdHocCommands/AdHocDetailsStep.jsx:230 msgid "toggle changes" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 msgid "token name" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:83 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:110 msgid "type" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:525 +#: screens/ActivityStream/ActivityStreamDescription.jsx:525 msgid "updated" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:199 +#: screens/Template/shared/WebhookSubForm.jsx:199 msgid "workflow job template webhook key" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:27 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:113 +msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:86 +msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.jsx:223 +msgid "{0, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:65 +msgid "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:56 +msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +msgstr "" + +#: screens/Setting/shared/LoggingTestAlert.jsx:27 msgid "{0}" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.jsx:28 msgid "{0} (deleted)" msgstr "" @@ -8209,15 +9359,15 @@ msgstr "" #~ msgid "{0} List" #~ msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.jsx:13 msgid "{0} more" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:62 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:62 msgid "{0} sources with sync failures." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:25 +#: screens/Setting/shared/LoggingTestAlert.jsx:25 msgid "{0}: {1}" msgstr "" @@ -8225,31 +9375,31 @@ msgstr "" #~ msgid "{currentTab} detail view" #~ msgstr "" -#: src/components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.jsx:23 msgid "{dateStr} by <0>{username}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:204 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:208 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "" @@ -8257,35 +9407,43 @@ msgstr "" #~ msgid "{itemMin} - {itemMax} of {count}" #~ msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:43 +#: components/PromptDetail/PromptDetail.jsx:43 msgid "{minutes} min {seconds} sec" msgstr "" #: src/screens/Inventory/InventoryList/InventoryList.jsx:215 -msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:92 +msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:81 -msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" -msgstr "" +#~ msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" +#~ msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:156 +#: components/JobList/JobListCancelButton.jsx:151 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:68 -msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#: components/JobList/JobListCancelButton.jsx:77 +msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" +#: src/components/JobList/JobListCancelButton.jsx:68 +#~ msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#~ msgstr "" + #: src/components/JobList/JobListCancelButton.jsx:57 -msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" -msgstr "" +#~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +#~ msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:92 -#: src/components/PaginatedTable/PaginatedTable.jsx:76 +#: components/PaginatedDataList/PaginatedDataList.jsx:92 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:96 -msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" -msgstr "" +#~ msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" +#~ msgstr "" diff --git a/awx/ui_next/src/locales/nl/messages.po b/awx/ui_next/src/locales/nl/messages.po index 50944fe957..9f1e7b85d9 100644 --- a/awx/ui_next/src/locales/nl/messages.po +++ b/awx/ui_next/src/locales/nl/messages.po @@ -13,393 +13,425 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 msgid "(Limited to first 10)" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:147 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:90 +#: components/TemplateList/TemplateListItem.jsx:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:91 msgid "(Prompt on launch)" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:244 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:58 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:59 msgid "- Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:63 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:64 msgid "- Enable Webhooks" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 msgid "/ (project root)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:26 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: src/components/PromptDetail/PromptDetail.jsx:95 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:31 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:40 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocCommands.jsx:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/PromptDetail/PromptDetail.jsx:95 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 +#: screens/Template/shared/JobTemplateForm.jsx:180 msgid "0 (Normal)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:98 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:81 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 msgid "0 (Warning)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:99 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 msgid "1 (Info)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:27 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: src/components/PromptDetail/PromptDetail.jsx:96 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:41 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:101 -#: src/screens/Template/shared/JobTemplateForm.jsx:174 +#: components/AdHocCommands/AdHocCommands.jsx:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 +#: components/PromptDetail/PromptDetail.jsx:96 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 +#: screens/Template/shared/JobTemplateForm.jsx:181 msgid "1 (Verbose)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:100 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 msgid "2 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:28 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: src/components/PromptDetail/PromptDetail.jsx:97 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:102 -#: src/screens/Template/shared/JobTemplateForm.jsx:175 +#: components/AdHocCommands/AdHocCommands.jsx:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 +#: components/PromptDetail/PromptDetail.jsx:97 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 +#: screens/Template/shared/JobTemplateForm.jsx:182 msgid "2 (More Verbose)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:29 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 -#: src/components/PromptDetail/PromptDetail.jsx:98 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:103 -#: src/screens/Template/shared/JobTemplateForm.jsx:176 +#: components/AdHocCommands/AdHocCommands.jsx:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 +#: components/PromptDetail/PromptDetail.jsx:98 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:183 msgid "3 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:30 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 -#: src/components/PromptDetail/PromptDetail.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:177 +#: components/AdHocCommands/AdHocCommands.jsx:30 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 +#: components/PromptDetail/PromptDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 +#: screens/Template/shared/JobTemplateForm.jsx:184 msgid "4 (Connection Debug)" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:105 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 msgid "5 (WinRM Debug)" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 -msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +msgid "" +"A refspec to fetch (passed to the Ansible git\n" +"module). This parameter allows access to references via\n" +"the branch field not otherwise available." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#~ msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281 +msgid "ALL" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 msgid "API Service/Integration Key" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 msgid "API Token" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 msgid "API service/integration key" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:129 +#: components/AppContainer/PageHeaderToolbar.jsx:129 msgid "About" msgstr "" -#: src/routeConfig.js:92 -#: src/screens/ActivityStream/ActivityStream.jsx:176 -#: src/screens/Credential/Credential.jsx:60 -#: src/screens/Credential/Credentials.jsx:29 -#: src/screens/Inventory/Inventories.jsx:58 -#: src/screens/Inventory/Inventory.jsx:63 -#: src/screens/Inventory/SmartInventory.jsx:70 -#: src/screens/Organization/Organization.jsx:123 -#: src/screens/Organization/Organizations.jsx:32 -#: src/screens/Project/Project.jsx:106 -#: src/screens/Project/Projects.jsx:30 -#: src/screens/Team/Team.jsx:56 -#: src/screens/Team/Teams.jsx:31 -#: src/screens/Template/Template.jsx:132 -#: src/screens/Template/Templates.jsx:46 -#: src/screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:93 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Credential/Credential.jsx:60 +#: screens/Credential/Credentials.jsx:29 +#: screens/Inventory/Inventories.jsx:58 +#: screens/Inventory/Inventory.jsx:63 +#: screens/Inventory/SmartInventory.jsx:70 +#: screens/Organization/Organization.jsx:124 +#: screens/Organization/Organizations.jsx:32 +#: screens/Project/Project.jsx:106 +#: screens/Project/Projects.jsx:30 +#: screens/Team/Team.jsx:56 +#: screens/Team/Teams.jsx:31 +#: screens/Template/Template.jsx:145 +#: screens/Template/Templates.jsx:46 +#: screens/Template/WorkflowJobTemplate.jsx:122 msgid "Access" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:71 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:79 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 msgid "Account SID" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 msgid "Account token" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:52 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 msgid "Action" msgstr "" -#: src/components/JobList/JobList.jsx:245 -#: src/components/JobList/JobListItem.jsx:80 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:176 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:112 -#: src/components/TemplateList/TemplateList.jsx:222 -#: src/components/TemplateList/TemplateListItem.jsx:131 -#: src/screens/ActivityStream/ActivityStream.jsx:253 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:47 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: src/screens/Credential/CredentialList/CredentialList.jsx:153 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:172 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 -#: src/screens/Host/HostList/HostList.jsx:170 -#: src/screens/Host/HostList/HostListItem.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:233 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:198 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:112 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:183 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:157 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:44 -#: src/screens/Project/ProjectList/ProjectList.jsx:173 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:125 -#: src/screens/Team/TeamList/TeamList.jsx:156 -#: src/screens/Team/TeamList/TeamListItem.jsx:54 -#: src/screens/User/UserList/UserList.jsx:172 -#: src/screens/User/UserList/UserListItem.jsx:79 +#: components/JobList/JobList.jsx:223 +#: components/JobList/JobListItem.jsx:80 +#: components/Schedule/ScheduleList/ScheduleList.jsx:176 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112 +#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateListItem.jsx:156 +#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStreamListItem.jsx:49 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 +#: screens/Credential/CredentialList/CredentialList.jsx:145 +#: screens/Credential/CredentialList/CredentialListItem.jsx:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:78 +#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostListItem.jsx:48 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 +#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/Organization/OrganizationList/OrganizationList.jsx:161 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 +#: screens/Project/ProjectList/ProjectList.jsx:178 +#: screens/Project/ProjectList/ProjectListItem.jsx:152 +#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/User/UserList/UserList.jsx:172 +#: screens/User/UserList/UserListItem.jsx:79 msgid "Actions" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: src/components/TemplateList/TemplateListItem.jsx:201 -#: src/screens/Host/HostDetail/HostDetail.jsx:77 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:87 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 +#: components/TemplateList/TemplateListItem.jsx:229 +#: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 msgid "Activity" msgstr "" -#: src/routeConfig.js:49 -#: src/screens/ActivityStream/ActivityStream.jsx:119 -#: src/screens/Setting/Settings.jsx:44 +#: routeConfig.js:50 +#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "" -#: src/screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.jsx:114 msgid "Activity Stream settings" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:122 msgid "Activity Stream type selector" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 msgid "Actor" msgstr "" -#: src/components/AddDropDownButton/AddDropDownButton.jsx:39 -#: src/components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:160 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:164 +#: components/AddDropDownButton/AddDropDownButton.jsx:39 +#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 msgid "Add Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:66 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 msgid "Add Node" msgstr "" -#: src/screens/Template/Templates.jsx:50 +#: screens/Template/Templates.jsx:50 msgid "Add Question" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:174 +#: components/AddRole/AddResourceRole.jsx:185 msgid "Add Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:171 +#: components/AddRole/AddResourceRole.jsx:182 msgid "Add Team Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:168 +#: components/AddRole/AddResourceRole.jsx:179 msgid "Add User Roles" msgstr "" -#: src/components/Workflow/WorkflowStartNode.jsx:57 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:189 +#: components/Workflow/WorkflowStartNode.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:195 msgid "Add a new node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 msgid "Add a new node between these two nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 msgid "Add container group" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 msgid "Add existing group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 msgid "Add existing host" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 msgid "Add instance group" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:129 +#: screens/Inventory/InventoryList/InventoryList.jsx:135 msgid "Add inventory" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:141 msgid "Add job template" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 msgid "Add new group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 msgid "Add new host" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 msgid "Add resource type" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:130 +#: screens/Inventory/InventoryList/InventoryList.jsx:136 msgid "Add smart inventory" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:171 msgid "Add team permissions" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:182 +#: screens/User/UserRoles/UserRolesList.jsx:182 msgid "Add user permissions" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:142 msgid "Add workflow template" msgstr "" #: src/screens/ActivityStream/ActivityStream.jsx:187 -msgid "Adminisration" -msgstr "" +#~ msgid "Adminisration" +#~ msgstr "" -#: src/routeConfig.js:113 +#: routeConfig.js:114 +#: screens/ActivityStream/ActivityStream.jsx:187 msgid "Administration" msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:86 +#: components/DataListToolbar/DataListToolbar.jsx:86 +#: screens/Job/JobOutput/JobOutput.jsx:671 msgid "Advanced" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.jsx:246 msgid "Advanced search value input" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203 +msgid "" +"After every project update where the SCM revision\n" +"changes, refresh the inventory from the selected source\n" +"before executing job tasks. This is intended for static content,\n" +"like the Ansible inventory .ini file format." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177 -msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." -msgstr "" +#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." +#~ msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:520 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 msgid "After number of occurrences" msgstr "" -#: src/components/AlertModal/AlertModal.jsx:77 +#: components/AlertModal/AlertModal.jsx:77 msgid "Alert modal" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:39 +#: components/LaunchButton/ReLaunchDropDown.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:244 msgid "All" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:226 +#: screens/Dashboard/Dashboard.jsx:226 msgid "All job types" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:45 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:46 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:74 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 msgid "Allow Branch Override" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:60 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 msgid "Allow Provisioning Callbacks" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 -msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +msgid "" +"Allow changing the Source Control branch or revision in a job\n" +"template that uses this project." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:119 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#~ msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:119 msgid "Allowed URIs list, space separated" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:126 -#: src/components/Workflow/WorkflowLinkHelp.jsx:24 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 +#: components/Workflow/WorkflowLegend.jsx:126 +#: components/Workflow/WorkflowLinkHelp.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 msgid "Always" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 msgid "Amazon EC2" msgstr "" -#: src/components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.jsx:12 msgid "An error occurred" msgstr "" -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:34 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 msgid "An inventory must be selected" msgstr "" @@ -410,623 +442,683 @@ msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:82 #: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128 #: src/screens/Project/shared/ProjectForm.jsx:274 -msgid "Ansible Environment" -msgstr "" +#~ msgid "Ansible Environment" +#~ msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Ansible Tower" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 msgid "Ansible Tower Documentation." msgstr "" #: src/components/About/About.jsx:58 -msgid "Ansible Version" -msgstr "" +#~ msgid "Ansible Version" +#~ msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204 -msgid "Ansible environment" -msgstr "" +#~ msgid "Ansible environment" +#~ msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:33 +#: screens/Template/Survey/SurveyQuestionForm.jsx:33 msgid "Answer type" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:130 +#: screens/Template/Survey/SurveyQuestionForm.jsx:130 msgid "Answer variable name" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:65 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: src/screens/User/shared/UserTokenForm.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:241 +msgid "Any" +msgstr "" + +#: components/Lookup/ApplicationLookup.jsx:65 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:52 +#: screens/User/shared/UserTokenForm.jsx:44 msgid "Application" msgstr "" -#: src/screens/User/Users.jsx:38 +#: screens/User/Users.jsx:38 msgid "Application Name" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:42 +#: screens/User/UserTokenList/UserTokenListItem.jsx:42 msgid "Application access token" msgstr "" -#: src/screens/Application/Applications.jsx:67 -#: src/screens/Application/Applications.jsx:70 +#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.jsx:70 msgid "Application information" msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:111 -#: src/screens/User/UserTokenList/UserTokenList.jsx:122 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.jsx:111 +#: screens/User/UserTokenList/UserTokenList.jsx:122 +#: screens/User/UserTokenList/UserTokenListItem.jsx:47 msgid "Application name" msgstr "" -#: src/screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.jsx:93 msgid "Application not found." msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:74 -#: src/routeConfig.js:137 -#: src/screens/Application/Applications.jsx:25 -#: src/screens/Application/Applications.jsx:35 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: components/Lookup/ApplicationLookup.jsx:74 +#: routeConfig.js:138 +#: screens/Application/Applications.jsx:25 +#: screens/Application/Applications.jsx:35 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: util/getRelatedResourceDeleteDetails.js:233 msgid "Applications" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:204 +#: screens/ActivityStream/ActivityStream.jsx:204 msgid "Applications & Tokens" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:40 -#: src/components/NotificationList/NotificationListItem.jsx:41 -#: src/components/Workflow/WorkflowLegend.jsx:110 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:55 +#: components/NotificationList/NotificationListItem.jsx:40 +#: components/NotificationList/NotificationListItem.jsx:41 +#: components/Workflow/WorkflowLegend.jsx:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:83 msgid "Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:190 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:195 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:59 msgid "Approve" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 msgid "Approved" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 msgid "Approved by {0} - {1}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 msgid "April" msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116 -msgid "Are you sure you want to delete the {0} below?" -msgstr "" +#~ msgid "Are you sure you want to delete the {0} below?" +#~ msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:53 +#: components/DeleteButton/DeleteButton.jsx:127 msgid "Are you sure you want to delete:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:41 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 msgid "Are you sure you want to remove the node below:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 msgid "Are you sure you want to remove this link?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:51 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 msgid "Are you sure you want to remove this node?" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:53 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:64 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobDetail/JobDetail.jsx:461 +#: screens/Job/JobOutput/JobOutput.jsx:812 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:108 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:110 +#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.jsx:110 msgid "Arguments" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:347 +#: screens/Job/JobDetail/JobDetail.jsx:378 msgid "Artifacts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: src/screens/User/UserTeams/UserTeamList.jsx:204 +#: screens/InstanceGroup/Instances/InstanceList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:204 msgid "Associate" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 msgid "Associate role error" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:99 +#: components/AssociateModal/AssociateModal.jsx:99 msgid "Association modal" msgstr "" -#: src/components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 msgid "August" msgstr "" -#: src/screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.jsx:55 msgid "Authentication" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:92 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:86 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 -#: src/screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:89 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:89 msgid "Auto" msgstr "" -#: src/screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.jsx:47 msgid "Azure AD" msgstr "" -#: src/screens/Setting/SettingList.jsx:62 +#: screens/Setting/SettingList.jsx:62 msgid "Azure AD settings" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:111 -#: src/components/AddRole/AddResourceRole.jsx:275 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:111 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:120 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:139 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:142 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:111 +#: components/AddRole/AddResourceRole.jsx:286 +#: components/LaunchPrompt/LaunchPrompt.jsx:118 +#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" msgstr "" -#: src/screens/Credential/Credential.jsx:52 +#: screens/Credential/Credential.jsx:52 msgid "Back to Credentials" msgstr "" -#: src/components/ContentError/ContentError.jsx:48 +#: components/ContentError/ContentError.jsx:48 msgid "Back to Dashboard." msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 msgid "Back to Groups" msgstr "" -#: src/screens/Host/Host.jsx:45 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.jsx:45 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 msgid "Back to Hosts" msgstr "" -#: src/screens/Inventory/Inventory.jsx:56 -#: src/screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.jsx:56 +#: screens/Inventory/SmartInventory.jsx:63 msgid "Back to Inventories" msgstr "" -#: src/screens/Job/Job.jsx:57 +#: screens/Job/Job.jsx:97 msgid "Back to Jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.jsx:76 msgid "Back to Notifications" msgstr "" -#: src/screens/Organization/Organization.jsx:116 +#: screens/Organization/Organization.jsx:117 msgid "Back to Organizations" msgstr "" -#: src/screens/Project/Project.jsx:99 +#: screens/Project/Project.jsx:99 msgid "Back to Projects" msgstr "" -#: src/components/Schedule/Schedule.jsx:60 +#: components/Schedule/Schedule.jsx:61 msgid "Back to Schedules" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:104 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:108 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 msgid "Back to Settings" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.jsx:81 msgid "Back to Sources" msgstr "" -#: src/screens/Team/Team.jsx:49 +#: screens/Team/Team.jsx:49 msgid "Back to Teams" msgstr "" -#: src/screens/Template/Template.jsx:125 -#: src/screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.jsx:138 +#: screens/Template/WorkflowJobTemplate.jsx:115 msgid "Back to Templates" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.jsx:47 msgid "Back to Tokens" msgstr "" -#: src/screens/User/User.jsx:57 +#: screens/User/User.jsx:57 msgid "Back to Users" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.jsx:69 msgid "Back to Workflow Approvals" msgstr "" -#: src/screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.jsx:71 msgid "Back to applications" msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.jsx:55 msgid "Back to credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:56 -#: src/screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +msgid "Back to execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:56 +#: screens/InstanceGroup/InstanceGroup.jsx:57 msgid "Back to instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.jsx:98 msgid "Back to management jobs" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 -msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +msgid "" +"Base path used for locating playbooks. Directories\n" +"found inside this path will be listed in the playbook directory drop-down.\n" +"Together the base path and selected playbook directory provide the full\n" +"path used to locate playbooks." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 msgid "Basic auth password" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 -msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +msgid "" +"Branch to checkout. In addition to branches,\n" +"you can input tags, commit hashes, and arbitrary refs. Some\n" +"commit hashes and refs may not be available unless you also\n" +"provide a custom refspec." msgstr "" -#: src/components/About/About.jsx:42 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#~ msgstr "" + +#: components/About/About.jsx:37 msgid "Brand Image" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: src/components/PromptDetail/PromptProjectDetail.jsx:88 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:124 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:104 +#: components/PromptDetail/PromptProjectDetail.jsx:94 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:126 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 msgid "Cache Timeout" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235 msgid "Cache timeout" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:194 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:237 msgid "Cache timeout (seconds)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:112 -#: src/components/AddRole/AddResourceRole.jsx:276 -#: src/components/AssociateModal/AssociateModal.jsx:113 -#: src/components/AssociateModal/AssociateModal.jsx:118 -#: src/components/DeleteButton/DeleteButton.jsx:46 -#: src/components/DeleteButton/DeleteButton.jsx:49 -#: src/components/DisassociateButton/DisassociateButton.jsx:122 -#: src/components/DisassociateButton/DisassociateButton.jsx:125 -#: src/components/FormActionGroup/FormActionGroup.jsx:22 -#: src/components/FormActionGroup/FormActionGroup.jsx:27 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:112 -#: src/components/Lookup/HostFilterLookup.jsx:322 -#: src/components/Lookup/Lookup.jsx:148 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:167 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:40 -#: src/components/Schedule/shared/ScheduleForm.jsx:564 -#: src/components/Schedule/shared/ScheduleForm.jsx:569 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:121 -#: src/screens/Credential/shared/CredentialForm.jsx:292 -#: src/screens/Credential/shared/CredentialForm.jsx:297 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:99 -#: src/screens/Credential/shared/ExternalTestModal.jsx:97 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 -#: src/screens/Setting/shared/RevertAllAlert.jsx:32 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:38 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:44 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:209 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:212 -#: src/screens/Template/Survey/SurveyList.jsx:117 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:29 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:37 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:43 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:38 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 -#: src/screens/User/UserRoles/UserRolesList.jsx:209 -#: src/screens/User/UserRoles/UserRolesList.jsx:212 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:112 +#: components/AddRole/AddResourceRole.jsx:287 +#: components/AssociateModal/AssociateModal.jsx:115 +#: components/AssociateModal/AssociateModal.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:123 +#: components/DisassociateButton/DisassociateButton.jsx:125 +#: components/DisassociateButton/DisassociateButton.jsx:128 +#: components/FormActionGroup/FormActionGroup.jsx:24 +#: components/FormActionGroup/FormActionGroup.jsx:29 +#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/Lookup/HostFilterLookup.jsx:329 +#: components/Lookup/Lookup.jsx:150 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46 +#: components/Schedule/shared/ScheduleForm.jsx:641 +#: components/Schedule/shared/ScheduleForm.jsx:646 +#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: screens/Credential/shared/CredentialForm.jsx:299 +#: screens/Credential/shared/CredentialForm.jsx:304 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:103 +#: screens/Credential/shared/ExternalTestModal.jsx:99 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:109 +#: screens/Job/JobDetail/JobDetail.jsx:411 +#: screens/Job/JobDetail/JobDetail.jsx:416 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 +#: screens/Setting/shared/RevertAllAlert.jsx:32 +#: screens/Setting/shared/RevertFormActionGroup.jsx:38 +#: screens/Setting/shared/RevertFormActionGroup.jsx:44 +#: screens/Team/TeamRoles/TeamRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.jsx:214 +#: screens/Template/Survey/SurveyList.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/User/UserRoles/UserRolesList.jsx:214 msgid "Cancel" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:675 -#: src/screens/Job/JobOutput/JobOutput.jsx:676 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:171 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:174 +#: screens/Job/JobDetail/JobDetail.jsx:436 +#: screens/Job/JobDetail/JobDetail.jsx:437 +#: screens/Job/JobOutput/JobOutput.jsx:787 +#: screens/Job/JobOutput/JobOutput.jsx:788 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:186 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:190 msgid "Cancel Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:683 -#: src/screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobDetail/JobDetail.jsx:444 +#: screens/Job/JobDetail/JobDetail.jsx:447 +#: screens/Job/JobOutput/JobOutput.jsx:795 +#: screens/Job/JobOutput/JobOutput.jsx:798 msgid "Cancel job" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 msgid "Cancel link changes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 msgid "Cancel link removal" msgstr "" -#: src/components/Lookup/Lookup.jsx:146 +#: components/Lookup/Lookup.jsx:148 msgid "Cancel lookup" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:26 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 msgid "Cancel node removal" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:28 +#: screens/Setting/shared/RevertAllAlert.jsx:29 msgid "Cancel revert" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:65 +#: components/JobList/JobListCancelButton.jsx:79 +msgid "Cancel selected job" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:80 +msgid "Cancel selected jobs" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:66 msgid "Cancel sync" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:58 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:58 msgid "Cancel sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:61 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:62 msgid "Cancel sync source" msgstr "" -#: src/components/JobList/JobList.jsx:228 -#: src/components/Workflow/WorkflowNodeHelp.jsx:95 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 +#: components/JobList/JobList.jsx:206 +#: components/Workflow/WorkflowNodeHelp.jsx:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 msgid "Canceled" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 -msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +msgid "" +"Cannot enable log aggregator without providing\n" +"logging aggregator host and logging aggregator type." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:232 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 +#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#~ msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 msgid "Capacity" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:175 +#: components/Search/AdvancedSearch.jsx:176 msgid "Case-insensitive version of contains" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:195 +#: components/Search/AdvancedSearch.jsx:196 msgid "Case-insensitive version of endswith." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:165 +#: components/Search/AdvancedSearch.jsx:166 msgid "Case-insensitive version of exact." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:205 +#: components/Search/AdvancedSearch.jsx:206 msgid "Case-insensitive version of regex." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:185 +#: components/Search/AdvancedSearch.jsx:186 msgid "Case-insensitive version of startswith." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 -msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +msgid "" +"Change PROJECTS_ROOT when deploying\n" +"{brandName} to change this location." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#~ msgstr "" + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 msgid "Changed" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:55 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:56 msgid "Changes" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 msgid "Channel" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:168 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 +#: screens/Template/shared/JobTemplateForm.jsx:175 msgid "Check" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:232 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:238 +#: components/Search/AdvancedSearch.jsx:239 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 msgid "Choose a .json file" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 msgid "Choose a Notification Type" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 msgid "Choose a Playbook Directory" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:223 msgid "Choose a Source Control Type" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.jsx:102 msgid "Choose a Webhook Service" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 -#: src/screens/Template/shared/JobTemplateForm.jsx:161 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 +#: screens/Template/shared/JobTemplateForm.jsx:168 msgid "Choose a job type" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:88 +#: components/AdHocCommands/AdHocDetailsStep.jsx:88 msgid "Choose a module" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:130 +#: screens/Inventory/shared/InventorySourceForm.jsx:144 msgid "Choose a source" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 msgid "Choose an HTTP method" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 -msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#: screens/Template/Survey/SurveyQuestionForm.jsx:37 +msgid "" +"Choose an answer type or format you want as the prompt for the user.\n" +"Refer to the Ansible Tower Documentation for more additional\n" +"information about each option." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 +#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 msgid "Choose an email option" msgstr "" -#: src/components/AddRole/SelectRoleStep.jsx:23 +#: components/AddRole/SelectRoleStep.jsx:23 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "" -#: src/components/AddRole/SelectResourceStep.jsx:82 +#: components/AddRole/SelectResourceStep.jsx:82 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:185 +#: components/AddRole/AddResourceRole.jsx:196 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:37 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:64 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: components/PromptDetail/PromptProjectDetail.jsx:38 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 msgid "Clean" msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:65 +#: components/DataListToolbar/DataListToolbar.jsx:65 +#: screens/Job/JobOutput/JobOutput.jsx:715 msgid "Clear all filters" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 msgid "Click the Edit button below to reconfigure the node." msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:73 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:147 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:153 msgid "Click to create a new link to this node." msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.jsx:168 msgid "Click to view job details" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 -#: src/screens/Application/Applications.jsx:89 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 +#: screens/Application/Applications.jsx:89 msgid "Client ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 msgid "Client Identifier" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 msgid "Client identifier" msgstr "" -#: src/screens/Application/Applications.jsx:102 +#: screens/Application/Applications.jsx:102 msgid "Client secret" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 -#: src/screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 +#: screens/Application/shared/ApplicationForm.jsx:128 msgid "Client type" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:106 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:171 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:173 msgid "Close" msgstr "" -#: src/components/CredentialChip/CredentialChip.jsx:12 +#: components/CredentialChip/CredentialChip.jsx:12 msgid "Cloud" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:40 +#: components/ExpandCollapse/ExpandCollapse.jsx:41 msgid "Collapse" msgstr "" -#: src/components/JobList/JobList.jsx:208 -#: src/components/JobList/JobListItem.jsx:34 -#: src/screens/Job/JobDetail/JobDetail.jsx:80 -#: src/screens/Job/JobOutput/HostEventModal.jsx:137 +#: components/JobList/JobList.jsx:186 +#: components/JobList/JobListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:99 +#: screens/Job/JobOutput/HostEventModal.jsx:137 msgid "Command" msgstr "" @@ -1037,7032 +1129,8098 @@ msgstr "" #: src/screens/Template/Template.jsx:151 #: src/screens/Template/Templates.jsx:48 #: src/screens/Template/WorkflowJobTemplate.jsx:145 -msgid "Completed Jobs" -msgstr "" +#~ msgid "Completed Jobs" +#~ msgstr "" #: src/screens/Inventory/Inventories.jsx:59 #: src/screens/Inventory/Inventories.jsx:73 #: src/screens/Inventory/SmartInventory.jsx:73 -msgid "Completed jobs" -msgstr "" +#~ msgid "Completed jobs" +#~ msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:550 +#: screens/Template/shared/JobTemplateForm.jsx:580 msgid "Concurrent Jobs" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:97 +#: components/DeleteButton/DeleteButton.jsx:107 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:95 msgid "Confirm Delete" msgstr "" -#: src/screens/User/shared/UserForm.jsx:96 +#: screens/User/shared/UserForm.jsx:96 msgid "Confirm Password" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:34 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:35 msgid "Confirm delete" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.jsx:202 msgid "Confirm disassociate" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 msgid "Confirm link removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 msgid "Confirm node removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 msgid "Confirm removal of all nodes" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:19 +#: screens/Setting/shared/RevertAllAlert.jsx:20 msgid "Confirm revert all" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:234 +#: screens/Job/JobDetail/JobDetail.jsx:265 msgid "Container Group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 msgid "Container group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.jsx:81 msgid "Container group not found." msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:106 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:115 +#: components/LaunchPrompt/LaunchPrompt.jsx:113 +#: components/Schedule/shared/SchedulePromptableFields.jsx:117 msgid "Content Loading" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:234 msgid "Continue" msgstr "" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +msgid "" +"Control the level of output Ansible\n" +"will produce for inventory source update jobs." +msgstr "" + #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92 -msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 +msgid "" +"Control the level of output ansible\n" +"will produce as the playbook executes." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:444 +msgid "" +"Control the level of output ansible will\n" +"produce as the playbook executes." msgstr "" #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 #: src/screens/Template/shared/JobTemplateForm.jsx:414 -msgid "Control the level of output ansible will produce as the playbook executes." -msgstr "" +#~ msgid "Control the level of output ansible will produce as the playbook executes." +#~ msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:61 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 msgid "Controller" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:205 +msgid "Convergence" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:236 +msgid "Convergence select" +msgstr "" + +#: components/CopyButton/CopyButton.jsx:41 msgid "Copy" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:76 +#: screens/Credential/CredentialList/CredentialListItem.jsx:77 msgid "Copy Credential" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:46 +#: components/CopyButton/CopyButton.jsx:48 msgid "Copy Error" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:95 +msgid "Copy Execution Environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:135 msgid "Copy Inventory" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:147 msgid "Copy Notification Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:147 +#: screens/Project/ProjectList/ProjectListItem.jsx:175 msgid "Copy Project" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.jsx:209 msgid "Copy Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:121 +#: screens/Project/ProjectList/ProjectListItem.jsx:147 msgid "Copy full revision to clipboard." msgstr "" -#: src/components/About/About.jsx:40 +#: components/About/About.jsx:35 msgid "Copyright 2019 Red Hat, Inc." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:353 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/JobTemplateForm.jsx:383 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:223 msgid "Create" msgstr "" -#: src/screens/Application/Applications.jsx:26 -#: src/screens/Application/Applications.jsx:36 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:24 +msgid "Create Execution environments" +msgstr "" + +#: screens/Application/Applications.jsx:26 +#: screens/Application/Applications.jsx:36 msgid "Create New Application" msgstr "" -#: src/screens/Credential/Credentials.jsx:14 -#: src/screens/Credential/Credentials.jsx:25 +#: screens/Credential/Credentials.jsx:14 +#: screens/Credential/Credentials.jsx:25 msgid "Create New Credential" msgstr "" -#: src/screens/Host/Hosts.jsx:16 -#: src/screens/Host/Hosts.jsx:26 +#: screens/Host/Hosts.jsx:16 +#: screens/Host/Hosts.jsx:26 msgid "Create New Host" msgstr "" -#: src/screens/Template/Templates.jsx:17 +#: screens/Template/Templates.jsx:17 msgid "Create New Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:23 +#: screens/NotificationTemplate/NotificationTemplates.jsx:14 +#: screens/NotificationTemplate/NotificationTemplates.jsx:23 msgid "Create New Notification Template" msgstr "" -#: src/screens/Organization/Organizations.jsx:17 -#: src/screens/Organization/Organizations.jsx:28 +#: screens/Organization/Organizations.jsx:17 +#: screens/Organization/Organizations.jsx:28 msgid "Create New Organization" msgstr "" -#: src/screens/Project/Projects.jsx:15 -#: src/screens/Project/Projects.jsx:26 +#: screens/Project/Projects.jsx:15 +#: screens/Project/Projects.jsx:26 msgid "Create New Project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:114 -#: src/screens/ManagementJob/ManagementJobs.jsx:26 -#: src/screens/Project/Projects.jsx:35 -#: src/screens/Template/Templates.jsx:53 +#: screens/Inventory/Inventories.jsx:112 +#: screens/ManagementJob/ManagementJobs.jsx:26 +#: screens/Project/Projects.jsx:35 +#: screens/Template/Templates.jsx:53 msgid "Create New Schedule" msgstr "" -#: src/screens/Team/Teams.jsx:15 -#: src/screens/Team/Teams.jsx:26 +#: screens/Team/Teams.jsx:15 +#: screens/Team/Teams.jsx:26 msgid "Create New Team" msgstr "" -#: src/screens/User/Users.jsx:16 -#: src/screens/User/Users.jsx:28 +#: screens/User/Users.jsx:16 +#: screens/User/Users.jsx:28 msgid "Create New User" msgstr "" -#: src/screens/Template/Templates.jsx:19 +#: screens/Template/Templates.jsx:19 msgid "Create New Workflow Template" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.jsx:29 msgid "Create a new Smart Inventory with the applied filter" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:18 -#: src/screens/InstanceGroup/InstanceGroups.jsx:30 +#: screens/InstanceGroup/InstanceGroups.jsx:18 +#: screens/InstanceGroup/InstanceGroups.jsx:30 msgid "Create container group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:17 -#: src/screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.jsx:17 +#: screens/InstanceGroup/InstanceGroups.jsx:28 msgid "Create instance group" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:24 +#: screens/CredentialType/CredentialTypes.jsx:24 msgid "Create new credential Type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.jsx:14 msgid "Create new credential type" msgstr "" -#: src/screens/Inventory/Inventories.jsx:79 -#: src/screens/Inventory/Inventories.jsx:97 +#: screens/Inventory/Inventories.jsx:77 +#: screens/Inventory/Inventories.jsx:95 msgid "Create new group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:64 -#: src/screens/Inventory/Inventories.jsx:91 +#: screens/Inventory/Inventories.jsx:64 +#: screens/Inventory/Inventories.jsx:89 msgid "Create new host" msgstr "" -#: src/screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.jsx:17 msgid "Create new inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.jsx:18 msgid "Create new smart inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:101 +#: screens/Inventory/Inventories.jsx:99 msgid "Create new source" msgstr "" -#: src/screens/User/Users.jsx:36 +#: screens/User/Users.jsx:36 msgid "Create user token" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:93 -#: src/components/Lookup/HostFilterLookup.jsx:349 -#: src/components/PromptDetail/PromptDetail.jsx:133 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:57 -#: src/screens/Host/HostDetail/HostDetail.jsx:93 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:63 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:114 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:324 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:141 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:47 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:271 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: src/screens/User/UserDetail/UserDetail.jsx:82 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: src/screens/User/UserTokenList/UserTokenList.jsx:134 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/HostFilterLookup.jsx:356 +#: components/PromptDetail/PromptDetail.jsx:133 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 +#: screens/Host/HostDetail/HostDetail.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:117 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:355 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:145 +#: screens/Team/TeamDetail/TeamDetail.jsx:47 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:183 +#: screens/User/UserDetail/UserDetail.jsx:82 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 +#: screens/User/UserTokenList/UserTokenList.jsx:134 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 msgid "Created" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:96 -#: src/components/AddRole/AddResourceRole.jsx:148 -#: src/components/AssociateModal/AssociateModal.jsx:142 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:82 -#: src/components/Lookup/CredentialLookup.jsx:153 -#: src/components/Lookup/InventoryLookup.jsx:114 -#: src/components/Lookup/InventoryLookup.jsx:167 -#: src/components/Lookup/MultiCredentialsLookup.jsx:181 -#: src/components/Lookup/OrganizationLookup.jsx:109 -#: src/components/Lookup/ProjectLookup.jsx:129 -#: src/components/NotificationList/NotificationList.jsx:206 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: src/components/TemplateList/TemplateList.jsx:205 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 -#: src/screens/Credential/CredentialList/CredentialList.jsx:141 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:163 -#: src/screens/Host/HostList/HostList.jsx:156 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:176 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:142 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: src/screens/Project/ProjectList/ProjectList.jsx:161 -#: src/screens/Team/TeamList/TeamList.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: components/AdHocCommands/AdHocCredentialStep.jsx:96 +#: components/AddRole/AddResourceRole.jsx:159 +#: components/AssociateModal/AssociateModal.jsx:144 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:179 +#: components/LaunchPrompt/steps/InventoryStep.jsx:91 +#: components/Lookup/CredentialLookup.jsx:153 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:167 +#: components/Lookup/MultiCredentialsLookup.jsx:181 +#: components/Lookup/OrganizationLookup.jsx:111 +#: components/Lookup/ProjectLookup.jsx:129 +#: components/NotificationList/NotificationList.jsx:206 +#: components/Schedule/ScheduleList/ScheduleList.jsx:201 +#: components/TemplateList/TemplateList.jsx:210 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: 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:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 +#: screens/Inventory/InventoryList/InventoryList.jsx:182 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 +#: screens/Organization/OrganizationList/OrganizationList.jsx:146 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 +#: screens/Project/ProjectList/ProjectList.jsx:166 +#: 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:105 msgid "Created By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:146 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:109 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:53 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:110 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: util/getRelatedResourceDeleteDetails.js:191 msgid "Credential" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:96 +#: util/getRelatedResourceDeleteDetails.js:81 +msgid "Credential Input Sources" +msgstr "" + +#: components/Lookup/InstanceGroupsLookup.jsx:96 msgid "Credential Name" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:214 -#: src/screens/Credential/shared/CredentialForm.jsx:148 -#: src/screens/Credential/shared/CredentialForm.jsx:152 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:229 +#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:152 msgid "Credential Type" msgstr "" -#: src/routeConfig.js:117 -#: src/screens/ActivityStream/ActivityStream.jsx:189 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:118 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:164 -#: src/screens/CredentialType/CredentialTypes.jsx:13 -#: src/screens/CredentialType/CredentialTypes.jsx:23 +#: routeConfig.js:118 +#: screens/ActivityStream/ActivityStream.jsx:189 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/CredentialType/CredentialTypes.jsx:13 +#: screens/CredentialType/CredentialTypes.jsx:23 msgid "Credential Types" msgstr "" -#: src/screens/Credential/Credential.jsx:79 +#: screens/Credential/Credential.jsx:79 msgid "Credential not found." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 msgid "Credential passwords" msgstr "" #: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60 -msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgstr "" + +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:75 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:136 +msgid "Credential to authenticate with a protected container registry." +msgstr "" + +#: screens/CredentialType/CredentialType.jsx:75 msgid "Credential type not found." msgstr "" -#: src/components/JobList/JobListItem.jsx:123 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:162 -#: src/components/LaunchPrompt/steps/useCredentialsStep.jsx:31 -#: src/components/Lookup/MultiCredentialsLookup.jsx:126 -#: src/components/Lookup/MultiCredentialsLookup.jsx:198 -#: src/components/PromptDetail/PromptDetail.jsx:163 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:178 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 -#: src/components/TemplateList/TemplateListItem.jsx:207 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: src/routeConfig.js:70 -#: src/screens/ActivityStream/ActivityStream.jsx:164 -#: src/screens/Credential/CredentialList/CredentialList.jsx:182 -#: src/screens/Credential/Credentials.jsx:13 -#: src/screens/Credential/Credentials.jsx:24 -#: src/screens/Job/JobDetail/JobDetail.jsx:262 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:283 -#: src/screens/Template/shared/JobTemplateForm.jsx:321 +#: components/JobList/JobListItem.jsx:124 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:196 +#: components/LaunchPrompt/steps/useCredentialsStep.jsx:65 +#: components/Lookup/MultiCredentialsLookup.jsx:126 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/PromptDetail/PromptDetail.jsx:163 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:184 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 +#: components/TemplateList/TemplateListItem.jsx:235 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 +#: routeConfig.js:71 +#: screens/ActivityStream/ActivityStream.jsx:164 +#: screens/Credential/CredentialList/CredentialList.jsx:176 +#: screens/Credential/Credentials.jsx:13 +#: screens/Credential/Credentials.jsx:24 +#: screens/Job/JobDetail/JobDetail.jsx:293 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293 +#: screens/Template/shared/JobTemplateForm.jsx:351 +#: util/getRelatedResourceDeleteDetails.js:98 msgid "Credentials" msgstr "" -#: src/components/Pagination/Pagination.jsx:36 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:58 +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:34 msgid "Current page" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:88 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:86 msgid "Custom pod spec" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 +#: components/TemplateList/TemplateListItem.jsx:145 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93 +#: screens/Project/ProjectList/ProjectListItem.jsx:109 +msgid "Custom virtual environment {0} must be replaced by an execution environment." +msgstr "" + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:54 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 msgid "Customize messages…" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:72 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:73 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:70 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:71 msgid "Customize pod specification" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:125 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:314 msgid "DELETED" msgstr "" -#: src/routeConfig.js:34 -#: src/screens/Dashboard/Dashboard.jsx:122 +#: routeConfig.js:35 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Dashboard" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:144 +#: screens/ActivityStream/ActivityStream.jsx:144 msgid "Dashboard (all activity)" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 msgid "Data retention period" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:353 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:457 -#: src/components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/ScheduleForm.jsx:165 msgid "Day" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 -#: src/components/Schedule/shared/ScheduleForm.jsx:176 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 +#: components/Schedule/shared/ScheduleForm.jsx:176 msgid "Days of Data to Keep" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: screens/Job/JobOutput/JobOutput.jsx:663 +msgid "Debug" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 msgid "December" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: src/screens/Template/Survey/SurveyListItem.jsx:119 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 +#: screens/Template/Survey/SurveyListItem.jsx:121 msgid "Default" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:193 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:201 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:208 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:234 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +msgid "Default Execution Environment" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.jsx:201 +#: screens/Template/Survey/SurveyQuestionForm.jsx:208 +#: screens/Template/Survey/SurveyQuestionForm.jsx:234 msgid "Default answer" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:85 +#: screens/Template/Survey/SurveyQuestionForm.jsx:85 msgid "Default choice must be answered from the choices listed." msgstr "" -#: src/screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.jsx:106 msgid "Define system-level features and functions" msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:22 -#: src/components/DeleteButton/DeleteButton.jsx:26 -#: src/components/DeleteButton/DeleteButton.jsx:37 -#: src/components/DeleteButton/DeleteButton.jsx:41 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:108 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:130 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:137 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:141 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:159 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:37 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:410 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:130 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:261 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:129 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:168 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:70 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:73 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:82 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:103 -#: src/screens/Job/JobDetail/JobDetail.jsx:374 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:368 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:158 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:171 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:72 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:393 -#: src/screens/Template/Survey/SurveyList.jsx:106 -#: src/screens/Template/Survey/SurveyToolbar.jsx:72 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 -#: src/screens/User/UserDetail/UserDetail.jsx:103 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:216 +#: components/DeleteButton/DeleteButton.jsx:76 +#: components/DeleteButton/DeleteButton.jsx:81 +#: components/DeleteButton/DeleteButton.jsx:90 +#: components/DeleteButton/DeleteButton.jsx:94 +#: components/DeleteButton/DeleteButton.jsx:114 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:287 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:140 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:74 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:101 +#: screens/Job/JobDetail/JobDetail.jsx:427 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:369 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:180 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Team/TeamDetail/TeamDetail.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:414 +#: screens/Template/Survey/SurveyList.jsx:107 +#: screens/Template/Survey/SurveyToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:254 +#: screens/User/UserDetail/UserDetail.jsx:104 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 msgid "Delete" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:129 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:128 msgid "Delete All Groups and Hosts" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:257 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:279 msgid "Delete Credential" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 -msgid "Delete Group?" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131 +msgid "Delete Execution Environment" msgstr "" +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 +#~ msgid "Delete Group?" +#~ msgstr "" + #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91 -msgid "Delete Groups?" -msgstr "" +#~ msgid "Delete Groups?" +#~ msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:122 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:112 +#: screens/Host/HostDetail/HostDetail.jsx:123 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113 msgid "Delete Host" msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 msgid "Delete Inventory" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:371 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:186 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:189 +#: screens/Job/JobDetail/JobDetail.jsx:423 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:201 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:205 msgid "Delete Job" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 msgid "Delete Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:364 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:365 msgid "Delete Notification" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:154 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 msgid "Delete Organization" msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:172 msgid "Delete Project" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Delete Schedule" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:68 +#: screens/Team/TeamDetail/TeamDetail.jsx:69 msgid "Delete Team" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:99 +#: screens/User/UserDetail/UserDetail.jsx:100 msgid "Delete User" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 msgid "Delete User Token" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:212 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 msgid "Delete Workflow Approval" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:246 msgid "Delete Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 msgid "Delete all nodes" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 msgid "Delete application" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:82 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 msgid "Delete credential type" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:232 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:244 msgid "Delete error" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:100 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:141 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 msgid "Delete instance group" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288 msgid "Delete inventory source" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:39 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: components/PromptDetail/PromptProjectDetail.jsx:40 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:68 msgid "Delete on Update" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:164 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 msgid "Delete smart inventory" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 -msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +msgid "" +"Delete the local repository in its entirety prior to\n" +"performing an update. Depending on the size of the\n" +"repository this may significantly increase the amount\n" +"of time required to complete an update." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 msgid "Delete this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:227 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:233 msgid "Delete this node" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:113 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162 msgid "Delete {pluralizedItemName}?" msgstr "" -#: src/components/DetailList/DeletedDetail.jsx:15 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 +#: components/DetailList/DeletedDetail.jsx:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 msgid "Deleted" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:259 -#: src/screens/Credential/CredentialList/CredentialList.jsx:190 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:245 -#: src/screens/Project/ProjectList/ProjectList.jsx:223 +#: components/TemplateList/TemplateList.jsx:269 +#: screens/Credential/CredentialList/CredentialList.jsx:189 +#: screens/Inventory/InventoryList/InventoryList.jsx:255 +#: screens/Project/ProjectList/ProjectList.jsx:233 msgid "Deletion Error" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:195 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:252 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259 msgid "Deletion error" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 msgid "Denied" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 msgid "Denied by {0} - {1}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:198 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:203 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:59 msgid "Deny" msgstr "" -#: src/components/HostForm/HostForm.jsx:95 -#: src/components/Lookup/ApplicationLookup.jsx:83 -#: src/components/Lookup/ApplicationLookup.jsx:101 -#: src/components/NotificationList/NotificationList.jsx:186 -#: src/components/PromptDetail/PromptDetail.jsx:110 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: src/components/Schedule/shared/ScheduleForm.jsx:110 -#: src/components/TemplateList/TemplateList.jsx:189 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:126 -#: src/screens/Application/shared/ApplicationForm.jsx:62 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:198 -#: src/screens/Credential/CredentialList/CredentialList.jsx:137 -#: src/screens/Credential/shared/CredentialForm.jsx:126 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:45 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:128 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: src/screens/Host/HostDetail/HostDetail.jsx:81 -#: src/screens/Host/HostList/HostList.jsx:152 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:73 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:172 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:191 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: src/screens/Inventory/shared/InventoryForm.jsx:55 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:49 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:110 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:61 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:126 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:89 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:138 -#: src/screens/Organization/shared/OrganizationForm.jsx:60 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:86 -#: src/screens/Project/ProjectList/ProjectList.jsx:138 -#: src/screens/Project/shared/ProjectForm.jsx:168 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:38 -#: src/screens/Team/TeamList/TeamList.jsx:134 -#: src/screens/Team/shared/TeamForm.jsx:43 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:168 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:124 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:109 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:133 -#: src/screens/Template/shared/JobTemplateForm.jsx:208 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:107 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:48 -#: src/screens/User/UserTokenList/UserTokenList.jsx:116 -#: src/screens/User/shared/UserTokenForm.jsx:59 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 +#: screens/Job/JobOutput/JobOutput.jsx:665 +msgid "Deprecated" +msgstr "" + +#: components/HostForm/HostForm.jsx:95 +#: components/Lookup/ApplicationLookup.jsx:83 +#: components/Lookup/ApplicationLookup.jsx:101 +#: components/NotificationList/NotificationList.jsx:186 +#: components/PromptDetail/PromptDetail.jsx:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 +#: components/Schedule/ScheduleList/ScheduleList.jsx:197 +#: components/Schedule/shared/ScheduleForm.jsx:110 +#: components/TemplateList/TemplateList.jsx:194 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/shared/ApplicationForm.jsx:62 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211 +#: screens/Credential/CredentialList/CredentialList.jsx:129 +#: screens/Credential/shared/CredentialForm.jsx:126 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/Host/HostDetail/HostDetail.jsx:81 +#: screens/Host/HostList/HostList.jsx:152 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 +#: screens/Inventory/InventoryList/InventoryList.jsx:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 +#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryGroupForm.jsx:49 +#: screens/Inventory/shared/InventorySourceForm.jsx:113 +#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 +#: screens/Organization/OrganizationList/OrganizationList.jsx:142 +#: screens/Organization/shared/OrganizationForm.jsx:68 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 +#: screens/Project/ProjectList/ProjectList.jsx:143 +#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Team/TeamDetail/TeamDetail.jsx:38 +#: screens/Team/TeamList/TeamList.jsx:134 +#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 +#: screens/Template/Survey/SurveyQuestionForm.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:163 +#: screens/Template/shared/JobTemplateForm.jsx:215 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:118 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 +#: screens/User/UserTokenList/UserTokenList.jsx:116 +#: screens/User/shared/UserTokenForm.jsx:59 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 msgid "Description" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 msgid "Destination Channels" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 msgid "Destination Channels or Users" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 msgid "Destination SMS Number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 msgid "Destination SMS number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 msgid "Destination channels" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 msgid "Destination channels or users" msgstr "" -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 msgid "Detail coming soon :)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:60 -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:70 -#: src/components/ErrorDetail/ErrorDetail.jsx:73 -#: src/components/Schedule/Schedule.jsx:67 -#: src/screens/Application/Application/Application.jsx:77 -#: src/screens/Application/Applications.jsx:39 -#: src/screens/Credential/Credential.jsx:58 -#: src/screens/Credential/Credentials.jsx:28 -#: src/screens/CredentialType/CredentialType.jsx:62 -#: src/screens/CredentialType/CredentialTypes.jsx:29 -#: src/screens/Host/Host.jsx:52 -#: src/screens/Host/Hosts.jsx:29 -#: src/screens/InstanceGroup/ContainerGroup.jsx:63 -#: src/screens/InstanceGroup/InstanceGroup.jsx:64 -#: src/screens/InstanceGroup/InstanceGroups.jsx:33 -#: src/screens/InstanceGroup/InstanceGroups.jsx:42 -#: src/screens/Inventory/Inventories.jsx:60 -#: src/screens/Inventory/Inventories.jsx:104 -#: src/screens/Inventory/Inventory.jsx:62 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:88 -#: src/screens/Inventory/SmartInventory.jsx:69 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: src/screens/Job/Job.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:113 -#: src/screens/Job/Jobs.jsx:29 -#: src/screens/ManagementJob/ManagementJobs.jsx:29 -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:27 -#: src/screens/Organization/Organization.jsx:122 -#: src/screens/Organization/Organizations.jsx:31 -#: src/screens/Project/Project.jsx:105 -#: src/screens/Project/Projects.jsx:29 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: src/screens/Setting/Settings.jsx:45 -#: src/screens/Setting/Settings.jsx:48 -#: src/screens/Setting/Settings.jsx:52 -#: src/screens/Setting/Settings.jsx:55 -#: src/screens/Setting/Settings.jsx:58 -#: src/screens/Setting/Settings.jsx:61 -#: src/screens/Setting/Settings.jsx:66 -#: src/screens/Setting/Settings.jsx:69 -#: src/screens/Setting/Settings.jsx:72 -#: src/screens/Setting/Settings.jsx:75 -#: src/screens/Setting/Settings.jsx:84 -#: src/screens/Setting/Settings.jsx:85 -#: src/screens/Setting/Settings.jsx:86 -#: src/screens/Setting/Settings.jsx:87 -#: src/screens/Setting/Settings.jsx:88 -#: src/screens/Setting/Settings.jsx:89 -#: src/screens/Setting/Settings.jsx:98 -#: src/screens/Setting/Settings.jsx:101 -#: src/screens/Setting/Settings.jsx:104 -#: src/screens/Setting/Settings.jsx:107 -#: src/screens/Setting/Settings.jsx:110 -#: src/screens/Setting/Settings.jsx:113 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:55 -#: src/screens/Team/Team.jsx:55 -#: src/screens/Team/Teams.jsx:29 -#: src/screens/Template/Template.jsx:131 -#: src/screens/Template/Templates.jsx:44 -#: src/screens/Template/WorkflowJobTemplate.jsx:121 -#: src/screens/User/User.jsx:63 -#: src/screens/User/UserToken/UserToken.jsx:54 -#: src/screens/User/Users.jsx:31 -#: src/screens/User/Users.jsx:41 -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:21 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:60 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:70 +#: components/ErrorDetail/ErrorDetail.jsx:73 +#: components/Schedule/Schedule.jsx:68 +#: screens/Application/Application/Application.jsx:77 +#: screens/Application/Applications.jsx:39 +#: screens/Credential/Credential.jsx:58 +#: screens/Credential/Credentials.jsx:28 +#: screens/CredentialType/CredentialType.jsx:62 +#: screens/CredentialType/CredentialTypes.jsx:29 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:30 +#: screens/Host/Host.jsx:52 +#: screens/Host/Hosts.jsx:29 +#: screens/InstanceGroup/ContainerGroup.jsx:63 +#: screens/InstanceGroup/InstanceGroup.jsx:64 +#: screens/InstanceGroup/InstanceGroups.jsx:33 +#: screens/InstanceGroup/InstanceGroups.jsx:42 +#: screens/Inventory/Inventories.jsx:60 +#: screens/Inventory/Inventories.jsx:102 +#: screens/Inventory/Inventory.jsx:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 +#: screens/Inventory/InventorySource/InventorySource.jsx:88 +#: screens/Inventory/SmartInventory.jsx:69 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 +#: screens/Job/Job.jsx:103 +#: screens/Job/JobOutput/HostEventModal.jsx:113 +#: screens/Job/Jobs.jsx:29 +#: screens/ManagementJob/ManagementJobs.jsx:29 +#: screens/NotificationTemplate/NotificationTemplate.jsx:83 +#: screens/NotificationTemplate/NotificationTemplates.jsx:27 +#: screens/Organization/Organization.jsx:123 +#: screens/Organization/Organizations.jsx:31 +#: screens/Project/Project.jsx:105 +#: screens/Project/Projects.jsx:29 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:115 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 +#: screens/Setting/Settings.jsx:45 +#: screens/Setting/Settings.jsx:48 +#: screens/Setting/Settings.jsx:52 +#: screens/Setting/Settings.jsx:55 +#: screens/Setting/Settings.jsx:58 +#: screens/Setting/Settings.jsx:61 +#: screens/Setting/Settings.jsx:66 +#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.jsx:72 +#: screens/Setting/Settings.jsx:75 +#: screens/Setting/Settings.jsx:84 +#: screens/Setting/Settings.jsx:85 +#: screens/Setting/Settings.jsx:86 +#: screens/Setting/Settings.jsx:87 +#: screens/Setting/Settings.jsx:88 +#: screens/Setting/Settings.jsx:89 +#: screens/Setting/Settings.jsx:98 +#: screens/Setting/Settings.jsx:101 +#: screens/Setting/Settings.jsx:104 +#: screens/Setting/Settings.jsx:107 +#: 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/Team/Team.jsx:55 +#: screens/Team/Teams.jsx:29 +#: screens/Template/Template.jsx:144 +#: screens/Template/Templates.jsx:44 +#: screens/Template/WorkflowJobTemplate.jsx:121 +#: screens/User/User.jsx:63 +#: screens/User/UserToken/UserToken.jsx:54 +#: screens/User/Users.jsx:31 +#: screens/User/Users.jsx:41 +#: screens/WorkflowApproval/WorkflowApproval.jsx:76 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.jsx:111 msgid "Details tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 msgid "Disable SSL Verification" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 msgid "Disable SSL verification" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:60 -#: src/components/DisassociateButton/DisassociateButton.jsx:87 -#: src/components/DisassociateButton/DisassociateButton.jsx:94 -#: src/components/DisassociateButton/DisassociateButton.jsx:98 -#: src/components/DisassociateButton/DisassociateButton.jsx:117 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:204 -#: src/screens/User/UserRoles/UserRolesList.jsx:204 +#: components/DisassociateButton/DisassociateButton.jsx:60 +#: components/DisassociateButton/DisassociateButton.jsx:87 +#: components/DisassociateButton/DisassociateButton.jsx:95 +#: components/DisassociateButton/DisassociateButton.jsx:99 +#: components/DisassociateButton/DisassociateButton.jsx:119 +#: screens/Team/TeamRoles/TeamRolesList.jsx:205 +#: screens/User/UserRoles/UserRolesList.jsx:205 msgid "Disassociate" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:211 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 +#: screens/Host/HostGroups/HostGroupsList.jsx:211 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 msgid "Disassociate group from host?" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 msgid "Disassociate host from group?" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:191 +#: screens/InstanceGroup/Instances/InstanceList.jsx:191 msgid "Disassociate instance from instance group?" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 msgid "Disassociate related group(s)?" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:212 +#: screens/User/UserTeams/UserTeamList.jsx:212 msgid "Disassociate related team(s)?" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:192 -#: src/screens/User/UserRoles/UserRolesList.jsx:192 +#: screens/Team/TeamRoles/TeamRolesList.jsx:192 +#: screens/User/UserRoles/UserRolesList.jsx:192 msgid "Disassociate role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:195 -#: src/screens/User/UserRoles/UserRolesList.jsx:195 +#: screens/Team/TeamRoles/TeamRolesList.jsx:195 +#: screens/User/UserRoles/UserRolesList.jsx:195 msgid "Disassociate role!" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:19 +#: components/DisassociateButton/DisassociateButton.jsx:19 msgid "Disassociate?" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:429 -msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#: screens/Template/shared/JobTemplateForm.jsx:459 +msgid "" +"Divide the work done by this job template\n" +"into the specified number of job slices, each running the\n" +"same tasks against a portion of the inventory." msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:161 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:163 +#: src/screens/Template/shared/JobTemplateForm.jsx:429 +#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#~ msgstr "" + +#: components/CodeEditor/VariablesDetail.jsx:114 +#: components/CodeEditor/VariablesDetail.jsx:120 +#: components/CodeEditor/VariablesField.jsx:63 +#: components/CodeEditor/VariablesField.jsx:69 +msgid "Done" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:172 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:177 msgid "Download Output" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 msgid "E-mail" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 msgid "E-mail options" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:220 +#: screens/Template/Survey/SurveyQuestionForm.jsx:220 msgid "Each answer choice must be on a separate line." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175 +msgid "" +"Each time a job runs using this inventory,\n" +"refresh the inventory from the selected source before\n" +"executing job tasks." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168 -msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 +msgid "" +"Each time a job runs using this project, update the\n" +"revision of the project prior to starting the job." msgstr "" #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 -msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." -msgstr "" +#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." +#~ msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:400 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:117 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:119 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:251 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:75 -#: src/screens/Host/HostDetail/HostDetail.jsx:116 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:120 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:67 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:106 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:158 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:355 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:357 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:125 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:143 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:147 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:158 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:87 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:79 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:142 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:79 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:96 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:160 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:14 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:100 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:141 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:79 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:80 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:99 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:57 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:61 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:373 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:207 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:207 -#: src/screens/User/UserDetail/UserDetail.jsx:92 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125 +#: screens/Host/HostDetail/HostDetail.jsx:117 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:137 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:163 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:15 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:150 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Team/TeamDetail/TeamDetail.jsx:58 +#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 +#: screens/User/UserDetail/UserDetail.jsx:93 msgid "Edit" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:67 +#: screens/Credential/CredentialList/CredentialListItem.jsx:64 +#: screens/Credential/CredentialList/CredentialListItem.jsx:68 msgid "Edit Credential" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:38 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:43 msgid "Edit Credential Plugin Configuration" msgstr "" -#: src/screens/Application/Applications.jsx:38 -#: src/screens/Credential/Credentials.jsx:27 -#: src/screens/Host/Hosts.jsx:28 -#: src/screens/ManagementJob/ManagementJobs.jsx:32 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:26 -#: src/screens/Organization/Organizations.jsx:30 -#: src/screens/Project/Projects.jsx:28 -#: src/screens/Project/Projects.jsx:40 -#: src/screens/Setting/Settings.jsx:46 -#: src/screens/Setting/Settings.jsx:49 -#: src/screens/Setting/Settings.jsx:53 -#: src/screens/Setting/Settings.jsx:56 -#: src/screens/Setting/Settings.jsx:59 -#: src/screens/Setting/Settings.jsx:62 -#: src/screens/Setting/Settings.jsx:67 -#: src/screens/Setting/Settings.jsx:70 -#: src/screens/Setting/Settings.jsx:73 -#: src/screens/Setting/Settings.jsx:76 -#: src/screens/Setting/Settings.jsx:90 -#: src/screens/Setting/Settings.jsx:91 -#: src/screens/Setting/Settings.jsx:92 -#: src/screens/Setting/Settings.jsx:93 -#: src/screens/Setting/Settings.jsx:94 -#: src/screens/Setting/Settings.jsx:95 -#: src/screens/Setting/Settings.jsx:99 -#: src/screens/Setting/Settings.jsx:102 -#: src/screens/Setting/Settings.jsx:105 -#: src/screens/Setting/Settings.jsx:108 -#: src/screens/Setting/Settings.jsx:111 -#: src/screens/Setting/Settings.jsx:114 -#: src/screens/Team/Teams.jsx:28 -#: src/screens/Template/Templates.jsx:45 -#: src/screens/User/Users.jsx:30 +#: screens/Application/Applications.jsx:38 +#: screens/Credential/Credentials.jsx:27 +#: screens/Host/Hosts.jsx:28 +#: screens/ManagementJob/ManagementJobs.jsx:32 +#: screens/NotificationTemplate/NotificationTemplates.jsx:26 +#: screens/Organization/Organizations.jsx:30 +#: screens/Project/Projects.jsx:28 +#: screens/Project/Projects.jsx:40 +#: screens/Setting/Settings.jsx:46 +#: screens/Setting/Settings.jsx:49 +#: screens/Setting/Settings.jsx:53 +#: screens/Setting/Settings.jsx:56 +#: screens/Setting/Settings.jsx:59 +#: screens/Setting/Settings.jsx:62 +#: screens/Setting/Settings.jsx:67 +#: screens/Setting/Settings.jsx:70 +#: screens/Setting/Settings.jsx:73 +#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.jsx:90 +#: screens/Setting/Settings.jsx:91 +#: screens/Setting/Settings.jsx:92 +#: screens/Setting/Settings.jsx:93 +#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.jsx:95 +#: screens/Setting/Settings.jsx:99 +#: screens/Setting/Settings.jsx:102 +#: screens/Setting/Settings.jsx:105 +#: screens/Setting/Settings.jsx:108 +#: screens/Setting/Settings.jsx:111 +#: screens/Setting/Settings.jsx:114 +#: screens/Team/Teams.jsx:28 +#: screens/Template/Templates.jsx:45 +#: screens/User/Users.jsx:30 msgid "Edit Details" msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:50 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:58 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:85 +msgid "Edit Execution Environment" +msgstr "" + +#: screens/Host/HostGroups/HostGroupItem.jsx:50 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:59 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:67 msgid "Edit Group" msgstr "" -#: src/screens/Host/HostList/HostListItem.jsx:52 -#: src/screens/Host/HostList/HostListItem.jsx:55 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 +#: screens/Host/HostList/HostListItem.jsx:52 +#: screens/Host/HostList/HostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:78 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 msgid "Edit Host" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:115 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:119 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:115 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:120 msgid "Edit Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 msgid "Edit Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:204 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 msgid "Edit Node" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:137 msgid "Edit Notification Template" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:47 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:50 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:74 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:78 msgid "Edit Organization" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:134 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:138 +#: screens/Project/ProjectList/ProjectListItem.jsx:161 +#: screens/Project/ProjectList/ProjectListItem.jsx:166 msgid "Edit Project" msgstr "" -#: src/screens/Template/Templates.jsx:51 +#: screens/Template/Templates.jsx:51 msgid "Edit Question" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:116 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: src/screens/Template/Templates.jsx:58 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:116 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:120 +#: screens/Template/Templates.jsx:58 msgid "Edit Schedule" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:98 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:126 msgid "Edit Source" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:42 -#: src/screens/Team/TeamList/TeamListItem.jsx:57 -#: src/screens/Team/TeamList/TeamListItem.jsx:60 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 +#: screens/Team/TeamList/TeamListItem.jsx:57 +#: screens/Team/TeamList/TeamListItem.jsx:61 msgid "Edit Team" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:167 -#: src/components/TemplateList/TemplateListItem.jsx:172 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:109 +#: components/TemplateList/TemplateListItem.jsx:194 +#: components/TemplateList/TemplateListItem.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:133 msgid "Edit Template" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:82 -#: src/screens/User/UserList/UserListItem.jsx:85 +#: screens/User/UserList/UserListItem.jsx:82 +#: screens/User/UserList/UserListItem.jsx:86 msgid "Edit User" msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:50 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:50 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:54 msgid "Edit application" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:44 msgid "Edit credential type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:27 -#: src/screens/InstanceGroup/InstanceGroups.jsx:38 -#: src/screens/InstanceGroup/InstanceGroups.jsx:48 -#: src/screens/Inventory/Inventories.jsx:61 -#: src/screens/Inventory/Inventories.jsx:67 -#: src/screens/Inventory/Inventories.jsx:82 -#: src/screens/Inventory/Inventories.jsx:107 +#: screens/CredentialType/CredentialTypes.jsx:27 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:27 +#: screens/InstanceGroup/InstanceGroups.jsx:38 +#: screens/InstanceGroup/InstanceGroups.jsx:48 +#: screens/Inventory/Inventories.jsx:61 +#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.jsx:105 msgid "Edit details" msgstr "" -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 msgid "Edit form coming soon :)" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:108 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:109 msgid "Edit instance group" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 msgid "Edit this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:199 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:205 msgid "Edit this node" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:146 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:123 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: components/Workflow/WorkflowNodeHelp.jsx:146 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:130 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 msgid "Elapsed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:122 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:129 msgid "Elapsed Time" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:124 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:131 msgid "Elapsed time that the job ran" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:193 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 -#: src/screens/User/UserDetail/UserDetail.jsx:64 -#: src/screens/User/shared/UserForm.jsx:77 +#: components/NotificationList/NotificationList.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 +#: screens/User/UserDetail/UserDetail.jsx:64 +#: screens/User/shared/UserForm.jsx:77 msgid "Email" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 msgid "Email Options" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:63 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:128 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:265 msgid "Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:557 +#: screens/Template/shared/JobTemplateForm.jsx:587 msgid "Enable Fact Storage" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 msgid "Enable HTTPS certificate verification" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:57 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 msgid "Enable Privilege Escalation" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:531 -#: src/screens/Template/shared/JobTemplateForm.jsx:534 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:216 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:219 +#: screens/Template/shared/JobTemplateForm.jsx:561 +#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 msgid "Enable Webhook" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:223 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Enable Webhook for this workflow job template." msgstr "" -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 msgid "Enable Webhooks" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 msgid "Enable external logging" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 msgid "Enable log system tracking facts individually" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:236 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:239 +#: components/AdHocCommands/AdHocDetailsStep.jsx:236 +#: components/AdHocCommands/AdHocDetailsStep.jsx:239 msgid "Enable privilege escalation" msgstr "" -#: src/screens/Setting/SettingList.jsx:57 +#: screens/Setting/SettingList.jsx:57 msgid "Enable simplified login for your {brandName} applications" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:537 +#: screens/Template/shared/JobTemplateForm.jsx:567 msgid "Enable webhook for this template." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:94 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 +#: components/Lookup/HostFilterLookup.jsx:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 msgid "Enabled" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267 msgid "Enabled Value" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:231 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254 msgid "Enabled Variable" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:517 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#: screens/Template/shared/JobTemplateForm.jsx:547 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact BRAND_NAME\n" +"and request a configuration update using this job\n" +"template." msgstr "" +#: components/AdHocCommands/AdHocDetailsStep.jsx:244 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact {brandName}\n" +"and request a configuration update using this job\n" +"template" +msgstr "" + +#: src/screens/Template/shared/JobTemplateForm.jsx:517 +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#~ msgstr "" + #: src/components/AdHocCommands/AdHocDetailsStep.jsx:244 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" -msgstr "" +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" +#~ msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:149 -#: src/screens/Setting/shared/SettingDetail.jsx:75 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:154 +#: screens/Setting/shared/SettingDetail.jsx:75 msgid "Encrypted" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:504 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 msgid "End" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:562 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 msgid "End date/time" msgstr "" -#: src/components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:96 msgid "End did not match an expected value" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:31 +#: screens/Host/HostList/SmartInventoryButton.jsx:31 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:39 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:39 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:85 +#: screens/Inventory/shared/SmartInventoryForm.jsx:100 +msgid "" +"Enter inventory variables using either JSON or YAML syntax.\n" +"Use the radio button to toggle between the two. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: screens/Inventory/shared/InventoryForm.jsx:85 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "" #: src/screens/Inventory/shared/SmartInventoryForm.jsx:100 -msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." -msgstr "" +#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 msgid "Enter one Annotation Tag per line, without commas." msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +msgid "" +"Enter one IRC channel or username per line. The pound\n" +"symbol (#) for channels, and the at (@) symbol for users, are not\n" +"required." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 -msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +msgid "" +"Enter one Slack channel per line. The pound symbol (#)\n" +"is required for channels." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 -msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +msgid "" +"Enter one email address per line to create a recipient\n" +"list for this type of notification." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 -msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +msgid "" +"Enter one phone number per line to specify where to\n" +"route SMS messages." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 -msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +msgid "" +"Enter the number associated with the \"Messaging\n" +"Service\" in Twilio in the format +18005550199." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 -msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." -msgstr "" +#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." +#~ msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:37 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "" #: src/screens/Job/JobDetail/JobDetail.jsx:224 -msgid "Environment" -msgstr "" +#~ msgid "Environment" +#~ msgstr "" -#: src/components/JobList/JobList.jsx:227 -#: src/components/Workflow/WorkflowNodeHelp.jsx:92 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:198 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:255 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/JobList/JobList.jsx:205 +#: components/Workflow/WorkflowNodeHelp.jsx:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:161 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262 +#: screens/Job/JobOutput/JobOutput.jsx:668 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Error" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:431 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:432 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 msgid "Error message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:440 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:441 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 msgid "Error message body" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:98 -#: src/components/AppContainer/AppContainer.jsx:215 -#: src/components/CopyButton/CopyButton.jsx:49 -#: src/components/HostToggle/HostToggle.jsx:73 -#: src/components/InstanceToggle/InstanceToggle.jsx:69 -#: src/components/JobList/JobList.jsx:288 -#: src/components/JobList/JobList.jsx:299 -#: src/components/LaunchButton/LaunchButton.jsx:150 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:66 -#: src/components/NotificationList/NotificationList.jsx:248 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:234 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:418 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:241 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:77 -#: src/components/TemplateList/TemplateList.jsx:262 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:191 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:269 -#: src/screens/Credential/CredentialList/CredentialList.jsx:193 -#: src/screens/Host/HostDetail/HostDetail.jsx:60 -#: src/screens/Host/HostDetail/HostDetail.jsx:131 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:243 -#: src/screens/Host/HostList/HostList.jsx:222 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:232 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:83 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:121 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:246 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:289 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:235 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:84 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:95 -#: src/screens/Login/Login.jsx:270 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:376 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:206 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:199 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:180 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: src/screens/Project/ProjectList/ProjectList.jsx:224 -#: src/screens/Project/shared/ProjectSyncButton.jsx:40 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:80 -#: src/screens/Team/TeamList/TeamList.jsx:205 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:229 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:402 -#: src/screens/Template/TemplateSurvey.jsx:126 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:164 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:179 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:291 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:586 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:293 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:304 -#: src/screens/User/UserDetail/UserDetail.jsx:111 -#: src/screens/User/UserList/UserList.jsx:197 -#: src/screens/User/UserRoles/UserRolesList.jsx:229 -#: src/screens/User/UserTeams/UserTeamList.jsx:257 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:89 -#: src/screens/User/UserTokenList/UserTokenList.jsx:191 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:235 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:246 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:596 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:598 +msgid "Error saving the workflow!" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:98 +#: components/AppContainer/AppContainer.jsx:214 +#: components/CopyButton/CopyButton.jsx:51 +#: components/DeleteButton/DeleteButton.jsx:57 +#: components/HostToggle/HostToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:69 +#: components/JobList/JobList.jsx:266 +#: components/JobList/JobList.jsx:277 +#: components/LaunchButton/LaunchButton.jsx:162 +#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/NotificationList/NotificationList.jsx:248 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204 +#: components/ResourceAccessList/ResourceAccessList.jsx:236 +#: components/ResourceAccessList/ResourceAccessList.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419 +#: components/Schedule/ScheduleList/ScheduleList.jsx:241 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 +#: components/Schedule/shared/SchedulePromptableFields.jsx:77 +#: components/TemplateList/TemplateList.jsx:272 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:139 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialList/CredentialList.jsx:192 +#: screens/Host/HostDetail/HostDetail.jsx:60 +#: screens/Host/HostDetail/HostDetail.jsx:132 +#: screens/Host/HostGroups/HostGroupsList.jsx:243 +#: screens/Host/HostList/HostList.jsx:222 +#: screens/InstanceGroup/Instances/InstanceList.jsx:232 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:148 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:84 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 +#: screens/Inventory/InventoryList/InventoryList.jsx:256 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:234 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:247 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:97 +#: screens/Login/Login.jsx:184 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:377 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:189 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 +#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/shared/ProjectSyncButton.jsx:41 +#: screens/Team/TeamDetail/TeamDetail.jsx:81 +#: screens/Team/TeamList/TeamList.jsx:205 +#: screens/Team/TeamRoles/TeamRolesList.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:423 +#: screens/Template/TemplateSurvey.jsx:126 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:331 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:342 +#: screens/User/UserDetail/UserDetail.jsx:112 +#: screens/User/UserList/UserList.jsx:197 +#: screens/User/UserRoles/UserRolesList.jsx:231 +#: screens/User/UserTeams/UserTeamList.jsx:257 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 +#: screens/User/UserTokenList/UserTokenList.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 msgid "Error!" msgstr "" -#: src/components/CodeMirrorInput/VariablesDetail.jsx:115 +#: components/CodeEditor/VariablesDetail.jsx:103 msgid "Error:" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:252 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/ActivityStream/ActivityStream.jsx:258 +#: screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/Job/JobOutput/JobOutput.jsx:635 msgid "Event" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:34 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 msgid "Event detail" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 msgid "Event detail modal" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:564 +#: screens/ActivityStream/ActivityStreamDescription.jsx:564 msgid "Event summary not available" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:221 +#: screens/ActivityStream/ActivityStream.jsx:227 msgid "Events" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.jsx:160 msgid "Exact match (default lookup if not specified)." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 msgid "Example URLs for GIT Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 msgid "Example URLs for Remote Archive Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 msgid "Example URLs for Subversion Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 msgid "Examples include:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 msgid "Execute regardless of the parent node's final state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 msgid "Execute when the parent node results in a failure state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 msgid "Execute when the parent node results in a successful state." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:225 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:135 +msgid "Execution Environment" +msgstr "" + +#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: routeConfig.js:143 +#: screens/ActivityStream/ActivityStream.jsx:210 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/Organization/Organization.jsx:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 +#: screens/Organization/Organizations.jsx:38 +#: util/getRelatedResourceDeleteDetails.js:88 +#: util/getRelatedResourceDeleteDetails.js:212 +msgid "Execution Environments" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:256 msgid "Execution Node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:22 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:25 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:41 +msgid "Execution environment image" +msgstr "" + +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:33 +msgid "Execution environment name" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +msgid "Execution environment not found." +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +msgid "Execution environments" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 msgid "Exit Without Saving" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:50 +#: components/ExpandCollapse/ExpandCollapse.jsx:52 msgid "Expand" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 +#: components/CodeEditor/VariablesDetail.jsx:214 +#: components/CodeEditor/VariablesField.jsx:165 +msgid "Expand input" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:65 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 +#: screens/User/UserTokenList/UserTokenListItem.jsx:65 msgid "Expiration" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:58 -#: src/screens/User/UserTokenList/UserTokenList.jsx:130 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:66 -#: src/screens/User/UserTokens/UserTokens.jsx:90 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 +#: screens/User/UserTokenList/UserTokenList.jsx:130 +#: screens/User/UserTokenList/UserTokenListItem.jsx:66 +#: screens/User/UserTokens/UserTokens.jsx:90 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 msgid "Expires" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 msgid "Expires on {0}" msgstr "" -#: src/components/JobList/JobListItem.jsx:167 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.jsx:168 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 msgid "Explanation" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:112 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:116 msgid "External Secret Management System" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:309 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:310 +#: components/AdHocCommands/AdHocDetailsStep.jsx:309 +#: components/AdHocCommands/AdHocDetailsStep.jsx:310 msgid "Extra variables" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:35 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:61 +#: components/Sparkline/Sparkline.jsx:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49 +#: screens/Project/ProjectList/ProjectListItem.jsx:69 msgid "FINISHED:" msgstr "" -#: src/screens/Host/Host.jsx:57 -#: src/screens/Host/HostFacts/HostFacts.jsx:39 -#: src/screens/Host/Hosts.jsx:30 -#: src/screens/Inventory/Inventories.jsx:75 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Host/Host.jsx:57 +#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/Hosts.jsx:30 +#: screens/Inventory/Inventories.jsx:73 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 msgid "Facts" msgstr "" -#: src/components/JobList/JobList.jsx:226 -#: src/components/Workflow/WorkflowNodeHelp.jsx:89 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:111 +#: components/JobList/JobList.jsx:204 +#: components/Workflow/WorkflowNodeHelp.jsx:89 +#: screens/Dashboard/shared/ChartTooltip.jsx:66 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:118 msgid "Failed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:110 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:117 msgid "Failed Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:112 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:119 msgid "Failed Hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:50 -#: src/screens/Dashboard/Dashboard.jsx:135 +#: components/LaunchButton/ReLaunchDropDown.jsx:50 +#: screens/Dashboard/Dashboard.jsx:135 msgid "Failed hosts" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 msgid "Failed to approve one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:238 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 msgid "Failed to approve workflow approval." msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:240 +msgid "Failed to assign roles properly" +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 msgid "Failed to associate role" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:247 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:236 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 -#: src/screens/User/UserTeams/UserTeamList.jsx:261 +#: screens/Host/HostGroups/HostGroupsList.jsx:247 +#: screens/InstanceGroup/Instances/InstanceList.jsx:236 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 +#: screens/User/UserTeams/UserTeamList.jsx:261 msgid "Failed to associate." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:98 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:100 msgid "Failed to cancel inventory source sync." msgstr "" -#: src/components/JobList/JobList.jsx:302 +#: components/JobList/JobList.jsx:280 msgid "Failed to cancel one or more jobs." msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:84 +#: screens/Credential/CredentialList/CredentialListItem.jsx:85 msgid "Failed to copy credential." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:103 +msgid "Failed to copy execution environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:143 msgid "Failed to copy inventory." msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/ProjectList/ProjectListItem.jsx:183 msgid "Failed to copy project." msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:186 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:145 +#: components/TemplateList/TemplateListItem.jsx:214 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:155 msgid "Failed to copy template." msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:141 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:142 msgid "Failed to delete application." msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:298 msgid "Failed to delete credential." msgstr "" -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:88 msgid "Failed to delete group {0}." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:134 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:124 +#: screens/Host/HostDetail/HostDetail.jsx:135 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:125 msgid "Failed to delete host." msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:293 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306 msgid "Failed to delete inventory source {name}." msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:141 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:151 msgid "Failed to delete inventory." msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:426 msgid "Failed to delete job template." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:380 msgid "Failed to delete notification." msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 msgid "Failed to delete one or more applications." msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:201 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 msgid "Failed to delete one or more credential types." msgstr "" -#: src/screens/Credential/CredentialList/CredentialList.jsx:196 +#: screens/Credential/CredentialList/CredentialList.jsx:195 msgid "Failed to delete one or more credentials." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:152 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 +msgid "Failed to delete one or more execution environments" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:151 msgid "Failed to delete one or more groups." msgstr "" -#: src/screens/Host/HostList/HostList.jsx:225 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 +#: screens/Host/HostList/HostList.jsx:225 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 msgid "Failed to delete one or more hosts." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:258 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Failed to delete one or more instance groups." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:249 +#: screens/Inventory/InventoryList/InventoryList.jsx:259 msgid "Failed to delete one or more inventories." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:238 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:250 msgid "Failed to delete one or more inventory sources." msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 msgid "Failed to delete one or more job templates." msgstr "" -#: src/components/JobList/JobList.jsx:291 +#: components/JobList/JobList.jsx:269 msgid "Failed to delete one or more jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 msgid "Failed to delete one or more notification template." msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:202 +#: screens/Organization/OrganizationList/OrganizationList.jsx:211 msgid "Failed to delete one or more organizations." msgstr "" -#: src/screens/Project/ProjectList/ProjectList.jsx:227 +#: screens/Project/ProjectList/ProjectList.jsx:237 msgid "Failed to delete one or more projects." msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:244 +#: components/Schedule/ScheduleList/ScheduleList.jsx:244 msgid "Failed to delete one or more schedules." msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:208 msgid "Failed to delete one or more teams." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:265 +#: components/TemplateList/TemplateList.jsx:275 msgid "Failed to delete one or more templates." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 msgid "Failed to delete one or more tokens." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.jsx:194 msgid "Failed to delete one or more user tokens." msgstr "" -#: src/screens/User/UserList/UserList.jsx:200 +#: screens/User/UserList/UserList.jsx:200 msgid "Failed to delete one or more users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 msgid "Failed to delete one or more workflow approval." msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:182 msgid "Failed to delete organization." msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:183 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:192 msgid "Failed to delete project." msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:237 +#: components/ResourceAccessList/ResourceAccessList.jsx:251 msgid "Failed to delete role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:232 -#: src/screens/User/UserRoles/UserRolesList.jsx:232 +#: screens/Team/TeamRoles/TeamRolesList.jsx:234 +#: screens/User/UserRoles/UserRolesList.jsx:234 msgid "Failed to delete role." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:421 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:422 msgid "Failed to delete schedule." msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:180 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:181 msgid "Failed to delete smart inventory." msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:83 +#: screens/Team/TeamDetail/TeamDetail.jsx:84 msgid "Failed to delete team." msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:114 +#: screens/User/UserDetail/UserDetail.jsx:115 msgid "Failed to delete user." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 msgid "Failed to delete workflow approval." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:238 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 msgid "Failed to delete workflow job template." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:63 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.jsx:63 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 msgid "Failed to delete {name}." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Failed to deny one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:249 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 msgid "Failed to deny workflow approval." msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:248 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 +#: screens/Host/HostGroups/HostGroupsList.jsx:248 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 msgid "Failed to disassociate one or more groups." msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 msgid "Failed to disassociate one or more hosts." msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:237 +#: screens/InstanceGroup/Instances/InstanceList.jsx:237 msgid "Failed to disassociate one or more instances." msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:262 +#: screens/User/UserTeams/UserTeamList.jsx:262 msgid "Failed to disassociate one or more teams." msgstr "" -#: src/screens/Login/Login.jsx:274 +#: screens/Login/Login.jsx:189 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:106 -#: src/components/LaunchButton/LaunchButton.jsx:153 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: components/AdHocCommands/AdHocCommands.jsx:106 +#: components/LaunchButton/LaunchButton.jsx:165 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 msgid "Failed to launch job." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:218 +#: components/AppContainer/AppContainer.jsx:217 msgid "Failed to retrieve configuration." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:296 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:334 msgid "Failed to retrieve full node resource object." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:345 msgid "Failed to retrieve node credentials." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:87 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:167 +msgid "Failed to send test notification." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:89 msgid "Failed to sync inventory source." msgstr "" -#: src/screens/Project/shared/ProjectSyncButton.jsx:43 +#: screens/Project/shared/ProjectSyncButton.jsx:44 msgid "Failed to sync project." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:225 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:237 msgid "Failed to sync some or all inventory sources." msgstr "" -#: src/components/HostToggle/HostToggle.jsx:77 +#: components/HostToggle/HostToggle.jsx:77 msgid "Failed to toggle host." msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:73 msgid "Failed to toggle instance." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:252 +#: components/NotificationList/NotificationList.jsx:252 msgid "Failed to toggle notification." msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 msgid "Failed to toggle schedule." msgstr "" -#: src/screens/Template/TemplateSurvey.jsx:129 +#: screens/Template/TemplateSurvey.jsx:129 msgid "Failed to update survey." msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 msgid "Failed to user token." msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:83 -#: src/components/NotificationList/NotificationListItem.jsx:84 +#: components/NotificationList/NotificationListItem.jsx:83 +#: components/NotificationList/NotificationListItem.jsx:84 msgid "Failure" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 msgid "False" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 msgid "February" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:170 +#: components/Search/AdvancedSearch.jsx:171 msgid "Field contains value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:190 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field ends with value." msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:84 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:82 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:200 +#: components/Search/AdvancedSearch.jsx:201 msgid "Field matches the given regular expression." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:180 +#: components/Search/AdvancedSearch.jsx:181 msgid "Field starts with value." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 msgid "Fifth" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 +#: screens/Job/JobOutput/JobOutput.jsx:652 +msgid "File Difference" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 msgid "File upload rejected. Please select a single .json file." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 msgid "File, directory or script" msgstr "" -#: src/components/JobList/JobList.jsx:243 -#: src/components/JobList/JobListItem.jsx:77 +#: components/JobList/JobList.jsx:221 +#: components/JobList/JobListItem.jsx:77 msgid "Finish Time" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:156 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.jsx:157 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 msgid "Finished" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 msgid "First" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:119 -#: src/components/AddRole/AddResourceRole.jsx:133 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:130 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:163 -#: src/screens/User/UserDetail/UserDetail.jsx:65 -#: src/screens/User/UserList/UserList.jsx:123 -#: src/screens/User/UserList/UserList.jsx:166 -#: src/screens/User/UserList/UserListItem.jsx:62 -#: src/screens/User/UserList/UserListItem.jsx:65 -#: src/screens/User/shared/UserForm.jsx:109 +#: components/AddRole/AddResourceRole.jsx:130 +#: components/AddRole/AddResourceRole.jsx:144 +#: components/ResourceAccessList/ResourceAccessList.jsx:132 +#: components/ResourceAccessList/ResourceAccessList.jsx:165 +#: screens/User/UserDetail/UserDetail.jsx:65 +#: screens/User/UserList/UserList.jsx:123 +#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserListItem.jsx:62 +#: screens/User/UserList/UserListItem.jsx:65 +#: screens/User/shared/UserForm.jsx:109 msgid "First Name" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 msgid "First Run" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:248 +#: components/Search/AdvancedSearch.jsx:249 msgid "First, select a key" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:89 +#: components/Workflow/WorkflowTools.jsx:89 msgid "Fit the graph to the available screen size" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:64 +#: screens/Template/Survey/SurveyQuestionForm.jsx:64 msgid "Float" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:223 +msgid "" +"For job templates, select run to execute\n" +"the playbook. Select check to only check playbook syntax,\n" +"test environment setup, and report problems without\n" +"executing the playbook." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 +msgid "" +"For job templates, select run to execute the playbook.\n" +"Select check to only check playbook syntax, test environment setup,\n" +"and report problems without executing the playbook." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 #: src/screens/Template/shared/JobTemplateForm.jsx:216 -msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." -msgstr "" +#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 msgid "For more information, refer to the" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:192 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:193 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:214 -#: src/screens/Template/shared/JobTemplateForm.jsx:374 +#: components/AdHocCommands/AdHocDetailsStep.jsx:192 +#: components/AdHocCommands/AdHocDetailsStep.jsx:193 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:404 msgid "Forks" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:411 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 msgid "Fourth" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:186 +#: components/Schedule/shared/ScheduleForm.jsx:186 msgid "Frequency Details" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:212 -#: src/components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/buildRuleObj.js:69 msgid "Frequency did not match an expected value" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:309 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 msgid "Fri" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:314 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:450 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 msgid "Friday" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:125 -#: src/screens/Organization/shared/OrganizationForm.jsx:105 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 +#: screens/Organization/shared/OrganizationForm.jsx:110 msgid "Galaxy Credentials" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:55 msgid "Galaxy credentials must be owned by an Organization." msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: src/screens/Project/ProjectList/ProjectList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Job/JobOutput/JobOutput.jsx:660 +msgid "Gathering Facts" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:114 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 +#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 msgid "Git" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 -#: src/screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:253 +#: screens/Template/shared/WebhookSubForm.jsx:108 msgid "GitHub" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: src/screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 +#: screens/Setting/Settings.jsx:51 msgid "GitHub Default" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: src/screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 +#: screens/Setting/Settings.jsx:60 msgid "GitHub Enterprise" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: src/screens/Setting/Settings.jsx:64 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 +#: screens/Setting/Settings.jsx:64 msgid "GitHub Enterprise Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: src/screens/Setting/Settings.jsx:68 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 +#: screens/Setting/Settings.jsx:68 msgid "GitHub Enterprise Team" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: src/screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 +#: screens/Setting/Settings.jsx:54 msgid "GitHub Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: src/screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 +#: screens/Setting/Settings.jsx:57 msgid "GitHub Team" msgstr "" -#: src/screens/Setting/SettingList.jsx:66 +#: screens/Setting/SettingList.jsx:66 msgid "GitHub settings" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:244 -#: src/screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 +#: screens/Template/shared/WebhookSubForm.jsx:114 msgid "GitLab" msgstr "" -#: src/components/Pagination/Pagination.jsx:31 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +msgid "Global Default Execution Environment" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:75 +msgid "Globally Available" +msgstr "" + +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: src/components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: src/components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: src/components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 msgid "Google Compute Engine" msgstr "" -#: src/screens/Setting/SettingList.jsx:70 +#: screens/Setting/SettingList.jsx:70 msgid "Google OAuth 2 settings" msgstr "" -#: src/screens/Setting/Settings.jsx:71 +#: screens/Setting/Settings.jsx:71 msgid "Google OAuth2" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:194 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 +#: components/NotificationList/NotificationList.jsx:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 msgid "Grafana" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 msgid "Grafana API key" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 msgid "Grafana URL" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:210 +#: components/Search/AdvancedSearch.jsx:211 msgid "Greater than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.jsx:216 msgid "Greater than or equal to comparison." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.jsx:86 msgid "Group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:85 +#: screens/Inventory/Inventories.jsx:83 msgid "Group details" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 msgid "Group type" msgstr "" -#: src/screens/Host/Host.jsx:62 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:230 -#: src/screens/Host/Hosts.jsx:31 -#: src/screens/Inventory/Inventories.jsx:76 -#: src/screens/Inventory/Inventories.jsx:78 -#: src/screens/Inventory/Inventory.jsx:64 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:108 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: screens/Host/Host.jsx:62 +#: screens/Host/HostGroups/HostGroupsList.jsx:230 +#: screens/Host/Hosts.jsx:31 +#: screens/Inventory/Inventories.jsx:74 +#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventory.jsx:64 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: util/getRelatedResourceDeleteDetails.js:143 msgid "Groups" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 msgid "HTTP Headers" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 msgid "HTTP Method" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:121 +#: components/AppContainer/PageHeaderToolbar.jsx:121 msgid "Help" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Hide" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:135 +#: components/NotificationList/NotificationList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Hipchat" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 msgid "Host" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:143 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: src/screens/Template/shared/JobTemplateForm.jsx:592 +#: screens/Job/JobOutput/JobOutput.jsx:647 +msgid "Host Async Failure" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:646 +msgid "Host Async OK" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239 +#: screens/Template/shared/JobTemplateForm.jsx:622 msgid "Host Config Key" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:94 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:101 msgid "Host Count" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.jsx:101 msgid "Host Details" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +#: screens/Job/JobOutput/JobOutput.jsx:638 +msgid "Host Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:641 +msgid "Host Failure" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281 msgid "Host Filter" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.jsx:120 msgid "Host Name" msgstr "" -#: src/screens/Inventory/Inventories.jsx:70 +#: screens/Job/JobOutput/JobOutput.jsx:640 +msgid "Host OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:645 +msgid "Host Polling" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:651 +msgid "Host Retry" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:642 +msgid "Host Skipped" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:639 +msgid "Host Started" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:643 +msgid "Host Unreachable" +msgstr "" + +#: screens/Inventory/Inventories.jsx:70 msgid "Host details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.jsx:102 msgid "Host details modal" msgstr "" -#: src/screens/Host/Host.jsx:90 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.jsx:90 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 msgid "Host not found." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:77 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:77 msgid "Host status information for this job is unavailable." msgstr "" -#: src/routeConfig.js:85 -#: src/screens/ActivityStream/ActivityStream.jsx:173 -#: src/screens/Dashboard/Dashboard.jsx:129 -#: src/screens/Host/HostList/HostList.jsx:142 -#: src/screens/Host/HostList/HostList.jsx:188 -#: src/screens/Host/Hosts.jsx:15 -#: src/screens/Host/Hosts.jsx:25 -#: src/screens/Inventory/Inventories.jsx:63 -#: src/screens/Inventory/Inventories.jsx:88 -#: src/screens/Inventory/Inventory.jsx:65 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 -#: src/screens/Inventory/SmartInventory.jsx:71 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:95 +#: routeConfig.js:86 +#: screens/ActivityStream/ActivityStream.jsx:173 +#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:188 +#: screens/Host/Hosts.jsx:15 +#: screens/Host/Hosts.jsx:25 +#: screens/Inventory/Inventories.jsx:63 +#: screens/Inventory/Inventories.jsx:86 +#: screens/Inventory/Inventory.jsx:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 +#: screens/Inventory/SmartInventory.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: util/getRelatedResourceDeleteDetails.js:147 msgid "Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.jsx:164 msgid "Hour" msgstr "" -#: src/components/JobList/JobList.jsx:194 -#: src/components/Lookup/HostFilterLookup.jsx:82 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:155 -#: src/screens/User/UserRoles/UserRolesList.jsx:152 +#: components/JobList/JobList.jsx:172 +#: components/Lookup/HostFilterLookup.jsx:82 +#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:152 msgid "ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 msgid "ID of the Dashboard" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 msgid "ID of the Panel" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 msgid "ID of the dashboard (optional)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 msgid "ID of the panel (optional)" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:196 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:136 +#: components/NotificationList/NotificationList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "IRC" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 msgid "IRC Nick" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 msgid "IRC Server Address" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 msgid "IRC Server Port" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 msgid "IRC nick" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 msgid "IRC server address" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 msgid "IRC server password" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 msgid "IRC server port" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 msgid "Icon URL" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156 +msgid "" +"If checked, all variables for child groups\n" +"and hosts will be removed and replaced by those found\n" +"on the external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 -msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135 +msgid "" +"If checked, any hosts and groups that were\n" +"previously present on the external source but are now removed\n" +"will be removed from the Tower inventory. Hosts and groups\n" +"that were not managed by the inventory source will be promoted\n" +"to the next manually created group or if there is no manually\n" +"created group to promote them into, they will be left in the \"all\"\n" +"default group for the inventory." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 -msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:537 +msgid "" +"If enabled, run this playbook as an\n" +"administrator." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:507 -msgid "If enabled, run this playbook as an administrator." +#~ msgid "If enabled, run this playbook as an administrator." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +msgid "" +"If enabled, show the changes made\n" +"by Ansible tasks, where supported. This is equivalent to Ansible’s\n" +"--diff mode." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:478 +msgid "" +"If enabled, show the changes made by\n" +"Ansible tasks, where supported. This is equivalent\n" +"to Ansible's --diff mode." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:448 -msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." -msgstr "" +#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:216 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +#: components/AdHocCommands/AdHocDetailsStep.jsx:216 msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:551 -msgid "If enabled, simultaneous runs of this job template will be allowed." +#: screens/Template/shared/JobTemplateForm.jsx:581 +msgid "" +"If enabled, simultaneous runs of this job\n" +"template will be allowed." msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: src/screens/Template/shared/JobTemplateForm.jsx:551 +#~ msgid "If enabled, simultaneous runs of this job template will be allowed." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:263 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:559 -msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#: screens/Template/shared/JobTemplateForm.jsx:589 +msgid "" +"If enabled, this will store gathered facts so they can\n" +"be viewed at the host level. Facts are persisted and\n" +"injected into the fact cache at runtime." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:52 +#: src/screens/Template/shared/JobTemplateForm.jsx:559 +#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#~ msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "" -#: src/components/HostToggle/HostToggle.jsx:18 -msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +msgid "" +"If you want the Inventory Source to update on\n" +"launch and on project update, click on Update on launch, and also go to" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:104 -#: src/components/AppContainer/PageHeaderToolbar.jsx:114 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:64 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +msgid "Image" +msgstr "" + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:76 +msgid "Image name" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:655 +msgid "Including File" +msgstr "" + +#: components/HostToggle/HostToggle.jsx:18 +msgid "" +"Indicates if a host is available and should be included in running\n" +"jobs. For hosts that are part of an external inventory, this may be\n" +"reset by the inventory sync process." +msgstr "" + +#: src/components/HostToggle/HostToggle.jsx:18 +#~ msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#~ msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:104 +#: components/AppContainer/PageHeaderToolbar.jsx:114 msgid "Info" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.jsx:45 msgid "Initiated By" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:240 -#: src/screens/ActivityStream/ActivityStream.jsx:250 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:43 +#: screens/ActivityStream/ActivityStream.jsx:246 +#: screens/ActivityStream/ActivityStream.jsx:256 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:230 +#: screens/ActivityStream/ActivityStream.jsx:236 msgid "Initiated by (username)" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:52 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:53 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:53 msgid "Injector configuration" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:47 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:43 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:43 msgid "Input configuration" msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:71 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 msgid "Insights Credential" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:136 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:137 msgid "Instance Filters" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:228 +#: screens/Job/JobDetail/JobDetail.jsx:259 msgid "Instance Group" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:71 -#: src/components/Lookup/InstanceGroupsLookup.jsx:77 -#: src/components/Lookup/InstanceGroupsLookup.jsx:109 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:212 -#: src/routeConfig.js:132 -#: src/screens/ActivityStream/ActivityStream.jsx:198 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:86 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:317 +#: components/Lookup/InstanceGroupsLookup.jsx:71 +#: components/Lookup/InstanceGroupsLookup.jsx:77 +#: components/Lookup/InstanceGroupsLookup.jsx:109 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:218 +#: routeConfig.js:133 +#: screens/ActivityStream/ActivityStream.jsx:198 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:327 msgid "Instance Groups" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.jsx:99 msgid "Instance ID" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 -#: src/screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:86 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 +#: screens/InstanceGroup/InstanceGroups.jsx:27 msgid "Instance group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.jsx:87 msgid "Instance group not found." msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:16 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 +#: screens/InstanceGroup/InstanceGroups.jsx:16 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 msgid "Instance groups" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:69 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:231 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 -#: src/screens/InstanceGroup/InstanceGroups.jsx:35 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:218 +#: screens/InstanceGroup/InstanceGroup.jsx:69 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 +#: screens/InstanceGroup/InstanceGroups.jsx:35 +#: screens/InstanceGroup/Instances/InstanceList.jsx:148 +#: screens/InstanceGroup/Instances/InstanceList.jsx:218 msgid "Instances" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:63 +#: screens/Template/Survey/SurveyQuestionForm.jsx:63 msgid "Integer" msgstr "" -#: src/util/validators.jsx:69 +#: util/validators.jsx:69 msgid "Invalid email address" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:151 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "" -#: src/screens/Login/Login.jsx:110 +#: screens/Login/Login.jsx:118 msgid "Invalid username or password. Please try again." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: src/routeConfig.js:80 -#: src/screens/ActivityStream/ActivityStream.jsx:170 -#: src/screens/Dashboard/Dashboard.jsx:140 -#: src/screens/Inventory/Inventories.jsx:16 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:163 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 +#: routeConfig.js:81 +#: screens/ActivityStream/ActivityStream.jsx:170 +#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Inventory/Inventories.jsx:16 +#: screens/Inventory/InventoryList/InventoryList.jsx:169 +#: screens/Inventory/InventoryList/InventoryList.jsx:220 +#: util/getRelatedResourceDeleteDetails.js:67 +#: util/getRelatedResourceDeleteDetails.js:226 +#: util/getRelatedResourceDeleteDetails.js:294 msgid "Inventories" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:133 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:134 msgid "Inventories with sources cannot be copied" msgstr "" -#: src/components/HostForm/HostForm.jsx:28 -#: src/components/JobList/JobListItem.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:98 -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:47 -#: src/components/Lookup/InventoryLookup.jsx:85 -#: src/components/Lookup/InventoryLookup.jsx:94 -#: src/components/Lookup/InventoryLookup.jsx:131 -#: src/components/Lookup/InventoryLookup.jsx:147 -#: src/components/Lookup/InventoryLookup.jsx:184 -#: src/components/PromptDetail/PromptDetail.jsx:183 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:77 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:105 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:116 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 -#: src/components/TemplateList/TemplateListItem.jsx:223 -#: src/components/TemplateList/TemplateListItem.jsx:232 -#: src/screens/Host/HostDetail/HostDetail.jsx:83 -#: src/screens/Host/HostList/HostList.jsx:169 -#: src/screens/Host/HostList/HostListItem.jsx:39 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:195 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:186 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:194 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:131 +#: components/HostForm/HostForm.jsx:28 +#: components/JobList/JobListItem.jsx:150 +#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/Lookup/InventoryLookup.jsx:85 +#: components/Lookup/InventoryLookup.jsx:94 +#: components/Lookup/InventoryLookup.jsx:131 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:184 +#: components/PromptDetail/PromptDetail.jsx:183 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:78 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:107 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 +#: components/TemplateList/TemplateListItem.jsx:251 +#: components/TemplateList/TemplateListItem.jsx:260 +#: screens/Host/HostDetail/HostDetail.jsx:83 +#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostListItem.jsx:39 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:196 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:200 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 msgid "Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Inventory (Name)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:100 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:101 msgid "Inventory File" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.jsx:90 msgid "Inventory ID" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:61 +#: screens/Job/JobDetail/JobDetail.jsx:212 +msgid "Inventory Source" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:89 msgid "Inventory Source Sync" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:157 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:176 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:163 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: util/getRelatedResourceDeleteDetails.js:74 +#: util/getRelatedResourceDeleteDetails.js:171 msgid "Inventory Sources" msgstr "" -#: src/components/JobList/JobList.jsx:206 -#: src/components/JobList/JobListItem.jsx:32 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: src/components/Workflow/WorkflowLegend.jsx:100 -#: src/screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.jsx:184 +#: components/JobList/JobListItem.jsx:32 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 +#: components/Workflow/WorkflowLegend.jsx:100 +#: screens/Job/JobDetail/JobDetail.jsx:94 msgid "Inventory Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:59 +#: components/Workflow/WorkflowNodeHelp.jsx:59 msgid "Inventory Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:219 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 msgid "Inventory file" msgstr "" -#: src/screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.jsx:91 msgid "Inventory not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:229 +#: screens/Dashboard/Dashboard.jsx:229 msgid "Inventory sync" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:146 msgid "Inventory sync failures" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:49 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 -#: src/screens/Job/JobDetail/JobDetail.jsx:119 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 +#: screens/Job/JobDetail/JobDetail.jsx:120 msgid "Isolated" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:21 -#: src/components/Lookup/Lookup.jsx:129 +#: screens/Job/JobOutput/JobOutput.jsx:649 +msgid "Item Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:648 +msgid "Item OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:650 +msgid "Item Skipped" +msgstr "" + +#: components/AssociateModal/AssociateModal.jsx:21 msgid "Items" msgstr "" -#: src/components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:28 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:32 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:54 +#: components/Sparkline/Sparkline.jsx:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42 +#: screens/Project/ProjectList/ProjectListItem.jsx:62 msgid "JOB ID:" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:144 +#: screens/Job/JobOutput/HostEventModal.jsx:144 msgid "JSON" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:145 +#: screens/Job/JobOutput/HostEventModal.jsx:145 msgid "JSON tab" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 msgid "JSON:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 msgid "January" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 msgid "Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:713 -#: src/screens/Job/JobOutput/JobOutput.jsx:714 +#: screens/Job/JobDetail/JobDetail.jsx:470 +#: screens/Job/JobDetail/JobDetail.jsx:471 +#: screens/Job/JobOutput/JobOutput.jsx:832 +#: screens/Job/JobOutput/JobOutput.jsx:833 msgid "Job Cancel Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:383 -#: src/screens/Job/JobOutput/JobOutput.jsx:728 -#: src/screens/Job/JobOutput/JobOutput.jsx:729 +#: screens/Job/JobDetail/JobDetail.jsx:481 +#: screens/Job/JobOutput/JobOutput.jsx:821 +#: screens/Job/JobOutput/JobOutput.jsx:822 msgid "Job Delete Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:241 +#: screens/Job/JobDetail/JobDetail.jsx:272 msgid "Job Slice" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 -#: src/screens/Template/shared/JobTemplateForm.jsx:428 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:148 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235 +#: screens/Template/shared/JobTemplateForm.jsx:458 msgid "Job Slicing" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.jsx:140 msgid "Job Status" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 -#: src/components/PromptDetail/PromptDetail.jsx:206 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:227 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 -#: src/screens/Job/JobDetail/JobDetail.jsx:290 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:332 -#: src/screens/Template/shared/JobTemplateForm.jsx:468 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 +#: components/PromptDetail/PromptDetail.jsx:206 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:233 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.jsx:321 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342 +#: screens/Template/shared/JobTemplateForm.jsx:498 msgid "Job Tags" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:196 -#: src/components/Workflow/WorkflowLegend.jsx:92 -#: src/components/Workflow/WorkflowNodeHelp.jsx:47 -#: src/screens/Job/JobDetail/JobDetail.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:67 +#: components/TemplateList/TemplateList.jsx:201 +#: components/Workflow/WorkflowLegend.jsx:92 +#: components/Workflow/WorkflowNodeHelp.jsx:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:33 +#: screens/Job/JobDetail/JobDetail.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:95 msgid "Job Template" msgstr "" -#: src/screens/Project/Project.jsx:117 -#: src/screens/Project/Projects.jsx:32 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:42 +msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" +msgstr "" + +#: screens/Project/Project.jsx:117 +#: screens/Project/Projects.jsx:32 +#: util/getRelatedResourceDeleteDetails.js:56 +#: util/getRelatedResourceDeleteDetails.js:108 +#: util/getRelatedResourceDeleteDetails.js:157 msgid "Job Templates" msgstr "" -#: src/components/JobList/JobList.jsx:202 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 -#: src/components/PromptDetail/PromptDetail.jsx:156 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:88 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 -#: src/screens/Job/JobDetail/JobDetail.jsx:191 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:169 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:128 -#: src/screens/Template/shared/JobTemplateForm.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:24 +msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useWorkflowNodeSteps.js:267 +msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" +msgstr "" + +#: components/JobList/JobList.jsx:180 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 +#: components/PromptDetail/PromptDetail.jsx:156 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:90 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 +#: screens/Job/JobDetail/JobDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145 +#: screens/Template/shared/JobTemplateForm.jsx:220 msgid "Job Type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:172 msgid "Job status" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:170 msgid "Job status graph tab" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 msgid "Job templates" msgstr "" -#: src/components/JobList/JobList.jsx:185 -#: src/components/JobList/JobList.jsx:262 -#: src/routeConfig.js:39 -#: src/screens/ActivityStream/ActivityStream.jsx:147 -#: src/screens/Dashboard/shared/LineChart.jsx:69 -#: src/screens/InstanceGroup/ContainerGroup.jsx:68 -#: src/screens/InstanceGroup/InstanceGroup.jsx:74 -#: src/screens/InstanceGroup/InstanceGroups.jsx:37 -#: src/screens/InstanceGroup/InstanceGroups.jsx:45 -#: src/screens/Job/Jobs.jsx:15 -#: src/screens/Job/Jobs.jsx:26 -#: src/screens/Setting/SettingList.jsx:92 -#: src/screens/Setting/Settings.jsx:74 +#: components/JobList/JobList.jsx:163 +#: components/JobList/JobList.jsx:240 +#: routeConfig.js:40 +#: screens/ActivityStream/ActivityStream.jsx:147 +#: screens/Dashboard/shared/LineChart.jsx:69 +#: screens/Host/Host.jsx:67 +#: screens/Host/Hosts.jsx:32 +#: screens/InstanceGroup/ContainerGroup.jsx:68 +#: screens/InstanceGroup/InstanceGroup.jsx:74 +#: screens/InstanceGroup/InstanceGroups.jsx:37 +#: screens/InstanceGroup/InstanceGroups.jsx:45 +#: screens/Inventory/Inventories.jsx:59 +#: screens/Inventory/Inventories.jsx:72 +#: screens/Inventory/Inventory.jsx:68 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 +#: screens/Inventory/SmartInventory.jsx:73 +#: screens/Job/Jobs.jsx:15 +#: screens/Job/Jobs.jsx:26 +#: screens/Setting/SettingList.jsx:92 +#: screens/Setting/Settings.jsx:74 +#: screens/Template/Template.jsx:164 +#: screens/Template/Templates.jsx:48 +#: screens/Template/WorkflowJobTemplate.jsx:145 msgid "Jobs" msgstr "" -#: src/screens/Setting/SettingList.jsx:99 +#: screens/Setting/SettingList.jsx:99 msgid "Jobs settings" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 msgid "July" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 msgid "June" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:129 +#: components/Search/AdvancedSearch.jsx:130 msgid "Key" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:120 +#: components/Search/AdvancedSearch.jsx:121 msgid "Key select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.jsx:124 msgid "Key typeahead" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.jsx:231 msgid "Keyword" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:51 -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserDetail/UserDetail.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "LDAP" msgstr "" -#: src/screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.jsx:79 msgid "LDAP 1" msgstr "" -#: src/screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.jsx:80 msgid "LDAP 2" msgstr "" -#: src/screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.jsx:81 msgid "LDAP 3" msgstr "" -#: src/screens/Setting/Settings.jsx:82 +#: screens/Setting/Settings.jsx:82 msgid "LDAP 4" msgstr "" -#: src/screens/Setting/Settings.jsx:83 +#: screens/Setting/Settings.jsx:83 msgid "LDAP 5" msgstr "" -#: src/screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.jsx:78 msgid "LDAP Default" msgstr "" -#: src/screens/Setting/SettingList.jsx:74 +#: screens/Setting/SettingList.jsx:74 msgid "LDAP settings" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 msgid "LDAP1" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 msgid "LDAP2" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 msgid "LDAP3" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 msgid "LDAP4" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 msgid "LDAP5" msgstr "" -#: src/components/JobList/JobList.jsx:198 +#: components/JobList/JobList.jsx:176 msgid "Label Name" msgstr "" -#: src/components/JobList/JobListItem.jsx:135 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:194 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 -#: src/components/TemplateList/TemplateListItem.jsx:237 -#: src/screens/Job/JobDetail/JobDetail.jsx:275 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:299 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:178 -#: src/screens/Template/shared/JobTemplateForm.jsx:339 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: components/JobList/JobListItem.jsx:136 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:200 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 +#: components/TemplateList/TemplateListItem.jsx:265 +#: screens/Job/JobDetail/JobDetail.jsx:306 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195 +#: screens/Template/shared/JobTemplateForm.jsx:369 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209 msgid "Labels" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:414 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 msgid "Last" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:78 +#: screens/User/UserDetail/UserDetail.jsx:78 msgid "Last Login" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:140 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 -#: src/components/TemplateList/TemplateListItem.jsx:265 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:44 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:236 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:62 -#: src/screens/Host/HostDetail/HostDetail.jsx:99 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:68 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:328 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:146 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:49 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:276 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.jsx:140 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 +#: components/TemplateList/TemplateListItem.jsx:293 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:44 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:253 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 +#: screens/Host/HostDetail/HostDetail.jsx:99 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:122 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 +#: screens/Team/TeamDetail/TeamDetail.jsx:49 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:286 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 msgid "Last Modified" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:123 -#: src/components/AddRole/AddResourceRole.jsx:137 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:134 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:167 -#: src/screens/User/UserDetail/UserDetail.jsx:66 -#: src/screens/User/UserList/UserList.jsx:127 -#: src/screens/User/UserList/UserList.jsx:169 -#: src/screens/User/UserList/UserListItem.jsx:70 -#: src/screens/User/UserList/UserListItem.jsx:73 -#: src/screens/User/shared/UserForm.jsx:115 +#: components/AddRole/AddResourceRole.jsx:134 +#: components/AddRole/AddResourceRole.jsx:148 +#: components/ResourceAccessList/ResourceAccessList.jsx:136 +#: components/ResourceAccessList/ResourceAccessList.jsx:169 +#: screens/User/UserDetail/UserDetail.jsx:66 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:169 +#: screens/User/UserList/UserListItem.jsx:70 +#: screens/User/UserList/UserListItem.jsx:73 +#: screens/User/shared/UserForm.jsx:115 msgid "Last Name" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:220 -#: src/components/TemplateList/TemplateListItem.jsx:130 +#: components/TemplateList/TemplateList.jsx:225 +#: components/TemplateList/TemplateListItem.jsx:155 msgid "Last Ran" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 msgid "Last Run" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.jsx:103 msgid "Last job" msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 msgid "Last job run" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:259 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 msgid "Last modified" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:377 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:214 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 +#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:237 msgid "Launch" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 msgid "Launch Management Job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:149 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:94 +#: components/TemplateList/TemplateListItem.jsx:175 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:117 msgid "Launch Template" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:98 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:99 msgid "Launch management job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:156 +#: components/TemplateList/TemplateListItem.jsx:183 msgid "Launch template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 msgid "Launch workflow" msgstr "" -#: src/components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "" -#: src/components/JobList/JobList.jsx:214 +#: components/JobList/JobList.jsx:192 msgid "Launched By (Username)" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:86 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:120 +msgid "Leave this field blank to make the execution environment globally available." +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:86 msgid "Legend" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:220 +#: components/Search/AdvancedSearch.jsx:221 msgid "Less than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:225 +#: components/Search/AdvancedSearch.jsx:226 msgid "Less than or equal to comparison." msgstr "" -#: src/screens/Setting/SettingList.jsx:137 -#: src/screens/Setting/Settings.jsx:96 +#: screens/Setting/SettingList.jsx:137 +#: screens/Setting/Settings.jsx:96 msgid "License" msgstr "" -#: src/screens/Setting/License/License.jsx:15 -#: src/screens/Setting/SettingList.jsx:142 +#: screens/Setting/License/License.jsx:15 +#: screens/Setting/SettingList.jsx:142 msgid "License settings" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:170 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:171 -#: src/components/JobList/JobList.jsx:232 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: src/components/PromptDetail/PromptDetail.jsx:194 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 -#: src/screens/Job/JobDetail/JobDetail.jsx:222 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:215 -#: src/screens/Template/shared/JobTemplateForm.jsx:390 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:144 +#: components/AdHocCommands/AdHocDetailsStep.jsx:170 +#: components/AdHocCommands/AdHocDetailsStep.jsx:171 +#: components/JobList/JobList.jsx:210 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 +#: components/PromptDetail/PromptDetail.jsx:194 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:140 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 +#: screens/Job/JobDetail/JobDetail.jsx:250 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 +#: screens/Template/shared/JobTemplateForm.jsx:420 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:155 msgid "Limit" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:219 msgid "Link to an available node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 msgid "Loading" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 msgid "Local Time Zone" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:141 +#: components/Schedule/shared/ScheduleForm.jsx:141 msgid "Local time zone" msgstr "" -#: src/screens/Login/Login.jsx:248 +#: screens/Login/Login.jsx:162 msgid "Log In" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:14 +#: screens/Setting/shared/LoggingTestAlert.jsx:14 msgid "Log aggregator test sent successfully." msgstr "" -#: src/screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.jsx:97 msgid "Logging" msgstr "" -#: src/screens/Setting/SettingList.jsx:118 +#: screens/Setting/SettingList.jsx:118 msgid "Logging settings" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:236 -#: src/components/AppContainer/PageHeaderToolbar.jsx:171 +#: components/AppContainer/AppContainer.jsx:242 +#: components/AppContainer/PageHeaderToolbar.jsx:171 msgid "Logout" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:307 -#: src/components/Lookup/Lookup.jsx:130 +#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/Lookup.jsx:130 msgid "Lookup modal" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:142 +#: components/Search/AdvancedSearch.jsx:143 msgid "Lookup select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:152 msgid "Lookup type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:145 +#: components/Search/AdvancedSearch.jsx:146 msgid "Lookup typeahead" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:30 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:52 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40 +#: screens/Project/ProjectList/ProjectListItem.jsx:60 msgid "MOST RECENT SYNC" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:86 -#: src/screens/Job/JobDetail/JobDetail.jsx:247 +#: components/AdHocCommands/AdHocCredentialStep.jsx:67 +#: components/AdHocCommands/AdHocCredentialStep.jsx:68 +#: components/AdHocCommands/AdHocCredentialStep.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:278 msgid "Machine Credential" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:84 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:84 msgid "Machine credential" msgstr "" -#: src/components/JobList/JobList.jsx:209 -#: src/components/JobList/JobListItem.jsx:35 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: src/screens/Job/JobDetail/JobDetail.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 +msgid "Managed by Tower" +msgstr "" + +#: components/JobList/JobList.jsx:187 +#: components/JobList/JobListItem.jsx:35 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 +#: screens/Job/JobDetail/JobDetail.jsx:100 msgid "Management Job" msgstr "" -#: src/routeConfig.js:127 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:128 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 msgid "Management Jobs" msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:22 +#: screens/ManagementJob/ManagementJobs.jsx:22 msgid "Management job" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:117 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:119 msgid "Management job launch error" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.jsx:132 msgid "Management job not found." msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.jsx:14 msgid "Management jobs" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:113 -#: src/components/PromptDetail/PromptProjectDetail.jsx:69 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:90 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:102 -#: src/screens/Project/ProjectList/ProjectList.jsx:145 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: components/Lookup/ProjectLookup.jsx:113 +#: components/PromptDetail/PromptProjectDetail.jsx:75 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:104 +#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectListItem.jsx:134 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 msgid "Manual" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 msgid "March" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:197 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:137 +#: components/NotificationList/NotificationList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 msgid "Mattermost" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 -#: src/screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 +#: screens/Organization/shared/OrganizationForm.jsx:75 msgid "Max Hosts" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.jsx:175 msgid "Maximum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:159 +#: screens/Template/Survey/SurveyQuestionForm.jsx:159 msgid "Maximum length" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 msgid "May" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:38 +#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 msgid "Members" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 msgid "Metadata" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 msgid "Microsoft Azure Resource Manager" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:169 +#: screens/Template/Survey/SurveyQuestionForm.jsx:169 msgid "Minimum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:153 +#: screens/Template/Survey/SurveyQuestionForm.jsx:153 msgid "Minimum length" msgstr "" +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 +msgid "" +"Minimum number of instances that will be automatically\n" +"assigned to this group when new instances come online." +msgstr "" + #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 -msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" + +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 +msgid "" +"Minimum percentage of all instances that will be automatically\n" +"assigned to this group when new instances come online." msgstr "" #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 -msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." -msgstr "" +#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.jsx:163 msgid "Minute" msgstr "" -#: src/screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.jsx:100 msgid "Miscellaneous System" msgstr "" -#: src/screens/Setting/SettingList.jsx:110 +#: screens/Setting/SettingList.jsx:110 msgid "Miscellaneous System settings" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:104 +#: components/Workflow/WorkflowNodeHelp.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 msgid "Missing" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:353 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: src/screens/User/UserTokenList/UserTokenList.jsx:138 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 +msgid "Missing resource" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:360 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:100 -#: src/components/AddRole/AddResourceRole.jsx:152 -#: src/components/AssociateModal/AssociateModal.jsx:146 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: src/components/Lookup/CredentialLookup.jsx:157 -#: src/components/Lookup/InventoryLookup.jsx:118 -#: src/components/Lookup/InventoryLookup.jsx:171 -#: src/components/Lookup/MultiCredentialsLookup.jsx:185 -#: src/components/Lookup/OrganizationLookup.jsx:113 -#: src/components/Lookup/ProjectLookup.jsx:125 -#: src/components/NotificationList/NotificationList.jsx:210 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:205 -#: src/components/TemplateList/TemplateList.jsx:209 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 -#: src/screens/Credential/CredentialList/CredentialList.jsx:145 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:167 -#: src/screens/Host/HostList/HostList.jsx:160 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:180 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:146 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: src/screens/Project/ProjectList/ProjectList.jsx:157 -#: src/screens/Team/TeamList/TeamList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 +#: components/AdHocCommands/AdHocCredentialStep.jsx:100 +#: components/AddRole/AddResourceRole.jsx:163 +#: components/AssociateModal/AssociateModal.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:183 +#: components/LaunchPrompt/steps/InventoryStep.jsx:95 +#: components/Lookup/CredentialLookup.jsx:157 +#: components/Lookup/InventoryLookup.jsx:118 +#: components/Lookup/InventoryLookup.jsx:171 +#: components/Lookup/MultiCredentialsLookup.jsx:185 +#: components/Lookup/OrganizationLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:125 +#: components/NotificationList/NotificationList.jsx:210 +#: components/Schedule/ScheduleList/ScheduleList.jsx:205 +#: components/TemplateList/TemplateList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 +#: screens/Credential/CredentialList/CredentialList.jsx:137 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: 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:192 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 +#: screens/Organization/OrganizationList/OrganizationList.jsx:150 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 +#: screens/Project/ProjectList/ProjectList.jsx:162 +#: 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:109 msgid "Modified By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:167 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.jsx:63 +#: screens/Job/JobOutput/HostEventModal.jsx:131 msgid "Module" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:269 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 msgid "Mon" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:274 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:430 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 msgid "Monday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:167 +#: components/Schedule/shared/ScheduleForm.jsx:167 msgid "Month" msgstr "" -#: src/components/Popover/Popover.jsx:39 +#: components/Popover/Popover.jsx:39 msgid "More information" msgstr "" -#: src/screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.jsx:63 msgid "More information for" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:111 +#: screens/Template/Survey/SurveyPreviewModal.jsx:111 msgid "Multi-Select" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.jsx:90 msgid "Multiple Choice" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:61 +#: screens/Template/Survey/SurveyQuestionForm.jsx:61 msgid "Multiple Choice (multiple select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:56 +#: screens/Template/Survey/SurveyQuestionForm.jsx:56 msgid "Multiple Choice (single select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:217 +#: screens/Template/Survey/SurveyQuestionForm.jsx:217 msgid "Multiple Choice Options" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:91 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:106 -#: src/components/AddRole/AddResourceRole.jsx:143 -#: src/components/AddRole/AddResourceRole.jsx:159 -#: src/components/AssociateModal/AssociateModal.jsx:137 -#: src/components/AssociateModal/AssociateModal.jsx:152 -#: src/components/HostForm/HostForm.jsx:87 -#: src/components/JobList/JobList.jsx:189 -#: src/components/JobList/JobList.jsx:238 -#: src/components/JobList/JobListItem.jsx:59 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:140 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:155 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:77 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:92 -#: src/components/Lookup/ApplicationLookup.jsx:78 -#: src/components/Lookup/ApplicationLookup.jsx:89 -#: src/components/Lookup/CredentialLookup.jsx:148 -#: src/components/Lookup/CredentialLookup.jsx:163 -#: src/components/Lookup/HostFilterLookup.jsx:77 -#: src/components/Lookup/HostFilterLookup.jsx:345 -#: src/components/Lookup/InstanceGroupsLookup.jsx:91 -#: src/components/Lookup/InstanceGroupsLookup.jsx:102 -#: src/components/Lookup/InventoryLookup.jsx:109 -#: src/components/Lookup/InventoryLookup.jsx:124 -#: src/components/Lookup/InventoryLookup.jsx:162 -#: src/components/Lookup/InventoryLookup.jsx:177 -#: src/components/Lookup/MultiCredentialsLookup.jsx:176 -#: src/components/Lookup/MultiCredentialsLookup.jsx:191 -#: src/components/Lookup/OrganizationLookup.jsx:104 -#: src/components/Lookup/OrganizationLookup.jsx:119 -#: src/components/Lookup/ProjectLookup.jsx:105 -#: src/components/Lookup/ProjectLookup.jsx:135 -#: src/components/NotificationList/NotificationList.jsx:181 -#: src/components/NotificationList/NotificationList.jsx:218 -#: src/components/NotificationList/NotificationListItem.jsx:25 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:77 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:86 -#: src/components/PaginatedTable/PaginatedTable.jsx:69 -#: src/components/PromptDetail/PromptDetail.jsx:109 -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:100 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:173 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:192 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:78 -#: src/components/Schedule/shared/ScheduleForm.jsx:102 -#: src/components/TemplateList/TemplateList.jsx:184 -#: src/components/TemplateList/TemplateList.jsx:217 -#: src/components/TemplateList/TemplateListItem.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: src/components/Workflow/WorkflowNodeHelp.jsx:132 -#: src/components/Workflow/WorkflowNodeHelp.jsx:158 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: src/screens/Application/Applications.jsx:84 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:32 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:161 -#: src/screens/Application/shared/ApplicationForm.jsx:54 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:193 -#: src/screens/Credential/CredentialList/CredentialList.jsx:132 -#: src/screens/Credential/CredentialList/CredentialList.jsx:151 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: src/screens/Credential/shared/CredentialForm.jsx:118 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:41 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:123 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:24 -#: src/screens/Host/HostDetail/HostDetail.jsx:74 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:158 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:173 -#: src/screens/Host/HostList/HostList.jsx:147 -#: src/screens/Host/HostList/HostList.jsx:168 -#: src/screens/Host/HostList/HostListItem.jsx:34 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:42 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:74 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:227 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:69 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:167 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:186 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:194 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:81 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:190 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: src/screens/Inventory/shared/InventoryForm.jsx:47 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:41 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:102 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:53 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:121 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:178 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:100 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:85 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:133 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:154 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:33 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: src/screens/Organization/shared/OrganizationForm.jsx:52 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:82 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: src/screens/Project/ProjectList/ProjectList.jsx:133 -#: src/screens/Project/ProjectList/ProjectList.jsx:169 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:88 -#: src/screens/Project/shared/ProjectForm.jsx:160 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:34 -#: src/screens/Team/TeamList/TeamList.jsx:129 -#: src/screens/Team/TeamList/TeamList.jsx:154 -#: src/screens/Team/TeamList/TeamListItem.jsx:40 -#: src/screens/Team/shared/TeamForm.jsx:35 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:167 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:128 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 -#: src/screens/Template/shared/JobTemplateForm.jsx:200 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:99 -#: src/screens/User/UserTeams/UserTeamList.jsx:230 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 +#: components/AdHocCommands/AdHocCredentialStep.jsx:91 +#: components/AdHocCommands/AdHocCredentialStep.jsx:106 +#: components/AddRole/AddResourceRole.jsx:154 +#: components/AddRole/AddResourceRole.jsx:170 +#: components/AssociateModal/AssociateModal.jsx:139 +#: components/AssociateModal/AssociateModal.jsx:154 +#: components/HostForm/HostForm.jsx:87 +#: components/JobList/JobList.jsx:167 +#: components/JobList/JobList.jsx:216 +#: components/JobList/JobListItem.jsx:59 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:174 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:189 +#: components/LaunchPrompt/steps/InventoryStep.jsx:86 +#: components/LaunchPrompt/steps/InventoryStep.jsx:101 +#: components/Lookup/ApplicationLookup.jsx:78 +#: components/Lookup/ApplicationLookup.jsx:89 +#: components/Lookup/CredentialLookup.jsx:148 +#: components/Lookup/CredentialLookup.jsx:163 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/Lookup/HostFilterLookup.jsx:77 +#: components/Lookup/HostFilterLookup.jsx:352 +#: components/Lookup/InstanceGroupsLookup.jsx:91 +#: components/Lookup/InstanceGroupsLookup.jsx:102 +#: components/Lookup/InventoryLookup.jsx:109 +#: components/Lookup/InventoryLookup.jsx:124 +#: components/Lookup/InventoryLookup.jsx:162 +#: components/Lookup/InventoryLookup.jsx:177 +#: components/Lookup/MultiCredentialsLookup.jsx:176 +#: components/Lookup/MultiCredentialsLookup.jsx:191 +#: components/Lookup/OrganizationLookup.jsx:106 +#: components/Lookup/OrganizationLookup.jsx:121 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:135 +#: components/NotificationList/NotificationList.jsx:181 +#: components/NotificationList/NotificationList.jsx:218 +#: components/NotificationList/NotificationListItem.jsx:25 +#: components/PaginatedDataList/PaginatedDataList.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PromptDetail/PromptDetail.jsx:109 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:100 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 +#: components/Schedule/ScheduleList/ScheduleList.jsx:173 +#: components/Schedule/ScheduleList/ScheduleList.jsx:192 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78 +#: components/Schedule/shared/ScheduleForm.jsx:102 +#: components/TemplateList/TemplateList.jsx:189 +#: components/TemplateList/TemplateList.jsx:222 +#: components/TemplateList/TemplateListItem.jsx:126 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 +#: components/Workflow/WorkflowNodeHelp.jsx:132 +#: components/Workflow/WorkflowNodeHelp.jsx:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 +#: screens/Application/Applications.jsx:84 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:32 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/shared/ApplicationForm.jsx:54 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205 +#: screens/Credential/CredentialList/CredentialList.jsx:124 +#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialListItem.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:118 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:24 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:59 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:23 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:68 +#: screens/Host/HostDetail/HostDetail.jsx:74 +#: screens/Host/HostGroups/HostGroupsList.jsx:158 +#: screens/Host/HostGroups/HostGroupsList.jsx:173 +#: screens/Host/HostList/HostList.jsx:147 +#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostListItem.jsx:34 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:77 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 +#: screens/InstanceGroup/Instances/InstanceList.jsx:155 +#: screens/InstanceGroup/Instances/InstanceList.jsx:162 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 +#: screens/Inventory/InventoryList/InventoryList.jsx:173 +#: screens/Inventory/InventoryList/InventoryList.jsx:192 +#: screens/Inventory/InventoryList/InventoryList.jsx:200 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:81 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 +#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryGroupForm.jsx:41 +#: screens/Inventory/shared/InventorySourceForm.jsx:105 +#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:107 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 +#: screens/Organization/OrganizationList/OrganizationList.jsx:137 +#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 +#: screens/Organization/shared/OrganizationForm.jsx:60 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:84 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:138 +#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectListItem.jsx:99 +#: screens/Project/shared/ProjectForm.jsx:167 +#: screens/Team/TeamDetail/TeamDetail.jsx:34 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamListItem.jsx:40 +#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: 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/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:158 +#: 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:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 +#: screens/Template/shared/JobTemplateForm.jsx:207 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:110 +#: screens/User/UserTeams/UserTeamList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 msgid "Name" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:185 +#: components/AppContainer/AppContainer.jsx:185 msgid "Navigation" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:509 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:106 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 +#: screens/Dashboard/shared/ChartTooltip.jsx:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 msgid "Never" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.jsx:98 msgid "Never Updated" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 msgid "Never expires" msgstr "" -#: src/components/JobList/JobList.jsx:221 -#: src/components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.jsx:199 +#: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:79 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:113 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:122 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:79 +#: components/LaunchPrompt/LaunchPrompt.jsx:120 +#: components/Schedule/shared/SchedulePromptableFields.jsx:124 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:175 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:102 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:106 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 +#: components/Schedule/ScheduleList/ScheduleList.jsx:175 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:102 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:106 msgid "Next Run" msgstr "" -#: src/components/Search/Search.jsx:249 +#: components/Search/Search.jsx:257 msgid "No" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:157 +#: screens/Job/JobOutput/JobOutput.jsx:656 +msgid "No Hosts Matched" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:657 +msgid "No Hosts Remaining" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:157 msgid "No JSON Available" msgstr "" -#: src/screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.jsx:82 msgid "No Jobs" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:193 +#: screens/Job/JobOutput/HostEventModal.jsx:193 msgid "No Standard Error Available" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:175 +#: screens/Job/JobOutput/HostEventModal.jsx:175 msgid "No Standard Out Available" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:65 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:65 msgid "No inventory sync failures." msgstr "" -#: src/components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.jsx:16 msgid "No items found." msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:133 +#: screens/Job/JobOutput/HostEventModal.jsx:133 msgid "No result found" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:95 -#: src/components/Search/AdvancedSearch.jsx:133 -#: src/components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.jsx:96 +#: components/Search/AdvancedSearch.jsx:134 +#: components/Search/AdvancedSearch.jsx:154 msgid "No results found" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:174 +#: screens/Template/Survey/SurveyList.jsx:176 msgid "No survey questions found." msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:96 -#: src/components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:96 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:74 msgid "Node Type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:74 msgid "Node type" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.jsx:107 msgid "None" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 msgid "None (Run Once)" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/ScheduleForm.jsx:162 msgid "None (run once)" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:46 -#: src/screens/User/UserList/UserListItem.jsx:30 -#: src/screens/User/shared/UserForm.jsx:29 +#: screens/User/UserDetail/UserDetail.jsx:46 +#: screens/User/UserList/UserListItem.jsx:30 +#: screens/User/shared/UserForm.jsx:29 msgid "Normal User" msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Not Found" msgstr "" -#: src/screens/Setting/shared/SettingDetail.jsx:59 -#: src/screens/Setting/shared/SettingDetail.jsx:98 -#: src/screens/Setting/shared/SettingDetail.jsx:121 +#: screens/Setting/shared/SettingDetail.jsx:59 +#: screens/Setting/shared/SettingDetail.jsx:100 msgid "Not configured" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:68 msgid "Not configured for inventory sync." msgstr "" +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 +msgid "" +"Note that only hosts directly in this group can\n" +"be disassociated. Hosts in sub-groups must be disassociated\n" +"directly from the sub-group level that they belong." +msgstr "" + #: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 -msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgstr "" + +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s\n" +"children. This list shows all groups the host is associated\n" +"with directly and indirectly." +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:212 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s \n" +"children. This list shows all groups the host is associated \n" +"with directly and indirectly." msgstr "" #: src/screens/Host/HostGroups/HostGroupsList.jsx:212 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" #: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 -msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +msgid "" +"Note: When using SSH protocol for GitHub or\n" +"Bitbucket, enter an SSH key only, do not enter a username\n" +"(other than git). Additionally, GitHub and Bitbucket do\n" +"not support password authentication when using SSH. GIT\n" +"read only protocol (git://) does not use username or\n" +"password information." msgstr "" +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#~ msgstr "" + #: src/screens/Inventory/Inventories.jsx:120 -msgid "Notifcations" -msgstr "" +#~ msgid "Notifcations" +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 msgid "Notification Color" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:51 +#: screens/NotificationTemplate/NotificationTemplate.jsx:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 msgid "Notification Template not found." msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:171 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:13 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/ActivityStream/ActivityStream.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188 +#: screens/NotificationTemplate/NotificationTemplates.jsx:13 +#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: util/getRelatedResourceDeleteDetails.js:205 msgid "Notification Templates" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 msgid "Notification Type" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 msgid "Notification color" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:130 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:249 +msgid "Notification sent successfully" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:253 +msgid "Notification timed out" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:147 msgid "Notification type" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:177 -#: src/routeConfig.js:122 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:104 -#: src/screens/ManagementJob/ManagementJob.jsx:115 -#: src/screens/ManagementJob/ManagementJobs.jsx:24 -#: src/screens/Organization/Organization.jsx:129 -#: src/screens/Organization/Organizations.jsx:35 -#: src/screens/Project/Project.jsx:111 -#: src/screens/Project/Projects.jsx:31 -#: src/screens/Template/Template.jsx:137 -#: src/screens/Template/Templates.jsx:47 -#: src/screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.jsx:177 +#: routeConfig.js:123 +#: screens/Inventory/Inventories.jsx:118 +#: screens/Inventory/InventorySource/InventorySource.jsx:104 +#: screens/ManagementJob/ManagementJob.jsx:115 +#: screens/ManagementJob/ManagementJobs.jsx:24 +#: screens/Organization/Organization.jsx:135 +#: screens/Organization/Organizations.jsx:35 +#: screens/Project/Project.jsx:111 +#: screens/Project/Projects.jsx:31 +#: screens/Template/Template.jsx:150 +#: screens/Template/Templates.jsx:47 +#: screens/Template/WorkflowJobTemplate.jsx:127 msgid "Notifications" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 msgid "November" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:101 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.jsx:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:543 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 msgid "Occurrences" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 msgid "October" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:225 -#: src/components/HostToggle/HostToggle.jsx:59 -#: src/components/InstanceToggle/InstanceToggle.jsx:59 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:53 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:225 +#: components/HostToggle/HostToggle.jsx:59 +#: components/InstanceToggle/InstanceToggle.jsx:59 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:53 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "Off" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: src/components/HostToggle/HostToggle.jsx:58 -#: src/components/InstanceToggle/InstanceToggle.jsx:58 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:96 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:52 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:224 +#: components/HostToggle/HostToggle.jsx:58 +#: components/InstanceToggle/InstanceToggle.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:96 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:52 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "On" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:122 -#: src/components/Workflow/WorkflowLinkHelp.jsx:30 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 +#: components/Workflow/WorkflowLegend.jsx:122 +#: components/Workflow/WorkflowLinkHelp.jsx:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 msgid "On Failure" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:118 -#: src/components/Workflow/WorkflowLinkHelp.jsx:27 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:61 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 +#: components/Workflow/WorkflowLegend.jsx:118 +#: components/Workflow/WorkflowLinkHelp.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 msgid "On Success" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 msgid "On date" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:255 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 msgid "On days" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:154 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:155 msgid "Only Group By" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 msgid "OpenStack" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 msgid "Option Details" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:372 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:212 +msgid "" +"Optional labels that describe this job template,\n" +"such as 'dev' or 'test'. Labels can be used to group and filter\n" +"job templates and completed jobs." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:342 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187 -msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." -msgstr "" +#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." +#~ msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:218 +#: screens/Template/shared/WebhookSubForm.jsx:219 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:222 -#: src/components/NotificationList/NotificationListItem.jsx:34 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:166 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:174 -#: src/components/PromptDetail/PromptProjectDetail.jsx:86 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:137 -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:49 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:121 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:163 -#: src/screens/Template/shared/JobTemplateForm.jsx:500 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: components/NotificationList/NotificationList.jsx:222 +#: components/NotificationList/NotificationListItem.jsx:34 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:167 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:180 +#: components/PromptDetail/PromptProjectDetail.jsx:92 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141 +#: screens/Credential/shared/TypeInputsSubForm.jsx:49 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180 +#: screens/Template/shared/JobTemplateForm.jsx:530 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Options" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:97 -#: src/components/Lookup/OrganizationLookup.jsx:81 -#: src/components/Lookup/OrganizationLookup.jsx:86 -#: src/components/Lookup/OrganizationLookup.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:63 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:73 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:91 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:101 -#: src/components/PromptDetail/PromptProjectDetail.jsx:55 -#: src/components/PromptDetail/PromptProjectDetail.jsx:65 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:37 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:163 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:204 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:76 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:197 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:100 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:89 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:40 -#: src/screens/Team/TeamList/TeamList.jsx:155 -#: src/screens/Team/TeamList/TeamListItem.jsx:45 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:172 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:182 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 -#: src/screens/User/UserTeams/UserTeamList.jsx:235 -#: src/screens/User/UserTeams/UserTeamListItem.jsx:42 +#: components/Lookup/ApplicationLookup.jsx:97 +#: components/Lookup/OrganizationLookup.jsx:82 +#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/OrganizationLookup.jsx:101 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:64 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:74 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:93 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:103 +#: components/PromptDetail/PromptProjectDetail.jsx:56 +#: components/PromptDetail/PromptProjectDetail.jsx:66 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:37 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:67 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 +#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:91 +#: screens/Team/TeamDetail/TeamDetail.jsx:40 +#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamListItem.jsx:45 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:123 +#: screens/User/UserTeams/UserTeamList.jsx:235 +#: screens/User/UserTeams/UserTeamListItem.jsx:42 msgid "Organization" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 msgid "Organization (Name)" msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:138 msgid "Organization Name" msgstr "" -#: src/screens/Organization/Organization.jsx:148 +#: screens/Organization/Organization.jsx:154 msgid "Organization not found." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: src/routeConfig.js:96 -#: src/screens/ActivityStream/ActivityStream.jsx:178 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:129 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:175 -#: src/screens/Organization/Organizations.jsx:16 -#: src/screens/Organization/Organizations.jsx:27 -#: src/screens/User/User.jsx:65 -#: src/screens/User/UserOrganizations/UserOrganizationsList.jsx:55 -#: src/screens/User/Users.jsx:34 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 +#: routeConfig.js:97 +#: screens/ActivityStream/ActivityStream.jsx:178 +#: screens/Organization/OrganizationList/OrganizationList.jsx:133 +#: screens/Organization/OrganizationList/OrganizationList.jsx:179 +#: screens/Organization/Organizations.jsx:16 +#: screens/Organization/Organizations.jsx:27 +#: screens/User/User.jsx:65 +#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55 +#: screens/User/Users.jsx:34 +#: util/getRelatedResourceDeleteDetails.js:256 +#: util/getRelatedResourceDeleteDetails.js:290 msgid "Organizations" msgstr "" -#: src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 msgid "Other prompts" msgstr "" -#: src/screens/Job/Job.jsx:64 -#: src/screens/Job/Jobs.jsx:28 +#: screens/Job/Job.jsx:104 +#: screens/Job/Jobs.jsx:28 msgid "Output" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:47 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:114 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:129 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 msgid "Overwrite" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:49 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 msgid "Overwrite Variables" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:137 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:150 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 msgid "Overwrite variables" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 msgid "POST" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 msgid "PUT" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:198 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: components/NotificationList/NotificationList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 msgid "Pagerduty" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 msgid "Pagerduty Subdomain" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 msgid "Pagerduty subdomain" msgstr "" -#: src/components/Pagination/Pagination.jsx:37 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:157 +#: components/Workflow/WorkflowTools.jsx:166 msgid "Pan Down" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:130 +#: components/Workflow/WorkflowTools.jsx:133 msgid "Pan Left" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:167 +#: components/Workflow/WorkflowTools.jsx:177 msgid "Pan Right" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:140 +#: components/Workflow/WorkflowTools.jsx:144 msgid "Pan Up" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:279 +#: components/AdHocCommands/AdHocDetailsStep.jsx:279 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:362 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:209 +#: screens/Template/shared/JobTemplateForm.jsx:392 +msgid "" +"Pass extra command line variables to the playbook. This is the\n" +"-e or --extra-vars command line parameter for ansible-playbook.\n" +"Provide key/value pairs using either YAML or JSON. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: 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 "" -#: src/screens/Login/Login.jsx:258 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:52 -#: src/screens/User/shared/UserForm.jsx:85 +#: screens/Login/Login.jsx:172 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 +#: screens/Template/Survey/SurveyQuestionForm.jsx:52 +#: screens/User/shared/UserForm.jsx:85 msgid "Password" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:204 +#: screens/Dashboard/Dashboard.jsx:204 msgid "Past month" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:207 +#: screens/Dashboard/Dashboard.jsx:207 msgid "Past two weeks" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:210 +#: screens/Dashboard/Dashboard.jsx:210 msgid "Past week" msgstr "" -#: src/components/JobList/JobList.jsx:222 -#: src/components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.jsx:200 +#: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:88 +#: components/AppContainer/PageHeaderToolbar.jsx:88 msgid "Pending Workflow Approvals" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:109 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:109 msgid "Pending delete" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:310 +#: components/Lookup/HostFilterLookup.jsx:311 msgid "Perform a search to define a host filter" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:43 msgid "Personal access token" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.jsx:128 msgid "Play" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:82 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:89 msgid "Play Count" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: src/screens/Job/JobDetail/JobDetail.jsx:221 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 -#: src/screens/Template/shared/JobTemplateForm.jsx:300 +#: screens/Job/JobOutput/JobOutput.jsx:661 +msgid "Play Started" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 +#: screens/Job/JobDetail/JobDetail.jsx:249 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 +#: screens/Template/shared/JobTemplateForm.jsx:330 msgid "Playbook" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:139 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:97 +msgid "Playbook Check" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:662 +msgid "Playbook Complete" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:142 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 msgid "Playbook Directory" msgstr "" -#: src/components/JobList/JobList.jsx:207 -#: src/components/JobList/JobListItem.jsx:33 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: src/screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.jsx:185 +#: components/JobList/JobListItem.jsx:33 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 +#: screens/Job/JobDetail/JobDetail.jsx:98 msgid "Playbook Run" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:201 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Job/JobOutput/JobOutput.jsx:653 +msgid "Playbook Started" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:206 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 msgid "Playbook name" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:235 +#: screens/Dashboard/Dashboard.jsx:235 msgid "Playbook run" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:83 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:90 msgid "Plays" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.jsx:179 msgid "Please add survey questions." msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:94 -#: src/components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:94 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 msgid "Please click the Start button to begin." msgstr "" -#: src/util/validators.jsx:118 +#: util/validators.jsx:118 msgid "Please enter a valid URL" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:22 msgid "Please enter a value." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:507 +#: components/Schedule/shared/ScheduleForm.jsx:581 msgid "Please select a day number between 1 and 31." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:723 +#: screens/Template/shared/JobTemplateForm.jsx:755 msgid "Please select an Inventory or check the Prompt on Launch option." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:497 +#: components/Schedule/shared/ScheduleForm.jsx:571 msgid "Please select an end date/time that comes after the start date/time." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:298 +#: components/Lookup/HostFilterLookup.jsx:299 msgid "Please select an organization before editing the host filter" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:74 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 msgid "Pod spec override" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:88 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:91 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 msgid "Policy instance minimum" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:93 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:96 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 msgid "Policy instance percentage" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:54 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:61 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:71 msgid "Populate field from an external secret management system" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:287 -msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#: components/Lookup/HostFilterLookup.jsx:288 +msgid "" +"Populate the hosts for this inventory by using a search\n" +"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" +"Refer to the Ansible Tower documentation for further syntax and\n" +"examples." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: src/components/Lookup/HostFilterLookup.jsx:287 +#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#~ msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 msgid "Port" msgstr "" -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: src/screens/Template/Survey/SurveyList.jsx:161 -#: src/screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:212 +msgid "Preconditions for running this node when there are multiple parents. Refer to the" +msgstr "" + +#: components/CodeEditor/CodeEditor.jsx:176 +msgid "Press Enter to edit. Press ESC to stop editing." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 +#: screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/Survey/SurveyList.jsx:165 msgid "Preview" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 msgid "Private key passphrase" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:506 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Privilege Escalation" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 msgid "Privilege escalation password" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:86 -#: src/components/Lookup/ProjectLookup.jsx:91 -#: src/components/Lookup/ProjectLookup.jsx:144 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:92 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:121 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:129 -#: src/components/TemplateList/TemplateListItem.jsx:255 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:209 -#: src/screens/Job/JobDetail/JobDetail.jsx:211 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:207 +#: components/Lookup/ProjectLookup.jsx:86 +#: components/Lookup/ProjectLookup.jsx:91 +#: components/Lookup/ProjectLookup.jsx:144 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:89 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 +#: components/TemplateList/TemplateListItem.jsx:283 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217 +#: screens/Job/JobDetail/JobDetail.jsx:224 +#: screens/Job/JobDetail/JobDetail.jsx:239 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:205 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 msgid "Project" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:134 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 +#: components/PromptDetail/PromptProjectDetail.jsx:100 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:137 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 msgid "Project Base Path" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:73 +#: components/Workflow/WorkflowLegend.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:101 msgid "Project Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.jsx:55 msgid "Project Update" msgstr "" -#: src/screens/Project/Project.jsx:139 +#: screens/Project/Project.jsx:139 msgid "Project not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:157 msgid "Project sync failures" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: src/routeConfig.js:75 -#: src/screens/ActivityStream/ActivityStream.jsx:167 -#: src/screens/Dashboard/Dashboard.jsx:151 -#: src/screens/Project/ProjectList/ProjectList.jsx:128 -#: src/screens/Project/ProjectList/ProjectList.jsx:196 -#: src/screens/Project/Projects.jsx:14 -#: src/screens/Project/Projects.jsx:25 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 +#: routeConfig.js:76 +#: screens/ActivityStream/ActivityStream.jsx:167 +#: screens/Dashboard/Dashboard.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:133 +#: screens/Project/ProjectList/ProjectList.jsx:201 +#: screens/Project/Projects.jsx:14 +#: screens/Project/Projects.jsx:25 +#: util/getRelatedResourceDeleteDetails.js:60 +#: util/getRelatedResourceDeleteDetails.js:219 +#: util/getRelatedResourceDeleteDetails.js:249 msgid "Projects" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:137 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:136 msgid "Promote Child Groups and Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:557 -#: src/components/Schedule/shared/ScheduleForm.jsx:560 +#: components/Schedule/shared/ScheduleForm.jsx:633 +#: components/Schedule/shared/ScheduleForm.jsx:636 msgid "Prompt" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:153 +#: components/PromptDetail/PromptDetail.jsx:153 msgid "Prompt Overrides" msgstr "" -#: src/components/CodeMirrorInput/VariablesField.jsx:74 -#: src/components/FieldWithPrompt/FieldWithPrompt.jsx:47 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:161 +#: components/CodeEditor/VariablesField.jsx:158 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167 msgid "Prompt on launch" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:150 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 +#: components/PromptDetail/PromptDetail.jsx:150 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 msgid "Prompted Values" msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:100 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:109 +#: components/LaunchPrompt/LaunchPrompt.jsx:107 +#: components/Schedule/shared/SchedulePromptableFields.jsx:111 msgid "Prompts" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:423 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:158 +msgid "" +"Provide a host pattern to further constrain\n" +"the list of hosts that will be managed or affected by the\n" +"playbook. Multiple patterns are allowed. Refer to Ansible\n" +"documentation for more information and examples on patterns." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +msgid "" +"Provide a host pattern to further constrain the list\n" +"of hosts that will be managed or affected by the playbook. Multiple\n" +"patterns are allowed. Refer to Ansible documentation for more\n" +"information and examples on patterns." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 #: src/screens/Template/shared/JobTemplateForm.jsx:393 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147 -msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." -msgstr "" +#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." +#~ msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/CredentialField.jsx:97 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 -msgid "Provide key/value pairs using either YAML or JSON." +#: components/AdHocCommands/AdHocDetailsStep.jsx:284 +msgid "" +"Provide key/value pairs using either\n" +"YAML or JSON." msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 -#: src/screens/Template/shared/JobTemplateForm.jsx:579 +#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 +#~ msgid "Provide key/value pairs using either YAML or JSON." +#~ msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:152 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Provisioning Callback URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:574 +#: screens/Template/shared/JobTemplateForm.jsx:604 msgid "Provisioning Callback details" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:511 -#: src/screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:544 msgid "Provisioning Callbacks" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:116 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:93 +msgid "Pull" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:116 msgid "Question" msgstr "" -#: src/screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.jsx:103 msgid "RADIUS" msgstr "" -#: src/screens/Setting/SettingList.jsx:78 +#: screens/Setting/SettingList.jsx:78 msgid "RADIUS settings" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Read" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:177 +#: screens/Dashboard/Dashboard.jsx:177 msgid "Recent Jobs" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:175 +#: screens/Dashboard/Dashboard.jsx:175 msgid "Recent Jobs list tab" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:183 +#: screens/Dashboard/Dashboard.jsx:183 msgid "Recent Templates" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:180 +#: screens/Dashboard/Dashboard.jsx:180 msgid "Recent Templates list tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 msgid "Recipient List" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 msgid "Recipient list" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:117 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: src/screens/Project/ProjectList/ProjectList.jsx:149 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: components/Lookup/ProjectLookup.jsx:117 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 +#: screens/Project/ProjectList/ProjectList.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 msgid "Red Hat Insights" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 msgid "Red Hat Satellite 6" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "Red Hat Virtualization" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:108 +#: screens/Application/shared/ApplicationForm.jsx:108 msgid "Redirect URIs" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 msgid "Redirect uris" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:383 -msgid "Refer to the Ansible documentation for details about the configuration file." +#: screens/Template/shared/JobTemplateForm.jsx:413 +msgid "" +"Refer to the Ansible documentation for details\n" +"about the configuration file." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:78 +#: src/screens/Template/shared/JobTemplateForm.jsx:383 +#~ msgid "Refer to the Ansible documentation for details about the configuration file." +#~ msgstr "" + +#: screens/User/UserTokens/UserTokens.jsx:78 msgid "Refresh Token" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:85 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:118 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:119 msgid "Regions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:240 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +msgid "Registry credential" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:283 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "" -#: src/screens/Inventory/Inventories.jsx:94 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 +#: screens/Inventory/Inventories.jsx:92 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 msgid "Related Groups" msgstr "" -#: src/components/JobList/JobListItem.jsx:104 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:69 -#: src/screens/Job/JobDetail/JobDetail.jsx:360 -#: src/screens/Job/JobDetail/JobDetail.jsx:363 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:150 +#: components/JobList/JobListItem.jsx:105 +#: components/LaunchButton/ReLaunchDropDown.jsx:70 +#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:402 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:161 msgid "Relaunch" msgstr "" -#: src/components/JobList/JobListItem.jsx:89 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:135 +#: components/JobList/JobListItem.jsx:89 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:142 msgid "Relaunch Job" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:33 +#: components/LaunchButton/ReLaunchDropDown.jsx:33 msgid "Relaunch all hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:44 +#: components/LaunchButton/ReLaunchDropDown.jsx:44 msgid "Relaunch failed hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:23 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:28 +#: components/LaunchButton/ReLaunchDropDown.jsx:23 +#: components/LaunchButton/ReLaunchDropDown.jsx:28 msgid "Relaunch on" msgstr "" -#: src/components/JobList/JobListItem.jsx:88 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:134 +#: components/JobList/JobListItem.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:141 msgid "Relaunch using host parameters" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:116 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: src/screens/Project/ProjectList/ProjectList.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: components/Lookup/ProjectLookup.jsx:116 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 +#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 msgid "Remote Archive" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:20 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:28 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 msgid "Remove" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 msgid "Remove All Nodes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 msgid "Remove Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 msgid "Remove Node" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:23 msgid "Remove {0} Access" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:60 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:60 msgid "Remove {0} chip" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:47 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:49 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 msgid "Repeat Frequency" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:104 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:143 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:45 +msgid "Replace" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:54 +msgid "Replace field with new value" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:106 +#: screens/Template/Survey/SurveyQuestionForm.jsx:143 msgid "Required" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 msgid "Resource deleted" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:21 +#: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Resource name" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:40 +#: screens/User/UserRoles/UserRolesListItem.jsx:40 msgid "Resource role" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:30 +#: screens/User/UserRoles/UserRolesListItem.jsx:30 msgid "Resource type" msgstr "" -#: src/routeConfig.js:61 -#: src/screens/ActivityStream/ActivityStream.jsx:156 +#: routeConfig.js:62 +#: screens/ActivityStream/ActivityStream.jsx:156 msgid "Resources" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:121 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:71 +#: components/TemplateList/TemplateListItem.jsx:133 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:81 msgid "Resources are missing from this template." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:44 msgid "Restore initial value." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 -msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255 +msgid "" +"Retrieve the enabled state from the given dict of host variables.\n" +"The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:148 -#: src/components/JobList/JobListCancelButton.jsx:151 -#: src/screens/Job/JobOutput/JobOutput.jsx:692 -#: src/screens/Job/JobOutput/JobOutput.jsx:695 +#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 +#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:143 +#: components/JobList/JobListCancelButton.jsx:146 +#: screens/Job/JobDetail/JobDetail.jsx:453 +#: screens/Job/JobDetail/JobDetail.jsx:456 +#: screens/Job/JobOutput/JobOutput.jsx:804 +#: screens/Job/JobOutput/JobOutput.jsx:807 msgid "Return" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:115 +#: components/Search/AdvancedSearch.jsx:116 msgid "Returns results that have values other than this one as well as other filters." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:101 +#: components/Search/AdvancedSearch.jsx:102 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:108 +#: components/Search/AdvancedSearch.jsx:109 msgid "Returns results that satisfy this one or any other filters." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Revert" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.jsx:23 msgid "Revert all" msgstr "" -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:28 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:34 +#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.jsx:34 msgid "Revert all to default" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:53 +msgid "Revert field to previously saved value" +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:11 msgid "Revert settings" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.jsx:43 msgid "Revert to factory default." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:220 -#: src/screens/Project/ProjectList/ProjectList.jsx:172 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:111 +#: screens/Job/JobDetail/JobDetail.jsx:248 +#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectListItem.jsx:137 msgid "Revision" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 msgid "Revision #" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:199 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 +#: components/NotificationList/NotificationList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Rocket.Chat" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:40 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: src/screens/User/UserList/UserList.jsx:171 -#: src/screens/User/UserList/UserListItem.jsx:78 -#: src/screens/User/UserRoles/UserRolesList.jsx:145 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:44 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.jsx:148 +#: screens/User/UserList/UserList.jsx:171 +#: screens/User/UserList/UserListItem.jsx:78 +#: screens/User/UserRoles/UserRolesList.jsx:145 +#: screens/User/UserRoles/UserRolesListItem.jsx:44 msgid "Role" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:141 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:154 -#: src/screens/Team/Team.jsx:57 -#: src/screens/Team/Teams.jsx:32 -#: src/screens/User/User.jsx:70 -#: src/screens/User/Users.jsx:32 +#: components/ResourceAccessList/ResourceAccessList.jsx:143 +#: components/ResourceAccessList/ResourceAccessList.jsx:156 +#: screens/Team/Team.jsx:57 +#: screens/Team/Teams.jsx:32 +#: screens/User/User.jsx:70 +#: screens/User/Users.jsx:32 msgid "Roles" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 -#: src/components/Workflow/WorkflowLinkHelp.jsx:39 -#: src/screens/Credential/shared/ExternalTestModal.jsx:89 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:47 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: src/screens/Template/shared/JobTemplateForm.jsx:164 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/Workflow/WorkflowLinkHelp.jsx:39 +#: screens/Credential/shared/ExternalTestModal.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 +#: screens/Template/shared/JobTemplateForm.jsx:171 msgid "Run" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:124 -#: src/components/AdHocCommands/AdHocCommands.jsx:127 -#: src/components/AdHocCommands/AdHocCommands.jsx:132 -#: src/components/AdHocCommands/AdHocCommands.jsx:136 +#: components/AdHocCommands/AdHocCommands.jsx:124 +#: components/AdHocCommands/AdHocCommands.jsx:127 +#: components/AdHocCommands/AdHocCommands.jsx:133 +#: components/AdHocCommands/AdHocCommands.jsx:137 msgid "Run Command" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:109 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:109 msgid "Run command" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:227 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 msgid "Run every" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:157 +#: components/Schedule/shared/ScheduleForm.jsx:157 msgid "Run frequency" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 msgid "Run on" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 msgid "Run type" msgstr "" -#: src/components/JobList/JobList.jsx:224 -#: src/components/TemplateList/TemplateListItem.jsx:93 -#: src/components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.jsx:202 +#: components/TemplateList/TemplateListItem.jsx:105 +#: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:229 +#: screens/Job/JobOutput/JobOutput.jsx:654 +msgid "Running Handlers" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236 msgid "Running Jobs" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:99 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:99 msgid "Running jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:106 +#: screens/Setting/Settings.jsx:106 msgid "SAML" msgstr "" -#: src/screens/Setting/SettingList.jsx:82 +#: screens/Setting/SettingList.jsx:82 msgid "SAML settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:232 +#: screens/Dashboard/Dashboard.jsx:232 msgid "SCM update" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:53 -#: src/screens/User/UserList/UserListItem.jsx:57 +#: screens/User/UserDetail/UserDetail.jsx:53 +#: screens/User/UserList/UserListItem.jsx:57 msgid "SOCIAL" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 msgid "SSH password" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 msgid "SSL Connection" msgstr "" -#: src/components/Workflow/workflowReducer.js:411 +#: components/Workflow/WorkflowStartNode.jsx:61 +#: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:31 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:35 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:57 +#: components/Sparkline/Sparkline.jsx:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45 +#: screens/Project/ProjectList/ProjectListItem.jsx:65 msgid "STATUS:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:319 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 msgid "Sat" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:324 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:455 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 msgid "Saturday" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:255 -#: src/components/AssociateModal/AssociateModal.jsx:104 -#: src/components/AssociateModal/AssociateModal.jsx:110 -#: src/components/FormActionGroup/FormActionGroup.jsx:13 -#: src/components/FormActionGroup/FormActionGroup.jsx:19 -#: src/components/Schedule/shared/ScheduleForm.jsx:544 -#: src/components/Schedule/shared/ScheduleForm.jsx:550 -#: src/components/Schedule/shared/useSchedulePromptSteps.js:47 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: src/screens/Credential/shared/CredentialForm.jsx:269 -#: src/screens/Credential/shared/CredentialForm.jsx:274 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:19 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:25 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:34 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:118 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:165 +#: components/AddRole/AddResourceRole.jsx:266 +#: components/AssociateModal/AssociateModal.jsx:105 +#: components/AssociateModal/AssociateModal.jsx:111 +#: components/FormActionGroup/FormActionGroup.jsx:14 +#: components/FormActionGroup/FormActionGroup.jsx:20 +#: components/Schedule/shared/ScheduleForm.jsx:619 +#: components/Schedule/shared/ScheduleForm.jsx:625 +#: components/Schedule/shared/useSchedulePromptSteps.js:46 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 +#: screens/Credential/shared/CredentialForm.jsx:274 +#: screens/Credential/shared/CredentialForm.jsx:279 +#: screens/Setting/shared/RevertFormActionGroup.jsx:19 +#: screens/Setting/shared/RevertFormActionGroup.jsx:25 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:166 msgid "Save" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:31 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 msgid "Save & Exit" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 msgid "Save and enable log aggregation before testing the log aggregator." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 msgid "Save link changes" msgstr "" -#: src/screens/Project/Projects.jsx:38 -#: src/screens/Template/Templates.jsx:56 +#: screens/Project/Projects.jsx:38 +#: screens/Template/Templates.jsx:56 msgid "Schedule Details" msgstr "" -#: src/screens/Inventory/Inventories.jsx:117 +#: screens/Inventory/Inventories.jsx:115 msgid "Schedule details" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 msgid "Schedule is active" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 msgid "Schedule is inactive" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:460 +#: components/Schedule/shared/ScheduleForm.jsx:534 msgid "Schedule is missing rrule" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:231 -#: src/routeConfig.js:44 -#: src/screens/ActivityStream/ActivityStream.jsx:150 -#: src/screens/Inventory/Inventories.jsx:110 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:93 -#: src/screens/ManagementJob/ManagementJob.jsx:107 -#: src/screens/ManagementJob/ManagementJobs.jsx:25 -#: src/screens/Project/Project.jsx:123 -#: src/screens/Project/Projects.jsx:34 -#: src/screens/Schedule/AllSchedules.jsx:25 -#: src/screens/Template/Template.jsx:144 -#: src/screens/Template/Templates.jsx:52 -#: src/screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/ScheduleList/ScheduleList.jsx:231 +#: routeConfig.js:45 +#: screens/ActivityStream/ActivityStream.jsx:150 +#: screens/Inventory/Inventories.jsx:108 +#: screens/Inventory/InventorySource/InventorySource.jsx:93 +#: screens/ManagementJob/ManagementJob.jsx:107 +#: screens/ManagementJob/ManagementJobs.jsx:25 +#: screens/Project/Project.jsx:123 +#: screens/Project/Projects.jsx:34 +#: screens/Schedule/AllSchedules.jsx:25 +#: screens/Template/Template.jsx:157 +#: screens/Template/Templates.jsx:52 +#: screens/Template/WorkflowJobTemplate.jsx:134 msgid "Schedules" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: src/screens/User/UserTokenList/UserTokenList.jsx:126 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: src/screens/User/shared/UserTokenForm.jsx:68 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 +#: screens/User/UserTokenList/UserTokenList.jsx:126 +#: screens/User/UserTokenList/UserTokenListItem.jsx:61 +#: screens/User/UserTokenList/UserTokenListItem.jsx:62 +#: screens/User/shared/UserTokenForm.jsx:68 msgid "Scope" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:57 +#: screens/Job/JobOutput/PageControls.jsx:61 msgid "Scroll first" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:64 +#: screens/Job/JobOutput/PageControls.jsx:69 msgid "Scroll last" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:50 +#: screens/Job/JobOutput/PageControls.jsx:53 msgid "Scroll next" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:43 +#: screens/Job/JobOutput/PageControls.jsx:45 msgid "Scroll previous" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:250 -#: src/components/Lookup/Lookup.jsx:106 +#: components/Lookup/HostFilterLookup.jsx:251 +#: components/Lookup/Lookup.jsx:106 msgid "Search" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:257 -#: src/components/Search/Search.jsx:273 +#: screens/Job/JobOutput/JobOutput.jsx:723 +msgid "Search is disabled while the job is running" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:258 +#: components/Search/Search.jsx:282 msgid "Search submit button" msgstr "" -#: src/components/Search/Search.jsx:264 +#: components/Search/Search.jsx:272 msgid "Search text input" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:405 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 msgid "Second" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:104 -#: src/components/PromptDetail/PromptProjectDetail.jsx:89 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:125 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:105 +#: components/PromptDetail/PromptProjectDetail.jsx:95 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:127 msgid "Seconds" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:67 +#: components/LaunchPrompt/steps/PreviewStep.jsx:67 msgid "See errors on the left" msgstr "" -#: src/components/JobList/JobListItem.jsx:57 -#: src/components/Lookup/HostFilterLookup.jsx:319 -#: src/components/Lookup/Lookup.jsx:140 -#: src/components/Pagination/Pagination.jsx:35 +#: components/JobList/JobListItem.jsx:57 +#: components/Lookup/HostFilterLookup.jsx:321 +#: components/Lookup/Lookup.jsx:141 +#: components/Pagination/Pagination.jsx:33 msgid "Select" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:236 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 +#: screens/Host/HostGroups/HostGroupsList.jsx:236 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 msgid "Select Groups" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 msgid "Select Hosts" msgstr "" -#: src/components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.jsx:38 msgid "Select Input" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:223 +#: screens/InstanceGroup/Instances/InstanceList.jsx:223 msgid "Select Instances" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:22 +#: components/AssociateModal/AssociateModal.jsx:22 msgid "Select Items" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:210 +#: components/AddRole/AddResourceRole.jsx:221 msgid "Select Items from List" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:255 msgid "Select Roles to Apply" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:249 +#: screens/User/UserTeams/UserTeamList.jsx:249 msgid "Select Teams" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:50 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:78 msgid "Select a Node Type" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:180 +#: components/AddRole/AddResourceRole.jsx:191 msgid "Select a Resource Type" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:280 -msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#: screens/Template/shared/JobTemplateForm.jsx:310 +msgid "" +"Select a branch for the job template. This branch is applied to\n" +"all job template nodes that prompt for a branch." msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 +#: src/screens/Template/shared/JobTemplateForm.jsx:280 +#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:170 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:162 +#: screens/Credential/shared/CredentialForm.jsx:162 msgid "Select a credential Type" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:88 +#: components/JobList/JobListCancelButton.jsx:84 msgid "Select a job to cancel" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:81 +#: components/AdHocCommands/AdHocDetailsStep.jsx:81 msgid "Select a module" msgstr "" -#: src/screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.jsx:58 msgid "Select a playbook" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/Template/shared/JobTemplateForm.jsx:296 +msgid "Select a project before editing the execution environment." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 msgid "Select a row to approve" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:110 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 msgid "Select a row to delete" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 msgid "Select a row to deny" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:62 +#: components/DisassociateButton/DisassociateButton.jsx:62 msgid "Select a row to disassociate" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:85 +#: components/Schedule/shared/ScheduleForm.jsx:85 msgid "Select a valid date and time for this field" msgstr "" -#: src/components/HostForm/HostForm.jsx:23 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: src/components/Schedule/shared/ScheduleForm.jsx:91 -#: src/components/Schedule/shared/ScheduleForm.jsx:95 -#: src/screens/Credential/shared/CredentialForm.jsx:43 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:28 -#: src/screens/Inventory/shared/InventoryForm.jsx:24 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:33 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: src/screens/Project/shared/ProjectForm.jsx:101 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 -#: src/screens/Team/shared/TeamForm.jsx:20 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:28 -#: src/screens/Template/shared/JobTemplateForm.jsx:82 -#: src/screens/Template/shared/JobTemplateForm.jsx:140 -#: src/screens/User/shared/UserForm.jsx:49 +#: components/HostForm/HostForm.jsx:23 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 +#: components/Schedule/shared/ScheduleForm.jsx:91 +#: components/Schedule/shared/ScheduleForm.jsx:95 +#: screens/Credential/shared/CredentialForm.jsx:43 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:24 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 +#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 +#: screens/Project/shared/ProjectForm.jsx:100 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 +#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Template/Survey/SurveyQuestionForm.jsx:28 +#: screens/Template/shared/JobTemplateForm.jsx:83 +#: screens/Template/shared/JobTemplateForm.jsx:147 +#: screens/User/shared/UserForm.jsx:49 msgid "Select a value for this field" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.jsx:132 msgid "Select a webhook service." msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:74 -#: src/screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.jsx:74 +#: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:131 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" +#: screens/Project/shared/ProjectForm.jsx:200 +msgid "Select an organization before editing the default execution environment." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:354 +msgid "" +"Select credentials that allow Tower to access the nodes this job will be ran\n" +"against. You can only select one credential of each type. For machine credentials (SSH),\n" +"checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" +"credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" +"credential(s) become the defaults that can be updated at run time." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:324 -msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 +msgid "" +"Select from the list of directories found in\n" +"the Project Base Path. Together the base path and the playbook\n" +"directory provide the full path used to locate playbooks." msgstr "" #: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 -msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." -msgstr "" +#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." +#~ msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 msgid "Select items from list" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:215 -#: src/screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/Dashboard.jsx:215 +#: screens/Dashboard/Dashboard.jsx:216 msgid "Select job type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:193 -#: src/screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/Dashboard.jsx:193 +#: screens/Dashboard/Dashboard.jsx:194 msgid "Select period" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 msgid "Select roles to apply" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 msgid "Select source path" msgstr "" -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:91 +#: screens/Inventory/shared/SmartInventoryForm.jsx:91 msgid "Select the Instance Groups for this Inventory to run on." msgstr "" -#: src/screens/Organization/shared/OrganizationForm.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:463 +#: screens/Template/shared/JobTemplateForm.jsx:493 +msgid "" +"Select the Instance Groups for this Organization\n" +"to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:90 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:47 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Select the application that this token will belong to." msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:77 +#: components/AdHocCommands/AdHocCredentialStep.jsx:77 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 "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:146 -msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:201 +msgid "Select the default execution environment for this organization to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:102 +msgid "Select the default execution environment for this organization." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:197 +msgid "Select the default execution environment for this project." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:293 +msgid "Select the execution environment for this job template." +msgstr "" + +#: components/Lookup/InventoryLookup.jsx:89 +#: screens/Template/shared/JobTemplateForm.jsx:255 +msgid "" +"Select the inventory containing the hosts\n" +"you want this job to manage." msgstr "" #: src/components/Lookup/InventoryLookup.jsx:89 #: src/screens/Template/shared/JobTemplateForm.jsx:248 -msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +msgid "" +"Select the inventory file\n" +"to be synced by this source. You can select from\n" +"the dropdown or enter a file within the input." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 -msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." -msgstr "" +#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." +#~ msgstr "" -#: src/components/HostForm/HostForm.jsx:32 -#: src/components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.jsx:32 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:277 -#: src/screens/Template/shared/JobTemplateForm.jsx:304 +#: screens/Template/shared/JobTemplateForm.jsx:334 msgid "Select the playbook to be executed by this job." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:264 -msgid "Select the project containing the playbook you want this job to execute." +#: screens/Template/shared/JobTemplateForm.jsx:272 +msgid "" +"Select the project containing the playbook\n" +"you want this job to execute." msgstr "" -#: src/components/Lookup/Lookup.jsx:129 +#: src/screens/Template/shared/JobTemplateForm.jsx:264 +#~ msgid "Select the project containing the playbook you want this job to execute." +#~ msgstr "" + +#: components/Lookup/Lookup.jsx:129 msgid "Select {0}" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:221 -#: src/components/AddRole/AddResourceRole.jsx:233 -#: src/components/AddRole/AddResourceRole.jsx:250 -#: src/components/AddRole/SelectRoleStep.jsx:31 -#: src/components/OptionsList/OptionsList.jsx:51 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:76 -#: src/components/TemplateList/TemplateListItem.jsx:112 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:30 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 -#: src/screens/Host/HostList/HostListItem.jsx:32 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:98 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:31 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:86 -#: src/screens/Team/TeamList/TeamListItem.jsx:38 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 +#: components/AddRole/AddResourceRole.jsx:232 +#: components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:261 +#: components/AddRole/SelectRoleStep.jsx:31 +#: components/OptionsList/OptionsList.jsx:51 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:76 +#: components/TemplateList/TemplateListItem.jsx:124 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:30 +#: screens/Credential/CredentialList/CredentialListItem.jsx:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 +#: screens/Host/HostList/HostListItem.jsx:32 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43 +#: screens/Project/ProjectList/ProjectListItem.jsx:97 +#: screens/Team/TeamList/TeamListItem.jsx:38 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 msgid "Selected" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:114 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:119 -#: src/components/Lookup/MultiCredentialsLookup.jsx:149 -#: src/components/Lookup/MultiCredentialsLookup.jsx:154 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:153 +#: components/Lookup/MultiCredentialsLookup.jsx:149 +#: components/Lookup/MultiCredentialsLookup.jsx:154 msgid "Selected Category" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 msgid "Send a test log message to the configured log aggregator." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 msgid "Sender Email" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 msgid "Sender e-mail" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 msgid "September" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 msgid "Service account JSON file" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:52 -#: src/screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.jsx:56 +#: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 msgid "Set how many days of data should be retained." msgstr "" -#: src/screens/Setting/SettingList.jsx:126 +#: screens/Setting/SettingList.jsx:126 msgid "Set preferences for data collection, logos, and logins" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +msgid "Set source path to" +msgstr "" + +#: components/InstanceToggle/InstanceToggle.jsx:50 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:132 +#: screens/Application/shared/ApplicationForm.jsx:132 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:93 +#: components/Search/AdvancedSearch.jsx:94 msgid "Set type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:84 +#: components/Search/AdvancedSearch.jsx:85 msgid "Set type select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:87 +#: components/Search/AdvancedSearch.jsx:88 msgid "Set type typeahead" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:150 +#: components/Workflow/WorkflowTools.jsx:155 msgid "Set zoom to 100% and center graph" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:45 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 msgid "Setting category" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:47 +#: screens/Setting/shared/RevertButton.jsx:47 msgid "Setting matches factory default." msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 msgid "Setting name" msgstr "" -#: src/routeConfig.js:144 -#: src/routeConfig.js:148 -#: src/screens/ActivityStream/ActivityStream.jsx:207 -#: src/screens/ActivityStream/ActivityStream.jsx:209 -#: src/screens/Setting/Settings.jsx:43 +#: routeConfig.js:150 +#: routeConfig.js:154 +#: screens/ActivityStream/ActivityStream.jsx:213 +#: screens/ActivityStream/ActivityStream.jsx:215 +#: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Show" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 -#: src/components/PromptDetail/PromptDetail.jsx:251 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 -#: src/screens/Template/shared/JobTemplateForm.jsx:445 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/PromptDetail/PromptDetail.jsx:251 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:144 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232 +#: screens/Template/shared/JobTemplateForm.jsx:475 msgid "Show Changes" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 msgid "Show all groups" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:211 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:212 +#: components/AdHocCommands/AdHocDetailsStep.jsx:211 +#: components/AdHocCommands/AdHocDetailsStep.jsx:212 msgid "Show changes" msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Show only root groups" msgstr "" -#: src/screens/Login/Login.jsx:133 +#: screens/Login/Login.jsx:208 msgid "Sign in with Azure AD" msgstr "" -#: src/screens/Login/Login.jsx:142 +#: screens/Login/Login.jsx:221 msgid "Sign in with GitHub" msgstr "" -#: src/screens/Login/Login.jsx:172 +#: screens/Login/Login.jsx:263 msgid "Sign in with GitHub Enterprise" msgstr "" -#: src/screens/Login/Login.jsx:184 +#: screens/Login/Login.jsx:279 msgid "Sign in with GitHub Enterprise Organizations" msgstr "" -#: src/screens/Login/Login.jsx:196 +#: screens/Login/Login.jsx:296 msgid "Sign in with GitHub Enterprise Teams" msgstr "" -#: src/screens/Login/Login.jsx:152 +#: screens/Login/Login.jsx:235 msgid "Sign in with GitHub Organizations" msgstr "" -#: src/screens/Login/Login.jsx:162 +#: screens/Login/Login.jsx:249 msgid "Sign in with GitHub Teams" msgstr "" -#: src/screens/Login/Login.jsx:206 +#: screens/Login/Login.jsx:311 msgid "Sign in with Google" msgstr "" -#: src/screens/Login/Login.jsx:220 +#: screens/Login/Login.jsx:329 msgid "Sign in with SAML" msgstr "" -#: src/screens/Login/Login.jsx:219 +#: screens/Login/Login.jsx:328 msgid "Sign in with SAML {samlIDP}" msgstr "" -#: src/components/Search/Search.jsx:175 +#: components/Search/Search.jsx:177 msgid "Simple key select" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 -#: src/components/PromptDetail/PromptDetail.jsx:229 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:242 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 -#: src/screens/Job/JobDetail/JobDetail.jsx:308 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:347 -#: src/screens/Template/shared/JobTemplateForm.jsx:484 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 +#: components/PromptDetail/PromptDetail.jsx:229 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 +#: screens/Job/JobDetail/JobDetail.jsx:339 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "Skip Tags" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:517 +msgid "" +"Skip tags are useful when you have a\n" +"large playbook, and you want to skip specific parts of a\n" +"play or task. Use commas to separate multiple tags. Refer\n" +"to Ansible Tower documentation for details on the usage\n" +"of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 +msgid "" +"Skip tags are useful when you have a large\n" +"playbook, and you want to skip specific parts of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 #: src/screens/Template/shared/JobTemplateForm.jsx:487 -msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 msgid "Skipped" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:140 +#: components/NotificationList/NotificationList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Slack" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:19 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:39 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:43 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:97 +#: screens/Host/HostList/SmartInventoryButton.jsx:19 +#: screens/Host/HostList/SmartInventoryButton.jsx:40 +#: screens/Host/HostList/SmartInventoryButton.jsx:44 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:97 msgid "Smart Inventory" msgstr "" -#: src/screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.jsx:96 msgid "Smart Inventory not found." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 +#: components/Lookup/HostFilterLookup.jsx:283 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 msgid "Smart host filter" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 msgid "Smart inventory" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:64 +#: components/LaunchPrompt/steps/PreviewStep.jsx:64 msgid "Some of the previous step(s) have errors" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 msgid "Something went wrong with the request to test this credential and metadata." msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Something went wrong..." msgstr "" -#: src/components/Sort/Sort.jsx:129 +#: components/Sort/Sort.jsx:129 msgid "Sort" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:63 -#: src/screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.jsx:63 +#: screens/Template/Survey/SurveyListItem.jsx:64 msgid "Sort question order" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:85 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:192 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:121 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:86 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200 +#: screens/Inventory/shared/InventorySourceForm.jsx:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 msgid "Source" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: src/components/PromptDetail/PromptDetail.jsx:189 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: src/components/PromptDetail/PromptProjectDetail.jsx:72 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:106 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:210 -#: src/screens/Template/shared/JobTemplateForm.jsx:276 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 +#: components/PromptDetail/PromptDetail.jsx:189 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:137 +#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/shared/JobTemplateForm.jsx:306 msgid "Source Control Branch" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 msgid "Source Control Branch/Tag/Commit" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:76 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:110 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 +#: components/PromptDetail/PromptProjectDetail.jsx:82 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:112 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 msgid "Source Control Credential" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:188 +#: screens/Project/shared/ProjectForm.jsx:214 msgid "Source Control Credential Type" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:73 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:107 -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 +#: components/PromptDetail/PromptProjectDetail.jsx:79 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:109 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 msgid "Source Control Refspec" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:68 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:74 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:102 msgid "Source Control Type" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:121 -#: src/components/PromptDetail/PromptProjectDetail.jsx:71 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:153 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: components/Lookup/ProjectLookup.jsx:121 +#: components/PromptDetail/PromptProjectDetail.jsx:77 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:107 +#: screens/Project/ProjectList/ProjectList.jsx:158 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Source Control URL" msgstr "" -#: src/components/JobList/JobList.jsx:205 -#: src/components/JobList/JobListItem.jsx:31 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: src/screens/Job/JobDetail/JobDetail.jsx:77 +#: components/JobList/JobList.jsx:183 +#: components/JobList/JobListItem.jsx:31 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 +#: screens/Job/JobDetail/JobDetail.jsx:93 msgid "Source Control Update" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 msgid "Source Phone Number" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:169 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:170 msgid "Source Variables" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:183 +#: screens/Job/JobDetail/JobDetail.jsx:184 msgid "Source Workflow Job" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:166 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:177 msgid "Source control branch" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:167 +#: screens/Inventory/shared/InventorySourceForm.jsx:157 msgid "Source details" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 msgid "Source phone number" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:247 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:33 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 msgid "Source variables" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 msgid "Sourced from a project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:100 -#: src/screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.jsx:98 +#: screens/Inventory/Inventory.jsx:66 msgid "Sources" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +msgid "" +"Specify HTTP Headers in JSON format. Refer to\n" +"the Ansible Tower documentation for example syntax." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 -msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +msgid "" +"Specify a notification color. Acceptable colors are hex\n" +"color code (example: #3af or #789abc)." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 -msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." -msgstr "" +#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." +#~ msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 msgid "Specify the conditions under which this node should be executed" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:180 +#: screens/Job/JobOutput/HostEventModal.jsx:180 msgid "Standard Error" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:162 +#: screens/Job/JobOutput/HostEventModal.jsx:162 msgid "Standard Out" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:181 +#: screens/Job/JobOutput/HostEventModal.jsx:181 msgid "Standard error tab" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:163 +#: screens/Job/JobOutput/HostEventModal.jsx:163 msgid "Standard out tab" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:57 -#: src/components/NotificationList/NotificationListItem.jsx:58 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:48 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:54 +#: components/NotificationList/NotificationListItem.jsx:57 +#: components/NotificationList/NotificationListItem.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:55 msgid "Start" msgstr "" -#: src/components/JobList/JobList.jsx:241 -#: src/components/JobList/JobListItem.jsx:74 +#: components/JobList/JobList.jsx:219 +#: components/JobList/JobListItem.jsx:74 msgid "Start Time" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:123 +#: components/Schedule/shared/ScheduleForm.jsx:123 msgid "Start date/time" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:395 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:396 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 msgid "Start message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:404 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:405 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 msgid "Start message body" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:69 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:70 msgid "Start sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:72 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:74 msgid "Start sync source" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:152 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: screens/Job/JobDetail/JobDetail.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Started" msgstr "" -#: src/components/JobList/JobList.jsx:218 -#: src/components/JobList/JobList.jsx:239 -#: src/components/JobList/JobListItem.jsx:68 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:195 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:141 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:179 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:170 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:93 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 +#: components/JobList/JobList.jsx:196 +#: components/JobList/JobList.jsx:217 +#: components/JobList/JobListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryList.jsx:201 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:142 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 +#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectListItem.jsx:119 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 msgid "Status" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:115 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: src/screens/Project/ProjectList/ProjectList.jsx:147 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Job/JobOutput/JobOutput.jsx:630 +msgid "Stdout" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:115 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 +#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 msgid "Subversion" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:70 -#: src/components/NotificationList/NotificationListItem.jsx:71 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/NotificationList/NotificationListItem.jsx:70 +#: components/NotificationList/NotificationListItem.jsx:71 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Success" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:413 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:414 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 msgid "Success message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:422 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:423 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 msgid "Success message body" msgstr "" -#: src/components/JobList/JobList.jsx:225 -#: src/components/Workflow/WorkflowNodeHelp.jsx:86 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.jsx:203 +#: components/Workflow/WorkflowNodeHelp.jsx:86 +#: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:122 +#: screens/Project/ProjectList/ProjectListItem.jsx:148 msgid "Successfully copied to clipboard!" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:259 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 msgid "Sun" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:264 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:425 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 msgid "Sunday" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:27 -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/Templates.jsx:49 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: screens/Template/Template.jsx:168 +#: screens/Template/Templates.jsx:49 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:136 +#: screens/Template/Survey/SurveyList.jsx:138 msgid "Survey List" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.jsx:32 msgid "Survey Preview" msgstr "" -#: src/screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.jsx:50 msgid "Survey Toggle" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:33 +#: screens/Template/Survey/SurveyPreviewModal.jsx:33 msgid "Survey preview modal" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.jsx:57 msgid "Survey questions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:76 -#: src/screens/Project/shared/ProjectSyncButton.jsx:34 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:78 +#: screens/Project/shared/ProjectSyncButton.jsx:35 msgid "Sync" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:128 -#: src/screens/Project/shared/ProjectSyncButton.jsx:30 +#: screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/shared/ProjectSyncButton.jsx:31 msgid "Sync Project" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:199 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:202 msgid "Sync all" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:193 msgid "Sync all sources" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:231 msgid "Sync error" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:115 +#: screens/Project/ProjectList/ProjectListItem.jsx:141 msgid "Sync for revision" msgstr "" -#: src/screens/Setting/SettingList.jsx:105 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:27 +#: screens/Setting/SettingList.jsx:105 +#: screens/User/UserRoles/UserRolesListItem.jsx:27 msgid "System" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:126 -#: src/screens/User/UserDetail/UserDetail.jsx:42 -#: src/screens/User/UserList/UserListItem.jsx:26 -#: src/screens/User/UserRoles/UserRolesList.jsx:124 -#: src/screens/User/shared/UserForm.jsx:41 +#: screens/Team/TeamRoles/TeamRolesList.jsx:126 +#: screens/User/UserDetail/UserDetail.jsx:42 +#: screens/User/UserList/UserListItem.jsx:26 +#: screens/User/UserRoles/UserRolesList.jsx:124 +#: screens/User/shared/UserForm.jsx:41 msgid "System Administrator" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:44 -#: src/screens/User/UserList/UserListItem.jsx:28 -#: src/screens/User/shared/UserForm.jsx:35 +#: screens/User/UserDetail/UserDetail.jsx:44 +#: screens/User/UserList/UserListItem.jsx:28 +#: screens/User/shared/UserForm.jsx:35 msgid "System Auditor" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:130 -#: src/screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/Job/JobOutput/JobOutput.jsx:667 +msgid "System Warning" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:130 +#: screens/User/UserRoles/UserRolesList.jsx:128 msgid "System administrators have unrestricted access to all resources." msgstr "" -#: src/screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.jsx:109 msgid "TACACS+" msgstr "" -#: src/screens/Setting/SettingList.jsx:86 +#: screens/Setting/SettingList.jsx:86 msgid "TACACS+ settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:165 -#: src/screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:501 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a\n" +"play or task. Use commas to separate multiple tags.\n" +"Refer to Ansible Tower documentation for details on\n" +"the usage of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 #: src/screens/Template/shared/JobTemplateForm.jsx:471 -msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 msgid "Tags for the Annotation" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 msgid "Tags for the annotation (optional)" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 msgid "Target URL" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.jsx:129 msgid "Task" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:95 msgid "Task Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:89 +#: screens/Job/JobOutput/JobOutput.jsx:658 +msgid "Task Started" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:96 msgid "Tasks" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:19 msgid "Team" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:120 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:120 +#: screens/Team/TeamRoles/TeamRolesList.jsx:144 msgid "Team Roles" msgstr "" -#: src/screens/Team/Team.jsx:73 +#: screens/Team/Team.jsx:73 msgid "Team not found." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:198 -#: src/components/AddRole/AddResourceRole.jsx:199 -#: src/routeConfig.js:106 -#: src/screens/ActivityStream/ActivityStream.jsx:184 -#: src/screens/Organization/Organization.jsx:124 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:156 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:41 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 -#: src/screens/Organization/Organizations.jsx:33 -#: src/screens/Team/TeamList/TeamList.jsx:124 -#: src/screens/Team/TeamList/TeamList.jsx:179 -#: src/screens/Team/Teams.jsx:14 -#: src/screens/Team/Teams.jsx:25 -#: src/screens/User/User.jsx:69 -#: src/screens/User/UserTeams/UserTeamList.jsx:176 -#: src/screens/User/UserTeams/UserTeamList.jsx:244 -#: src/screens/User/Users.jsx:33 +#: components/AddRole/AddResourceRole.jsx:209 +#: components/AddRole/AddResourceRole.jsx:210 +#: routeConfig.js:107 +#: screens/ActivityStream/ActivityStream.jsx:184 +#: screens/Organization/Organization.jsx:125 +#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 +#: screens/Organization/Organizations.jsx:33 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/Teams.jsx:14 +#: screens/Team/Teams.jsx:25 +#: screens/User/User.jsx:69 +#: screens/User/UserTeams/UserTeamList.jsx:176 +#: screens/User/UserTeams/UserTeamList.jsx:244 +#: screens/User/Users.jsx:33 +#: util/getRelatedResourceDeleteDetails.js:198 msgid "Teams" msgstr "" -#: src/screens/Template/Template.jsx:171 -#: src/screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.jsx:184 +#: screens/Template/WorkflowJobTemplate.jsx:179 msgid "Template not found." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:179 -#: src/components/TemplateList/TemplateList.jsx:238 -#: src/routeConfig.js:65 -#: src/screens/ActivityStream/ActivityStream.jsx:161 -#: src/screens/Template/Templates.jsx:16 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 +msgid "Template type" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:184 +#: components/TemplateList/TemplateList.jsx:243 +#: routeConfig.js:66 +#: screens/ActivityStream/ActivityStream.jsx:161 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 +#: screens/Template/Templates.jsx:16 +#: util/getRelatedResourceDeleteDetails.js:242 +#: util/getRelatedResourceDeleteDetails.js:299 msgid "Templates" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:281 -#: src/screens/Credential/shared/CredentialForm.jsx:287 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 +#: screens/Credential/shared/CredentialForm.jsx:287 +#: screens/Credential/shared/CredentialForm.jsx:293 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:83 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 msgid "Test" msgstr "" -#: src/screens/Credential/shared/ExternalTestModal.jsx:78 +#: screens/Credential/shared/ExternalTestModal.jsx:78 msgid "Test External Credential" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:123 msgid "Test Notification" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 msgid "Test logging" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:113 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:120 msgid "Test notification" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 msgid "Test passed" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:53 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:50 +#: screens/Template/Survey/SurveyPreviewModal.jsx:53 +#: screens/Template/Survey/SurveyQuestionForm.jsx:50 msgid "Text" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:67 +#: screens/Template/Survey/SurveyPreviewModal.jsx:67 msgid "Text Area" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:51 +#: screens/Template/Survey/SurveyQuestionForm.jsx:51 msgid "Textarea" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:88 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +msgid "The Execution Environment to be used when one has not been configured for a job template." +msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:88 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +msgid "" +"The amount of time (in seconds) before the email\n" +"notification stops trying to reach the host and times out. Ranges\n" +"from 1 to 120 seconds." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 -msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:469 +msgid "" +"The amount of time (in seconds) to run\n" +"before the job is canceled. Defaults to 0 for no job\n" +"timeout." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:439 -msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +msgid "" +"The base URL of the Grafana server - the\n" +"/api/annotations endpoint will be added automatically to the base\n" +"Grafana URL." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 -msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 +msgid "" +"The first fetches all references. The second\n" +"fetches the Github pull request number 62, in this example\n" +"the branch needs to be \"pull/62/head\"." msgstr "" #: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 -msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:77 +msgid "" +"The maximum number of hosts allowed to be managed by this organization.\n" +"Value defaults to 0 which means no limit. Refer to the Ansible\n" +"documentation for more details." msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:69 -msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:407 +msgid "" +"The number of parallel or simultaneous\n" +"processes to use while executing the playbook. An empty value,\n" +"or a value less than 1 will use the Ansible default which is\n" +"usually 5. The default number of forks can be overwritten\n" +"with a change to" msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:377 -msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" -msgstr "" +#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:197 +#: components/AdHocCommands/AdHocDetailsStep.jsx:197 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "" -#: src/components/ContentError/ContentError.jsx:43 -#: src/screens/Job/Job.jsx:84 +#: components/ContentError/ContentError.jsx:43 +#: screens/Job/Job.jsx:124 msgid "The page you requested could not be found." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:175 +#: components/AdHocCommands/AdHocDetailsStep.jsx:175 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:123 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:82 +msgid "The registry location where the container is stored." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 msgid "The resource associated with this node has been deleted." msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 -msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#: screens/Template/Survey/SurveyQuestionForm.jsx:134 +msgid "" +"The suggested format for variable names is lowercase and\n" +"underscore-separated (for example, foo_bar, user_id, host_name,\n" +"etc.). Variable names with spaces are not allowed." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 +#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#~ msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 msgid "The tower instance group cannot be deleted." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 -msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +msgid "" +"There are no available playbook directories in {project_base_dir}.\n" +"Either that directory is empty, or all of the contents are already\n" +"assigned to other projects. Create a new directory there and make\n" +"sure the playbook files can be read by the \"awx\" system user,\n" +"or have {brandName} directly retrieve your playbooks from\n" +"source control using the Source Control Type option above." msgstr "" -#: src/screens/Login/Login.jsx:112 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#~ msgstr "" + +#: screens/Login/Login.jsx:120 msgid "There was a problem signing in. Please try again." msgstr "" -#: src/components/ContentError/ContentError.jsx:45 +#: components/ContentError/ContentError.jsx:45 msgid "There was an error loading this content. Please reload the page." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:589 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:600 msgid "There was an error saving the workflow." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:19 +#: screens/Setting/shared/LoggingTestAlert.jsx:19 msgid "There was an error testing the log aggregator." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:74 +#: components/AdHocCommands/AdHocDetailsStep.jsx:74 msgid "These are the modules that {brandName} supports running commands against." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:151 +#: components/AdHocCommands/AdHocDetailsStep.jsx:151 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:133 +#: components/AdHocCommands/AdHocDetailsStep.jsx:133 msgid "These arguments are used with the specified module." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:121 +#: components/AdHocCommands/AdHocDetailsStep.jsx:121 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:407 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 msgid "Third" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:171 -#: src/screens/Template/Survey/SurveyList.jsx:121 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282 +#: screens/Template/Survey/SurveyList.jsx:123 msgid "This action will delete the following:" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:214 +#: screens/User/UserTeams/UserTeamList.jsx:214 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:218 -#: src/screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: screens/User/UserRoles/UserRolesList.jsx:220 msgid "This action will disassociate the following role from {0}:" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.jsx:134 msgid "This action will disassociate the following:" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:226 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +msgid "This container group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 +msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:122 +msgid "This credential type is currently being used by some credentials and cannot be deleted" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 +msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:269 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 msgid "This field may not be blank" msgstr "" -#: src/util/validators.jsx:102 +#: util/validators.jsx:102 msgid "This field must be a number" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:113 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:113 msgid "This field must be a number and have a value between {0} and {1}" msgstr "" -#: src/util/validators.jsx:41 +#: util/validators.jsx:41 msgid "This field must be a number and have a value between {min} and {max}" msgstr "" -#: src/util/validators.jsx:142 +#: util/validators.jsx:142 msgid "This field must be a regular expression" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: src/util/validators.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 +#: util/validators.jsx:86 msgid "This field must be an integer" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:104 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:104 msgid "This field must be at least {0} characters" msgstr "" -#: src/util/validators.jsx:31 +#: util/validators.jsx:31 msgid "This field must be at least {min} characters" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 msgid "This field must be greater than 0" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:118 -#: src/screens/User/shared/UserForm.jsx:89 -#: src/screens/User/shared/UserForm.jsx:100 -#: src/util/validators.jsx:4 -#: src/util/validators.jsx:51 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:118 +#: screens/User/shared/UserForm.jsx:89 +#: screens/User/shared/UserForm.jsx:100 +#: util/validators.jsx:4 +#: util/validators.jsx:51 msgid "This field must not be blank" msgstr "" -#: src/util/validators.jsx:76 +#: util/validators.jsx:76 msgid "This field must not contain spaces" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:107 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:107 msgid "This field must not exceed {0} characters" msgstr "" -#: src/util/validators.jsx:22 +#: util/validators.jsx:22 msgid "This field must not exceed {max} characters" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:50 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:52 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Application/Applications.jsx:78 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:150 +msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/LaunchPrompt/steps/useInventoryStep.jsx:66 +msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" + +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292 +msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" +msgstr "" + +#: screens/Application/Applications.jsx:78 msgid "This is the only time the client secret will be shown." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:59 +#: screens/User/UserTokens/UserTokens.jsx:59 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:143 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:411 +msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 +msgid "This organization is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.jsx:177 +msgid "This project is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:150 msgid "This project needs to be updated" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:131 +#: components/Schedule/ScheduleList/ScheduleList.jsx:131 msgid "This schedule is missing an Inventory" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:158 +#: components/Schedule/ScheduleList/ScheduleList.jsx:158 msgid "This schedule is missing required survey values" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:63 -#: src/components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:63 +#: components/LaunchPrompt/steps/StepName.jsx:27 msgid "This step contains errors" msgstr "" -#: src/screens/User/shared/UserForm.jsx:155 +#: screens/User/shared/UserForm.jsx:155 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:36 -msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#: screens/Setting/shared/RevertAllAlert.jsx:36 +msgid "" +"This will revert all configuration values on this page to\n" +"their factory defaults. Are you sure you want to proceed?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 +#: src/screens/Setting/shared/RevertAllAlert.jsx:36 +#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 msgid "This workflow does not have any nodes configured." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:299 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 msgid "Thu" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:304 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 msgid "Thursday" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:236 -#: src/screens/ActivityStream/ActivityStream.jsx:248 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:40 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.jsx:242 +#: screens/ActivityStream/ActivityStream.jsx:254 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 +#: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "" +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 +msgid "" +"Time in seconds to consider a project\n" +"to be current. During job runs and callbacks the task\n" +"system will evaluate the timestamp of the latest project\n" +"update. If it is older than Cache Timeout, it is not\n" +"considered current, and a new project update will be\n" +"performed." +msgstr "" + #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 -msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +msgid "" +"Time in seconds to consider an inventory sync\n" +"to be current. During job runs and callbacks the task system will\n" +"evaluate the timestamp of the latest sync. If it is older than\n" +"Cache Timeout, it is not considered current, and a new\n" +"inventory sync will be performed." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 -msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." -msgstr "" +#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." +#~ msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 msgid "Timed out" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:136 -#: src/screens/Template/shared/JobTemplateForm.jsx:438 +#: components/PromptDetail/PromptDetail.jsx:116 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 +#: screens/Template/shared/JobTemplateForm.jsx:468 msgid "Timeout" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:173 msgid "Timeout minutes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:157 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:187 msgid "Timeout seconds" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 msgid "Toggle Legend" msgstr "" -#: src/components/FormField/PasswordInput.jsx:40 +#: components/FormField/PasswordInput.jsx:41 msgid "Toggle Password" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 msgid "Toggle Tools" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:36 +#: screens/Job/JobOutput/PageControls.jsx:37 msgid "Toggle expand/collapse event lines" msgstr "" -#: src/components/HostToggle/HostToggle.jsx:67 +#: components/HostToggle/HostToggle.jsx:67 msgid "Toggle host" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:63 +#: components/InstanceToggle/InstanceToggle.jsx:63 msgid "Toggle instance" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 msgid "Toggle legend" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:51 +#: components/NotificationList/NotificationListItem.jsx:51 msgid "Toggle notification approvals" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:90 +#: components/NotificationList/NotificationListItem.jsx:90 msgid "Toggle notification failure" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:64 +#: components/NotificationList/NotificationListItem.jsx:64 msgid "Toggle notification start" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:77 +#: components/NotificationList/NotificationListItem.jsx:77 msgid "Toggle notification success" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 msgid "Toggle schedule" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 msgid "Toggle tools" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: src/screens/User/UserTokens/UserTokens.jsx:65 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 +#: screens/User/UserTokens/UserTokens.jsx:65 msgid "Token" msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:49 -#: src/screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.jsx:49 +#: screens/User/UserTokens/UserTokens.jsx:52 msgid "Token information" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.jsx:73 msgid "Token not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:39 +#: screens/User/UserTokenList/UserTokenListItem.jsx:39 msgid "Token type" msgstr "" -#: src/screens/Application/Application/Application.jsx:78 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: src/screens/Application/Applications.jsx:40 -#: src/screens/User/User.jsx:75 -#: src/screens/User/UserTokenList/UserTokenList.jsx:106 -#: src/screens/User/Users.jsx:35 +#: screens/Application/Application/Application.jsx:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 +#: screens/Application/Applications.jsx:40 +#: screens/User/User.jsx:75 +#: screens/User/UserTokenList/UserTokenList.jsx:106 +#: screens/User/Users.jsx:35 msgid "Tokens" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:84 +#: components/Workflow/WorkflowTools.jsx:84 msgid "Tools" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:230 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237 msgid "Total Jobs" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 msgid "Total Nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:103 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:103 msgid "Total jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 msgid "True" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:279 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 msgid "Tue" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:284 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:435 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 msgid "Tuesday" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:201 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:141 +#: components/NotificationList/NotificationList.jsx:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "Twilio" msgstr "" -#: src/components/JobList/JobList.jsx:240 -#: src/components/JobList/JobListItem.jsx:72 -#: src/components/Lookup/ProjectLookup.jsx:110 -#: src/components/NotificationList/NotificationList.jsx:220 -#: src/components/NotificationList/NotificationListItem.jsx:30 -#: src/components/PromptDetail/PromptDetail.jsx:112 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:174 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:95 -#: src/components/TemplateList/TemplateList.jsx:193 -#: src/components/TemplateList/TemplateList.jsx:218 -#: src/components/TemplateList/TemplateListItem.jsx:129 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 -#: src/components/Workflow/WorkflowNodeHelp.jsx:136 -#: src/components/Workflow/WorkflowNodeHelp.jsx:162 -#: src/screens/Credential/CredentialList/CredentialList.jsx:152 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:60 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:47 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:79 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:86 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:196 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:95 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:181 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:108 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: src/screens/Project/ProjectList/ProjectList.jsx:142 -#: src/screens/Project/ProjectList/ProjectList.jsx:171 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:106 -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:30 -#: src/screens/Template/Survey/SurveyListItem.jsx:115 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 -#: src/screens/User/UserDetail/UserDetail.jsx:70 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:34 +#: components/JobList/JobList.jsx:218 +#: components/JobList/JobListItem.jsx:72 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/NotificationList/NotificationList.jsx:220 +#: components/NotificationList/NotificationListItem.jsx:30 +#: components/PromptDetail/PromptDetail.jsx:112 +#: components/Schedule/ScheduleList/ScheduleList.jsx:174 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95 +#: components/TemplateList/TemplateList.jsx:198 +#: components/TemplateList/TemplateList.jsx:223 +#: components/TemplateList/TemplateListItem.jsx:154 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 +#: components/Workflow/WorkflowNodeHelp.jsx:136 +#: components/Workflow/WorkflowNodeHelp.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Credential/CredentialList/CredentialListItem.jsx:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:95 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 +#: screens/Project/ProjectList/ProjectList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectListItem.jsx:132 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30 +#: screens/Template/Survey/SurveyListItem.jsx:117 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/User/UserDetail/UserDetail.jsx:70 +#: screens/User/UserRoles/UserRolesListItem.jsx:34 msgid "Type" msgstr "" -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: src/screens/Project/shared/ProjectForm.jsx:220 +#: screens/Credential/shared/TypeInputsSubForm.jsx:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 +#: screens/Project/shared/ProjectForm.jsx:246 msgid "Type Details" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:108 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:63 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:111 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:63 msgid "Unavailable" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Undo" msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:101 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:108 msgid "Unreachable" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:100 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:107 msgid "Unreachable Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:109 msgid "Unreachable Hosts" msgstr "" -#: src/util/dates.jsx:81 +#: util/dates.jsx:81 msgid "Unrecognized day string" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 msgid "Unsaved changes modal" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:42 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:69 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 +#: components/PromptDetail/PromptProjectDetail.jsx:43 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 msgid "Update Revision on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:51 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 msgid "Update on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:53 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:54 msgid "Update on Project Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:156 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 msgid "Update on launch" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 msgid "Update on project update" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:126 msgid "Update options" msgstr "" -#: src/screens/Setting/SettingList.jsx:94 +#: screens/Setting/SettingList.jsx:94 msgid "Update settings pertaining to Jobs within {brandName}" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:205 +#: screens/Template/shared/WebhookSubForm.jsx:206 msgid "Update webhook key" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.jsx:110 msgid "Updating" msgstr "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:57 #: src/screens/Organization/shared/OrganizationForm.jsx:33 #: src/screens/Project/shared/ProjectForm.jsx:286 -msgid "Use Default Ansible Environment" -msgstr "" +#~ msgid "Use Default Ansible Environment" +#~ msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:133 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:67 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 msgid "Use Fact Storage" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 msgid "Use SSL" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 msgid "Use TLS" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:99 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:107 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:59 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:102 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:59 msgid "Used capacity" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:135 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/AppContainer/PageHeaderToolbar.jsx:135 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:20 msgid "User" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:163 +#: components/AppContainer/PageHeaderToolbar.jsx:163 msgid "User Details" msgstr "" -#: src/screens/Setting/SettingList.jsx:124 -#: src/screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.jsx:124 +#: screens/Setting/Settings.jsx:112 msgid "User Interface" msgstr "" -#: src/screens/Setting/SettingList.jsx:131 +#: screens/Setting/SettingList.jsx:131 msgid "User Interface settings" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:110 -#: src/screens/User/UserRoles/UserRolesList.jsx:141 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:110 +#: screens/User/UserRoles/UserRolesList.jsx:141 msgid "User Roles" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:67 -#: src/screens/User/shared/UserForm.jsx:137 +#: screens/User/UserDetail/UserDetail.jsx:67 +#: screens/User/shared/UserForm.jsx:137 msgid "User Type" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:156 +#: components/AppContainer/PageHeaderToolbar.jsx:156 msgid "User details" msgstr "" -#: src/screens/User/User.jsx:95 +#: screens/User/User.jsx:95 msgid "User not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.jsx:166 msgid "User tokens" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:114 -#: src/components/AddRole/AddResourceRole.jsx:129 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:125 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:159 -#: src/screens/Login/Login.jsx:261 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: src/screens/User/UserDetail/UserDetail.jsx:60 -#: src/screens/User/UserList/UserList.jsx:118 -#: src/screens/User/UserList/UserList.jsx:163 -#: src/screens/User/UserList/UserListItem.jsx:45 -#: src/screens/User/shared/UserForm.jsx:67 +#: components/AddRole/AddResourceRole.jsx:125 +#: components/AddRole/AddResourceRole.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:127 +#: components/ResourceAccessList/ResourceAccessList.jsx:161 +#: screens/Login/Login.jsx:175 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 +#: screens/User/UserDetail/UserDetail.jsx:60 +#: screens/User/UserList/UserList.jsx:118 +#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserListItem.jsx:45 +#: screens/User/shared/UserForm.jsx:67 msgid "Username" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:190 -#: src/components/AddRole/AddResourceRole.jsx:191 -#: src/routeConfig.js:101 -#: src/screens/ActivityStream/ActivityStream.jsx:181 -#: src/screens/Team/Teams.jsx:30 -#: src/screens/User/UserList/UserList.jsx:113 -#: src/screens/User/UserList/UserList.jsx:155 -#: src/screens/User/Users.jsx:15 -#: src/screens/User/Users.jsx:27 +#: components/AddRole/AddResourceRole.jsx:201 +#: components/AddRole/AddResourceRole.jsx:202 +#: routeConfig.js:102 +#: screens/ActivityStream/ActivityStream.jsx:181 +#: screens/Team/Teams.jsx:30 +#: screens/User/UserList/UserList.jsx:113 +#: screens/User/UserList/UserList.jsx:155 +#: screens/User/Users.jsx:15 +#: screens/User/Users.jsx:27 msgid "Users" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "VMware vCenter" msgstr "" -#: src/components/HostForm/HostForm.jsx:102 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 -#: src/components/PromptDetail/PromptDetail.jsx:260 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:256 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 -#: src/screens/Host/HostDetail/HostDetail.jsx:104 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:99 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 -#: src/screens/Inventory/shared/InventoryForm.jsx:89 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:55 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:98 -#: src/screens/Job/JobDetail/JobDetail.jsx:337 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:362 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:194 -#: src/screens/Template/shared/JobTemplateForm.jsx:359 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: components/HostForm/HostForm.jsx:102 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 +#: components/PromptDetail/PromptDetail.jsx:260 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:262 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 +#: screens/Host/HostDetail/HostDetail.jsx:104 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 +#: screens/Inventory/shared/InventoryForm.jsx:89 +#: screens/Inventory/shared/InventoryGroupForm.jsx:55 +#: screens/Inventory/shared/SmartInventoryForm.jsx:98 +#: screens/Job/JobDetail/JobDetail.jsx:368 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 +#: screens/Template/shared/JobTemplateForm.jsx:389 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231 msgid "Variables" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 +#: screens/Job/JobOutput/JobOutput.jsx:659 +msgid "Variables Prompted" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 msgid "Vault password" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 msgid "Vault password | {credId}" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:140 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 -#: src/components/PromptDetail/PromptDetail.jsx:199 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:101 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:135 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:225 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:89 -#: src/screens/Job/JobDetail/JobDetail.jsx:223 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: src/screens/Template/shared/JobTemplateForm.jsx:411 +#: screens/Job/JobOutput/JobOutput.jsx:664 +msgid "Verbose" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:140 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 +#: components/PromptDetail/PromptDetail.jsx:199 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:102 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:141 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:251 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 +#: screens/Template/shared/JobTemplateForm.jsx:441 msgid "Verbosity" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStream.jsx:33 +#: screens/Setting/ActivityStream/ActivityStream.jsx:33 msgid "View Activity Stream settings" msgstr "" -#: src/screens/Setting/AzureAD/AzureAD.jsx:26 +#: screens/Setting/AzureAD/AzureAD.jsx:26 msgid "View Azure AD settings" msgstr "" -#: src/screens/Credential/Credential.jsx:119 -#: src/screens/Credential/Credential.jsx:131 +#: screens/Credential/Credential.jsx:119 +#: screens/Credential/Credential.jsx:131 msgid "View Credential Details" msgstr "" -#: src/components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.jsx:135 msgid "View Details" msgstr "" -#: src/screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.jsx:58 msgid "View GitHub Settings" msgstr "" -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 msgid "View Google OAuth 2.0 settings" msgstr "" -#: src/screens/Host/Host.jsx:132 +#: screens/Host/Host.jsx:132 msgid "View Host Details" msgstr "" -#: src/screens/Inventory/Inventory.jsx:183 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 -#: src/screens/Inventory/SmartInventory.jsx:174 +#: screens/Inventory/Inventory.jsx:180 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 +#: screens/Inventory/SmartInventory.jsx:171 msgid "View Inventory Details" msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 msgid "View Inventory Groups" msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:162 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:162 msgid "View Inventory Host Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:49 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 msgid "View JSON examples at <0>www.json.org" msgstr "" -#: src/screens/Job/Job.jsx:120 +#: screens/Job/Job.jsx:165 msgid "View Job Details" msgstr "" -#: src/screens/Setting/Jobs/Jobs.jsx:26 +#: screens/Setting/Jobs/Jobs.jsx:26 msgid "View Jobs settings" msgstr "" -#: src/screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.jsx:38 msgid "View LDAP Settings" msgstr "" -#: src/screens/Setting/Logging/Logging.jsx:33 +#: screens/Setting/Logging/Logging.jsx:33 msgid "View Logging settings" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscSystem/MiscSystem.jsx:33 msgid "View Miscellaneous System settings" msgstr "" -#: src/screens/Organization/Organization.jsx:216 +#: screens/Organization/Organization.jsx:227 msgid "View Organization Details" msgstr "" -#: src/screens/Project/Project.jsx:198 +#: screens/Project/Project.jsx:198 msgid "View Project Details" msgstr "" -#: src/screens/Setting/RADIUS/RADIUS.jsx:26 +#: screens/Setting/RADIUS/RADIUS.jsx:26 msgid "View RADIUS settings" msgstr "" -#: src/screens/Setting/SAML/SAML.jsx:26 +#: screens/Setting/SAML/SAML.jsx:26 msgid "View SAML settings" msgstr "" -#: src/components/Schedule/Schedule.jsx:84 +#: components/Schedule/Schedule.jsx:85 msgid "View Schedules" msgstr "" -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.jsx:168 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "View Survey" msgstr "" -#: src/screens/Setting/TACACS/TACACS.jsx:26 +#: screens/Setting/TACACS/TACACS.jsx:26 msgid "View TACACS+ settings" msgstr "" -#: src/screens/Team/Team.jsx:116 +#: screens/Team/Team.jsx:116 msgid "View Team Details" msgstr "" -#: src/screens/Template/Template.jsx:251 -#: src/screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.jsx:265 +#: screens/Template/WorkflowJobTemplate.jsx:279 msgid "View Template Details" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:103 +#: screens/User/UserToken/UserToken.jsx:103 msgid "View Tokens" msgstr "" -#: src/screens/User/User.jsx:140 +#: screens/User/User.jsx:140 msgid "View User Details" msgstr "" -#: src/screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.jsx:26 msgid "View User Interface settings" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.jsx:104 msgid "View Workflow Approval Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 msgid "View YAML examples at <0>docs.ansible.com" msgstr "" -#: src/components/ScreenHeader/ScreenHeader.jsx:54 -#: src/components/ScreenHeader/ScreenHeader.jsx:56 +#: components/ScreenHeader/ScreenHeader.jsx:54 +#: components/ScreenHeader/ScreenHeader.jsx:57 msgid "View activity stream" msgstr "" -#: src/screens/Credential/Credential.jsx:81 +#: screens/Credential/Credential.jsx:81 msgid "View all Credentials." msgstr "" -#: src/screens/Host/Host.jsx:91 +#: screens/Host/Host.jsx:91 msgid "View all Hosts." msgstr "" -#: src/screens/Inventory/Inventory.jsx:93 -#: src/screens/Inventory/SmartInventory.jsx:98 +#: screens/Inventory/Inventory.jsx:93 +#: screens/Inventory/SmartInventory.jsx:98 msgid "View all Inventories." msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:102 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:102 msgid "View all Inventory Hosts." msgstr "" -#: src/screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.jsx:40 msgid "View all Jobs" msgstr "" -#: src/screens/Job/Job.jsx:85 +#: screens/Job/Job.jsx:125 msgid "View all Jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:53 +#: screens/NotificationTemplate/NotificationTemplate.jsx:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 msgid "View all Notification Templates." msgstr "" -#: src/screens/Organization/Organization.jsx:150 +#: screens/Organization/Organization.jsx:156 msgid "View all Organizations." msgstr "" -#: src/screens/Project/Project.jsx:140 +#: screens/Project/Project.jsx:140 msgid "View all Projects." msgstr "" -#: src/screens/Team/Team.jsx:74 +#: screens/Team/Team.jsx:74 msgid "View all Teams." msgstr "" -#: src/screens/Template/Template.jsx:172 -#: src/screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.jsx:185 +#: screens/Template/WorkflowJobTemplate.jsx:180 msgid "View all Templates." msgstr "" -#: src/screens/User/User.jsx:96 +#: screens/User/User.jsx:96 msgid "View all Users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.jsx:54 msgid "View all Workflow Approvals." msgstr "" -#: src/screens/Application/Application/Application.jsx:95 +#: screens/Application/Application/Application.jsx:95 msgid "View all applications." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.jsx:77 msgid "View all credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:84 -#: src/screens/InstanceGroup/InstanceGroup.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +msgid "View all execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:84 +#: screens/InstanceGroup/InstanceGroup.jsx:90 msgid "View all instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.jsx:134 msgid "View all management jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.jsx:195 msgid "View all settings" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:75 +#: screens/User/UserToken/UserToken.jsx:75 msgid "View all tokens." msgstr "" -#: src/screens/Setting/SettingList.jsx:138 +#: screens/Setting/SettingList.jsx:138 msgid "View and edit your license information" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:24 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 +#: screens/ActivityStream/ActivityStreamListItem.jsx:50 msgid "View event details" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.jsx:172 msgid "View inventory source details" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.jsx:44 msgid "View job {0}" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:171 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:177 msgid "View node details" msgstr "" -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 msgid "View smart inventory host details" msgstr "" -#: src/routeConfig.js:30 -#: src/screens/ActivityStream/ActivityStream.jsx:142 +#: routeConfig.js:31 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Views" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:134 -#: src/components/TemplateList/TemplateListItem.jsx:139 -#: src/screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.jsx:159 +#: components/TemplateList/TemplateListItem.jsx:165 +#: screens/Template/WorkflowJobTemplate.jsx:141 msgid "Visualizer" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 msgid "WARNING:" msgstr "" -#: src/components/JobList/JobList.jsx:223 -#: src/components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.jsx:201 +#: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:114 +#: components/Workflow/WorkflowLegend.jsx:114 +#: screens/Job/JobOutput/JobOutput.jsx:666 msgid "Warning" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 msgid "Warning: Unsaved Changes" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:202 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:142 +#: components/NotificationList/NotificationList.jsx:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Webhook" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:164 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:257 -#: src/screens/Template/shared/WebhookSubForm.jsx:216 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:170 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:267 +#: screens/Template/shared/WebhookSubForm.jsx:217 msgid "Webhook Credential" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:152 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 msgid "Webhook Credentials" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:160 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 -#: src/screens/Template/shared/WebhookSubForm.jsx:185 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:166 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:264 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:165 +#: screens/Template/shared/WebhookSubForm.jsx:185 msgid "Webhook Key" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:151 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:240 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:139 -#: src/screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:156 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 -#: src/screens/Template/shared/WebhookSubForm.jsx:167 -#: src/screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:162 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:161 +#: screens/Template/shared/WebhookSubForm.jsx:167 +#: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:607 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/JobTemplateForm.jsx:637 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "Webhook details" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:171 +#: screens/Template/shared/WebhookSubForm.jsx:171 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:189 +#: screens/Template/shared/WebhookSubForm.jsx:189 msgid "Webhook services can use this as a shared secret." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:289 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 msgid "Wed" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:294 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:440 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 msgid "Wednesday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:166 +#: components/Schedule/shared/ScheduleForm.jsx:166 msgid "Week" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:461 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 msgid "Weekday" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:466 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 msgid "Weekend day" msgstr "" -#: src/screens/Login/Login.jsx:121 +#: screens/Login/Login.jsx:142 msgid "Welcome to Ansible {brandName}! Please Sign In." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161 +msgid "" +"When not checked, a merge will be performed,\n" +"combining local variables with those found on the\n" +"external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158 -msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144 +msgid "" +"When not checked, local child\n" +"hosts and groups not found on the external source will remain\n" +"untouched by the inventory update process." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141 -msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." -msgstr "" +#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." +#~ msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.jsx:96 msgid "Workflow" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.jsx:63 msgid "Workflow Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.jsx:52 msgid "Workflow Approval not found." msgstr "" -#: src/routeConfig.js:54 -#: src/screens/ActivityStream/ActivityStream.jsx:153 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:12 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:19 +#: routeConfig.js:55 +#: screens/ActivityStream/ActivityStream.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:19 msgid "Workflow Approvals" msgstr "" -#: src/components/JobList/JobList.jsx:210 -#: src/components/JobList/JobListItem.jsx:36 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:41 -#: src/screens/Job/JobDetail/JobDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.jsx:188 +#: components/JobList/JobListItem.jsx:36 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41 +#: screens/Job/JobDetail/JobDetail.jsx:101 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 msgid "Workflow Job" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:51 -#: src/screens/Job/JobDetail/JobDetail.jsx:171 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:79 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: components/Workflow/WorkflowNodeHelp.jsx:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:172 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: util/getRelatedResourceDeleteDetails.js:112 msgid "Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:181 +#: util/getRelatedResourceDeleteDetails.js:284 +msgid "Workflow Job Template Nodes" +msgstr "" + +#: util/getRelatedResourceDeleteDetails.js:164 +msgid "Workflow Job Templates" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 msgid "Workflow Link" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:197 +#: components/TemplateList/TemplateList.jsx:202 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:449 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:450 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 msgid "Workflow approved message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:461 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:462 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 msgid "Workflow approved message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:473 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:474 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 msgid "Workflow denied message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:485 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:486 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 msgid "Workflow denied message body" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 msgid "Workflow documentation" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 msgid "Workflow job templates" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 msgid "Workflow link modal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 msgid "Workflow node view modal" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:497 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:498 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 msgid "Workflow pending message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:509 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:510 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 msgid "Workflow pending message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:521 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:522 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 msgid "Workflow timed out message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:533 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:534 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 msgid "Workflow timed out message body" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:81 +#: screens/User/shared/UserTokenForm.jsx:81 msgid "Write" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:46 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 msgid "YAML:" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:168 +#: components/Schedule/shared/ScheduleForm.jsx:168 msgid "Year" msgstr "" -#: src/components/Search/Search.jsx:246 +#: components/Search/Search.jsx:254 msgid "Yes" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "" -#: src/components/Lookup/MultiCredentialsLookup.jsx:142 +#: components/Lookup/MultiCredentialsLookup.jsx:142 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:102 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:52 +#: components/DisassociateButton/DisassociateButton.jsx:52 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 msgid "You may apply a number of possible variables in the message. Refer to the" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:241 +#: components/AppContainer/AppContainer.jsx:247 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:222 +#: components/AppContainer/AppContainer.jsx:222 msgid "Your session is about to expire" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:120 +#: components/Workflow/WorkflowTools.jsx:122 msgid "Zoom In" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.jsx:101 msgid "Zoom Out" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:704 -#: src/screens/Template/shared/WebhookSubForm.jsx:155 +#: screens/Template/shared/JobTemplateForm.jsx:734 +#: screens/Template/shared/WebhookSubForm.jsx:155 msgid "a new webhook key will be generated on save." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:701 -#: src/screens/Template/shared/WebhookSubForm.jsx:143 +#: screens/Template/shared/JobTemplateForm.jsx:731 +#: screens/Template/shared/WebhookSubForm.jsx:143 msgid "a new webhook url will be generated on save." msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:45 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:116 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:91 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 +#: screens/Host/HostGroups/HostGroupItem.jsx:45 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:116 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 msgid "actions" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:514 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:219 +msgid "and click on Update Revision on Launch" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:514 msgid "approved" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:164 -#: src/screens/Template/Survey/SurveyList.jsx:111 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275 +#: screens/Template/Survey/SurveyList.jsx:113 msgid "cancel delete" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:252 +#: components/AdHocCommands/AdHocDetailsStep.jsx:252 msgid "command" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:156 -#: src/screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264 +#: screens/Template/Survey/SurveyList.jsx:104 msgid "confirm delete" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:114 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:201 +#: components/DisassociateButton/DisassociateButton.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:202 msgid "confirm disassociate" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:60 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 msgid "controller instance" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:114 +#: screens/Project/ProjectList/ProjectListItem.jsx:140 msgid "copy to clipboard disabled" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:147 msgid "deletion error" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:522 +#: screens/ActivityStream/ActivityStreamDescription.jsx:522 msgid "denied" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:82 +#: components/DisassociateButton/DisassociateButton.jsx:82 msgid "disassociate" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:71 -#: src/screens/Host/HostDetail/HostDetail.jsx:112 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:89 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:129 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:102 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: src/screens/User/UserDetail/UserDetail.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:219 +msgid "documentation" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:121 +#: screens/Host/HostDetail/HostDetail.jsx:113 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:159 +#: screens/User/UserDetail/UserDetail.jsx:89 msgid "edit" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Template/Survey/SurveyListItem.jsx:123 msgid "encrypted" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 msgid "expiration" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 msgid "for more details." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "group" +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:221 +msgid "for more info." msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "groups" -msgstr "" +#~ msgid "group" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:182 +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 +#~ msgid "groups" +#~ msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:182 msgid "here" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:129 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:204 +#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.jsx:204 msgid "here." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:333 +#: components/Lookup/HostFilterLookup.jsx:340 msgid "hosts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:95 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:95 msgid "instance counts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:109 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:109 msgid "instance group used capacity" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:82 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:82 msgid "instance host name" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:85 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:85 msgid "instance type" msgstr "" -#: src/components/Lookup/HostListItem.jsx:30 +#: components/Lookup/HostListItem.jsx:30 msgid "inventory" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 -#: src/screens/Job/JobDetail/JobDetail.jsx:118 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 +#: screens/Job/JobDetail/JobDetail.jsx:119 msgid "isolated instance" msgstr "" -#: src/components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "ldap user" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:72 +#: screens/User/UserDetail/UserDetail.jsx:72 msgid "login type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:183 msgid "min" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:80 +#: screens/Template/Survey/SurveyListItem.jsx:82 msgid "move down" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:70 +#: screens/Template/Survey/SurveyListItem.jsx:71 msgid "move up" msgstr "" -#: src/components/Lookup/HostListItem.jsx:23 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:76 +#: components/Lookup/HostListItem.jsx:23 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:90 msgid "name" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:477 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 msgid "of" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:250 +#: components/AdHocCommands/AdHocDetailsStep.jsx:250 msgid "option to the" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 msgid "or attributes of the job such as" msgstr "" -#: src/components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "" -#: src/components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: src/components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:21 +#: components/LaunchButton/ReLaunchDropDown.jsx:66 +#: components/LaunchButton/ReLaunchDropDown.jsx:88 +msgid "relaunch jobs" +msgstr "" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:21 msgid "resource name" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:36 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:36 msgid "resource role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:26 msgid "resource type" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 msgid "scope" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:197 msgid "sec" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 msgid "seconds" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.jsx:62 msgid "select module" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:139 +#: components/AdHocCommands/AdHocDetailsStep.jsx:139 msgid "select verbosity" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:56 +#: screens/User/UserList/UserListItem.jsx:56 msgid "social login" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.jsx:30 msgid "system" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 msgid "team name" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:520 +#: screens/ActivityStream/ActivityStreamDescription.jsx:520 msgid "timed out" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:230 +#: components/AdHocCommands/AdHocDetailsStep.jsx:230 msgid "toggle changes" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 msgid "token name" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:83 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:110 msgid "type" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:525 +#: screens/ActivityStream/ActivityStreamDescription.jsx:525 msgid "updated" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:199 +#: screens/Template/shared/WebhookSubForm.jsx:199 msgid "workflow job template webhook key" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:27 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:113 +msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:86 +msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.jsx:223 +msgid "{0, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:65 +msgid "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:56 +msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +msgstr "" + +#: screens/Setting/shared/LoggingTestAlert.jsx:27 msgid "{0}" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.jsx:28 msgid "{0} (deleted)" msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.jsx:13 msgid "{0} more" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:62 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:62 msgid "{0} sources with sync failures." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:25 +#: screens/Setting/shared/LoggingTestAlert.jsx:25 msgid "{0}: {1}" msgstr "" -#: src/components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.jsx:23 msgid "{dateStr} by <0>{username}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:204 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:208 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:43 +#: components/PromptDetail/PromptDetail.jsx:43 msgid "{minutes} min {seconds} sec" msgstr "" #: src/screens/Inventory/InventoryList/InventoryList.jsx:215 -msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:92 +msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:81 -msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" -msgstr "" +#~ msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" +#~ msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:156 +#: components/JobList/JobListCancelButton.jsx:151 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:68 -msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#: components/JobList/JobListCancelButton.jsx:77 +msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" +#: src/components/JobList/JobListCancelButton.jsx:68 +#~ msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#~ msgstr "" + #: src/components/JobList/JobListCancelButton.jsx:57 -msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" -msgstr "" +#~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +#~ msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:92 -#: src/components/PaginatedTable/PaginatedTable.jsx:76 +#: components/PaginatedDataList/PaginatedDataList.jsx:92 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:96 -msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" -msgstr "" +#~ msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" +#~ msgstr "" diff --git a/awx/ui_next/src/locales/zh/messages.po b/awx/ui_next/src/locales/zh/messages.po index 21f1570317..ac1ed202c9 100644 --- a/awx/ui_next/src/locales/zh/messages.po +++ b/awx/ui_next/src/locales/zh/messages.po @@ -13,393 +13,425 @@ msgstr "" "Language-Team: \n" "Plural-Forms: \n" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 msgid "(Limited to first 10)" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:147 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:90 +#: components/TemplateList/TemplateListItem.jsx:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:91 msgid "(Prompt on launch)" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:244 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 msgid "* This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:58 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:59 msgid "- Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:63 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:64 msgid "- Enable Webhooks" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:221 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 msgid "/ (project root)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:26 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 -#: src/components/PromptDetail/PromptDetail.jsx:95 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:31 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:40 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:173 +#: components/AdHocCommands/AdHocCommands.jsx:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/PromptDetail/PromptDetail.jsx:95 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 +#: screens/Template/shared/JobTemplateForm.jsx:180 msgid "0 (Normal)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:98 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:81 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 msgid "0 (Warning)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:99 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 msgid "1 (Info)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:27 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 -#: src/components/PromptDetail/PromptDetail.jsx:96 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:32 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:41 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:101 -#: src/screens/Template/shared/JobTemplateForm.jsx:174 +#: components/AdHocCommands/AdHocCommands.jsx:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 +#: components/PromptDetail/PromptDetail.jsx:96 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 +#: screens/Template/shared/JobTemplateForm.jsx:181 msgid "1 (Verbose)" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:100 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 msgid "2 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:28 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 -#: src/components/PromptDetail/PromptDetail.jsx:97 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:33 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:42 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:102 -#: src/screens/Template/shared/JobTemplateForm.jsx:175 +#: components/AdHocCommands/AdHocCommands.jsx:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 +#: components/PromptDetail/PromptDetail.jsx:97 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 +#: screens/Template/shared/JobTemplateForm.jsx:182 msgid "2 (More Verbose)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:29 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 -#: src/components/PromptDetail/PromptDetail.jsx:98 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:34 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:43 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:103 -#: src/screens/Template/shared/JobTemplateForm.jsx:176 +#: components/AdHocCommands/AdHocCommands.jsx:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 +#: components/PromptDetail/PromptDetail.jsx:98 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:183 msgid "3 (Debug)" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:30 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 -#: src/components/PromptDetail/PromptDetail.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:35 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:44 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:177 +#: components/AdHocCommands/AdHocCommands.jsx:30 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 +#: components/PromptDetail/PromptDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 +#: screens/Template/shared/JobTemplateForm.jsx:184 msgid "4 (Connection Debug)" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:105 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 msgid "5 (WinRM Debug)" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 -msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +msgid "" +"A refspec to fetch (passed to the Ansible git\n" +"module). This parameter allows access to references via\n" +"the branch field not otherwise available." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +#~ msgid "A refspec to fetch (passed to the Ansible git module). This parameter allows access to references via the branch field not otherwise available." +#~ msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281 +msgid "ALL" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 msgid "API Service/Integration Key" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 msgid "API Token" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 msgid "API service/integration key" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:129 +#: components/AppContainer/PageHeaderToolbar.jsx:129 msgid "About" msgstr "" -#: src/routeConfig.js:92 -#: src/screens/ActivityStream/ActivityStream.jsx:176 -#: src/screens/Credential/Credential.jsx:60 -#: src/screens/Credential/Credentials.jsx:29 -#: src/screens/Inventory/Inventories.jsx:58 -#: src/screens/Inventory/Inventory.jsx:63 -#: src/screens/Inventory/SmartInventory.jsx:70 -#: src/screens/Organization/Organization.jsx:123 -#: src/screens/Organization/Organizations.jsx:32 -#: src/screens/Project/Project.jsx:106 -#: src/screens/Project/Projects.jsx:30 -#: src/screens/Team/Team.jsx:56 -#: src/screens/Team/Teams.jsx:31 -#: src/screens/Template/Template.jsx:132 -#: src/screens/Template/Templates.jsx:46 -#: src/screens/Template/WorkflowJobTemplate.jsx:122 +#: routeConfig.js:93 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Credential/Credential.jsx:60 +#: screens/Credential/Credentials.jsx:29 +#: screens/Inventory/Inventories.jsx:58 +#: screens/Inventory/Inventory.jsx:63 +#: screens/Inventory/SmartInventory.jsx:70 +#: screens/Organization/Organization.jsx:124 +#: screens/Organization/Organizations.jsx:32 +#: screens/Project/Project.jsx:106 +#: screens/Project/Projects.jsx:30 +#: screens/Team/Team.jsx:56 +#: screens/Team/Teams.jsx:31 +#: screens/Template/Template.jsx:145 +#: screens/Template/Templates.jsx:46 +#: screens/Template/WorkflowJobTemplate.jsx:122 msgid "Access" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:71 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:79 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 msgid "Access Token Expiration" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 msgid "Account SID" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 msgid "Account token" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:52 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 msgid "Action" msgstr "" -#: src/components/JobList/JobList.jsx:245 -#: src/components/JobList/JobListItem.jsx:80 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:176 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:112 -#: src/components/TemplateList/TemplateList.jsx:222 -#: src/components/TemplateList/TemplateListItem.jsx:131 -#: src/screens/ActivityStream/ActivityStream.jsx:253 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:49 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:47 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:166 -#: src/screens/Credential/CredentialList/CredentialList.jsx:153 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:63 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:172 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 -#: src/screens/Host/HostList/HostList.jsx:170 -#: src/screens/Host/HostList/HostListItem.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:233 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:198 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:112 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:183 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:157 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:44 -#: src/screens/Project/ProjectList/ProjectList.jsx:173 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:125 -#: src/screens/Team/TeamList/TeamList.jsx:156 -#: src/screens/Team/TeamList/TeamListItem.jsx:54 -#: src/screens/User/UserList/UserList.jsx:172 -#: src/screens/User/UserList/UserListItem.jsx:79 +#: components/JobList/JobList.jsx:223 +#: components/JobList/JobListItem.jsx:80 +#: components/Schedule/ScheduleList/ScheduleList.jsx:176 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112 +#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateListItem.jsx:156 +#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStreamListItem.jsx:49 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 +#: screens/Credential/CredentialList/CredentialList.jsx:145 +#: screens/Credential/CredentialList/CredentialListItem.jsx:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:78 +#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostListItem.jsx:48 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 +#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/Organization/OrganizationList/OrganizationList.jsx:161 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 +#: screens/Project/ProjectList/ProjectList.jsx:178 +#: screens/Project/ProjectList/ProjectListItem.jsx:152 +#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/User/UserList/UserList.jsx:172 +#: screens/User/UserList/UserListItem.jsx:79 msgid "Actions" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:85 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 -#: src/components/TemplateList/TemplateListItem.jsx:201 -#: src/screens/Host/HostDetail/HostDetail.jsx:77 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:87 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 +#: components/TemplateList/TemplateListItem.jsx:229 +#: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 msgid "Activity" msgstr "" -#: src/routeConfig.js:49 -#: src/screens/ActivityStream/ActivityStream.jsx:119 -#: src/screens/Setting/Settings.jsx:44 +#: routeConfig.js:50 +#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/Setting/Settings.jsx:44 msgid "Activity Stream" msgstr "" -#: src/screens/Setting/SettingList.jsx:114 +#: screens/Setting/SettingList.jsx:114 msgid "Activity Stream settings" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:122 +#: screens/ActivityStream/ActivityStream.jsx:122 msgid "Activity Stream type selector" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 msgid "Actor" msgstr "" -#: src/components/AddDropDownButton/AddDropDownButton.jsx:39 -#: src/components/PaginatedDataList/ToolbarAddButton.jsx:15 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:160 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:164 +#: components/AddDropDownButton/AddDropDownButton.jsx:39 +#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 msgid "Add" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 msgid "Add Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:66 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 msgid "Add Node" msgstr "" -#: src/screens/Template/Templates.jsx:50 +#: screens/Template/Templates.jsx:50 msgid "Add Question" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:174 +#: components/AddRole/AddResourceRole.jsx:185 msgid "Add Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:171 +#: components/AddRole/AddResourceRole.jsx:182 msgid "Add Team Roles" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:168 +#: components/AddRole/AddResourceRole.jsx:179 msgid "Add User Roles" msgstr "" -#: src/components/Workflow/WorkflowStartNode.jsx:57 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:189 +#: components/Workflow/WorkflowStartNode.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:195 msgid "Add a new node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 msgid "Add a new node between these two nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 msgid "Add container group" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 msgid "Add existing group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 msgid "Add existing host" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 msgid "Add instance group" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:129 +#: screens/Inventory/InventoryList/InventoryList.jsx:135 msgid "Add inventory" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:140 +#: components/TemplateList/TemplateList.jsx:141 msgid "Add job template" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 msgid "Add new group" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 msgid "Add new host" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 msgid "Add resource type" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:130 +#: screens/Inventory/InventoryList/InventoryList.jsx:136 msgid "Add smart inventory" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:171 +#: screens/Team/TeamRoles/TeamRolesList.jsx:171 msgid "Add team permissions" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:182 +#: screens/User/UserRoles/UserRolesList.jsx:182 msgid "Add user permissions" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:141 +#: components/TemplateList/TemplateList.jsx:142 msgid "Add workflow template" msgstr "" #: src/screens/ActivityStream/ActivityStream.jsx:187 -msgid "Adminisration" -msgstr "" +#~ msgid "Adminisration" +#~ msgstr "" -#: src/routeConfig.js:113 +#: routeConfig.js:114 +#: screens/ActivityStream/ActivityStream.jsx:187 msgid "Administration" msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:86 +#: components/DataListToolbar/DataListToolbar.jsx:86 +#: screens/Job/JobOutput/JobOutput.jsx:671 msgid "Advanced" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:245 +#: components/Search/AdvancedSearch.jsx:246 msgid "Advanced search value input" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203 +msgid "" +"After every project update where the SCM revision\n" +"changes, refresh the inventory from the selected source\n" +"before executing job tasks. This is intended for static content,\n" +"like the Ansible inventory .ini file format." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:168 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:177 -msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." -msgstr "" +#~ msgid "After every project update where the SCM revision changes, refresh the inventory from the selected source before executing job tasks. This is intended for static content, like the Ansible inventory .ini file format." +#~ msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:520 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 msgid "After number of occurrences" msgstr "" -#: src/components/AlertModal/AlertModal.jsx:77 +#: components/AlertModal/AlertModal.jsx:77 msgid "Alert modal" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:39 +#: components/LaunchButton/ReLaunchDropDown.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:244 msgid "All" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:226 +#: screens/Dashboard/Dashboard.jsx:226 msgid "All job types" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:45 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:72 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:46 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:74 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 msgid "Allow Branch Override" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:60 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 msgid "Allow Provisioning Callbacks" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 -msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +msgid "" +"Allow changing the Source Control branch or revision in a job\n" +"template that uses this project." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:119 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +#~ msgid "Allow changing the Source Control branch or revision in a job template that uses this project." +#~ msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:119 msgid "Allowed URIs list, space separated" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:126 -#: src/components/Workflow/WorkflowLinkHelp.jsx:24 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 +#: components/Workflow/WorkflowLegend.jsx:126 +#: components/Workflow/WorkflowLinkHelp.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 msgid "Always" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 msgid "Amazon EC2" msgstr "" -#: src/components/Lookup/shared/LookupErrorMessage.jsx:12 +#: components/Lookup/shared/LookupErrorMessage.jsx:12 msgid "An error occurred" msgstr "" -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:34 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 msgid "An inventory must be selected" msgstr "" @@ -410,623 +442,683 @@ msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:82 #: src/screens/Project/ProjectDetail/ProjectDetail.jsx:128 #: src/screens/Project/shared/ProjectForm.jsx:274 -msgid "Ansible Environment" -msgstr "" +#~ msgid "Ansible Environment" +#~ msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 msgid "Ansible Tower" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 msgid "Ansible Tower Documentation." msgstr "" #: src/components/About/About.jsx:58 -msgid "Ansible Version" -msgstr "" +#~ msgid "Ansible Version" +#~ msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:204 -msgid "Ansible environment" -msgstr "" +#~ msgid "Ansible environment" +#~ msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:33 +#: screens/Template/Survey/SurveyQuestionForm.jsx:33 msgid "Answer type" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:130 +#: screens/Template/Survey/SurveyQuestionForm.jsx:130 msgid "Answer variable name" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:65 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:43 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:52 -#: src/screens/User/shared/UserTokenForm.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:241 +msgid "Any" +msgstr "" + +#: components/Lookup/ApplicationLookup.jsx:65 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:52 +#: screens/User/shared/UserTokenForm.jsx:44 msgid "Application" msgstr "" -#: src/screens/User/Users.jsx:38 +#: screens/User/Users.jsx:38 msgid "Application Name" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:42 +#: screens/User/UserTokenList/UserTokenListItem.jsx:42 msgid "Application access token" msgstr "" -#: src/screens/Application/Applications.jsx:67 -#: src/screens/Application/Applications.jsx:70 +#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.jsx:70 msgid "Application information" msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:111 -#: src/screens/User/UserTokenList/UserTokenList.jsx:122 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:47 +#: screens/User/UserTokenList/UserTokenList.jsx:111 +#: screens/User/UserTokenList/UserTokenList.jsx:122 +#: screens/User/UserTokenList/UserTokenListItem.jsx:47 msgid "Application name" msgstr "" -#: src/screens/Application/Application/Application.jsx:93 +#: screens/Application/Application/Application.jsx:93 msgid "Application not found." msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:74 -#: src/routeConfig.js:137 -#: src/screens/Application/Applications.jsx:25 -#: src/screens/Application/Applications.jsx:35 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:116 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: components/Lookup/ApplicationLookup.jsx:74 +#: routeConfig.js:138 +#: screens/Application/Applications.jsx:25 +#: screens/Application/Applications.jsx:35 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: util/getRelatedResourceDeleteDetails.js:233 msgid "Applications" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:204 +#: screens/ActivityStream/ActivityStream.jsx:204 msgid "Applications & Tokens" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:40 -#: src/components/NotificationList/NotificationListItem.jsx:41 -#: src/components/Workflow/WorkflowLegend.jsx:110 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:55 +#: components/NotificationList/NotificationListItem.jsx:40 +#: components/NotificationList/NotificationListItem.jsx:41 +#: components/Workflow/WorkflowLegend.jsx:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:83 msgid "Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:190 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:195 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:59 msgid "Approve" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 msgid "Approved" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 msgid "Approved by {0} - {1}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:127 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 msgid "April" msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:116 -msgid "Are you sure you want to delete the {0} below?" -msgstr "" +#~ msgid "Are you sure you want to delete the {0} below?" +#~ msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:53 +#: components/DeleteButton/DeleteButton.jsx:127 msgid "Are you sure you want to delete:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:41 msgid "Are you sure you want to remove all the nodes in this workflow?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:44 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 msgid "Are you sure you want to remove the node below:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:41 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 msgid "Are you sure you want to remove this link?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:51 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 msgid "Are you sure you want to remove this node?" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:47 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:53 msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:64 msgid "Are you sure you want to remove {0} access from {username}?" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:700 +#: screens/Job/JobDetail/JobDetail.jsx:461 +#: screens/Job/JobOutput/JobOutput.jsx:812 msgid "Are you sure you want to submit the request to cancel this job?" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:108 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:110 +#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.jsx:110 msgid "Arguments" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:347 +#: screens/Job/JobDetail/JobDetail.jsx:378 msgid "Artifacts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:181 -#: src/screens/User/UserTeams/UserTeamList.jsx:204 +#: screens/InstanceGroup/Instances/InstanceList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:204 msgid "Associate" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 msgid "Associate role error" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:99 +#: components/AssociateModal/AssociateModal.jsx:99 msgid "Association modal" msgstr "" -#: src/components/LaunchPrompt/steps/SurveyStep.jsx:138 +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 msgid "At least one value must be selected for this field." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:147 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 msgid "August" msgstr "" -#: src/screens/Setting/SettingList.jsx:55 +#: screens/Setting/SettingList.jsx:55 msgid "Authentication" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:92 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:86 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 msgid "Authorization Code Expiration" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 -#: src/screens/Application/shared/ApplicationForm.jsx:84 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 +#: screens/Application/shared/ApplicationForm.jsx:84 msgid "Authorization grant type" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:89 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:89 msgid "Auto" msgstr "" -#: src/screens/Setting/Settings.jsx:47 +#: screens/Setting/Settings.jsx:47 msgid "Azure AD" msgstr "" -#: src/screens/Setting/SettingList.jsx:62 +#: screens/Setting/SettingList.jsx:62 msgid "Azure AD settings" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:111 -#: src/components/AddRole/AddResourceRole.jsx:275 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:111 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:120 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:90 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:139 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:142 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:111 +#: components/AddRole/AddResourceRole.jsx:286 +#: components/LaunchPrompt/LaunchPrompt.jsx:118 +#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 msgid "Back" msgstr "" -#: src/screens/Credential/Credential.jsx:52 +#: screens/Credential/Credential.jsx:52 msgid "Back to Credentials" msgstr "" -#: src/components/ContentError/ContentError.jsx:48 +#: components/ContentError/ContentError.jsx:48 msgid "Back to Dashboard." msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 msgid "Back to Groups" msgstr "" -#: src/screens/Host/Host.jsx:45 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:66 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +#: screens/Host/Host.jsx:45 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 msgid "Back to Hosts" msgstr "" -#: src/screens/Inventory/Inventory.jsx:56 -#: src/screens/Inventory/SmartInventory.jsx:63 +#: screens/Inventory/Inventory.jsx:56 +#: screens/Inventory/SmartInventory.jsx:63 msgid "Back to Inventories" msgstr "" -#: src/screens/Job/Job.jsx:57 +#: screens/Job/Job.jsx:97 msgid "Back to Jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:76 +#: screens/NotificationTemplate/NotificationTemplate.jsx:76 msgid "Back to Notifications" msgstr "" -#: src/screens/Organization/Organization.jsx:116 +#: screens/Organization/Organization.jsx:117 msgid "Back to Organizations" msgstr "" -#: src/screens/Project/Project.jsx:99 +#: screens/Project/Project.jsx:99 msgid "Back to Projects" msgstr "" -#: src/components/Schedule/Schedule.jsx:60 +#: components/Schedule/Schedule.jsx:61 msgid "Back to Schedules" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:104 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:48 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:108 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 msgid "Back to Settings" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:81 +#: screens/Inventory/InventorySource/InventorySource.jsx:81 msgid "Back to Sources" msgstr "" -#: src/screens/Team/Team.jsx:49 +#: screens/Team/Team.jsx:49 msgid "Back to Teams" msgstr "" -#: src/screens/Template/Template.jsx:125 -#: src/screens/Template/WorkflowJobTemplate.jsx:115 +#: screens/Template/Template.jsx:138 +#: screens/Template/WorkflowJobTemplate.jsx:115 msgid "Back to Templates" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:47 +#: screens/User/UserToken/UserToken.jsx:47 msgid "Back to Tokens" msgstr "" -#: src/screens/User/User.jsx:57 +#: screens/User/User.jsx:57 msgid "Back to Users" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:69 +#: screens/WorkflowApproval/WorkflowApproval.jsx:69 msgid "Back to Workflow Approvals" msgstr "" -#: src/screens/Application/Application/Application.jsx:71 +#: screens/Application/Application/Application.jsx:71 msgid "Back to applications" msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:55 +#: screens/CredentialType/CredentialType.jsx:55 msgid "Back to credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:56 -#: src/screens/InstanceGroup/InstanceGroup.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +msgid "Back to execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:56 +#: screens/InstanceGroup/InstanceGroup.jsx:57 msgid "Back to instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:98 +#: screens/ManagementJob/ManagementJob.jsx:98 msgid "Back to management jobs" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 -msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +msgid "" +"Base path used for locating playbooks. Directories\n" +"found inside this path will be listed in the playbook directory drop-down.\n" +"Together the base path and selected playbook directory provide the full\n" +"path used to locate playbooks." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +#~ msgid "Base path used for locating playbooks. Directories found inside this path will be listed in the playbook directory drop-down. Together the base path and selected playbook directory provide the full path used to locate playbooks." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 msgid "Basic auth password" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 -msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +msgid "" +"Branch to checkout. In addition to branches,\n" +"you can input tags, commit hashes, and arbitrary refs. Some\n" +"commit hashes and refs may not be available unless you also\n" +"provide a custom refspec." msgstr "" -#: src/components/About/About.jsx:42 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +#~ msgid "Branch to checkout. In addition to branches, you can input tags, commit hashes, and arbitrary refs. Some commit hashes and refs may not be available unless you also provide a custom refspec." +#~ msgstr "" + +#: components/About/About.jsx:37 msgid "Brand Image" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:103 -#: src/components/PromptDetail/PromptProjectDetail.jsx:88 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:124 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:104 +#: components/PromptDetail/PromptProjectDetail.jsx:94 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:126 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 msgid "Cache Timeout" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235 msgid "Cache timeout" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:194 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:237 msgid "Cache timeout (seconds)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:112 -#: src/components/AddRole/AddResourceRole.jsx:276 -#: src/components/AssociateModal/AssociateModal.jsx:113 -#: src/components/AssociateModal/AssociateModal.jsx:118 -#: src/components/DeleteButton/DeleteButton.jsx:46 -#: src/components/DeleteButton/DeleteButton.jsx:49 -#: src/components/DisassociateButton/DisassociateButton.jsx:122 -#: src/components/DisassociateButton/DisassociateButton.jsx:125 -#: src/components/FormActionGroup/FormActionGroup.jsx:22 -#: src/components/FormActionGroup/FormActionGroup.jsx:27 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:112 -#: src/components/Lookup/HostFilterLookup.jsx:322 -#: src/components/Lookup/Lookup.jsx:148 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:167 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:40 -#: src/components/Schedule/shared/ScheduleForm.jsx:564 -#: src/components/Schedule/shared/ScheduleForm.jsx:569 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:121 -#: src/screens/Credential/shared/CredentialForm.jsx:292 -#: src/screens/Credential/shared/CredentialForm.jsx:297 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:99 -#: src/screens/Credential/shared/ExternalTestModal.jsx:97 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:111 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 -#: src/screens/Setting/shared/RevertAllAlert.jsx:32 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:38 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:44 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:209 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:212 -#: src/screens/Template/Survey/SurveyList.jsx:117 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:29 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:37 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:43 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:38 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 -#: src/screens/User/UserRoles/UserRolesList.jsx:209 -#: src/screens/User/UserRoles/UserRolesList.jsx:212 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:112 +#: components/AddRole/AddResourceRole.jsx:287 +#: components/AssociateModal/AssociateModal.jsx:115 +#: components/AssociateModal/AssociateModal.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:123 +#: components/DisassociateButton/DisassociateButton.jsx:125 +#: components/DisassociateButton/DisassociateButton.jsx:128 +#: components/FormActionGroup/FormActionGroup.jsx:24 +#: components/FormActionGroup/FormActionGroup.jsx:29 +#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/Lookup/HostFilterLookup.jsx:329 +#: components/Lookup/Lookup.jsx:150 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46 +#: components/Schedule/shared/ScheduleForm.jsx:641 +#: components/Schedule/shared/ScheduleForm.jsx:646 +#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: screens/Credential/shared/CredentialForm.jsx:299 +#: screens/Credential/shared/CredentialForm.jsx:304 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:103 +#: screens/Credential/shared/ExternalTestModal.jsx:99 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:109 +#: screens/Job/JobDetail/JobDetail.jsx:411 +#: screens/Job/JobDetail/JobDetail.jsx:416 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 +#: screens/Setting/shared/RevertAllAlert.jsx:32 +#: screens/Setting/shared/RevertFormActionGroup.jsx:38 +#: screens/Setting/shared/RevertFormActionGroup.jsx:44 +#: screens/Team/TeamRoles/TeamRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.jsx:214 +#: screens/Template/Survey/SurveyList.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/User/UserRoles/UserRolesList.jsx:214 msgid "Cancel" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:675 -#: src/screens/Job/JobOutput/JobOutput.jsx:676 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:171 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:174 +#: screens/Job/JobDetail/JobDetail.jsx:436 +#: screens/Job/JobDetail/JobDetail.jsx:437 +#: screens/Job/JobOutput/JobOutput.jsx:787 +#: screens/Job/JobOutput/JobOutput.jsx:788 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:186 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:190 msgid "Cancel Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:683 -#: src/screens/Job/JobOutput/JobOutput.jsx:686 +#: screens/Job/JobDetail/JobDetail.jsx:444 +#: screens/Job/JobDetail/JobDetail.jsx:447 +#: screens/Job/JobOutput/JobOutput.jsx:795 +#: screens/Job/JobOutput/JobOutput.jsx:798 msgid "Cancel job" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 msgid "Cancel link changes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 msgid "Cancel link removal" msgstr "" -#: src/components/Lookup/Lookup.jsx:146 +#: components/Lookup/Lookup.jsx:148 msgid "Cancel lookup" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:26 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 msgid "Cancel node removal" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:28 +#: screens/Setting/shared/RevertAllAlert.jsx:29 msgid "Cancel revert" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:65 +#: components/JobList/JobListCancelButton.jsx:79 +msgid "Cancel selected job" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:80 +msgid "Cancel selected jobs" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:66 msgid "Cancel sync" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:58 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:58 msgid "Cancel sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:61 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:62 msgid "Cancel sync source" msgstr "" -#: src/components/JobList/JobList.jsx:228 -#: src/components/Workflow/WorkflowNodeHelp.jsx:95 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 +#: components/JobList/JobList.jsx:206 +#: components/Workflow/WorkflowNodeHelp.jsx:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 msgid "Canceled" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 -msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +msgid "" +"Cannot enable log aggregator without providing\n" +"logging aggregator host and logging aggregator type." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:232 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 +#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +#~ msgid "Cannot enable log aggregator without providing logging aggregator host and logging aggregator type." +#~ msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 msgid "Capacity" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:175 +#: components/Search/AdvancedSearch.jsx:176 msgid "Case-insensitive version of contains" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:195 +#: components/Search/AdvancedSearch.jsx:196 msgid "Case-insensitive version of endswith." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:165 +#: components/Search/AdvancedSearch.jsx:166 msgid "Case-insensitive version of exact." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:205 +#: components/Search/AdvancedSearch.jsx:206 msgid "Case-insensitive version of regex." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:185 +#: components/Search/AdvancedSearch.jsx:186 msgid "Case-insensitive version of startswith." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 -msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +msgid "" +"Change PROJECTS_ROOT when deploying\n" +"{brandName} to change this location." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +#~ msgid "Change PROJECTS_ROOT when deploying {brandName} to change this location." +#~ msgstr "" + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 msgid "Changed" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:55 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:56 msgid "Changes" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 msgid "Channel" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 -#: src/screens/Template/shared/JobTemplateForm.jsx:168 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 +#: screens/Template/shared/JobTemplateForm.jsx:175 msgid "Check" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:231 +#: components/Search/AdvancedSearch.jsx:232 msgid "Check whether the given field or related object is null; expects a boolean value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:238 +#: components/Search/AdvancedSearch.jsx:239 msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 msgid "Choose a .json file" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 msgid "Choose a Notification Type" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 msgid "Choose a Playbook Directory" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:197 +#: screens/Project/shared/ProjectForm.jsx:223 msgid "Choose a Source Control Type" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:102 +#: screens/Template/shared/WebhookSubForm.jsx:102 msgid "Choose a Webhook Service" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 -#: src/screens/Template/shared/JobTemplateForm.jsx:161 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 +#: screens/Template/shared/JobTemplateForm.jsx:168 msgid "Choose a job type" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:88 +#: components/AdHocCommands/AdHocDetailsStep.jsx:88 msgid "Choose a module" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:130 +#: screens/Inventory/shared/InventorySourceForm.jsx:144 msgid "Choose a source" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 msgid "Choose an HTTP method" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 -msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#: screens/Template/Survey/SurveyQuestionForm.jsx:37 +msgid "" +"Choose an answer type or format you want as the prompt for the user.\n" +"Refer to the Ansible Tower Documentation for more additional\n" +"information about each option." msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:37 +#~ msgid "Choose an answer type or format you want as the prompt for the user. Refer to the Ansible Tower Documentation for more additional information about each option." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 msgid "Choose an email option" msgstr "" -#: src/components/AddRole/SelectRoleStep.jsx:23 +#: components/AddRole/SelectRoleStep.jsx:23 msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." msgstr "" -#: src/components/AddRole/SelectResourceStep.jsx:82 +#: components/AddRole/SelectResourceStep.jsx:82 msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:185 +#: components/AddRole/AddResourceRole.jsx:196 msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:37 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:64 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +#: components/PromptDetail/PromptProjectDetail.jsx:38 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 msgid "Clean" msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:65 +#: components/DataListToolbar/DataListToolbar.jsx:65 +#: screens/Job/JobOutput/JobOutput.jsx:715 msgid "Clear all filters" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 msgid "Click an available node to create a new link. Click outside the graph to cancel." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 msgid "Click the Edit button below to reconfigure the node." msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:72 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:73 msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:147 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:153 msgid "Click to create a new link to this node." msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:168 +#: components/Workflow/WorkflowNodeHelp.jsx:168 msgid "Click to view job details" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 -#: src/screens/Application/Applications.jsx:89 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 +#: screens/Application/Applications.jsx:89 msgid "Client ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 msgid "Client Identifier" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 msgid "Client identifier" msgstr "" -#: src/screens/Application/Applications.jsx:102 +#: screens/Application/Applications.jsx:102 msgid "Client secret" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 -#: src/screens/Application/shared/ApplicationForm.jsx:128 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 +#: screens/Application/shared/ApplicationForm.jsx:128 msgid "Client type" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:106 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:171 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:173 msgid "Close" msgstr "" -#: src/components/CredentialChip/CredentialChip.jsx:12 +#: components/CredentialChip/CredentialChip.jsx:12 msgid "Cloud" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:40 +#: components/ExpandCollapse/ExpandCollapse.jsx:41 msgid "Collapse" msgstr "" -#: src/components/JobList/JobList.jsx:208 -#: src/components/JobList/JobListItem.jsx:34 -#: src/screens/Job/JobDetail/JobDetail.jsx:80 -#: src/screens/Job/JobOutput/HostEventModal.jsx:137 +#: components/JobList/JobList.jsx:186 +#: components/JobList/JobListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:99 +#: screens/Job/JobOutput/HostEventModal.jsx:137 msgid "Command" msgstr "" @@ -1037,7032 +1129,8098 @@ msgstr "" #: src/screens/Template/Template.jsx:151 #: src/screens/Template/Templates.jsx:48 #: src/screens/Template/WorkflowJobTemplate.jsx:145 -msgid "Completed Jobs" -msgstr "" +#~ msgid "Completed Jobs" +#~ msgstr "" #: src/screens/Inventory/Inventories.jsx:59 #: src/screens/Inventory/Inventories.jsx:73 #: src/screens/Inventory/SmartInventory.jsx:73 -msgid "Completed jobs" -msgstr "" +#~ msgid "Completed jobs" +#~ msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:550 +#: screens/Template/shared/JobTemplateForm.jsx:580 msgid "Concurrent Jobs" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:97 +#: components/DeleteButton/DeleteButton.jsx:107 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:95 msgid "Confirm Delete" msgstr "" -#: src/screens/User/shared/UserForm.jsx:96 +#: screens/User/shared/UserForm.jsx:96 msgid "Confirm Password" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:34 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:35 msgid "Confirm delete" msgstr "" -#: src/screens/User/UserRoles/UserRolesList.jsx:201 +#: screens/User/UserRoles/UserRolesList.jsx:202 msgid "Confirm disassociate" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 msgid "Confirm link removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:26 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 msgid "Confirm node removal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 msgid "Confirm removal of all nodes" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:19 +#: screens/Setting/shared/RevertAllAlert.jsx:20 msgid "Confirm revert all" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:234 +#: screens/Job/JobDetail/JobDetail.jsx:265 msgid "Container Group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 msgid "Container group" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:81 +#: screens/InstanceGroup/ContainerGroup.jsx:81 msgid "Container group not found." msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:106 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:115 +#: components/LaunchPrompt/LaunchPrompt.jsx:113 +#: components/Schedule/shared/SchedulePromptableFields.jsx:117 msgid "Content Loading" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:233 +#: components/AppContainer/AppContainer.jsx:234 msgid "Continue" msgstr "" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +msgid "" +"Control the level of output Ansible\n" +"will produce for inventory source update jobs." +msgstr "" + #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:92 -msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgid "Control the level of output Ansible will produce for inventory source update jobs." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 +msgid "" +"Control the level of output ansible\n" +"will produce as the playbook executes." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:444 +msgid "" +"Control the level of output ansible will\n" +"produce as the playbook executes." msgstr "" #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 #: src/screens/Template/shared/JobTemplateForm.jsx:414 -msgid "Control the level of output ansible will produce as the playbook executes." -msgstr "" +#~ msgid "Control the level of output ansible will produce as the playbook executes." +#~ msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:61 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 msgid "Controller" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:205 +msgid "Convergence" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:236 +msgid "Convergence select" +msgstr "" + +#: components/CopyButton/CopyButton.jsx:41 msgid "Copy" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:76 +#: screens/Credential/CredentialList/CredentialListItem.jsx:77 msgid "Copy Credential" msgstr "" -#: src/components/CopyButton/CopyButton.jsx:46 +#: components/CopyButton/CopyButton.jsx:48 msgid "Copy Error" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:134 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:95 +msgid "Copy Execution Environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:135 msgid "Copy Inventory" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:147 msgid "Copy Notification Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:147 +#: screens/Project/ProjectList/ProjectListItem.jsx:175 msgid "Copy Project" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:181 +#: components/TemplateList/TemplateListItem.jsx:209 msgid "Copy Template" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:121 +#: screens/Project/ProjectList/ProjectListItem.jsx:147 msgid "Copy full revision to clipboard." msgstr "" -#: src/components/About/About.jsx:40 +#: components/About/About.jsx:35 msgid "Copyright 2019 Red Hat, Inc." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:353 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:198 +#: screens/Template/shared/JobTemplateForm.jsx:383 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:223 msgid "Create" msgstr "" -#: src/screens/Application/Applications.jsx:26 -#: src/screens/Application/Applications.jsx:36 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:24 +msgid "Create Execution environments" +msgstr "" + +#: screens/Application/Applications.jsx:26 +#: screens/Application/Applications.jsx:36 msgid "Create New Application" msgstr "" -#: src/screens/Credential/Credentials.jsx:14 -#: src/screens/Credential/Credentials.jsx:25 +#: screens/Credential/Credentials.jsx:14 +#: screens/Credential/Credentials.jsx:25 msgid "Create New Credential" msgstr "" -#: src/screens/Host/Hosts.jsx:16 -#: src/screens/Host/Hosts.jsx:26 +#: screens/Host/Hosts.jsx:16 +#: screens/Host/Hosts.jsx:26 msgid "Create New Host" msgstr "" -#: src/screens/Template/Templates.jsx:17 +#: screens/Template/Templates.jsx:17 msgid "Create New Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:14 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:23 +#: screens/NotificationTemplate/NotificationTemplates.jsx:14 +#: screens/NotificationTemplate/NotificationTemplates.jsx:23 msgid "Create New Notification Template" msgstr "" -#: src/screens/Organization/Organizations.jsx:17 -#: src/screens/Organization/Organizations.jsx:28 +#: screens/Organization/Organizations.jsx:17 +#: screens/Organization/Organizations.jsx:28 msgid "Create New Organization" msgstr "" -#: src/screens/Project/Projects.jsx:15 -#: src/screens/Project/Projects.jsx:26 +#: screens/Project/Projects.jsx:15 +#: screens/Project/Projects.jsx:26 msgid "Create New Project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:114 -#: src/screens/ManagementJob/ManagementJobs.jsx:26 -#: src/screens/Project/Projects.jsx:35 -#: src/screens/Template/Templates.jsx:53 +#: screens/Inventory/Inventories.jsx:112 +#: screens/ManagementJob/ManagementJobs.jsx:26 +#: screens/Project/Projects.jsx:35 +#: screens/Template/Templates.jsx:53 msgid "Create New Schedule" msgstr "" -#: src/screens/Team/Teams.jsx:15 -#: src/screens/Team/Teams.jsx:26 +#: screens/Team/Teams.jsx:15 +#: screens/Team/Teams.jsx:26 msgid "Create New Team" msgstr "" -#: src/screens/User/Users.jsx:16 -#: src/screens/User/Users.jsx:28 +#: screens/User/Users.jsx:16 +#: screens/User/Users.jsx:28 msgid "Create New User" msgstr "" -#: src/screens/Template/Templates.jsx:19 +#: screens/Template/Templates.jsx:19 msgid "Create New Workflow Template" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:29 +#: screens/Host/HostList/SmartInventoryButton.jsx:29 msgid "Create a new Smart Inventory with the applied filter" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:18 -#: src/screens/InstanceGroup/InstanceGroups.jsx:30 +#: screens/InstanceGroup/InstanceGroups.jsx:18 +#: screens/InstanceGroup/InstanceGroups.jsx:30 msgid "Create container group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:17 -#: src/screens/InstanceGroup/InstanceGroups.jsx:28 +#: screens/InstanceGroup/InstanceGroups.jsx:17 +#: screens/InstanceGroup/InstanceGroups.jsx:28 msgid "Create instance group" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:24 +#: screens/CredentialType/CredentialTypes.jsx:24 msgid "Create new credential Type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:14 +#: screens/CredentialType/CredentialTypes.jsx:14 msgid "Create new credential type" msgstr "" -#: src/screens/Inventory/Inventories.jsx:79 -#: src/screens/Inventory/Inventories.jsx:97 +#: screens/Inventory/Inventories.jsx:77 +#: screens/Inventory/Inventories.jsx:95 msgid "Create new group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:64 -#: src/screens/Inventory/Inventories.jsx:91 +#: screens/Inventory/Inventories.jsx:64 +#: screens/Inventory/Inventories.jsx:89 msgid "Create new host" msgstr "" -#: src/screens/Inventory/Inventories.jsx:17 +#: screens/Inventory/Inventories.jsx:17 msgid "Create new inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:18 +#: screens/Inventory/Inventories.jsx:18 msgid "Create new smart inventory" msgstr "" -#: src/screens/Inventory/Inventories.jsx:101 +#: screens/Inventory/Inventories.jsx:99 msgid "Create new source" msgstr "" -#: src/screens/User/Users.jsx:36 +#: screens/User/Users.jsx:36 msgid "Create user token" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:93 -#: src/components/Lookup/HostFilterLookup.jsx:349 -#: src/components/PromptDetail/PromptDetail.jsx:133 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:230 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:57 -#: src/screens/Host/HostDetail/HostDetail.jsx:93 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:63 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:114 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:254 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:324 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:141 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:47 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:271 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:166 -#: src/screens/User/UserDetail/UserDetail.jsx:82 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:63 -#: src/screens/User/UserTokenList/UserTokenList.jsx:134 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/HostFilterLookup.jsx:356 +#: components/PromptDetail/PromptDetail.jsx:133 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 +#: screens/Host/HostDetail/HostDetail.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:117 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:355 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:145 +#: screens/Team/TeamDetail/TeamDetail.jsx:47 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:183 +#: screens/User/UserDetail/UserDetail.jsx:82 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 +#: screens/User/UserTokenList/UserTokenList.jsx:134 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 msgid "Created" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:96 -#: src/components/AddRole/AddResourceRole.jsx:148 -#: src/components/AssociateModal/AssociateModal.jsx:142 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:145 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:82 -#: src/components/Lookup/CredentialLookup.jsx:153 -#: src/components/Lookup/InventoryLookup.jsx:114 -#: src/components/Lookup/InventoryLookup.jsx:167 -#: src/components/Lookup/MultiCredentialsLookup.jsx:181 -#: src/components/Lookup/OrganizationLookup.jsx:109 -#: src/components/Lookup/ProjectLookup.jsx:129 -#: src/components/NotificationList/NotificationList.jsx:206 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:201 -#: src/components/TemplateList/TemplateList.jsx:205 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 -#: src/screens/Credential/CredentialList/CredentialList.jsx:141 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:163 -#: src/screens/Host/HostList/HostList.jsx:156 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:188 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:176 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:142 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 -#: src/screens/Project/ProjectList/ProjectList.jsx:161 -#: src/screens/Team/TeamList/TeamList.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:105 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:105 +#: components/AdHocCommands/AdHocCredentialStep.jsx:96 +#: components/AddRole/AddResourceRole.jsx:159 +#: components/AssociateModal/AssociateModal.jsx:144 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:179 +#: components/LaunchPrompt/steps/InventoryStep.jsx:91 +#: components/Lookup/CredentialLookup.jsx:153 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:167 +#: components/Lookup/MultiCredentialsLookup.jsx:181 +#: components/Lookup/OrganizationLookup.jsx:111 +#: components/Lookup/ProjectLookup.jsx:129 +#: components/NotificationList/NotificationList.jsx:206 +#: components/Schedule/ScheduleList/ScheduleList.jsx:201 +#: components/TemplateList/TemplateList.jsx:210 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: 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:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 +#: screens/Inventory/InventoryList/InventoryList.jsx:182 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 +#: screens/Organization/OrganizationList/OrganizationList.jsx:146 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 +#: screens/Project/ProjectList/ProjectList.jsx:166 +#: 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:105 msgid "Created By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:146 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 msgid "Created by (username)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:109 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:53 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:51 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:110 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: util/getRelatedResourceDeleteDetails.js:191 msgid "Credential" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:96 +#: util/getRelatedResourceDeleteDetails.js:81 +msgid "Credential Input Sources" +msgstr "" + +#: components/Lookup/InstanceGroupsLookup.jsx:96 msgid "Credential Name" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:214 -#: src/screens/Credential/shared/CredentialForm.jsx:148 -#: src/screens/Credential/shared/CredentialForm.jsx:152 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:229 +#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:152 msgid "Credential Type" msgstr "" -#: src/routeConfig.js:117 -#: src/screens/ActivityStream/ActivityStream.jsx:189 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:118 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:164 -#: src/screens/CredentialType/CredentialTypes.jsx:13 -#: src/screens/CredentialType/CredentialTypes.jsx:23 +#: routeConfig.js:118 +#: screens/ActivityStream/ActivityStream.jsx:189 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/CredentialType/CredentialTypes.jsx:13 +#: screens/CredentialType/CredentialTypes.jsx:23 msgid "Credential Types" msgstr "" -#: src/screens/Credential/Credential.jsx:79 +#: screens/Credential/Credential.jsx:79 msgid "Credential not found." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 msgid "Credential passwords" msgstr "" #: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:60 -msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token”." +#~ msgstr "" + +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:75 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:136 +msgid "Credential to authenticate with a protected container registry." +msgstr "" + +#: screens/CredentialType/CredentialType.jsx:75 msgid "Credential type not found." msgstr "" -#: src/components/JobList/JobListItem.jsx:123 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:162 -#: src/components/LaunchPrompt/steps/useCredentialsStep.jsx:31 -#: src/components/Lookup/MultiCredentialsLookup.jsx:126 -#: src/components/Lookup/MultiCredentialsLookup.jsx:198 -#: src/components/PromptDetail/PromptDetail.jsx:163 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:178 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 -#: src/components/TemplateList/TemplateListItem.jsx:207 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 -#: src/routeConfig.js:70 -#: src/screens/ActivityStream/ActivityStream.jsx:164 -#: src/screens/Credential/CredentialList/CredentialList.jsx:182 -#: src/screens/Credential/Credentials.jsx:13 -#: src/screens/Credential/Credentials.jsx:24 -#: src/screens/Job/JobDetail/JobDetail.jsx:262 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:283 -#: src/screens/Template/shared/JobTemplateForm.jsx:321 +#: components/JobList/JobListItem.jsx:124 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:196 +#: components/LaunchPrompt/steps/useCredentialsStep.jsx:65 +#: components/Lookup/MultiCredentialsLookup.jsx:126 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/PromptDetail/PromptDetail.jsx:163 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:184 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 +#: components/TemplateList/TemplateListItem.jsx:235 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 +#: routeConfig.js:71 +#: screens/ActivityStream/ActivityStream.jsx:164 +#: screens/Credential/CredentialList/CredentialList.jsx:176 +#: screens/Credential/Credentials.jsx:13 +#: screens/Credential/Credentials.jsx:24 +#: screens/Job/JobDetail/JobDetail.jsx:293 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293 +#: screens/Template/shared/JobTemplateForm.jsx:351 +#: util/getRelatedResourceDeleteDetails.js:98 msgid "Credentials" msgstr "" -#: src/components/Pagination/Pagination.jsx:36 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:58 +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:34 msgid "Current page" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:88 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:86 msgid "Custom pod spec" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 +#: components/TemplateList/TemplateListItem.jsx:145 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93 +#: screens/Project/ProjectList/ProjectListItem.jsx:109 +msgid "Custom virtual environment {0} must be replaced by an execution environment." +msgstr "" + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:54 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 msgid "Customize messages…" msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:72 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:73 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:70 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:71 msgid "Customize pod specification" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:125 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:276 +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:314 msgid "DELETED" msgstr "" -#: src/routeConfig.js:34 -#: src/screens/Dashboard/Dashboard.jsx:122 +#: routeConfig.js:35 +#: screens/Dashboard/Dashboard.jsx:122 msgid "Dashboard" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:144 +#: screens/ActivityStream/ActivityStream.jsx:144 msgid "Dashboard (all activity)" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 msgid "Data retention period" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:353 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:457 -#: src/components/Schedule/shared/ScheduleForm.jsx:165 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/ScheduleForm.jsx:165 msgid "Day" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 -#: src/components/Schedule/shared/ScheduleForm.jsx:176 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 +#: components/Schedule/shared/ScheduleForm.jsx:176 msgid "Days of Data to Keep" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:167 +#: screens/Job/JobOutput/JobOutput.jsx:663 +msgid "Debug" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 msgid "December" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 -#: src/screens/Template/Survey/SurveyListItem.jsx:119 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 +#: screens/Template/Survey/SurveyListItem.jsx:121 msgid "Default" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:193 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:201 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:208 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:234 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +msgid "Default Execution Environment" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.jsx:201 +#: screens/Template/Survey/SurveyQuestionForm.jsx:208 +#: screens/Template/Survey/SurveyQuestionForm.jsx:234 msgid "Default answer" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:85 +#: screens/Template/Survey/SurveyQuestionForm.jsx:85 msgid "Default choice must be answered from the choices listed." msgstr "" -#: src/screens/Setting/SettingList.jsx:106 +#: screens/Setting/SettingList.jsx:106 msgid "Define system-level features and functions" msgstr "" -#: src/components/DeleteButton/DeleteButton.jsx:22 -#: src/components/DeleteButton/DeleteButton.jsx:26 -#: src/components/DeleteButton/DeleteButton.jsx:37 -#: src/components/DeleteButton/DeleteButton.jsx:41 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:108 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:130 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:137 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:141 -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:159 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:37 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:410 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:130 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:261 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:86 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:129 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:168 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:70 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:73 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:82 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:103 -#: src/screens/Job/JobDetail/JobDetail.jsx:374 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:368 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:158 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:171 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:72 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:393 -#: src/screens/Template/Survey/SurveyList.jsx:106 -#: src/screens/Template/Survey/SurveyToolbar.jsx:72 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:227 -#: src/screens/User/UserDetail/UserDetail.jsx:103 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:216 +#: components/DeleteButton/DeleteButton.jsx:76 +#: components/DeleteButton/DeleteButton.jsx:81 +#: components/DeleteButton/DeleteButton.jsx:90 +#: components/DeleteButton/DeleteButton.jsx:94 +#: components/DeleteButton/DeleteButton.jsx:114 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:287 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:140 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:74 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:101 +#: screens/Job/JobDetail/JobDetail.jsx:427 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:369 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:180 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Team/TeamDetail/TeamDetail.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:414 +#: screens/Template/Survey/SurveyList.jsx:107 +#: screens/Template/Survey/SurveyToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:254 +#: screens/User/UserDetail/UserDetail.jsx:104 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 msgid "Delete" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:129 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:128 msgid "Delete All Groups and Hosts" msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:257 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:279 msgid "Delete Credential" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 -msgid "Delete Group?" +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131 +msgid "Delete Execution Environment" msgstr "" +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:92 +#~ msgid "Delete Group?" +#~ msgstr "" + #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:91 -msgid "Delete Groups?" -msgstr "" +#~ msgid "Delete Groups?" +#~ msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:122 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:112 +#: screens/Host/HostDetail/HostDetail.jsx:123 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113 msgid "Delete Host" msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 msgid "Delete Inventory" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:371 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:186 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:189 +#: screens/Job/JobDetail/JobDetail.jsx:423 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:201 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:205 msgid "Delete Job" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 msgid "Delete Job Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:364 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:365 msgid "Delete Notification" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:154 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 msgid "Delete Organization" msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:167 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:172 msgid "Delete Project" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Questions" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:406 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 msgid "Delete Schedule" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:92 +#: screens/Template/Survey/SurveyList.jsx:92 msgid "Delete Survey" msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:68 +#: screens/Team/TeamDetail/TeamDetail.jsx:69 msgid "Delete Team" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:99 +#: screens/User/UserDetail/UserDetail.jsx:100 msgid "Delete User" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 msgid "Delete User Token" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:212 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 msgid "Delete Workflow Approval" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:246 msgid "Delete Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 msgid "Delete all nodes" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:126 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 msgid "Delete application" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:82 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 msgid "Delete credential type" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:232 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:244 msgid "Delete error" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:100 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:141 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 msgid "Delete instance group" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288 msgid "Delete inventory source" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:39 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: components/PromptDetail/PromptProjectDetail.jsx:40 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:68 msgid "Delete on Update" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:164 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 msgid "Delete smart inventory" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 -msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +msgid "" +"Delete the local repository in its entirety prior to\n" +"performing an update. Depending on the size of the\n" +"repository this may significantly increase the amount\n" +"of time required to complete an update." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 +#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +#~ msgid "Delete the local repository in its entirety prior to performing an update. Depending on the size of the repository this may significantly increase the amount of time required to complete an update." +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 msgid "Delete this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:227 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:233 msgid "Delete this node" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:113 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162 msgid "Delete {pluralizedItemName}?" msgstr "" -#: src/components/DetailList/DeletedDetail.jsx:15 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 +#: components/DetailList/DeletedDetail.jsx:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 msgid "Deleted" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:259 -#: src/screens/Credential/CredentialList/CredentialList.jsx:190 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:245 -#: src/screens/Project/ProjectList/ProjectList.jsx:223 +#: components/TemplateList/TemplateList.jsx:269 +#: screens/Credential/CredentialList/CredentialList.jsx:189 +#: screens/Inventory/InventoryList/InventoryList.jsx:255 +#: screens/Project/ProjectList/ProjectList.jsx:233 msgid "Deletion Error" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:195 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:252 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259 msgid "Deletion error" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 msgid "Denied" msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 msgid "Denied by {0} - {1}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:198 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:203 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:54 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:58 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:59 msgid "Deny" msgstr "" -#: src/components/HostForm/HostForm.jsx:95 -#: src/components/Lookup/ApplicationLookup.jsx:83 -#: src/components/Lookup/ApplicationLookup.jsx:101 -#: src/components/NotificationList/NotificationList.jsx:186 -#: src/components/PromptDetail/PromptDetail.jsx:110 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:197 -#: src/components/Schedule/shared/ScheduleForm.jsx:110 -#: src/components/TemplateList/TemplateList.jsx:189 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:126 -#: src/screens/Application/shared/ApplicationForm.jsx:62 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:198 -#: src/screens/Credential/CredentialList/CredentialList.jsx:137 -#: src/screens/Credential/shared/CredentialForm.jsx:126 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:45 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:128 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:32 -#: src/screens/Host/HostDetail/HostDetail.jsx:81 -#: src/screens/Host/HostList/HostList.jsx:152 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:73 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:172 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:191 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 -#: src/screens/Inventory/shared/InventoryForm.jsx:55 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:49 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:110 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:61 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:126 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:89 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:138 -#: src/screens/Organization/shared/OrganizationForm.jsx:60 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:86 -#: src/screens/Project/ProjectList/ProjectList.jsx:138 -#: src/screens/Project/shared/ProjectForm.jsx:168 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:38 -#: src/screens/Team/TeamList/TeamList.jsx:134 -#: src/screens/Team/shared/TeamForm.jsx:43 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:168 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:124 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:109 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:133 -#: src/screens/Template/shared/JobTemplateForm.jsx:208 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:107 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:48 -#: src/screens/User/UserTokenList/UserTokenList.jsx:116 -#: src/screens/User/shared/UserTokenForm.jsx:59 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 +#: screens/Job/JobOutput/JobOutput.jsx:665 +msgid "Deprecated" +msgstr "" + +#: components/HostForm/HostForm.jsx:95 +#: components/Lookup/ApplicationLookup.jsx:83 +#: components/Lookup/ApplicationLookup.jsx:101 +#: components/NotificationList/NotificationList.jsx:186 +#: components/PromptDetail/PromptDetail.jsx:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 +#: components/Schedule/ScheduleList/ScheduleList.jsx:197 +#: components/Schedule/shared/ScheduleForm.jsx:110 +#: components/TemplateList/TemplateList.jsx:194 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/shared/ApplicationForm.jsx:62 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211 +#: screens/Credential/CredentialList/CredentialList.jsx:129 +#: screens/Credential/shared/CredentialForm.jsx:126 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/Host/HostDetail/HostDetail.jsx:81 +#: screens/Host/HostList/HostList.jsx:152 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 +#: screens/Inventory/InventoryList/InventoryList.jsx:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 +#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryGroupForm.jsx:49 +#: screens/Inventory/shared/InventorySourceForm.jsx:113 +#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 +#: screens/Organization/OrganizationList/OrganizationList.jsx:142 +#: screens/Organization/shared/OrganizationForm.jsx:68 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 +#: screens/Project/ProjectList/ProjectList.jsx:143 +#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Team/TeamDetail/TeamDetail.jsx:38 +#: screens/Team/TeamList/TeamList.jsx:134 +#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 +#: screens/Template/Survey/SurveyQuestionForm.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:163 +#: screens/Template/shared/JobTemplateForm.jsx:215 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:118 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 +#: screens/User/UserTokenList/UserTokenList.jsx:116 +#: screens/User/shared/UserTokenForm.jsx:59 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 msgid "Description" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 msgid "Destination Channels" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 msgid "Destination Channels or Users" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 msgid "Destination SMS Number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 msgid "Destination SMS number(s)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 msgid "Destination channels" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 msgid "Destination channels or users" msgstr "" -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 msgid "Detail coming soon :)" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:60 -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:70 -#: src/components/ErrorDetail/ErrorDetail.jsx:73 -#: src/components/Schedule/Schedule.jsx:67 -#: src/screens/Application/Application/Application.jsx:77 -#: src/screens/Application/Applications.jsx:39 -#: src/screens/Credential/Credential.jsx:58 -#: src/screens/Credential/Credentials.jsx:28 -#: src/screens/CredentialType/CredentialType.jsx:62 -#: src/screens/CredentialType/CredentialTypes.jsx:29 -#: src/screens/Host/Host.jsx:52 -#: src/screens/Host/Hosts.jsx:29 -#: src/screens/InstanceGroup/ContainerGroup.jsx:63 -#: src/screens/InstanceGroup/InstanceGroup.jsx:64 -#: src/screens/InstanceGroup/InstanceGroups.jsx:33 -#: src/screens/InstanceGroup/InstanceGroups.jsx:42 -#: src/screens/Inventory/Inventories.jsx:60 -#: src/screens/Inventory/Inventories.jsx:104 -#: src/screens/Inventory/Inventory.jsx:62 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:73 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:88 -#: src/screens/Inventory/SmartInventory.jsx:69 -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 -#: src/screens/Job/Job.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:113 -#: src/screens/Job/Jobs.jsx:29 -#: src/screens/ManagementJob/ManagementJobs.jsx:29 -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:83 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:27 -#: src/screens/Organization/Organization.jsx:122 -#: src/screens/Organization/Organizations.jsx:31 -#: src/screens/Project/Project.jsx:105 -#: src/screens/Project/Projects.jsx:29 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:111 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 -#: src/screens/Setting/Settings.jsx:45 -#: src/screens/Setting/Settings.jsx:48 -#: src/screens/Setting/Settings.jsx:52 -#: src/screens/Setting/Settings.jsx:55 -#: src/screens/Setting/Settings.jsx:58 -#: src/screens/Setting/Settings.jsx:61 -#: src/screens/Setting/Settings.jsx:66 -#: src/screens/Setting/Settings.jsx:69 -#: src/screens/Setting/Settings.jsx:72 -#: src/screens/Setting/Settings.jsx:75 -#: src/screens/Setting/Settings.jsx:84 -#: src/screens/Setting/Settings.jsx:85 -#: src/screens/Setting/Settings.jsx:86 -#: src/screens/Setting/Settings.jsx:87 -#: src/screens/Setting/Settings.jsx:88 -#: src/screens/Setting/Settings.jsx:89 -#: src/screens/Setting/Settings.jsx:98 -#: src/screens/Setting/Settings.jsx:101 -#: src/screens/Setting/Settings.jsx:104 -#: src/screens/Setting/Settings.jsx:107 -#: src/screens/Setting/Settings.jsx:110 -#: src/screens/Setting/Settings.jsx:113 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:46 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:55 -#: src/screens/Team/Team.jsx:55 -#: src/screens/Team/Teams.jsx:29 -#: src/screens/Template/Template.jsx:131 -#: src/screens/Template/Templates.jsx:44 -#: src/screens/Template/WorkflowJobTemplate.jsx:121 -#: src/screens/User/User.jsx:63 -#: src/screens/User/UserToken/UserToken.jsx:54 -#: src/screens/User/Users.jsx:31 -#: src/screens/User/Users.jsx:41 -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:76 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:21 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:60 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:70 +#: components/ErrorDetail/ErrorDetail.jsx:73 +#: components/Schedule/Schedule.jsx:68 +#: screens/Application/Application/Application.jsx:77 +#: screens/Application/Applications.jsx:39 +#: screens/Credential/Credential.jsx:58 +#: screens/Credential/Credentials.jsx:28 +#: screens/CredentialType/CredentialType.jsx:62 +#: screens/CredentialType/CredentialTypes.jsx:29 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:30 +#: screens/Host/Host.jsx:52 +#: screens/Host/Hosts.jsx:29 +#: screens/InstanceGroup/ContainerGroup.jsx:63 +#: screens/InstanceGroup/InstanceGroup.jsx:64 +#: screens/InstanceGroup/InstanceGroups.jsx:33 +#: screens/InstanceGroup/InstanceGroups.jsx:42 +#: screens/Inventory/Inventories.jsx:60 +#: screens/Inventory/Inventories.jsx:102 +#: screens/Inventory/Inventory.jsx:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 +#: screens/Inventory/InventorySource/InventorySource.jsx:88 +#: screens/Inventory/SmartInventory.jsx:69 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 +#: screens/Job/Job.jsx:103 +#: screens/Job/JobOutput/HostEventModal.jsx:113 +#: screens/Job/Jobs.jsx:29 +#: screens/ManagementJob/ManagementJobs.jsx:29 +#: screens/NotificationTemplate/NotificationTemplate.jsx:83 +#: screens/NotificationTemplate/NotificationTemplates.jsx:27 +#: screens/Organization/Organization.jsx:123 +#: screens/Organization/Organizations.jsx:31 +#: screens/Project/Project.jsx:105 +#: screens/Project/Projects.jsx:29 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:115 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 +#: screens/Setting/Settings.jsx:45 +#: screens/Setting/Settings.jsx:48 +#: screens/Setting/Settings.jsx:52 +#: screens/Setting/Settings.jsx:55 +#: screens/Setting/Settings.jsx:58 +#: screens/Setting/Settings.jsx:61 +#: screens/Setting/Settings.jsx:66 +#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.jsx:72 +#: screens/Setting/Settings.jsx:75 +#: screens/Setting/Settings.jsx:84 +#: screens/Setting/Settings.jsx:85 +#: screens/Setting/Settings.jsx:86 +#: screens/Setting/Settings.jsx:87 +#: screens/Setting/Settings.jsx:88 +#: screens/Setting/Settings.jsx:89 +#: screens/Setting/Settings.jsx:98 +#: screens/Setting/Settings.jsx:101 +#: screens/Setting/Settings.jsx:104 +#: screens/Setting/Settings.jsx:107 +#: 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/Team/Team.jsx:55 +#: screens/Team/Teams.jsx:29 +#: screens/Template/Template.jsx:144 +#: screens/Template/Templates.jsx:44 +#: screens/Template/WorkflowJobTemplate.jsx:121 +#: screens/User/User.jsx:63 +#: screens/User/UserToken/UserToken.jsx:54 +#: screens/User/Users.jsx:31 +#: screens/User/Users.jsx:41 +#: screens/WorkflowApproval/WorkflowApproval.jsx:76 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:21 msgid "Details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:111 +#: screens/Job/JobOutput/HostEventModal.jsx:111 msgid "Details tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 msgid "Disable SSL Verification" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 msgid "Disable SSL verification" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:60 -#: src/components/DisassociateButton/DisassociateButton.jsx:87 -#: src/components/DisassociateButton/DisassociateButton.jsx:94 -#: src/components/DisassociateButton/DisassociateButton.jsx:98 -#: src/components/DisassociateButton/DisassociateButton.jsx:117 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:204 -#: src/screens/User/UserRoles/UserRolesList.jsx:204 +#: components/DisassociateButton/DisassociateButton.jsx:60 +#: components/DisassociateButton/DisassociateButton.jsx:87 +#: components/DisassociateButton/DisassociateButton.jsx:95 +#: components/DisassociateButton/DisassociateButton.jsx:99 +#: components/DisassociateButton/DisassociateButton.jsx:119 +#: screens/Team/TeamRoles/TeamRolesList.jsx:205 +#: screens/User/UserRoles/UserRolesList.jsx:205 msgid "Disassociate" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:211 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 +#: screens/Host/HostGroups/HostGroupsList.jsx:211 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 msgid "Disassociate group from host?" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 msgid "Disassociate host from group?" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:191 +#: screens/InstanceGroup/Instances/InstanceList.jsx:191 msgid "Disassociate instance from instance group?" msgstr "" -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 msgid "Disassociate related group(s)?" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:212 +#: screens/User/UserTeams/UserTeamList.jsx:212 msgid "Disassociate related team(s)?" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:192 -#: src/screens/User/UserRoles/UserRolesList.jsx:192 +#: screens/Team/TeamRoles/TeamRolesList.jsx:192 +#: screens/User/UserRoles/UserRolesList.jsx:192 msgid "Disassociate role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:195 -#: src/screens/User/UserRoles/UserRolesList.jsx:195 +#: screens/Team/TeamRoles/TeamRolesList.jsx:195 +#: screens/User/UserRoles/UserRolesList.jsx:195 msgid "Disassociate role!" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:19 +#: components/DisassociateButton/DisassociateButton.jsx:19 msgid "Disassociate?" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:429 -msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#: screens/Template/shared/JobTemplateForm.jsx:459 +msgid "" +"Divide the work done by this job template\n" +"into the specified number of job slices, each running the\n" +"same tasks against a portion of the inventory." msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:161 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:163 +#: src/screens/Template/shared/JobTemplateForm.jsx:429 +#~ msgid "Divide the work done by this job template into the specified number of job slices, each running the same tasks against a portion of the inventory." +#~ msgstr "" + +#: components/CodeEditor/VariablesDetail.jsx:114 +#: components/CodeEditor/VariablesDetail.jsx:120 +#: components/CodeEditor/VariablesField.jsx:63 +#: components/CodeEditor/VariablesField.jsx:69 +msgid "Done" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:172 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:177 msgid "Download Output" msgstr "" -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 msgid "E-mail" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 msgid "E-mail options" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:220 +#: screens/Template/Survey/SurveyQuestionForm.jsx:220 msgid "Each answer choice must be on a separate line." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175 +msgid "" +"Each time a job runs using this inventory,\n" +"refresh the inventory from the selected source before\n" +"executing job tasks." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:158 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:168 -msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgid "Each time a job runs using this inventory, refresh the inventory from the selected source before executing job tasks." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 +msgid "" +"Each time a job runs using this project, update the\n" +"revision of the project prior to starting the job." msgstr "" #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 -msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." -msgstr "" +#~ msgid "Each time a job runs using this project, update the revision of the project prior to starting the job." +#~ msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:396 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:400 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:117 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:119 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:251 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:75 -#: src/screens/Host/HostDetail/HostDetail.jsx:116 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:120 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:60 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:67 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:106 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:270 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:158 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:355 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:357 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:125 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:143 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:147 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:158 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:87 -#: src/screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:79 -#: src/screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:142 -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:79 -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:96 -#: src/screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:160 -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:14 -#: src/screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:100 -#: src/screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:141 -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:79 -#: src/screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:80 -#: src/screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 -#: src/screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:94 -#: src/screens/Setting/UI/UIDetail/UIDetail.jsx:99 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:57 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:61 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:371 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:373 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:205 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:207 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:207 -#: src/screens/User/UserDetail/UserDetail.jsx:92 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125 +#: screens/Host/HostDetail/HostDetail.jsx:117 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:137 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:163 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:15 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:150 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Team/TeamDetail/TeamDetail.jsx:58 +#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 +#: screens/User/UserDetail/UserDetail.jsx:93 msgid "Edit" msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:64 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:67 +#: screens/Credential/CredentialList/CredentialListItem.jsx:64 +#: screens/Credential/CredentialList/CredentialListItem.jsx:68 msgid "Edit Credential" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:37 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:41 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:38 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:43 msgid "Edit Credential Plugin Configuration" msgstr "" -#: src/screens/Application/Applications.jsx:38 -#: src/screens/Credential/Credentials.jsx:27 -#: src/screens/Host/Hosts.jsx:28 -#: src/screens/ManagementJob/ManagementJobs.jsx:32 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:26 -#: src/screens/Organization/Organizations.jsx:30 -#: src/screens/Project/Projects.jsx:28 -#: src/screens/Project/Projects.jsx:40 -#: src/screens/Setting/Settings.jsx:46 -#: src/screens/Setting/Settings.jsx:49 -#: src/screens/Setting/Settings.jsx:53 -#: src/screens/Setting/Settings.jsx:56 -#: src/screens/Setting/Settings.jsx:59 -#: src/screens/Setting/Settings.jsx:62 -#: src/screens/Setting/Settings.jsx:67 -#: src/screens/Setting/Settings.jsx:70 -#: src/screens/Setting/Settings.jsx:73 -#: src/screens/Setting/Settings.jsx:76 -#: src/screens/Setting/Settings.jsx:90 -#: src/screens/Setting/Settings.jsx:91 -#: src/screens/Setting/Settings.jsx:92 -#: src/screens/Setting/Settings.jsx:93 -#: src/screens/Setting/Settings.jsx:94 -#: src/screens/Setting/Settings.jsx:95 -#: src/screens/Setting/Settings.jsx:99 -#: src/screens/Setting/Settings.jsx:102 -#: src/screens/Setting/Settings.jsx:105 -#: src/screens/Setting/Settings.jsx:108 -#: src/screens/Setting/Settings.jsx:111 -#: src/screens/Setting/Settings.jsx:114 -#: src/screens/Team/Teams.jsx:28 -#: src/screens/Template/Templates.jsx:45 -#: src/screens/User/Users.jsx:30 +#: screens/Application/Applications.jsx:38 +#: screens/Credential/Credentials.jsx:27 +#: screens/Host/Hosts.jsx:28 +#: screens/ManagementJob/ManagementJobs.jsx:32 +#: screens/NotificationTemplate/NotificationTemplates.jsx:26 +#: screens/Organization/Organizations.jsx:30 +#: screens/Project/Projects.jsx:28 +#: screens/Project/Projects.jsx:40 +#: screens/Setting/Settings.jsx:46 +#: screens/Setting/Settings.jsx:49 +#: screens/Setting/Settings.jsx:53 +#: screens/Setting/Settings.jsx:56 +#: screens/Setting/Settings.jsx:59 +#: screens/Setting/Settings.jsx:62 +#: screens/Setting/Settings.jsx:67 +#: screens/Setting/Settings.jsx:70 +#: screens/Setting/Settings.jsx:73 +#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.jsx:90 +#: screens/Setting/Settings.jsx:91 +#: screens/Setting/Settings.jsx:92 +#: screens/Setting/Settings.jsx:93 +#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.jsx:95 +#: screens/Setting/Settings.jsx:99 +#: screens/Setting/Settings.jsx:102 +#: screens/Setting/Settings.jsx:105 +#: screens/Setting/Settings.jsx:108 +#: screens/Setting/Settings.jsx:111 +#: screens/Setting/Settings.jsx:114 +#: screens/Team/Teams.jsx:28 +#: screens/Template/Templates.jsx:45 +#: screens/User/Users.jsx:30 msgid "Edit Details" msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:50 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:58 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:66 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:85 +msgid "Edit Execution Environment" +msgstr "" + +#: screens/Host/HostGroups/HostGroupItem.jsx:50 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:59 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:67 msgid "Edit Group" msgstr "" -#: src/screens/Host/HostList/HostListItem.jsx:52 -#: src/screens/Host/HostList/HostListItem.jsx:55 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:77 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 +#: screens/Host/HostList/HostListItem.jsx:52 +#: screens/Host/HostList/HostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:78 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 msgid "Edit Host" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:115 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:119 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:115 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:120 msgid "Edit Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 msgid "Edit Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:56 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:204 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 msgid "Edit Node" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:137 msgid "Edit Notification Template" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:47 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:50 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:74 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:78 msgid "Edit Organization" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:134 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:138 +#: screens/Project/ProjectList/ProjectListItem.jsx:161 +#: screens/Project/ProjectList/ProjectListItem.jsx:166 msgid "Edit Project" msgstr "" -#: src/screens/Template/Templates.jsx:51 +#: screens/Template/Templates.jsx:51 msgid "Edit Question" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:116 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:119 -#: src/screens/Template/Templates.jsx:58 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:116 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:120 +#: screens/Template/Templates.jsx:58 msgid "Edit Schedule" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:98 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:126 msgid "Edit Source" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:42 -#: src/screens/Team/TeamList/TeamListItem.jsx:57 -#: src/screens/Team/TeamList/TeamListItem.jsx:60 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 +#: screens/Team/TeamList/TeamListItem.jsx:57 +#: screens/Team/TeamList/TeamListItem.jsx:61 msgid "Edit Team" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:167 -#: src/components/TemplateList/TemplateListItem.jsx:172 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:109 +#: components/TemplateList/TemplateListItem.jsx:194 +#: components/TemplateList/TemplateListItem.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:133 msgid "Edit Template" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:82 -#: src/screens/User/UserList/UserListItem.jsx:85 +#: screens/User/UserList/UserListItem.jsx:82 +#: screens/User/UserList/UserListItem.jsx:86 msgid "Edit User" msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:50 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:53 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:50 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:54 msgid "Edit application" msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:43 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:44 msgid "Edit credential type" msgstr "" -#: src/screens/CredentialType/CredentialTypes.jsx:27 -#: src/screens/InstanceGroup/InstanceGroups.jsx:38 -#: src/screens/InstanceGroup/InstanceGroups.jsx:48 -#: src/screens/Inventory/Inventories.jsx:61 -#: src/screens/Inventory/Inventories.jsx:67 -#: src/screens/Inventory/Inventories.jsx:82 -#: src/screens/Inventory/Inventories.jsx:107 +#: screens/CredentialType/CredentialTypes.jsx:27 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:27 +#: screens/InstanceGroup/InstanceGroups.jsx:38 +#: screens/InstanceGroup/InstanceGroups.jsx:48 +#: screens/Inventory/Inventories.jsx:61 +#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.jsx:105 msgid "Edit details" msgstr "" -#: src/screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 msgid "Edit form coming soon :)" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:108 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:109 msgid "Edit instance group" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 msgid "Edit this link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:199 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:205 msgid "Edit this node" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:146 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:123 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +#: components/Workflow/WorkflowNodeHelp.jsx:146 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:130 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 msgid "Elapsed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:122 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:129 msgid "Elapsed Time" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:124 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:131 msgid "Elapsed time that the job ran" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:193 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 -#: src/screens/User/UserDetail/UserDetail.jsx:64 -#: src/screens/User/shared/UserForm.jsx:77 +#: components/NotificationList/NotificationList.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 +#: screens/User/UserDetail/UserDetail.jsx:64 +#: screens/User/shared/UserForm.jsx:77 msgid "Email" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 msgid "Email Options" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:63 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:128 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:240 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:265 msgid "Enable Concurrent Jobs" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:557 +#: screens/Template/shared/JobTemplateForm.jsx:587 msgid "Enable Fact Storage" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 msgid "Enable HTTPS certificate verification" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:57 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 msgid "Enable Privilege Escalation" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:531 -#: src/screens/Template/shared/JobTemplateForm.jsx:534 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:216 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:219 +#: screens/Template/shared/JobTemplateForm.jsx:561 +#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 msgid "Enable Webhook" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:223 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 msgid "Enable Webhook for this workflow job template." msgstr "" -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 msgid "Enable Webhooks" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 msgid "Enable external logging" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 msgid "Enable log system tracking facts individually" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:236 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:239 +#: components/AdHocCommands/AdHocDetailsStep.jsx:236 +#: components/AdHocCommands/AdHocDetailsStep.jsx:239 msgid "Enable privilege escalation" msgstr "" -#: src/screens/Setting/SettingList.jsx:57 +#: screens/Setting/SettingList.jsx:57 msgid "Enable simplified login for your {brandName} applications" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:537 +#: screens/Template/shared/JobTemplateForm.jsx:567 msgid "Enable webhook for this template." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:94 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 +#: components/Lookup/HostFilterLookup.jsx:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 msgid "Enabled" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:232 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:224 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267 msgid "Enabled Value" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:231 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254 msgid "Enabled Variable" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:517 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#: screens/Template/shared/JobTemplateForm.jsx:547 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact BRAND_NAME\n" +"and request a configuration update using this job\n" +"template." msgstr "" +#: components/AdHocCommands/AdHocDetailsStep.jsx:244 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact {brandName}\n" +"and request a configuration update using this job\n" +"template" +msgstr "" + +#: src/screens/Template/shared/JobTemplateForm.jsx:517 +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact BRAND_NAME and request a configuration update using this job template." +#~ msgstr "" + #: src/components/AdHocCommands/AdHocDetailsStep.jsx:244 -msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" -msgstr "" +#~ msgid "Enables creation of a provisioning callback URL. Using the URL a host can contact {brandName} and request a configuration update using this job template" +#~ msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:149 -#: src/screens/Setting/shared/SettingDetail.jsx:75 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:154 +#: screens/Setting/shared/SettingDetail.jsx:75 msgid "Encrypted" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:504 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 msgid "End" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:562 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 msgid "End date/time" msgstr "" -#: src/components/Schedule/shared/buildRuleObj.js:96 +#: components/Schedule/shared/buildRuleObj.js:96 msgid "End did not match an expected value" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:31 +#: screens/Host/HostList/SmartInventoryButton.jsx:31 msgid "Enter at least one search filter to create a new Smart Inventory" msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:49 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:39 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:39 msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:85 +#: screens/Inventory/shared/SmartInventoryForm.jsx:100 +msgid "" +"Enter inventory variables using either JSON or YAML syntax.\n" +"Use the radio button to toggle between the two. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: screens/Inventory/shared/InventoryForm.jsx:85 msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" msgstr "" #: src/screens/Inventory/shared/SmartInventoryForm.jsx:100 -msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." -msgstr "" +#~ msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 msgid "Enter one Annotation Tag per line, without commas." msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +msgid "" +"Enter one IRC channel or username per line. The pound\n" +"symbol (#) for channels, and the at (@) symbol for users, are not\n" +"required." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 -msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgid "Enter one IRC channel or username per line. The pound symbol (#) for channels, and the at (@) symbol for users, are not required." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +msgid "" +"Enter one Slack channel per line. The pound symbol (#)\n" +"is required for channels." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 -msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgid "Enter one Slack channel per line. The pound symbol (#) is required for channels." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +msgid "" +"Enter one email address per line to create a recipient\n" +"list for this type of notification." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 -msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgid "Enter one email address per line to create a recipient list for this type of notification." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +msgid "" +"Enter one phone number per line to specify where to\n" +"route SMS messages." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 -msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgid "Enter one phone number per line to specify where to route SMS messages." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +msgid "" +"Enter the number associated with the \"Messaging\n" +"Service\" in Twilio in the format +18005550199." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 -msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." -msgstr "" +#~ msgid "Enter the number associated with the \"Messaging Service\" in Twilio in the format +18005550199." +#~ msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:37 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." msgstr "" #: src/screens/Job/JobDetail/JobDetail.jsx:224 -msgid "Environment" -msgstr "" +#~ msgid "Environment" +#~ msgstr "" -#: src/components/JobList/JobList.jsx:227 -#: src/components/Workflow/WorkflowNodeHelp.jsx:92 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:198 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:255 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/JobList/JobList.jsx:205 +#: components/Workflow/WorkflowNodeHelp.jsx:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:161 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262 +#: screens/Job/JobOutput/JobOutput.jsx:668 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Error" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:431 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:432 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 msgid "Error message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:440 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:441 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 msgid "Error message body" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:98 -#: src/components/AppContainer/AppContainer.jsx:215 -#: src/components/CopyButton/CopyButton.jsx:49 -#: src/components/HostToggle/HostToggle.jsx:73 -#: src/components/InstanceToggle/InstanceToggle.jsx:69 -#: src/components/JobList/JobList.jsx:288 -#: src/components/JobList/JobList.jsx:299 -#: src/components/LaunchButton/LaunchButton.jsx:150 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:66 -#: src/components/NotificationList/NotificationList.jsx:248 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:234 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:418 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:241 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:77 -#: src/components/TemplateList/TemplateList.jsx:262 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:138 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:191 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:269 -#: src/screens/Credential/CredentialList/CredentialList.jsx:193 -#: src/screens/Host/HostDetail/HostDetail.jsx:60 -#: src/screens/Host/HostDetail/HostDetail.jsx:131 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:243 -#: src/screens/Host/HostList/HostList.jsx:222 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:232 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:138 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:83 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:121 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:246 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:289 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:222 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:235 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:177 -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:149 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:84 -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:95 -#: src/screens/Login/Login.jsx:270 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:376 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:206 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:199 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:180 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 -#: src/screens/Project/ProjectList/ProjectList.jsx:224 -#: src/screens/Project/shared/ProjectSyncButton.jsx:40 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:80 -#: src/screens/Team/TeamList/TeamList.jsx:205 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:229 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:402 -#: src/screens/Template/TemplateSurvey.jsx:126 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:235 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:164 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:179 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:291 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:586 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:293 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:304 -#: src/screens/User/UserDetail/UserDetail.jsx:111 -#: src/screens/User/UserList/UserList.jsx:197 -#: src/screens/User/UserRoles/UserRolesList.jsx:229 -#: src/screens/User/UserTeams/UserTeamList.jsx:257 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:89 -#: src/screens/User/UserTokenList/UserTokenList.jsx:191 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:235 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:246 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:596 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:598 +msgid "Error saving the workflow!" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:98 +#: components/AppContainer/AppContainer.jsx:214 +#: components/CopyButton/CopyButton.jsx:51 +#: components/DeleteButton/DeleteButton.jsx:57 +#: components/HostToggle/HostToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:69 +#: components/JobList/JobList.jsx:266 +#: components/JobList/JobList.jsx:277 +#: components/LaunchButton/LaunchButton.jsx:162 +#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/NotificationList/NotificationList.jsx:248 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204 +#: components/ResourceAccessList/ResourceAccessList.jsx:236 +#: components/ResourceAccessList/ResourceAccessList.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419 +#: components/Schedule/ScheduleList/ScheduleList.jsx:241 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 +#: components/Schedule/shared/SchedulePromptableFields.jsx:77 +#: components/TemplateList/TemplateList.jsx:272 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:139 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialList/CredentialList.jsx:192 +#: screens/Host/HostDetail/HostDetail.jsx:60 +#: screens/Host/HostDetail/HostDetail.jsx:132 +#: screens/Host/HostGroups/HostGroupsList.jsx:243 +#: screens/Host/HostList/HostList.jsx:222 +#: screens/InstanceGroup/Instances/InstanceList.jsx:232 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:148 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:84 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 +#: screens/Inventory/InventoryList/InventoryList.jsx:256 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:234 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:247 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:97 +#: screens/Login/Login.jsx:184 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:377 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:189 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 +#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/shared/ProjectSyncButton.jsx:41 +#: screens/Team/TeamDetail/TeamDetail.jsx:81 +#: screens/Team/TeamList/TeamList.jsx:205 +#: screens/Team/TeamRoles/TeamRolesList.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:423 +#: screens/Template/TemplateSurvey.jsx:126 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:331 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:342 +#: screens/User/UserDetail/UserDetail.jsx:112 +#: screens/User/UserList/UserList.jsx:197 +#: screens/User/UserRoles/UserRolesList.jsx:231 +#: screens/User/UserTeams/UserTeamList.jsx:257 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 +#: screens/User/UserTokenList/UserTokenList.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 msgid "Error!" msgstr "" -#: src/components/CodeMirrorInput/VariablesDetail.jsx:115 +#: components/CodeEditor/VariablesDetail.jsx:103 msgid "Error:" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:252 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/ActivityStream/ActivityStream.jsx:258 +#: screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/Job/JobOutput/JobOutput.jsx:635 msgid "Event" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:34 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 msgid "Event detail" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 msgid "Event detail modal" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:564 +#: screens/ActivityStream/ActivityStreamDescription.jsx:564 msgid "Event summary not available" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:221 +#: screens/ActivityStream/ActivityStream.jsx:227 msgid "Events" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:159 +#: components/Search/AdvancedSearch.jsx:160 msgid "Exact match (default lookup if not specified)." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 msgid "Example URLs for GIT Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 msgid "Example URLs for Remote Archive Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 msgid "Example URLs for Subversion Source Control include:" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 msgid "Examples include:" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 msgid "Execute regardless of the parent node's final state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 msgid "Execute when the parent node results in a failure state." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 msgid "Execute when the parent node results in a successful state." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:225 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:135 +msgid "Execution Environment" +msgstr "" + +#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: routeConfig.js:143 +#: screens/ActivityStream/ActivityStream.jsx:210 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/Organization/Organization.jsx:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 +#: screens/Organization/Organizations.jsx:38 +#: util/getRelatedResourceDeleteDetails.js:88 +#: util/getRelatedResourceDeleteDetails.js:212 +msgid "Execution Environments" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:256 msgid "Execution Node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:22 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:25 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:41 +msgid "Execution environment image" +msgstr "" + +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:33 +msgid "Execution environment name" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +msgid "Execution environment not found." +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +msgid "Execution environments" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 msgid "Exit Without Saving" msgstr "" -#: src/components/ExpandCollapse/ExpandCollapse.jsx:50 +#: components/ExpandCollapse/ExpandCollapse.jsx:52 msgid "Expand" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 +#: components/CodeEditor/VariablesDetail.jsx:214 +#: components/CodeEditor/VariablesField.jsx:165 +msgid "Expand input" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 msgid "Expected at least one of client_email, project_id or private_key to be present in the file." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:65 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 +#: screens/User/UserTokenList/UserTokenListItem.jsx:65 msgid "Expiration" msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:58 -#: src/screens/User/UserTokenList/UserTokenList.jsx:130 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:66 -#: src/screens/User/UserTokens/UserTokens.jsx:90 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 +#: screens/User/UserTokenList/UserTokenList.jsx:130 +#: screens/User/UserTokenList/UserTokenListItem.jsx:66 +#: screens/User/UserTokens/UserTokens.jsx:90 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 msgid "Expires" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 msgid "Expires on {0}" msgstr "" -#: src/components/JobList/JobListItem.jsx:167 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +#: components/JobList/JobListItem.jsx:168 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 msgid "Explanation" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:112 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:116 msgid "External Secret Management System" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:309 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:310 +#: components/AdHocCommands/AdHocDetailsStep.jsx:309 +#: components/AdHocCommands/AdHocDetailsStep.jsx:310 msgid "Extra variables" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:35 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:39 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:61 +#: components/Sparkline/Sparkline.jsx:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49 +#: screens/Project/ProjectList/ProjectListItem.jsx:69 msgid "FINISHED:" msgstr "" -#: src/screens/Host/Host.jsx:57 -#: src/screens/Host/HostFacts/HostFacts.jsx:39 -#: src/screens/Host/Hosts.jsx:30 -#: src/screens/Inventory/Inventories.jsx:75 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:78 -#: src/screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +#: screens/Host/Host.jsx:57 +#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/Hosts.jsx:30 +#: screens/Inventory/Inventories.jsx:73 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 msgid "Facts" msgstr "" -#: src/components/JobList/JobList.jsx:226 -#: src/components/Workflow/WorkflowNodeHelp.jsx:89 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:47 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:111 +#: components/JobList/JobList.jsx:204 +#: components/Workflow/WorkflowNodeHelp.jsx:89 +#: screens/Dashboard/shared/ChartTooltip.jsx:66 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:118 msgid "Failed" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:110 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:117 msgid "Failed Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:112 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:119 msgid "Failed Hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:50 -#: src/screens/Dashboard/Dashboard.jsx:135 +#: components/LaunchButton/ReLaunchDropDown.jsx:50 +#: screens/Dashboard/Dashboard.jsx:135 msgid "Failed hosts" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 msgid "Failed to approve one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:238 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 msgid "Failed to approve workflow approval." msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:240 +msgid "Failed to assign roles properly" +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 msgid "Failed to associate role" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:247 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:236 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 -#: src/screens/User/UserTeams/UserTeamList.jsx:261 +#: screens/Host/HostGroups/HostGroupsList.jsx:247 +#: screens/InstanceGroup/Instances/InstanceList.jsx:236 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 +#: screens/User/UserTeams/UserTeamList.jsx:261 msgid "Failed to associate." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:98 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:100 msgid "Failed to cancel inventory source sync." msgstr "" -#: src/components/JobList/JobList.jsx:302 +#: components/JobList/JobList.jsx:280 msgid "Failed to cancel one or more jobs." msgstr "" -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:84 +#: screens/Credential/CredentialList/CredentialListItem.jsx:85 msgid "Failed to copy credential." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:142 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:103 +msgid "Failed to copy execution environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:143 msgid "Failed to copy inventory." msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/ProjectList/ProjectListItem.jsx:183 msgid "Failed to copy project." msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:186 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:145 +#: components/TemplateList/TemplateListItem.jsx:214 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:155 msgid "Failed to copy template." msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:141 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:142 msgid "Failed to delete application." msgstr "" -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:298 msgid "Failed to delete credential." msgstr "" -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:87 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:88 msgid "Failed to delete group {0}." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:134 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:124 +#: screens/Host/HostDetail/HostDetail.jsx:135 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:125 msgid "Failed to delete host." msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:293 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306 msgid "Failed to delete inventory source {name}." msgstr "" -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:141 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:151 msgid "Failed to delete inventory." msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:405 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:426 msgid "Failed to delete job template." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:379 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:380 msgid "Failed to delete notification." msgstr "" -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:194 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 msgid "Failed to delete one or more applications." msgstr "" -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:201 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 msgid "Failed to delete one or more credential types." msgstr "" -#: src/screens/Credential/CredentialList/CredentialList.jsx:196 +#: screens/Credential/CredentialList/CredentialList.jsx:195 msgid "Failed to delete one or more credentials." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:152 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 +msgid "Failed to delete one or more execution environments" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:151 msgid "Failed to delete one or more groups." msgstr "" -#: src/screens/Host/HostList/HostList.jsx:225 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 +#: screens/Host/HostList/HostList.jsx:225 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 msgid "Failed to delete one or more hosts." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:258 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 msgid "Failed to delete one or more instance groups." msgstr "" -#: src/screens/Inventory/InventoryList/InventoryList.jsx:249 +#: screens/Inventory/InventoryList/InventoryList.jsx:259 msgid "Failed to delete one or more inventories." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:238 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:250 msgid "Failed to delete one or more inventory sources." msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 msgid "Failed to delete one or more job templates." msgstr "" -#: src/components/JobList/JobList.jsx:291 +#: components/JobList/JobList.jsx:269 msgid "Failed to delete one or more jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 msgid "Failed to delete one or more notification template." msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:202 +#: screens/Organization/OrganizationList/OrganizationList.jsx:211 msgid "Failed to delete one or more organizations." msgstr "" -#: src/screens/Project/ProjectList/ProjectList.jsx:227 +#: screens/Project/ProjectList/ProjectList.jsx:237 msgid "Failed to delete one or more projects." msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:244 +#: components/Schedule/ScheduleList/ScheduleList.jsx:244 msgid "Failed to delete one or more schedules." msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:208 +#: screens/Team/TeamList/TeamList.jsx:208 msgid "Failed to delete one or more teams." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:265 +#: components/TemplateList/TemplateList.jsx:275 msgid "Failed to delete one or more templates." msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 msgid "Failed to delete one or more tokens." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:194 +#: screens/User/UserTokenList/UserTokenList.jsx:194 msgid "Failed to delete one or more user tokens." msgstr "" -#: src/screens/User/UserList/UserList.jsx:200 +#: screens/User/UserList/UserList.jsx:200 msgid "Failed to delete one or more users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 msgid "Failed to delete one or more workflow approval." msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:182 msgid "Failed to delete organization." msgstr "" -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:183 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:192 msgid "Failed to delete project." msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:237 +#: components/ResourceAccessList/ResourceAccessList.jsx:251 msgid "Failed to delete role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:232 -#: src/screens/User/UserRoles/UserRolesList.jsx:232 +#: screens/Team/TeamRoles/TeamRolesList.jsx:234 +#: screens/User/UserRoles/UserRolesList.jsx:234 msgid "Failed to delete role." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:421 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:422 msgid "Failed to delete schedule." msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:180 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:181 msgid "Failed to delete smart inventory." msgstr "" -#: src/screens/Team/TeamDetail/TeamDetail.jsx:83 +#: screens/Team/TeamDetail/TeamDetail.jsx:84 msgid "Failed to delete team." msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:114 +#: screens/User/UserDetail/UserDetail.jsx:115 msgid "Failed to delete user." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 msgid "Failed to delete workflow approval." msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:238 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 msgid "Failed to delete workflow job template." msgstr "" -#: src/screens/Host/HostDetail/HostDetail.jsx:63 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +#: screens/Host/HostDetail/HostDetail.jsx:63 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 msgid "Failed to delete {name}." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 msgid "Failed to deny one or more workflow approval." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:249 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 msgid "Failed to deny workflow approval." msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:248 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 +#: screens/Host/HostGroups/HostGroupsList.jsx:248 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 msgid "Failed to disassociate one or more groups." msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 msgid "Failed to disassociate one or more hosts." msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:237 +#: screens/InstanceGroup/Instances/InstanceList.jsx:237 msgid "Failed to disassociate one or more instances." msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:262 +#: screens/User/UserTeams/UserTeamList.jsx:262 msgid "Failed to disassociate one or more teams." msgstr "" -#: src/screens/Login/Login.jsx:274 +#: screens/Login/Login.jsx:189 msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:106 -#: src/components/LaunchButton/LaunchButton.jsx:153 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +#: components/AdHocCommands/AdHocCommands.jsx:106 +#: components/LaunchButton/LaunchButton.jsx:165 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 msgid "Failed to launch job." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:218 +#: components/AppContainer/AppContainer.jsx:217 msgid "Failed to retrieve configuration." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:296 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:334 msgid "Failed to retrieve full node resource object." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:345 msgid "Failed to retrieve node credentials." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:87 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:167 +msgid "Failed to send test notification." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:89 msgid "Failed to sync inventory source." msgstr "" -#: src/screens/Project/shared/ProjectSyncButton.jsx:43 +#: screens/Project/shared/ProjectSyncButton.jsx:44 msgid "Failed to sync project." msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:225 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:237 msgid "Failed to sync some or all inventory sources." msgstr "" -#: src/components/HostToggle/HostToggle.jsx:77 +#: components/HostToggle/HostToggle.jsx:77 msgid "Failed to toggle host." msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:73 msgid "Failed to toggle instance." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:252 +#: components/NotificationList/NotificationList.jsx:252 msgid "Failed to toggle notification." msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 msgid "Failed to toggle schedule." msgstr "" -#: src/screens/Template/TemplateSurvey.jsx:129 +#: screens/Template/TemplateSurvey.jsx:129 msgid "Failed to update survey." msgstr "" -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 msgid "Failed to user token." msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:83 -#: src/components/NotificationList/NotificationListItem.jsx:84 +#: components/NotificationList/NotificationListItem.jsx:83 +#: components/NotificationList/NotificationListItem.jsx:84 msgid "Failure" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 msgid "False" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:117 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 msgid "February" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:170 +#: components/Search/AdvancedSearch.jsx:171 msgid "Field contains value." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:190 +#: components/Search/AdvancedSearch.jsx:191 msgid "Field ends with value." msgstr "" -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:84 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:82 msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:200 +#: components/Search/AdvancedSearch.jsx:201 msgid "Field matches the given regular expression." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:180 +#: components/Search/AdvancedSearch.jsx:181 msgid "Field starts with value." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:413 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 msgid "Fifth" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 +#: screens/Job/JobOutput/JobOutput.jsx:652 +msgid "File Difference" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 msgid "File upload rejected. Please select a single .json file." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 msgid "File, directory or script" msgstr "" -#: src/components/JobList/JobList.jsx:243 -#: src/components/JobList/JobListItem.jsx:77 +#: components/JobList/JobList.jsx:221 +#: components/JobList/JobListItem.jsx:77 msgid "Finish Time" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:156 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +#: screens/Job/JobDetail/JobDetail.jsx:157 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 msgid "Finished" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:401 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 msgid "First" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:119 -#: src/components/AddRole/AddResourceRole.jsx:133 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:130 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:163 -#: src/screens/User/UserDetail/UserDetail.jsx:65 -#: src/screens/User/UserList/UserList.jsx:123 -#: src/screens/User/UserList/UserList.jsx:166 -#: src/screens/User/UserList/UserListItem.jsx:62 -#: src/screens/User/UserList/UserListItem.jsx:65 -#: src/screens/User/shared/UserForm.jsx:109 +#: components/AddRole/AddResourceRole.jsx:130 +#: components/AddRole/AddResourceRole.jsx:144 +#: components/ResourceAccessList/ResourceAccessList.jsx:132 +#: components/ResourceAccessList/ResourceAccessList.jsx:165 +#: screens/User/UserDetail/UserDetail.jsx:65 +#: screens/User/UserList/UserList.jsx:123 +#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserListItem.jsx:62 +#: screens/User/UserList/UserListItem.jsx:65 +#: screens/User/shared/UserForm.jsx:109 msgid "First Name" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 msgid "First Run" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:248 +#: components/Search/AdvancedSearch.jsx:249 msgid "First, select a key" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:89 +#: components/Workflow/WorkflowTools.jsx:89 msgid "Fit the graph to the available screen size" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:64 +#: screens/Template/Survey/SurveyQuestionForm.jsx:64 msgid "Float" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:223 +msgid "" +"For job templates, select run to execute\n" +"the playbook. Select check to only check playbook syntax,\n" +"test environment setup, and report problems without\n" +"executing the playbook." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 +msgid "" +"For job templates, select run to execute the playbook.\n" +"Select check to only check playbook syntax, test environment setup,\n" +"and report problems without executing the playbook." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 #: src/screens/Template/shared/JobTemplateForm.jsx:216 -msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." -msgstr "" +#~ msgid "For job templates, select run to execute the playbook. Select check to only check playbook syntax, test environment setup, and report problems without executing the playbook." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 msgid "For more information, refer to the" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:192 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:193 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:133 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:214 -#: src/screens/Template/shared/JobTemplateForm.jsx:374 +#: components/AdHocCommands/AdHocDetailsStep.jsx:192 +#: components/AdHocCommands/AdHocDetailsStep.jsx:193 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:404 msgid "Forks" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:411 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 msgid "Fourth" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:186 +#: components/Schedule/shared/ScheduleForm.jsx:186 msgid "Frequency Details" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:212 -#: src/components/Schedule/shared/buildRuleObj.js:69 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/buildRuleObj.js:69 msgid "Frequency did not match an expected value" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:309 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 msgid "Fri" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:314 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:450 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 msgid "Friday" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:125 -#: src/screens/Organization/shared/OrganizationForm.jsx:105 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 +#: screens/Organization/shared/OrganizationForm.jsx:110 msgid "Galaxy Credentials" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:55 msgid "Galaxy credentials must be owned by an Organization." msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 -#: src/screens/Project/ProjectList/ProjectList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +#: screens/Job/JobOutput/JobOutput.jsx:660 +msgid "Gathering Facts" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:114 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 +#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 msgid "Git" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 -#: src/screens/Template/shared/WebhookSubForm.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:253 +#: screens/Template/shared/WebhookSubForm.jsx:108 msgid "GitHub" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 -#: src/screens/Setting/Settings.jsx:51 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 +#: screens/Setting/Settings.jsx:51 msgid "GitHub Default" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 -#: src/screens/Setting/Settings.jsx:60 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 +#: screens/Setting/Settings.jsx:60 msgid "GitHub Enterprise" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 -#: src/screens/Setting/Settings.jsx:64 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 +#: screens/Setting/Settings.jsx:64 msgid "GitHub Enterprise Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 -#: src/screens/Setting/Settings.jsx:68 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 +#: screens/Setting/Settings.jsx:68 msgid "GitHub Enterprise Team" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 -#: src/screens/Setting/Settings.jsx:54 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 +#: screens/Setting/Settings.jsx:54 msgid "GitHub Organization" msgstr "" -#: src/screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 -#: src/screens/Setting/Settings.jsx:57 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 +#: screens/Setting/Settings.jsx:57 msgid "GitHub Team" msgstr "" -#: src/screens/Setting/SettingList.jsx:66 +#: screens/Setting/SettingList.jsx:66 msgid "GitHub settings" msgstr "" -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:244 -#: src/screens/Template/shared/WebhookSubForm.jsx:114 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 +#: screens/Template/shared/WebhookSubForm.jsx:114 msgid "GitLab" msgstr "" -#: src/components/Pagination/Pagination.jsx:31 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +msgid "Global Default Execution Environment" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:75 +msgid "Globally Available" +msgstr "" + +#: components/Pagination/Pagination.jsx:29 msgid "Go to first page" msgstr "" -#: src/components/Pagination/Pagination.jsx:33 +#: components/Pagination/Pagination.jsx:31 msgid "Go to last page" msgstr "" -#: src/components/Pagination/Pagination.jsx:34 +#: components/Pagination/Pagination.jsx:32 msgid "Go to next page" msgstr "" -#: src/components/Pagination/Pagination.jsx:32 +#: components/Pagination/Pagination.jsx:30 msgid "Go to previous page" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 msgid "Google Compute Engine" msgstr "" -#: src/screens/Setting/SettingList.jsx:70 +#: screens/Setting/SettingList.jsx:70 msgid "Google OAuth 2 settings" msgstr "" -#: src/screens/Setting/Settings.jsx:71 +#: screens/Setting/Settings.jsx:71 msgid "Google OAuth2" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:194 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:134 +#: components/NotificationList/NotificationList.jsx:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 msgid "Grafana" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 msgid "Grafana API key" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 msgid "Grafana URL" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:210 +#: components/Search/AdvancedSearch.jsx:211 msgid "Greater than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:215 +#: components/Search/AdvancedSearch.jsx:216 msgid "Greater than or equal to comparison." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:86 +#: components/Lookup/HostFilterLookup.jsx:86 msgid "Group" msgstr "" -#: src/screens/Inventory/Inventories.jsx:85 +#: screens/Inventory/Inventories.jsx:83 msgid "Group details" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 msgid "Group type" msgstr "" -#: src/screens/Host/Host.jsx:62 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:230 -#: src/screens/Host/Hosts.jsx:31 -#: src/screens/Inventory/Inventories.jsx:76 -#: src/screens/Inventory/Inventories.jsx:78 -#: src/screens/Inventory/Inventory.jsx:64 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:83 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:108 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: screens/Host/Host.jsx:62 +#: screens/Host/HostGroups/HostGroupsList.jsx:230 +#: screens/Host/Hosts.jsx:31 +#: screens/Inventory/Inventories.jsx:74 +#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventory.jsx:64 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: util/getRelatedResourceDeleteDetails.js:143 msgid "Groups" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 msgid "HTTP Headers" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 msgid "HTTP Method" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:121 +#: components/AppContainer/PageHeaderToolbar.jsx:121 msgid "Help" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Hide" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:135 +#: components/NotificationList/NotificationList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 msgid "Hipchat" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 msgid "Host" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:143 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:229 -#: src/screens/Template/shared/JobTemplateForm.jsx:592 +#: screens/Job/JobOutput/JobOutput.jsx:647 +msgid "Host Async Failure" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:646 +msgid "Host Async OK" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239 +#: screens/Template/shared/JobTemplateForm.jsx:622 msgid "Host Config Key" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:94 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:101 msgid "Host Count" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:101 +#: screens/Job/JobOutput/HostEventModal.jsx:101 msgid "Host Details" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:230 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +#: screens/Job/JobOutput/JobOutput.jsx:638 +msgid "Host Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:641 +msgid "Host Failure" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281 msgid "Host Filter" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:120 +#: screens/Job/JobOutput/HostEventModal.jsx:120 msgid "Host Name" msgstr "" -#: src/screens/Inventory/Inventories.jsx:70 +#: screens/Job/JobOutput/JobOutput.jsx:640 +msgid "Host OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:645 +msgid "Host Polling" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:651 +msgid "Host Retry" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:642 +msgid "Host Skipped" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:639 +msgid "Host Started" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:643 +msgid "Host Unreachable" +msgstr "" + +#: screens/Inventory/Inventories.jsx:70 msgid "Host details" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:102 +#: screens/Job/JobOutput/HostEventModal.jsx:102 msgid "Host details modal" msgstr "" -#: src/screens/Host/Host.jsx:90 -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:100 +#: screens/Host/Host.jsx:90 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 msgid "Host not found." msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:77 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:77 msgid "Host status information for this job is unavailable." msgstr "" -#: src/routeConfig.js:85 -#: src/screens/ActivityStream/ActivityStream.jsx:173 -#: src/screens/Dashboard/Dashboard.jsx:129 -#: src/screens/Host/HostList/HostList.jsx:142 -#: src/screens/Host/HostList/HostList.jsx:188 -#: src/screens/Host/Hosts.jsx:15 -#: src/screens/Host/Hosts.jsx:25 -#: src/screens/Inventory/Inventories.jsx:63 -#: src/screens/Inventory/Inventories.jsx:88 -#: src/screens/Inventory/Inventory.jsx:65 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 -#: src/screens/Inventory/SmartInventory.jsx:71 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:95 +#: routeConfig.js:86 +#: screens/ActivityStream/ActivityStream.jsx:173 +#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:188 +#: screens/Host/Hosts.jsx:15 +#: screens/Host/Hosts.jsx:25 +#: screens/Inventory/Inventories.jsx:63 +#: screens/Inventory/Inventories.jsx:86 +#: screens/Inventory/Inventory.jsx:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 +#: screens/Inventory/SmartInventory.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: util/getRelatedResourceDeleteDetails.js:147 msgid "Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:164 +#: components/Schedule/shared/ScheduleForm.jsx:164 msgid "Hour" msgstr "" -#: src/components/JobList/JobList.jsx:194 -#: src/components/Lookup/HostFilterLookup.jsx:82 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:155 -#: src/screens/User/UserRoles/UserRolesList.jsx:152 +#: components/JobList/JobList.jsx:172 +#: components/Lookup/HostFilterLookup.jsx:82 +#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:152 msgid "ID" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 msgid "ID of the Dashboard" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 msgid "ID of the Panel" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 msgid "ID of the dashboard (optional)" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 msgid "ID of the panel (optional)" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:196 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:136 +#: components/NotificationList/NotificationList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 msgid "IRC" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 msgid "IRC Nick" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 msgid "IRC Server Address" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 msgid "IRC Server Port" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 msgid "IRC nick" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 msgid "IRC server address" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 msgid "IRC server password" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 msgid "IRC server port" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 msgid "Icon URL" msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156 +msgid "" +"If checked, all variables for child groups\n" +"and hosts will be removed and replaced by those found\n" +"on the external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:141 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 -msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgid "If checked, all variables for child groups and hosts will be removed and replaced by those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135 +msgid "" +"If checked, any hosts and groups that were\n" +"previously present on the external source but are now removed\n" +"will be removed from the Tower inventory. Hosts and groups\n" +"that were not managed by the inventory source will be promoted\n" +"to the next manually created group or if there is no manually\n" +"created group to promote them into, they will be left in the \"all\"\n" +"default group for the inventory." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:118 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 -msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgid "If checked, any hosts and groups that were previously present on the external source but are now removed will be removed from the Tower inventory. Hosts and groups that were not managed by the inventory source will be promoted to the next manually created group or if there is no manually created group to promote them into, they will be left in the \"all\" default group for the inventory." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:537 +msgid "" +"If enabled, run this playbook as an\n" +"administrator." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:507 -msgid "If enabled, run this playbook as an administrator." +#~ msgid "If enabled, run this playbook as an administrator." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +msgid "" +"If enabled, show the changes made\n" +"by Ansible tasks, where supported. This is equivalent to Ansible’s\n" +"--diff mode." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:478 +msgid "" +"If enabled, show the changes made by\n" +"Ansible tasks, where supported. This is equivalent\n" +"to Ansible's --diff mode." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:448 -msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." -msgstr "" +#~ msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible's --diff mode." +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:216 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +#: components/AdHocCommands/AdHocDetailsStep.jsx:216 msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:551 -msgid "If enabled, simultaneous runs of this job template will be allowed." +#: screens/Template/shared/JobTemplateForm.jsx:581 +msgid "" +"If enabled, simultaneous runs of this job\n" +"template will be allowed." msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +#: src/screens/Template/shared/JobTemplateForm.jsx:551 +#~ msgid "If enabled, simultaneous runs of this job template will be allowed." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:263 msgid "If enabled, simultaneous runs of this workflow job template will be allowed." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:559 -msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#: screens/Template/shared/JobTemplateForm.jsx:589 +msgid "" +"If enabled, this will store gathered facts so they can\n" +"be viewed at the host level. Facts are persisted and\n" +"injected into the fact cache at runtime." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:52 +#: src/screens/Template/shared/JobTemplateForm.jsx:559 +#~ msgid "If enabled, this will store gathered facts so they can be viewed at the host level. Facts are persisted and injected into the fact cache at runtime." +#~ msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 msgid "If you only want to remove access for this particular user, please remove them from the team." msgstr "" -#: src/components/HostToggle/HostToggle.jsx:18 -msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +msgid "" +"If you want the Inventory Source to update on\n" +"launch and on project update, click on Update on launch, and also go to" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:104 -#: src/components/AppContainer/PageHeaderToolbar.jsx:114 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:64 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +msgid "Image" +msgstr "" + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:76 +msgid "Image name" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:655 +msgid "Including File" +msgstr "" + +#: components/HostToggle/HostToggle.jsx:18 +msgid "" +"Indicates if a host is available and should be included in running\n" +"jobs. For hosts that are part of an external inventory, this may be\n" +"reset by the inventory sync process." +msgstr "" + +#: src/components/HostToggle/HostToggle.jsx:18 +#~ msgid "Indicates if a host is available and should be included in running jobs. For hosts that are part of an external inventory, this may be reset by the inventory sync process." +#~ msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:104 +#: components/AppContainer/PageHeaderToolbar.jsx:114 msgid "Info" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:45 +#: screens/ActivityStream/ActivityStreamListItem.jsx:45 msgid "Initiated By" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:240 -#: src/screens/ActivityStream/ActivityStream.jsx:250 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:43 +#: screens/ActivityStream/ActivityStream.jsx:246 +#: screens/ActivityStream/ActivityStream.jsx:256 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 msgid "Initiated by" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:230 +#: screens/ActivityStream/ActivityStream.jsx:236 msgid "Initiated by (username)" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:52 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:53 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:53 msgid "Injector configuration" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:47 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:43 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:43 msgid "Input configuration" msgstr "" -#: src/screens/Inventory/shared/InventoryForm.jsx:71 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 msgid "Insights Credential" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:107 +#: components/Lookup/HostFilterLookup.jsx:107 msgid "Insights system ID" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:136 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:137 msgid "Instance Filters" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:228 +#: screens/Job/JobDetail/JobDetail.jsx:259 msgid "Instance Group" msgstr "" -#: src/components/Lookup/InstanceGroupsLookup.jsx:71 -#: src/components/Lookup/InstanceGroupsLookup.jsx:77 -#: src/components/Lookup/InstanceGroupsLookup.jsx:109 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:212 -#: src/routeConfig.js:132 -#: src/screens/ActivityStream/ActivityStream.jsx:198 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:219 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:86 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:317 +#: components/Lookup/InstanceGroupsLookup.jsx:71 +#: components/Lookup/InstanceGroupsLookup.jsx:77 +#: components/Lookup/InstanceGroupsLookup.jsx:109 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:218 +#: routeConfig.js:133 +#: screens/ActivityStream/ActivityStream.jsx:198 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:327 msgid "Instance Groups" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:99 +#: components/Lookup/HostFilterLookup.jsx:99 msgid "Instance ID" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:83 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 -#: src/screens/InstanceGroup/InstanceGroups.jsx:27 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:86 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 +#: screens/InstanceGroup/InstanceGroups.jsx:27 msgid "Instance group" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:87 +#: screens/InstanceGroup/InstanceGroup.jsx:87 msgid "Instance group not found." msgstr "" -#: src/screens/InstanceGroup/InstanceGroups.jsx:16 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 +#: screens/InstanceGroup/InstanceGroups.jsx:16 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 msgid "Instance groups" msgstr "" -#: src/screens/InstanceGroup/InstanceGroup.jsx:69 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:231 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 -#: src/screens/InstanceGroup/InstanceGroups.jsx:35 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:148 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:218 +#: screens/InstanceGroup/InstanceGroup.jsx:69 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 +#: screens/InstanceGroup/InstanceGroups.jsx:35 +#: screens/InstanceGroup/Instances/InstanceList.jsx:148 +#: screens/InstanceGroup/Instances/InstanceList.jsx:218 msgid "Instances" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:63 +#: screens/Template/Survey/SurveyQuestionForm.jsx:63 msgid "Integer" msgstr "" -#: src/util/validators.jsx:69 +#: util/validators.jsx:69 msgid "Invalid email address" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:145 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:151 msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." msgstr "" -#: src/screens/Login/Login.jsx:110 +#: screens/Login/Login.jsx:118 msgid "Invalid username or password. Please try again." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 -#: src/routeConfig.js:80 -#: src/screens/ActivityStream/ActivityStream.jsx:170 -#: src/screens/Dashboard/Dashboard.jsx:140 -#: src/screens/Inventory/Inventories.jsx:16 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:163 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 +#: routeConfig.js:81 +#: screens/ActivityStream/ActivityStream.jsx:170 +#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Inventory/Inventories.jsx:16 +#: screens/Inventory/InventoryList/InventoryList.jsx:169 +#: screens/Inventory/InventoryList/InventoryList.jsx:220 +#: util/getRelatedResourceDeleteDetails.js:67 +#: util/getRelatedResourceDeleteDetails.js:226 +#: util/getRelatedResourceDeleteDetails.js:294 msgid "Inventories" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:133 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:134 msgid "Inventories with sources cannot be copied" msgstr "" -#: src/components/HostForm/HostForm.jsx:28 -#: src/components/JobList/JobListItem.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:98 -#: src/components/LaunchPrompt/steps/useInventoryStep.jsx:47 -#: src/components/Lookup/InventoryLookup.jsx:85 -#: src/components/Lookup/InventoryLookup.jsx:94 -#: src/components/Lookup/InventoryLookup.jsx:131 -#: src/components/Lookup/InventoryLookup.jsx:147 -#: src/components/Lookup/InventoryLookup.jsx:184 -#: src/components/PromptDetail/PromptDetail.jsx:183 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:77 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:105 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:116 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 -#: src/components/TemplateList/TemplateListItem.jsx:223 -#: src/components/TemplateList/TemplateListItem.jsx:232 -#: src/screens/Host/HostDetail/HostDetail.jsx:83 -#: src/screens/Host/HostList/HostList.jsx:169 -#: src/screens/Host/HostList/HostListItem.jsx:39 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 -#: src/screens/Job/JobDetail/JobDetail.jsx:195 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:186 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:194 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:131 +#: components/HostForm/HostForm.jsx:28 +#: components/JobList/JobListItem.jsx:150 +#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/Lookup/InventoryLookup.jsx:85 +#: components/Lookup/InventoryLookup.jsx:94 +#: components/Lookup/InventoryLookup.jsx:131 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:184 +#: components/PromptDetail/PromptDetail.jsx:183 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:78 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:107 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 +#: components/TemplateList/TemplateListItem.jsx:251 +#: components/TemplateList/TemplateListItem.jsx:260 +#: screens/Host/HostDetail/HostDetail.jsx:83 +#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostListItem.jsx:39 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:196 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:200 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 msgid "Inventory" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 msgid "Inventory (Name)" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:100 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:101 msgid "Inventory File" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:90 +#: components/Lookup/HostFilterLookup.jsx:90 msgid "Inventory ID" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:61 +#: screens/Job/JobDetail/JobDetail.jsx:212 +msgid "Inventory Source" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:89 msgid "Inventory Source Sync" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:157 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:176 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:163 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: util/getRelatedResourceDeleteDetails.js:74 +#: util/getRelatedResourceDeleteDetails.js:171 msgid "Inventory Sources" msgstr "" -#: src/components/JobList/JobList.jsx:206 -#: src/components/JobList/JobListItem.jsx:32 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:37 -#: src/components/Workflow/WorkflowLegend.jsx:100 -#: src/screens/Job/JobDetail/JobDetail.jsx:78 +#: components/JobList/JobList.jsx:184 +#: components/JobList/JobListItem.jsx:32 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 +#: components/Workflow/WorkflowLegend.jsx:100 +#: screens/Job/JobDetail/JobDetail.jsx:94 msgid "Inventory Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:59 +#: components/Workflow/WorkflowNodeHelp.jsx:59 msgid "Inventory Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:219 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 msgid "Inventory file" msgstr "" -#: src/screens/Inventory/Inventory.jsx:91 +#: screens/Inventory/Inventory.jsx:91 msgid "Inventory not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:229 +#: screens/Dashboard/Dashboard.jsx:229 msgid "Inventory sync" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:146 +#: screens/Dashboard/Dashboard.jsx:146 msgid "Inventory sync failures" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:49 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 -#: src/screens/Job/JobDetail/JobDetail.jsx:119 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 +#: screens/Job/JobDetail/JobDetail.jsx:120 msgid "Isolated" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:21 -#: src/components/Lookup/Lookup.jsx:129 +#: screens/Job/JobOutput/JobOutput.jsx:649 +msgid "Item Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:648 +msgid "Item OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:650 +msgid "Item Skipped" +msgstr "" + +#: components/AssociateModal/AssociateModal.jsx:21 msgid "Items" msgstr "" -#: src/components/Pagination/Pagination.jsx:29 +#: components/Pagination/Pagination.jsx:27 msgid "Items per page" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:28 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:32 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:54 +#: components/Sparkline/Sparkline.jsx:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42 +#: screens/Project/ProjectList/ProjectListItem.jsx:62 msgid "JOB ID:" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:144 +#: screens/Job/JobOutput/HostEventModal.jsx:144 msgid "JSON" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:145 +#: screens/Job/JobOutput/HostEventModal.jsx:145 msgid "JSON tab" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:43 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 msgid "JSON:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:112 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 msgid "January" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 msgid "Job" msgstr "" -#: src/screens/Job/JobOutput/JobOutput.jsx:713 -#: src/screens/Job/JobOutput/JobOutput.jsx:714 +#: screens/Job/JobDetail/JobDetail.jsx:470 +#: screens/Job/JobDetail/JobDetail.jsx:471 +#: screens/Job/JobOutput/JobOutput.jsx:832 +#: screens/Job/JobOutput/JobOutput.jsx:833 msgid "Job Cancel Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:383 -#: src/screens/Job/JobOutput/JobOutput.jsx:728 -#: src/screens/Job/JobOutput/JobOutput.jsx:729 +#: screens/Job/JobDetail/JobDetail.jsx:481 +#: screens/Job/JobOutput/JobOutput.jsx:821 +#: screens/Job/JobOutput/JobOutput.jsx:822 msgid "Job Delete Error" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:241 +#: screens/Job/JobDetail/JobDetail.jsx:272 msgid "Job Slice" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:142 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 -#: src/screens/Template/shared/JobTemplateForm.jsx:428 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:148 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235 +#: screens/Template/shared/JobTemplateForm.jsx:458 msgid "Job Slicing" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:140 +#: components/Workflow/WorkflowNodeHelp.jsx:140 msgid "Job Status" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 -#: src/components/PromptDetail/PromptDetail.jsx:206 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:227 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 -#: src/screens/Job/JobDetail/JobDetail.jsx:290 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:332 -#: src/screens/Template/shared/JobTemplateForm.jsx:468 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 +#: components/PromptDetail/PromptDetail.jsx:206 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:233 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.jsx:321 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342 +#: screens/Template/shared/JobTemplateForm.jsx:498 msgid "Job Tags" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:196 -#: src/components/Workflow/WorkflowLegend.jsx:92 -#: src/components/Workflow/WorkflowNodeHelp.jsx:47 -#: src/screens/Job/JobDetail/JobDetail.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:67 +#: components/TemplateList/TemplateList.jsx:201 +#: components/Workflow/WorkflowLegend.jsx:92 +#: components/Workflow/WorkflowNodeHelp.jsx:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:33 +#: screens/Job/JobDetail/JobDetail.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:95 msgid "Job Template" msgstr "" -#: src/screens/Project/Project.jsx:117 -#: src/screens/Project/Projects.jsx:32 +#: components/LaunchPrompt/steps/credentialsValidator.jsx:42 +msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" +msgstr "" + +#: screens/Project/Project.jsx:117 +#: screens/Project/Projects.jsx:32 +#: util/getRelatedResourceDeleteDetails.js:56 +#: util/getRelatedResourceDeleteDetails.js:108 +#: util/getRelatedResourceDeleteDetails.js:157 msgid "Job Templates" msgstr "" -#: src/components/JobList/JobList.jsx:202 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 -#: src/components/PromptDetail/PromptDetail.jsx:156 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:88 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 -#: src/screens/Job/JobDetail/JobDetail.jsx:191 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:169 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:128 -#: src/screens/Template/shared/JobTemplateForm.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:24 +msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useWorkflowNodeSteps.js:267 +msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" +msgstr "" + +#: components/JobList/JobList.jsx:180 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 +#: components/PromptDetail/PromptDetail.jsx:156 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:90 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 +#: screens/Job/JobDetail/JobDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145 +#: screens/Template/shared/JobTemplateForm.jsx:220 msgid "Job Type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:172 +#: screens/Dashboard/Dashboard.jsx:172 msgid "Job status" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:170 +#: screens/Dashboard/Dashboard.jsx:170 msgid "Job status graph tab" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 msgid "Job templates" msgstr "" -#: src/components/JobList/JobList.jsx:185 -#: src/components/JobList/JobList.jsx:262 -#: src/routeConfig.js:39 -#: src/screens/ActivityStream/ActivityStream.jsx:147 -#: src/screens/Dashboard/shared/LineChart.jsx:69 -#: src/screens/InstanceGroup/ContainerGroup.jsx:68 -#: src/screens/InstanceGroup/InstanceGroup.jsx:74 -#: src/screens/InstanceGroup/InstanceGroups.jsx:37 -#: src/screens/InstanceGroup/InstanceGroups.jsx:45 -#: src/screens/Job/Jobs.jsx:15 -#: src/screens/Job/Jobs.jsx:26 -#: src/screens/Setting/SettingList.jsx:92 -#: src/screens/Setting/Settings.jsx:74 +#: components/JobList/JobList.jsx:163 +#: components/JobList/JobList.jsx:240 +#: routeConfig.js:40 +#: screens/ActivityStream/ActivityStream.jsx:147 +#: screens/Dashboard/shared/LineChart.jsx:69 +#: screens/Host/Host.jsx:67 +#: screens/Host/Hosts.jsx:32 +#: screens/InstanceGroup/ContainerGroup.jsx:68 +#: screens/InstanceGroup/InstanceGroup.jsx:74 +#: screens/InstanceGroup/InstanceGroups.jsx:37 +#: screens/InstanceGroup/InstanceGroups.jsx:45 +#: screens/Inventory/Inventories.jsx:59 +#: screens/Inventory/Inventories.jsx:72 +#: screens/Inventory/Inventory.jsx:68 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 +#: screens/Inventory/SmartInventory.jsx:73 +#: screens/Job/Jobs.jsx:15 +#: screens/Job/Jobs.jsx:26 +#: screens/Setting/SettingList.jsx:92 +#: screens/Setting/Settings.jsx:74 +#: screens/Template/Template.jsx:164 +#: screens/Template/Templates.jsx:48 +#: screens/Template/WorkflowJobTemplate.jsx:145 msgid "Jobs" msgstr "" -#: src/screens/Setting/SettingList.jsx:99 +#: screens/Setting/SettingList.jsx:99 msgid "Jobs settings" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:142 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 msgid "July" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:137 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 msgid "June" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:129 +#: components/Search/AdvancedSearch.jsx:130 msgid "Key" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:120 +#: components/Search/AdvancedSearch.jsx:121 msgid "Key select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:123 +#: components/Search/AdvancedSearch.jsx:124 msgid "Key typeahead" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:225 +#: screens/ActivityStream/ActivityStream.jsx:231 msgid "Keyword" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:51 -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserDetail/UserDetail.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "LDAP" msgstr "" -#: src/screens/Setting/Settings.jsx:79 +#: screens/Setting/Settings.jsx:79 msgid "LDAP 1" msgstr "" -#: src/screens/Setting/Settings.jsx:80 +#: screens/Setting/Settings.jsx:80 msgid "LDAP 2" msgstr "" -#: src/screens/Setting/Settings.jsx:81 +#: screens/Setting/Settings.jsx:81 msgid "LDAP 3" msgstr "" -#: src/screens/Setting/Settings.jsx:82 +#: screens/Setting/Settings.jsx:82 msgid "LDAP 4" msgstr "" -#: src/screens/Setting/Settings.jsx:83 +#: screens/Setting/Settings.jsx:83 msgid "LDAP 5" msgstr "" -#: src/screens/Setting/Settings.jsx:78 +#: screens/Setting/Settings.jsx:78 msgid "LDAP Default" msgstr "" -#: src/screens/Setting/SettingList.jsx:74 +#: screens/Setting/SettingList.jsx:74 msgid "LDAP settings" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 msgid "LDAP1" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 msgid "LDAP2" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 msgid "LDAP3" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 msgid "LDAP4" msgstr "" -#: src/screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 msgid "LDAP5" msgstr "" -#: src/components/JobList/JobList.jsx:198 +#: components/JobList/JobList.jsx:176 msgid "Label Name" msgstr "" -#: src/components/JobList/JobListItem.jsx:135 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:194 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 -#: src/components/TemplateList/TemplateListItem.jsx:237 -#: src/screens/Job/JobDetail/JobDetail.jsx:275 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:299 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:178 -#: src/screens/Template/shared/JobTemplateForm.jsx:339 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:184 +#: components/JobList/JobListItem.jsx:136 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:200 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 +#: components/TemplateList/TemplateListItem.jsx:265 +#: screens/Job/JobDetail/JobDetail.jsx:306 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195 +#: screens/Template/shared/JobTemplateForm.jsx:369 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209 msgid "Labels" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:414 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 msgid "Last" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:78 +#: screens/User/UserDetail/UserDetail.jsx:78 msgid "Last Login" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:140 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 -#: src/components/TemplateList/TemplateListItem.jsx:265 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:44 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:165 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:236 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:62 -#: src/screens/Host/HostDetail/HostDetail.jsx:99 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:68 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:119 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:328 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:146 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:49 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:276 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:69 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +#: components/PromptDetail/PromptDetail.jsx:140 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 +#: components/TemplateList/TemplateListItem.jsx:293 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:44 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:253 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 +#: screens/Host/HostDetail/HostDetail.jsx:99 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:122 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 +#: screens/Team/TeamDetail/TeamDetail.jsx:49 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:286 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 msgid "Last Modified" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:123 -#: src/components/AddRole/AddResourceRole.jsx:137 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:134 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:167 -#: src/screens/User/UserDetail/UserDetail.jsx:66 -#: src/screens/User/UserList/UserList.jsx:127 -#: src/screens/User/UserList/UserList.jsx:169 -#: src/screens/User/UserList/UserListItem.jsx:70 -#: src/screens/User/UserList/UserListItem.jsx:73 -#: src/screens/User/shared/UserForm.jsx:115 +#: components/AddRole/AddResourceRole.jsx:134 +#: components/AddRole/AddResourceRole.jsx:148 +#: components/ResourceAccessList/ResourceAccessList.jsx:136 +#: components/ResourceAccessList/ResourceAccessList.jsx:169 +#: screens/User/UserDetail/UserDetail.jsx:66 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:169 +#: screens/User/UserList/UserListItem.jsx:70 +#: screens/User/UserList/UserListItem.jsx:73 +#: screens/User/shared/UserForm.jsx:115 msgid "Last Name" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:220 -#: src/components/TemplateList/TemplateListItem.jsx:130 +#: components/TemplateList/TemplateList.jsx:225 +#: components/TemplateList/TemplateListItem.jsx:155 msgid "Last Ran" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 msgid "Last Run" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:103 +#: components/Lookup/HostFilterLookup.jsx:103 msgid "Last job" msgstr "" -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 msgid "Last job run" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:259 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 msgid "Last modified" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:92 -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:377 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:380 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:214 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 +#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:237 msgid "Launch" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 msgid "Launch Management Job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:149 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:94 +#: components/TemplateList/TemplateListItem.jsx:175 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:117 msgid "Launch Template" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:98 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:99 msgid "Launch management job" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:156 +#: components/TemplateList/TemplateListItem.jsx:183 msgid "Launch template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 msgid "Launch workflow" msgstr "" -#: src/components/DetailList/LaunchedByDetail.jsx:41 +#: components/DetailList/LaunchedByDetail.jsx:41 msgid "Launched By" msgstr "" -#: src/components/JobList/JobList.jsx:214 +#: components/JobList/JobList.jsx:192 msgid "Launched By (Username)" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:86 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:120 +msgid "Leave this field blank to make the execution environment globally available." +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:86 msgid "Legend" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:220 +#: components/Search/AdvancedSearch.jsx:221 msgid "Less than comparison." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:225 +#: components/Search/AdvancedSearch.jsx:226 msgid "Less than or equal to comparison." msgstr "" -#: src/screens/Setting/SettingList.jsx:137 -#: src/screens/Setting/Settings.jsx:96 +#: screens/Setting/SettingList.jsx:137 +#: screens/Setting/Settings.jsx:96 msgid "License" msgstr "" -#: src/screens/Setting/License/License.jsx:15 -#: src/screens/Setting/SettingList.jsx:142 +#: screens/Setting/License/License.jsx:15 +#: screens/Setting/SettingList.jsx:142 msgid "License settings" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:170 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:171 -#: src/components/JobList/JobList.jsx:232 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 -#: src/components/PromptDetail/PromptDetail.jsx:194 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:134 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 -#: src/screens/Job/JobDetail/JobDetail.jsx:222 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:215 -#: src/screens/Template/shared/JobTemplateForm.jsx:390 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:144 +#: components/AdHocCommands/AdHocDetailsStep.jsx:170 +#: components/AdHocCommands/AdHocDetailsStep.jsx:171 +#: components/JobList/JobList.jsx:210 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 +#: components/PromptDetail/PromptDetail.jsx:194 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:140 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 +#: screens/Job/JobDetail/JobDetail.jsx:250 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 +#: screens/Template/shared/JobTemplateForm.jsx:420 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:155 msgid "Limit" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:213 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:219 msgid "Link to an available node" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 msgid "Loading" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 msgid "Local Time Zone" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:141 +#: components/Schedule/shared/ScheduleForm.jsx:141 msgid "Local time zone" msgstr "" -#: src/screens/Login/Login.jsx:248 +#: screens/Login/Login.jsx:162 msgid "Log In" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:14 +#: screens/Setting/shared/LoggingTestAlert.jsx:14 msgid "Log aggregator test sent successfully." msgstr "" -#: src/screens/Setting/Settings.jsx:97 +#: screens/Setting/Settings.jsx:97 msgid "Logging" msgstr "" -#: src/screens/Setting/SettingList.jsx:118 +#: screens/Setting/SettingList.jsx:118 msgid "Logging settings" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:236 -#: src/components/AppContainer/PageHeaderToolbar.jsx:171 +#: components/AppContainer/AppContainer.jsx:242 +#: components/AppContainer/PageHeaderToolbar.jsx:171 msgid "Logout" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:307 -#: src/components/Lookup/Lookup.jsx:130 +#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/Lookup.jsx:130 msgid "Lookup modal" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:142 +#: components/Search/AdvancedSearch.jsx:143 msgid "Lookup select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:151 +#: components/Search/AdvancedSearch.jsx:152 msgid "Lookup type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:145 +#: components/Search/AdvancedSearch.jsx:146 msgid "Lookup typeahead" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:30 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:52 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40 +#: screens/Project/ProjectList/ProjectListItem.jsx:60 msgid "MOST RECENT SYNC" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:67 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:68 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:86 -#: src/screens/Job/JobDetail/JobDetail.jsx:247 +#: components/AdHocCommands/AdHocCredentialStep.jsx:67 +#: components/AdHocCommands/AdHocCredentialStep.jsx:68 +#: components/AdHocCommands/AdHocCredentialStep.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:278 msgid "Machine Credential" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:84 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:84 msgid "Machine credential" msgstr "" -#: src/components/JobList/JobList.jsx:209 -#: src/components/JobList/JobListItem.jsx:35 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:40 -#: src/screens/Job/JobDetail/JobDetail.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 +msgid "Managed by Tower" +msgstr "" + +#: components/JobList/JobList.jsx:187 +#: components/JobList/JobListItem.jsx:35 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 +#: screens/Job/JobDetail/JobDetail.jsx:100 msgid "Management Job" msgstr "" -#: src/routeConfig.js:127 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +#: routeConfig.js:128 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 msgid "Management Jobs" msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:22 +#: screens/ManagementJob/ManagementJobs.jsx:22 msgid "Management job" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:117 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:119 msgid "Management job launch error" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:132 +#: screens/ManagementJob/ManagementJob.jsx:132 msgid "Management job not found." msgstr "" -#: src/screens/ManagementJob/ManagementJobs.jsx:14 +#: screens/ManagementJob/ManagementJobs.jsx:14 msgid "Management jobs" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:113 -#: src/components/PromptDetail/PromptProjectDetail.jsx:69 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:90 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:102 -#: src/screens/Project/ProjectList/ProjectList.jsx:145 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +#: components/Lookup/ProjectLookup.jsx:113 +#: components/PromptDetail/PromptProjectDetail.jsx:75 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:104 +#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectListItem.jsx:134 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 msgid "Manual" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:122 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 msgid "March" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:197 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:137 +#: components/NotificationList/NotificationList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 msgid "Mattermost" msgstr "" -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 -#: src/screens/Organization/shared/OrganizationForm.jsx:67 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 +#: screens/Organization/shared/OrganizationForm.jsx:75 msgid "Max Hosts" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:175 +#: screens/Template/Survey/SurveyQuestionForm.jsx:175 msgid "Maximum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:159 +#: screens/Template/Survey/SurveyQuestionForm.jsx:159 msgid "Maximum length" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:132 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 msgid "May" msgstr "" -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:155 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:38 +#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 msgid "Members" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 msgid "Metadata" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 msgid "Microsoft Azure Resource Manager" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:169 +#: screens/Template/Survey/SurveyQuestionForm.jsx:169 msgid "Minimum" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:153 +#: screens/Template/Survey/SurveyQuestionForm.jsx:153 msgid "Minimum length" msgstr "" +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 +msgid "" +"Minimum number of instances that will be automatically\n" +"assigned to this group when new instances come online." +msgstr "" + #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 -msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgid "Minimum number of instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" + +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 +msgid "" +"Minimum percentage of all instances that will be automatically\n" +"assigned to this group when new instances come online." msgstr "" #: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 -msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." -msgstr "" +#~ msgid "Minimum percentage of all instances that will be automatically assigned to this group when new instances come online." +#~ msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:163 +#: components/Schedule/shared/ScheduleForm.jsx:163 msgid "Minute" msgstr "" -#: src/screens/Setting/Settings.jsx:100 +#: screens/Setting/Settings.jsx:100 msgid "Miscellaneous System" msgstr "" -#: src/screens/Setting/SettingList.jsx:110 +#: screens/Setting/SettingList.jsx:110 msgid "Miscellaneous System settings" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:104 +#: components/Workflow/WorkflowNodeHelp.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 msgid "Missing" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:353 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:171 -#: src/screens/User/UserTokenList/UserTokenList.jsx:138 +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 +msgid "Missing resource" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:360 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/User/UserTokenList/UserTokenList.jsx:138 msgid "Modified" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:100 -#: src/components/AddRole/AddResourceRole.jsx:152 -#: src/components/AssociateModal/AssociateModal.jsx:146 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:149 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:86 -#: src/components/Lookup/CredentialLookup.jsx:157 -#: src/components/Lookup/InventoryLookup.jsx:118 -#: src/components/Lookup/InventoryLookup.jsx:171 -#: src/components/Lookup/MultiCredentialsLookup.jsx:185 -#: src/components/Lookup/OrganizationLookup.jsx:113 -#: src/components/Lookup/ProjectLookup.jsx:125 -#: src/components/NotificationList/NotificationList.jsx:210 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:205 -#: src/components/TemplateList/TemplateList.jsx:209 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 -#: src/screens/Credential/CredentialList/CredentialList.jsx:145 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:136 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:167 -#: src/screens/Host/HostList/HostList.jsx:160 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:192 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:180 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:146 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 -#: src/screens/Project/ProjectList/ProjectList.jsx:157 -#: src/screens/Team/TeamList/TeamList.jsx:146 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:96 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:101 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:109 +#: components/AdHocCommands/AdHocCredentialStep.jsx:100 +#: components/AddRole/AddResourceRole.jsx:163 +#: components/AssociateModal/AssociateModal.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:183 +#: components/LaunchPrompt/steps/InventoryStep.jsx:95 +#: components/Lookup/CredentialLookup.jsx:157 +#: components/Lookup/InventoryLookup.jsx:118 +#: components/Lookup/InventoryLookup.jsx:171 +#: components/Lookup/MultiCredentialsLookup.jsx:185 +#: components/Lookup/OrganizationLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:125 +#: components/NotificationList/NotificationList.jsx:210 +#: components/Schedule/ScheduleList/ScheduleList.jsx:205 +#: components/TemplateList/TemplateList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 +#: screens/Credential/CredentialList/CredentialList.jsx:137 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: 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:192 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 +#: screens/Organization/OrganizationList/OrganizationList.jsx:150 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 +#: screens/Project/ProjectList/ProjectList.jsx:162 +#: 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:109 msgid "Modified By (Username)" msgstr "" -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:167 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 msgid "Modified by (username)" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:63 -#: src/screens/Job/JobOutput/HostEventModal.jsx:131 +#: components/AdHocCommands/AdHocDetailsStep.jsx:63 +#: screens/Job/JobOutput/HostEventModal.jsx:131 msgid "Module" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:269 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 msgid "Mon" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:274 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:430 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 msgid "Monday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:167 +#: components/Schedule/shared/ScheduleForm.jsx:167 msgid "Month" msgstr "" -#: src/components/Popover/Popover.jsx:39 +#: components/Popover/Popover.jsx:39 msgid "More information" msgstr "" -#: src/screens/Setting/shared/SharedFields.jsx:63 +#: screens/Setting/shared/SharedFields.jsx:63 msgid "More information for" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:111 +#: screens/Template/Survey/SurveyPreviewModal.jsx:111 msgid "Multi-Select" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:90 +#: screens/Template/Survey/SurveyPreviewModal.jsx:90 msgid "Multiple Choice" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:61 +#: screens/Template/Survey/SurveyQuestionForm.jsx:61 msgid "Multiple Choice (multiple select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:56 +#: screens/Template/Survey/SurveyQuestionForm.jsx:56 msgid "Multiple Choice (single select)" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:217 +#: screens/Template/Survey/SurveyQuestionForm.jsx:217 msgid "Multiple Choice Options" msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:91 -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:106 -#: src/components/AddRole/AddResourceRole.jsx:143 -#: src/components/AddRole/AddResourceRole.jsx:159 -#: src/components/AssociateModal/AssociateModal.jsx:137 -#: src/components/AssociateModal/AssociateModal.jsx:152 -#: src/components/HostForm/HostForm.jsx:87 -#: src/components/JobList/JobList.jsx:189 -#: src/components/JobList/JobList.jsx:238 -#: src/components/JobList/JobListItem.jsx:59 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:140 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:155 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:77 -#: src/components/LaunchPrompt/steps/InventoryStep.jsx:92 -#: src/components/Lookup/ApplicationLookup.jsx:78 -#: src/components/Lookup/ApplicationLookup.jsx:89 -#: src/components/Lookup/CredentialLookup.jsx:148 -#: src/components/Lookup/CredentialLookup.jsx:163 -#: src/components/Lookup/HostFilterLookup.jsx:77 -#: src/components/Lookup/HostFilterLookup.jsx:345 -#: src/components/Lookup/InstanceGroupsLookup.jsx:91 -#: src/components/Lookup/InstanceGroupsLookup.jsx:102 -#: src/components/Lookup/InventoryLookup.jsx:109 -#: src/components/Lookup/InventoryLookup.jsx:124 -#: src/components/Lookup/InventoryLookup.jsx:162 -#: src/components/Lookup/InventoryLookup.jsx:177 -#: src/components/Lookup/MultiCredentialsLookup.jsx:176 -#: src/components/Lookup/MultiCredentialsLookup.jsx:191 -#: src/components/Lookup/OrganizationLookup.jsx:104 -#: src/components/Lookup/OrganizationLookup.jsx:119 -#: src/components/Lookup/ProjectLookup.jsx:105 -#: src/components/Lookup/ProjectLookup.jsx:135 -#: src/components/NotificationList/NotificationList.jsx:181 -#: src/components/NotificationList/NotificationList.jsx:218 -#: src/components/NotificationList/NotificationListItem.jsx:25 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:77 -#: src/components/PaginatedDataList/PaginatedDataList.jsx:86 -#: src/components/PaginatedTable/PaginatedTable.jsx:69 -#: src/components/PromptDetail/PromptDetail.jsx:109 -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:100 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:173 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:192 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:78 -#: src/components/Schedule/shared/ScheduleForm.jsx:102 -#: src/components/TemplateList/TemplateList.jsx:184 -#: src/components/TemplateList/TemplateList.jsx:217 -#: src/components/TemplateList/TemplateListItem.jsx:114 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 -#: src/components/Workflow/WorkflowNodeHelp.jsx:132 -#: src/components/Workflow/WorkflowNodeHelp.jsx:158 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 -#: src/screens/Application/Applications.jsx:84 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:32 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:161 -#: src/screens/Application/shared/ApplicationForm.jsx:54 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:193 -#: src/screens/Credential/CredentialList/CredentialList.jsx:132 -#: src/screens/Credential/CredentialList/CredentialList.jsx:151 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:55 -#: src/screens/Credential/shared/CredentialForm.jsx:118 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:41 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:123 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:171 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 -#: src/screens/CredentialType/shared/CredentialTypeForm.jsx:24 -#: src/screens/Host/HostDetail/HostDetail.jsx:74 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:158 -#: src/screens/Host/HostGroups/HostGroupsList.jsx:173 -#: src/screens/Host/HostList/HostList.jsx:147 -#: src/screens/Host/HostList/HostList.jsx:168 -#: src/screens/Host/HostList/HostListItem.jsx:34 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:42 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:74 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:227 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:155 -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:162 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:45 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:69 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 -#: src/screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:167 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:186 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:194 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:81 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:190 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 -#: src/screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 -#: src/screens/Inventory/shared/InventoryForm.jsx:47 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:41 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:102 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:53 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 -#: src/screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:121 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:178 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:100 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 -#: src/screens/Organization/OrganizationDetail/OrganizationDetail.jsx:85 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:133 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:154 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:33 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 -#: src/screens/Organization/shared/OrganizationForm.jsx:52 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:82 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 -#: src/screens/Project/ProjectList/ProjectList.jsx:133 -#: src/screens/Project/ProjectList/ProjectList.jsx:169 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:88 -#: src/screens/Project/shared/ProjectForm.jsx:160 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:34 -#: src/screens/Team/TeamList/TeamList.jsx:129 -#: src/screens/Team/TeamList/TeamList.jsx:154 -#: src/screens/Team/TeamList/TeamListItem.jsx:40 -#: src/screens/Team/shared/TeamForm.jsx:35 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:167 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:108 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:83 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:102 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:128 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:81 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:111 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:92 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 -#: src/screens/Template/shared/JobTemplateForm.jsx:200 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:99 -#: src/screens/User/UserTeams/UserTeamList.jsx:230 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 +#: components/AdHocCommands/AdHocCredentialStep.jsx:91 +#: components/AdHocCommands/AdHocCredentialStep.jsx:106 +#: components/AddRole/AddResourceRole.jsx:154 +#: components/AddRole/AddResourceRole.jsx:170 +#: components/AssociateModal/AssociateModal.jsx:139 +#: components/AssociateModal/AssociateModal.jsx:154 +#: components/HostForm/HostForm.jsx:87 +#: components/JobList/JobList.jsx:167 +#: components/JobList/JobList.jsx:216 +#: components/JobList/JobListItem.jsx:59 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:174 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:189 +#: components/LaunchPrompt/steps/InventoryStep.jsx:86 +#: components/LaunchPrompt/steps/InventoryStep.jsx:101 +#: components/Lookup/ApplicationLookup.jsx:78 +#: components/Lookup/ApplicationLookup.jsx:89 +#: components/Lookup/CredentialLookup.jsx:148 +#: components/Lookup/CredentialLookup.jsx:163 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/Lookup/HostFilterLookup.jsx:77 +#: components/Lookup/HostFilterLookup.jsx:352 +#: components/Lookup/InstanceGroupsLookup.jsx:91 +#: components/Lookup/InstanceGroupsLookup.jsx:102 +#: components/Lookup/InventoryLookup.jsx:109 +#: components/Lookup/InventoryLookup.jsx:124 +#: components/Lookup/InventoryLookup.jsx:162 +#: components/Lookup/InventoryLookup.jsx:177 +#: components/Lookup/MultiCredentialsLookup.jsx:176 +#: components/Lookup/MultiCredentialsLookup.jsx:191 +#: components/Lookup/OrganizationLookup.jsx:106 +#: components/Lookup/OrganizationLookup.jsx:121 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:135 +#: components/NotificationList/NotificationList.jsx:181 +#: components/NotificationList/NotificationList.jsx:218 +#: components/NotificationList/NotificationListItem.jsx:25 +#: components/PaginatedDataList/PaginatedDataList.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PromptDetail/PromptDetail.jsx:109 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:100 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 +#: components/Schedule/ScheduleList/ScheduleList.jsx:173 +#: components/Schedule/ScheduleList/ScheduleList.jsx:192 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78 +#: components/Schedule/shared/ScheduleForm.jsx:102 +#: components/TemplateList/TemplateList.jsx:189 +#: components/TemplateList/TemplateList.jsx:222 +#: components/TemplateList/TemplateListItem.jsx:126 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 +#: components/Workflow/WorkflowNodeHelp.jsx:132 +#: components/Workflow/WorkflowNodeHelp.jsx:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 +#: screens/Application/Applications.jsx:84 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:32 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/shared/ApplicationForm.jsx:54 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205 +#: screens/Credential/CredentialList/CredentialList.jsx:124 +#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialListItem.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:118 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:24 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:59 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:23 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:68 +#: screens/Host/HostDetail/HostDetail.jsx:74 +#: screens/Host/HostGroups/HostGroupsList.jsx:158 +#: screens/Host/HostGroups/HostGroupsList.jsx:173 +#: screens/Host/HostList/HostList.jsx:147 +#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostListItem.jsx:34 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:77 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 +#: screens/InstanceGroup/Instances/InstanceList.jsx:155 +#: screens/InstanceGroup/Instances/InstanceList.jsx:162 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 +#: screens/Inventory/InventoryList/InventoryList.jsx:173 +#: screens/Inventory/InventoryList/InventoryList.jsx:192 +#: screens/Inventory/InventoryList/InventoryList.jsx:200 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:81 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 +#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryGroupForm.jsx:41 +#: screens/Inventory/shared/InventorySourceForm.jsx:105 +#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:107 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 +#: screens/Organization/OrganizationList/OrganizationList.jsx:137 +#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 +#: screens/Organization/shared/OrganizationForm.jsx:60 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:84 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:138 +#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectListItem.jsx:99 +#: screens/Project/shared/ProjectForm.jsx:167 +#: screens/Team/TeamDetail/TeamDetail.jsx:34 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamListItem.jsx:40 +#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: 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/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:158 +#: 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:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 +#: screens/Template/shared/JobTemplateForm.jsx:207 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:110 +#: screens/User/UserTeams/UserTeamList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 msgid "Name" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:185 +#: components/AppContainer/AppContainer.jsx:185 msgid "Navigation" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:509 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:106 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 +#: screens/Dashboard/shared/ChartTooltip.jsx:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 msgid "Never" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:98 +#: components/Workflow/WorkflowNodeHelp.jsx:98 msgid "Never Updated" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 msgid "Never expires" msgstr "" -#: src/components/JobList/JobList.jsx:221 -#: src/components/Workflow/WorkflowNodeHelp.jsx:74 +#: components/JobList/JobList.jsx:199 +#: components/Workflow/WorkflowNodeHelp.jsx:74 msgid "New" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:79 -#: src/components/LaunchPrompt/LaunchPrompt.jsx:113 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:122 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:79 +#: components/LaunchPrompt/LaunchPrompt.jsx:120 +#: components/Schedule/shared/SchedulePromptableFields.jsx:124 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 msgid "Next" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:175 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:102 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:106 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 +#: components/Schedule/ScheduleList/ScheduleList.jsx:175 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:102 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:106 msgid "Next Run" msgstr "" -#: src/components/Search/Search.jsx:249 +#: components/Search/Search.jsx:257 msgid "No" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:157 +#: screens/Job/JobOutput/JobOutput.jsx:656 +msgid "No Hosts Matched" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:657 +msgid "No Hosts Remaining" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:157 msgid "No JSON Available" msgstr "" -#: src/screens/Dashboard/shared/ChartTooltip.jsx:82 +#: screens/Dashboard/shared/ChartTooltip.jsx:82 msgid "No Jobs" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:193 +#: screens/Job/JobOutput/HostEventModal.jsx:193 msgid "No Standard Error Available" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:175 +#: screens/Job/JobOutput/HostEventModal.jsx:175 msgid "No Standard Out Available" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:65 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:65 msgid "No inventory sync failures." msgstr "" -#: src/components/ContentEmpty/ContentEmpty.jsx:16 +#: components/ContentEmpty/ContentEmpty.jsx:16 msgid "No items found." msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:133 +#: screens/Job/JobOutput/HostEventModal.jsx:133 msgid "No result found" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:95 -#: src/components/Search/AdvancedSearch.jsx:133 -#: src/components/Search/AdvancedSearch.jsx:153 +#: components/Search/AdvancedSearch.jsx:96 +#: components/Search/AdvancedSearch.jsx:134 +#: components/Search/AdvancedSearch.jsx:154 msgid "No results found" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:174 +#: screens/Template/Survey/SurveyList.jsx:176 msgid "No survey questions found." msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:96 -#: src/components/PaginatedTable/PaginatedTable.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:96 +#: components/PaginatedTable/PaginatedTable.jsx:78 msgid "No {pluralizedItemName} Found" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:46 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:74 msgid "Node Type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:43 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:74 msgid "Node type" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:107 +#: components/Workflow/WorkflowNodeHelp.jsx:107 msgid "None" msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 msgid "None (Run Once)" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:162 +#: components/Schedule/shared/ScheduleForm.jsx:162 msgid "None (run once)" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:46 -#: src/screens/User/UserList/UserListItem.jsx:30 -#: src/screens/User/shared/UserForm.jsx:29 +#: screens/User/UserDetail/UserDetail.jsx:46 +#: screens/User/UserList/UserListItem.jsx:30 +#: screens/User/shared/UserForm.jsx:29 msgid "Normal User" msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Not Found" msgstr "" -#: src/screens/Setting/shared/SettingDetail.jsx:59 -#: src/screens/Setting/shared/SettingDetail.jsx:98 -#: src/screens/Setting/shared/SettingDetail.jsx:121 +#: screens/Setting/shared/SettingDetail.jsx:59 +#: screens/Setting/shared/SettingDetail.jsx:100 msgid "Not configured" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:68 msgid "Not configured for inventory sync." msgstr "" +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 +msgid "" +"Note that only hosts directly in this group can\n" +"be disassociated. Hosts in sub-groups must be disassociated\n" +"directly from the sub-group level that they belong." +msgstr "" + #: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 -msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgid "Note that only hosts directly in this group can be disassociated. Hosts in sub-groups must be disassociated directly from the sub-group level that they belong." +#~ msgstr "" + +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s\n" +"children. This list shows all groups the host is associated\n" +"with directly and indirectly." +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:212 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s \n" +"children. This list shows all groups the host is associated \n" +"with directly and indirectly." msgstr "" #: src/screens/Host/HostGroups/HostGroupsList.jsx:212 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" #: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 -msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." -msgstr "" +#~ msgid "Note that you may still see the group in the list after disassociating if the host is also a member of that group’s children. This list shows all groups the host is associated with directly and indirectly." +#~ msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 msgid "Note: This field assumes the remote name is \"origin\"." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 -msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +msgid "" +"Note: When using SSH protocol for GitHub or\n" +"Bitbucket, enter an SSH key only, do not enter a username\n" +"(other than git). Additionally, GitHub and Bitbucket do\n" +"not support password authentication when using SSH. GIT\n" +"read only protocol (git://) does not use username or\n" +"password information." msgstr "" +#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +#~ msgid "Note: When using SSH protocol for GitHub or Bitbucket, enter an SSH key only, do not enter a username (other than git). Additionally, GitHub and Bitbucket do not support password authentication when using SSH. GIT read only protocol (git://) does not use username or password information." +#~ msgstr "" + #: src/screens/Inventory/Inventories.jsx:120 -msgid "Notifcations" -msgstr "" +#~ msgid "Notifcations" +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 msgid "Notification Color" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:58 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:51 +#: screens/NotificationTemplate/NotificationTemplate.jsx:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 msgid "Notification Template not found." msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:195 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:171 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:13 -#: src/screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: screens/ActivityStream/ActivityStream.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188 +#: screens/NotificationTemplate/NotificationTemplates.jsx:13 +#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: util/getRelatedResourceDeleteDetails.js:205 msgid "Notification Templates" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 msgid "Notification Type" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 msgid "Notification color" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:130 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:249 +msgid "Notification sent successfully" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:253 +msgid "Notification timed out" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:147 msgid "Notification type" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:177 -#: src/routeConfig.js:122 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:104 -#: src/screens/ManagementJob/ManagementJob.jsx:115 -#: src/screens/ManagementJob/ManagementJobs.jsx:24 -#: src/screens/Organization/Organization.jsx:129 -#: src/screens/Organization/Organizations.jsx:35 -#: src/screens/Project/Project.jsx:111 -#: src/screens/Project/Projects.jsx:31 -#: src/screens/Template/Template.jsx:137 -#: src/screens/Template/Templates.jsx:47 -#: src/screens/Template/WorkflowJobTemplate.jsx:127 +#: components/NotificationList/NotificationList.jsx:177 +#: routeConfig.js:123 +#: screens/Inventory/Inventories.jsx:118 +#: screens/Inventory/InventorySource/InventorySource.jsx:104 +#: screens/ManagementJob/ManagementJob.jsx:115 +#: screens/ManagementJob/ManagementJobs.jsx:24 +#: screens/Organization/Organization.jsx:135 +#: screens/Organization/Organizations.jsx:35 +#: screens/Project/Project.jsx:111 +#: screens/Project/Projects.jsx:31 +#: screens/Template/Template.jsx:150 +#: screens/Template/Templates.jsx:47 +#: screens/Template/WorkflowJobTemplate.jsx:127 msgid "Notifications" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:162 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 msgid "November" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:101 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:66 -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +#: components/Workflow/WorkflowNodeHelp.jsx:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 msgid "OK" msgstr "" -#: src/components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:543 +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 msgid "Occurrences" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:157 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 msgid "October" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:225 -#: src/components/HostToggle/HostToggle.jsx:59 -#: src/components/InstanceToggle/InstanceToggle.jsx:59 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:53 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:225 +#: components/HostToggle/HostToggle.jsx:59 +#: components/InstanceToggle/InstanceToggle.jsx:59 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:53 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "Off" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:224 -#: src/components/HostToggle/HostToggle.jsx:58 -#: src/components/InstanceToggle/InstanceToggle.jsx:58 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 -#: src/components/PromptDetail/PromptDetail.jsx:253 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:139 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 -#: src/screens/Setting/shared/SettingDetail.jsx:86 -#: src/screens/Setting/shared/SharedFields.jsx:96 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 -#: src/screens/Template/Survey/SurveyToolbar.jsx:52 -#: src/screens/Template/shared/JobTemplateForm.jsx:454 +#: components/AdHocCommands/AdHocDetailsStep.jsx:224 +#: components/HostToggle/HostToggle.jsx:58 +#: components/InstanceToggle/InstanceToggle.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:96 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:52 +#: screens/Template/shared/JobTemplateForm.jsx:484 msgid "On" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:122 -#: src/components/Workflow/WorkflowLinkHelp.jsx:30 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:66 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 +#: components/Workflow/WorkflowLegend.jsx:122 +#: components/Workflow/WorkflowLinkHelp.jsx:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 msgid "On Failure" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:118 -#: src/components/Workflow/WorkflowLinkHelp.jsx:27 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:61 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 +#: components/Workflow/WorkflowLegend.jsx:118 +#: components/Workflow/WorkflowLinkHelp.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 msgid "On Success" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:531 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 msgid "On date" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:255 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 msgid "On days" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:154 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:155 msgid "Only Group By" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 msgid "OpenStack" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 msgid "Option Details" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:372 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:212 +msgid "" +"Optional labels that describe this job template,\n" +"such as 'dev' or 'test'. Labels can be used to group and filter\n" +"job templates and completed jobs." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:342 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:187 -msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." -msgstr "" +#~ msgid "Optional labels that describe this job template, such as 'dev' or 'test'. Labels can be used to group and filter job templates and completed jobs." +#~ msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:218 +#: screens/Template/shared/WebhookSubForm.jsx:219 msgid "Optionally select the credential to use to send status updates back to the webhook service." msgstr "" -#: src/components/NotificationList/NotificationList.jsx:222 -#: src/components/NotificationList/NotificationListItem.jsx:34 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:166 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:174 -#: src/components/PromptDetail/PromptProjectDetail.jsx:86 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:137 -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:49 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:67 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:243 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:121 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:268 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:163 -#: src/screens/Template/shared/JobTemplateForm.jsx:500 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:213 +#: components/NotificationList/NotificationList.jsx:222 +#: components/NotificationList/NotificationListItem.jsx:34 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:167 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:180 +#: components/PromptDetail/PromptProjectDetail.jsx:92 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141 +#: screens/Credential/shared/TypeInputsSubForm.jsx:49 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180 +#: screens/Template/shared/JobTemplateForm.jsx:530 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 msgid "Options" msgstr "" -#: src/components/Lookup/ApplicationLookup.jsx:97 -#: src/components/Lookup/OrganizationLookup.jsx:81 -#: src/components/Lookup/OrganizationLookup.jsx:86 -#: src/components/Lookup/OrganizationLookup.jsx:99 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:63 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:73 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:91 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:101 -#: src/components/PromptDetail/PromptProjectDetail.jsx:55 -#: src/components/PromptDetail/PromptProjectDetail.jsx:65 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:37 -#: src/screens/Application/ApplicationsList/ApplicationsList.jsx:163 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:204 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:76 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:197 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:100 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:195 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:89 -#: src/screens/Team/TeamDetail/TeamDetail.jsx:40 -#: src/screens/Team/TeamList/TeamList.jsx:155 -#: src/screens/Team/TeamList/TeamListItem.jsx:45 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:172 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:182 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 -#: src/screens/User/UserTeams/UserTeamList.jsx:235 -#: src/screens/User/UserTeams/UserTeamListItem.jsx:42 +#: components/Lookup/ApplicationLookup.jsx:97 +#: components/Lookup/OrganizationLookup.jsx:82 +#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/OrganizationLookup.jsx:101 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:64 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:74 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:93 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:103 +#: components/PromptDetail/PromptProjectDetail.jsx:56 +#: components/PromptDetail/PromptProjectDetail.jsx:66 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:37 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:67 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 +#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:91 +#: screens/Team/TeamDetail/TeamDetail.jsx:40 +#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamListItem.jsx:45 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:123 +#: screens/User/UserTeams/UserTeamList.jsx:235 +#: screens/User/UserTeams/UserTeamListItem.jsx:42 msgid "Organization" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 msgid "Organization (Name)" msgstr "" -#: src/screens/Team/TeamList/TeamList.jsx:138 +#: screens/Team/TeamList/TeamList.jsx:138 msgid "Organization Name" msgstr "" -#: src/screens/Organization/Organization.jsx:148 +#: screens/Organization/Organization.jsx:154 msgid "Organization not found." msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 -#: src/routeConfig.js:96 -#: src/screens/ActivityStream/ActivityStream.jsx:178 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:129 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:175 -#: src/screens/Organization/Organizations.jsx:16 -#: src/screens/Organization/Organizations.jsx:27 -#: src/screens/User/User.jsx:65 -#: src/screens/User/UserOrganizations/UserOrganizationsList.jsx:55 -#: src/screens/User/Users.jsx:34 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 +#: routeConfig.js:97 +#: screens/ActivityStream/ActivityStream.jsx:178 +#: screens/Organization/OrganizationList/OrganizationList.jsx:133 +#: screens/Organization/OrganizationList/OrganizationList.jsx:179 +#: screens/Organization/Organizations.jsx:16 +#: screens/Organization/Organizations.jsx:27 +#: screens/User/User.jsx:65 +#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55 +#: screens/User/Users.jsx:34 +#: util/getRelatedResourceDeleteDetails.js:256 +#: util/getRelatedResourceDeleteDetails.js:290 msgid "Organizations" msgstr "" -#: src/components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 msgid "Other prompts" msgstr "" -#: src/screens/Job/Job.jsx:64 -#: src/screens/Job/Jobs.jsx:28 +#: screens/Job/Job.jsx:104 +#: screens/Job/Jobs.jsx:28 msgid "Output" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:47 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:114 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:129 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 msgid "Overwrite" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:49 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 msgid "Overwrite Variables" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:137 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:150 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 msgid "Overwrite variables" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 msgid "POST" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 msgid "PUT" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:198 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: components/NotificationList/NotificationList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 msgid "Pagerduty" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 msgid "Pagerduty Subdomain" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 msgid "Pagerduty subdomain" msgstr "" -#: src/components/Pagination/Pagination.jsx:37 +#: components/Pagination/Pagination.jsx:35 msgid "Pagination" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:157 +#: components/Workflow/WorkflowTools.jsx:166 msgid "Pan Down" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:130 +#: components/Workflow/WorkflowTools.jsx:133 msgid "Pan Left" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:167 +#: components/Workflow/WorkflowTools.jsx:177 msgid "Pan Right" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:140 +#: components/Workflow/WorkflowTools.jsx:144 msgid "Pan Up" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:279 +#: components/AdHocCommands/AdHocDetailsStep.jsx:279 msgid "Pass extra command line changes. There are two ansible command line parameters:" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:362 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:209 +#: screens/Template/shared/JobTemplateForm.jsx:392 +msgid "" +"Pass extra command line variables to the playbook. This is the\n" +"-e or --extra-vars command line parameter for ansible-playbook.\n" +"Provide key/value pairs using either YAML or JSON. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: 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 "" -#: src/screens/Login/Login.jsx:258 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:52 -#: src/screens/User/shared/UserForm.jsx:85 +#: screens/Login/Login.jsx:172 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 +#: screens/Template/Survey/SurveyQuestionForm.jsx:52 +#: screens/User/shared/UserForm.jsx:85 msgid "Password" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:204 +#: screens/Dashboard/Dashboard.jsx:204 msgid "Past month" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:207 +#: screens/Dashboard/Dashboard.jsx:207 msgid "Past two weeks" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:210 +#: screens/Dashboard/Dashboard.jsx:210 msgid "Past week" msgstr "" -#: src/components/JobList/JobList.jsx:222 -#: src/components/Workflow/WorkflowNodeHelp.jsx:77 +#: components/JobList/JobList.jsx:200 +#: components/Workflow/WorkflowNodeHelp.jsx:77 msgid "Pending" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:88 +#: components/AppContainer/PageHeaderToolbar.jsx:88 msgid "Pending Workflow Approvals" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:109 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:109 msgid "Pending delete" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:310 +#: components/Lookup/HostFilterLookup.jsx:311 msgid "Perform a search to define a host filter" msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:43 msgid "Personal access token" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:128 +#: screens/Job/JobOutput/HostEventModal.jsx:128 msgid "Play" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:82 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:89 msgid "Play Count" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:132 -#: src/screens/Job/JobDetail/JobDetail.jsx:221 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 -#: src/screens/Template/shared/JobTemplateForm.jsx:300 +#: screens/Job/JobOutput/JobOutput.jsx:661 +msgid "Play Started" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 +#: screens/Job/JobDetail/JobDetail.jsx:249 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 +#: screens/Template/shared/JobTemplateForm.jsx:330 msgid "Playbook" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:103 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:139 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:97 +msgid "Playbook Check" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:662 +msgid "Playbook Complete" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:142 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 msgid "Playbook Directory" msgstr "" -#: src/components/JobList/JobList.jsx:207 -#: src/components/JobList/JobListItem.jsx:33 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:38 -#: src/screens/Job/JobDetail/JobDetail.jsx:79 +#: components/JobList/JobList.jsx:185 +#: components/JobList/JobListItem.jsx:33 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 +#: screens/Job/JobDetail/JobDetail.jsx:98 msgid "Playbook Run" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:201 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +#: screens/Job/JobOutput/JobOutput.jsx:653 +msgid "Playbook Started" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:206 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 msgid "Playbook name" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:235 +#: screens/Dashboard/Dashboard.jsx:235 msgid "Playbook run" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:83 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:90 msgid "Plays" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:177 +#: screens/Template/Survey/SurveyList.jsx:179 msgid "Please add survey questions." msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:94 -#: src/components/PaginatedTable/PaginatedTable.jsx:90 +#: components/PaginatedDataList/PaginatedDataList.jsx:94 +#: components/PaginatedTable/PaginatedTable.jsx:91 msgid "Please add {pluralizedItemName} to populate this list" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 msgid "Please click the Start button to begin." msgstr "" -#: src/util/validators.jsx:118 +#: util/validators.jsx:118 msgid "Please enter a valid URL" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:22 +#: screens/User/shared/UserTokenForm.jsx:22 msgid "Please enter a value." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:507 +#: components/Schedule/shared/ScheduleForm.jsx:581 msgid "Please select a day number between 1 and 31." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:723 +#: screens/Template/shared/JobTemplateForm.jsx:755 msgid "Please select an Inventory or check the Prompt on Launch option." msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:497 +#: components/Schedule/shared/ScheduleForm.jsx:571 msgid "Please select an end date/time that comes after the start date/time." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:298 +#: components/Lookup/HostFilterLookup.jsx:299 msgid "Please select an organization before editing the host filter" msgstr "" -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:74 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 msgid "Pod spec override" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:88 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:91 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 msgid "Policy instance minimum" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:93 -#: src/screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:96 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 msgid "Policy instance percentage" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:54 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:61 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:71 msgid "Populate field from an external secret management system" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:287 -msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#: components/Lookup/HostFilterLookup.jsx:288 +msgid "" +"Populate the hosts for this inventory by using a search\n" +"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" +"Refer to the Ansible Tower documentation for further syntax and\n" +"examples." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +#: src/components/Lookup/HostFilterLookup.jsx:287 +#~ msgid "Populate the hosts for this inventory by using a search filter. Example: ansible_facts.ansible_distribution:\"RedHat\". Refer to the Ansible Tower documentation for further syntax and examples." +#~ msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 msgid "Port" msgstr "" -#: src/components/LaunchPrompt/steps/usePreviewStep.jsx:23 -#: src/screens/Template/Survey/SurveyList.jsx:161 -#: src/screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:212 +msgid "Preconditions for running this node when there are multiple parents. Refer to the" +msgstr "" + +#: components/CodeEditor/CodeEditor.jsx:176 +msgid "Press Enter to edit. Press ESC to stop editing." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 +#: screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/Survey/SurveyList.jsx:165 msgid "Preview" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 msgid "Private key passphrase" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:506 +#: screens/Template/shared/JobTemplateForm.jsx:536 msgid "Privilege Escalation" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 msgid "Privilege escalation password" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:86 -#: src/components/Lookup/ProjectLookup.jsx:91 -#: src/components/Lookup/ProjectLookup.jsx:144 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:92 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:121 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:129 -#: src/components/TemplateList/TemplateListItem.jsx:255 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:209 -#: src/screens/Job/JobDetail/JobDetail.jsx:211 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:199 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:207 +#: components/Lookup/ProjectLookup.jsx:86 +#: components/Lookup/ProjectLookup.jsx:91 +#: components/Lookup/ProjectLookup.jsx:144 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:89 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 +#: components/TemplateList/TemplateListItem.jsx:283 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217 +#: screens/Job/JobDetail/JobDetail.jsx:224 +#: screens/Job/JobDetail/JobDetail.jsx:239 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:205 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 msgid "Project" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:98 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:134 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 +#: components/PromptDetail/PromptProjectDetail.jsx:100 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:137 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 msgid "Project Base Path" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:104 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:73 +#: components/Workflow/WorkflowLegend.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:101 msgid "Project Sync" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:55 +#: components/Workflow/WorkflowNodeHelp.jsx:55 msgid "Project Update" msgstr "" -#: src/screens/Project/Project.jsx:139 +#: screens/Project/Project.jsx:139 msgid "Project not found." msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:157 +#: screens/Dashboard/Dashboard.jsx:157 msgid "Project sync failures" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 -#: src/routeConfig.js:75 -#: src/screens/ActivityStream/ActivityStream.jsx:167 -#: src/screens/Dashboard/Dashboard.jsx:151 -#: src/screens/Project/ProjectList/ProjectList.jsx:128 -#: src/screens/Project/ProjectList/ProjectList.jsx:196 -#: src/screens/Project/Projects.jsx:14 -#: src/screens/Project/Projects.jsx:25 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 +#: routeConfig.js:76 +#: screens/ActivityStream/ActivityStream.jsx:167 +#: screens/Dashboard/Dashboard.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:133 +#: screens/Project/ProjectList/ProjectList.jsx:201 +#: screens/Project/Projects.jsx:14 +#: screens/Project/Projects.jsx:25 +#: util/getRelatedResourceDeleteDetails.js:60 +#: util/getRelatedResourceDeleteDetails.js:219 +#: util/getRelatedResourceDeleteDetails.js:249 msgid "Projects" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:137 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:136 msgid "Promote Child Groups and Hosts" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:557 -#: src/components/Schedule/shared/ScheduleForm.jsx:560 +#: components/Schedule/shared/ScheduleForm.jsx:633 +#: components/Schedule/shared/ScheduleForm.jsx:636 msgid "Prompt" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:153 +#: components/PromptDetail/PromptDetail.jsx:153 msgid "Prompt Overrides" msgstr "" -#: src/components/CodeMirrorInput/VariablesField.jsx:74 -#: src/components/FieldWithPrompt/FieldWithPrompt.jsx:47 -#: src/screens/Credential/CredentialDetail/CredentialDetail.jsx:161 +#: components/CodeEditor/VariablesField.jsx:158 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167 msgid "Prompt on launch" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:150 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 +#: components/PromptDetail/PromptDetail.jsx:150 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 msgid "Prompted Values" msgstr "" -#: src/components/LaunchPrompt/LaunchPrompt.jsx:100 -#: src/components/Schedule/shared/SchedulePromptableFields.jsx:109 +#: components/LaunchPrompt/LaunchPrompt.jsx:107 +#: components/Schedule/shared/SchedulePromptableFields.jsx:111 msgid "Prompts" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:423 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:158 +msgid "" +"Provide a host pattern to further constrain\n" +"the list of hosts that will be managed or affected by the\n" +"playbook. Multiple patterns are allowed. Refer to Ansible\n" +"documentation for more information and examples on patterns." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +msgid "" +"Provide a host pattern to further constrain the list\n" +"of hosts that will be managed or affected by the playbook. Multiple\n" +"patterns are allowed. Refer to Ansible documentation for more\n" +"information and examples on patterns." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 #: src/screens/Template/shared/JobTemplateForm.jsx:393 #: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:147 -msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." -msgstr "" +#~ msgid "Provide a host pattern to further constrain the list of hosts that will be managed or affected by the playbook. Multiple patterns are allowed. Refer to Ansible documentation for more information and examples on patterns." +#~ msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/CredentialField.jsx:97 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164 msgid "Provide a value for this field or select the Prompt on launch option." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 -msgid "Provide key/value pairs using either YAML or JSON." +#: components/AdHocCommands/AdHocDetailsStep.jsx:284 +msgid "" +"Provide key/value pairs using either\n" +"YAML or JSON." msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:146 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 -#: src/screens/Template/shared/JobTemplateForm.jsx:579 +#: src/components/AdHocCommands/AdHocDetailsStep.jsx:284 +#~ msgid "Provide key/value pairs using either YAML or JSON." +#~ msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:152 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:609 msgid "Provisioning Callback URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:574 +#: screens/Template/shared/JobTemplateForm.jsx:604 msgid "Provisioning Callback details" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:511 -#: src/screens/Template/shared/JobTemplateForm.jsx:514 +#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:544 msgid "Provisioning Callbacks" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:116 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:93 +msgid "Pull" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:116 msgid "Question" msgstr "" -#: src/screens/Setting/Settings.jsx:103 +#: screens/Setting/Settings.jsx:103 msgid "RADIUS" msgstr "" -#: src/screens/Setting/SettingList.jsx:78 +#: screens/Setting/SettingList.jsx:78 msgid "RADIUS settings" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:80 +#: screens/User/shared/UserTokenForm.jsx:80 msgid "Read" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:177 +#: screens/Dashboard/Dashboard.jsx:177 msgid "Recent Jobs" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:175 +#: screens/Dashboard/Dashboard.jsx:175 msgid "Recent Jobs list tab" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:183 +#: screens/Dashboard/Dashboard.jsx:183 msgid "Recent Templates" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:180 +#: screens/Dashboard/Dashboard.jsx:180 msgid "Recent Templates list tab" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 msgid "Recipient List" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 msgid "Recipient list" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:117 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 -#: src/screens/Project/ProjectList/ProjectList.jsx:149 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +#: components/Lookup/ProjectLookup.jsx:117 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 +#: screens/Project/ProjectList/ProjectList.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 msgid "Red Hat Insights" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 msgid "Red Hat Satellite 6" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 msgid "Red Hat Virtualization" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:108 +#: screens/Application/shared/ApplicationForm.jsx:108 msgid "Redirect URIs" msgstr "" -#: src/screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 msgid "Redirect uris" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:383 -msgid "Refer to the Ansible documentation for details about the configuration file." +#: screens/Template/shared/JobTemplateForm.jsx:413 +msgid "" +"Refer to the Ansible documentation for details\n" +"about the configuration file." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:78 +#: src/screens/Template/shared/JobTemplateForm.jsx:383 +#~ msgid "Refer to the Ansible documentation for details about the configuration file." +#~ msgstr "" + +#: screens/User/UserTokens/UserTokens.jsx:78 msgid "Refresh Token" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 -#: src/screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:85 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 msgid "Refresh Token Expiration" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:118 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:119 msgid "Regions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:240 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +msgid "Registry credential" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:283 msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." msgstr "" -#: src/screens/Inventory/Inventories.jsx:94 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 +#: screens/Inventory/Inventories.jsx:92 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 msgid "Related Groups" msgstr "" -#: src/components/JobList/JobListItem.jsx:104 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:69 -#: src/screens/Job/JobDetail/JobDetail.jsx:360 -#: src/screens/Job/JobDetail/JobDetail.jsx:363 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:150 +#: components/JobList/JobListItem.jsx:105 +#: components/LaunchButton/ReLaunchDropDown.jsx:70 +#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:402 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:161 msgid "Relaunch" msgstr "" -#: src/components/JobList/JobListItem.jsx:89 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:135 +#: components/JobList/JobListItem.jsx:89 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:142 msgid "Relaunch Job" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:33 +#: components/LaunchButton/ReLaunchDropDown.jsx:33 msgid "Relaunch all hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:44 +#: components/LaunchButton/ReLaunchDropDown.jsx:44 msgid "Relaunch failed hosts" msgstr "" -#: src/components/LaunchButton/ReLaunchDropDown.jsx:23 -#: src/components/LaunchButton/ReLaunchDropDown.jsx:28 +#: components/LaunchButton/ReLaunchDropDown.jsx:23 +#: components/LaunchButton/ReLaunchDropDown.jsx:28 msgid "Relaunch on" msgstr "" -#: src/components/JobList/JobListItem.jsx:88 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:134 +#: components/JobList/JobListItem.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:141 msgid "Relaunch using host parameters" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:116 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 -#: src/screens/Project/ProjectList/ProjectList.jsx:148 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +#: components/Lookup/ProjectLookup.jsx:116 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 +#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 msgid "Remote Archive" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:20 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:28 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 msgid "Remove" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 msgid "Remove All Nodes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 msgid "Remove Link" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 msgid "Remove Node" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 msgid "Remove any local modifications prior to performing an update." msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:23 msgid "Remove {0} Access" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:60 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:60 msgid "Remove {0} chip" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:47 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:49 msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." msgstr "" -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 msgid "Repeat Frequency" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:104 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:143 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:45 +msgid "Replace" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:54 +msgid "Replace field with new value" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:106 +#: screens/Template/Survey/SurveyQuestionForm.jsx:143 msgid "Required" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 msgid "Resource deleted" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:21 +#: screens/User/UserRoles/UserRolesListItem.jsx:21 msgid "Resource name" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:40 +#: screens/User/UserRoles/UserRolesListItem.jsx:40 msgid "Resource role" msgstr "" -#: src/screens/User/UserRoles/UserRolesListItem.jsx:30 +#: screens/User/UserRoles/UserRolesListItem.jsx:30 msgid "Resource type" msgstr "" -#: src/routeConfig.js:61 -#: src/screens/ActivityStream/ActivityStream.jsx:156 +#: routeConfig.js:62 +#: screens/ActivityStream/ActivityStream.jsx:156 msgid "Resources" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:121 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:71 +#: components/TemplateList/TemplateListItem.jsx:133 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:81 msgid "Resources are missing from this template." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:44 msgid "Restore initial value." msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 -msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255 +msgid "" +"Retrieve the enabled state from the given dict of host variables.\n" +"The enabled variable may be specified using dot notation, e.g: 'foo.bar'" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:148 -#: src/components/JobList/JobListCancelButton.jsx:151 -#: src/screens/Job/JobOutput/JobOutput.jsx:692 -#: src/screens/Job/JobOutput/JobOutput.jsx:695 +#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:212 +#~ msgid "Retrieve the enabled state from the given dict of host variables. The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:143 +#: components/JobList/JobListCancelButton.jsx:146 +#: screens/Job/JobDetail/JobDetail.jsx:453 +#: screens/Job/JobDetail/JobDetail.jsx:456 +#: screens/Job/JobOutput/JobOutput.jsx:804 +#: screens/Job/JobOutput/JobOutput.jsx:807 msgid "Return" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:115 +#: components/Search/AdvancedSearch.jsx:116 msgid "Returns results that have values other than this one as well as other filters." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:101 +#: components/Search/AdvancedSearch.jsx:102 msgid "Returns results that satisfy this one as well as other filters. This is the default set type if nothing is selected." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:108 +#: components/Search/AdvancedSearch.jsx:109 msgid "Returns results that satisfy this one or any other filters." msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Revert" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:23 +#: screens/Setting/shared/RevertAllAlert.jsx:23 msgid "Revert all" msgstr "" -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:28 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:34 +#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.jsx:34 msgid "Revert all to default" msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:11 +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:53 +msgid "Revert field to previously saved value" +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:11 msgid "Revert settings" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:43 +#: screens/Setting/shared/RevertButton.jsx:43 msgid "Revert to factory default." msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:220 -#: src/screens/Project/ProjectList/ProjectList.jsx:172 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:111 +#: screens/Job/JobDetail/JobDetail.jsx:248 +#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectListItem.jsx:137 msgid "Revision" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 msgid "Revision #" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:199 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:139 +#: components/NotificationList/NotificationList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 msgid "Rocket.Chat" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:40 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:148 -#: src/screens/User/UserList/UserList.jsx:171 -#: src/screens/User/UserList/UserListItem.jsx:78 -#: src/screens/User/UserRoles/UserRolesList.jsx:145 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:44 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.jsx:148 +#: screens/User/UserList/UserList.jsx:171 +#: screens/User/UserList/UserListItem.jsx:78 +#: screens/User/UserRoles/UserRolesList.jsx:145 +#: screens/User/UserRoles/UserRolesListItem.jsx:44 msgid "Role" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessList.jsx:141 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:154 -#: src/screens/Team/Team.jsx:57 -#: src/screens/Team/Teams.jsx:32 -#: src/screens/User/User.jsx:70 -#: src/screens/User/Users.jsx:32 +#: components/ResourceAccessList/ResourceAccessList.jsx:143 +#: components/ResourceAccessList/ResourceAccessList.jsx:156 +#: screens/Team/Team.jsx:57 +#: screens/Team/Teams.jsx:32 +#: screens/User/User.jsx:70 +#: screens/User/Users.jsx:32 msgid "Roles" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 -#: src/components/Workflow/WorkflowLinkHelp.jsx:39 -#: src/screens/Credential/shared/ExternalTestModal.jsx:89 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:47 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 -#: src/screens/Template/shared/JobTemplateForm.jsx:164 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/Workflow/WorkflowLinkHelp.jsx:39 +#: screens/Credential/shared/ExternalTestModal.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 +#: screens/Template/shared/JobTemplateForm.jsx:171 msgid "Run" msgstr "" -#: src/components/AdHocCommands/AdHocCommands.jsx:124 -#: src/components/AdHocCommands/AdHocCommands.jsx:127 -#: src/components/AdHocCommands/AdHocCommands.jsx:132 -#: src/components/AdHocCommands/AdHocCommands.jsx:136 +#: components/AdHocCommands/AdHocCommands.jsx:124 +#: components/AdHocCommands/AdHocCommands.jsx:127 +#: components/AdHocCommands/AdHocCommands.jsx:133 +#: components/AdHocCommands/AdHocCommands.jsx:137 msgid "Run Command" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:109 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:109 msgid "Run command" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:227 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 msgid "Run every" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:157 +#: components/Schedule/shared/ScheduleForm.jsx:157 msgid "Run frequency" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 msgid "Run on" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 msgid "Run type" msgstr "" -#: src/components/JobList/JobList.jsx:224 -#: src/components/TemplateList/TemplateListItem.jsx:93 -#: src/components/Workflow/WorkflowNodeHelp.jsx:83 +#: components/JobList/JobList.jsx:202 +#: components/TemplateList/TemplateListItem.jsx:105 +#: components/Workflow/WorkflowNodeHelp.jsx:83 msgid "Running" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:229 +#: screens/Job/JobOutput/JobOutput.jsx:654 +msgid "Running Handlers" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236 msgid "Running Jobs" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:99 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:99 msgid "Running jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:106 +#: screens/Setting/Settings.jsx:106 msgid "SAML" msgstr "" -#: src/screens/Setting/SettingList.jsx:82 +#: screens/Setting/SettingList.jsx:82 msgid "SAML settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:232 +#: screens/Dashboard/Dashboard.jsx:232 msgid "SCM update" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:53 -#: src/screens/User/UserList/UserListItem.jsx:57 +#: screens/User/UserDetail/UserDetail.jsx:53 +#: screens/User/UserList/UserListItem.jsx:57 msgid "SOCIAL" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 msgid "SSH password" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 msgid "SSL Connection" msgstr "" -#: src/components/Workflow/workflowReducer.js:411 +#: components/Workflow/WorkflowStartNode.jsx:61 +#: components/Workflow/workflowReducer.js:412 msgid "START" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:31 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:35 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:57 +#: components/Sparkline/Sparkline.jsx:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45 +#: screens/Project/ProjectList/ProjectListItem.jsx:65 msgid "STATUS:" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:319 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 msgid "Sat" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:324 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:455 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 msgid "Saturday" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:255 -#: src/components/AssociateModal/AssociateModal.jsx:104 -#: src/components/AssociateModal/AssociateModal.jsx:110 -#: src/components/FormActionGroup/FormActionGroup.jsx:13 -#: src/components/FormActionGroup/FormActionGroup.jsx:19 -#: src/components/Schedule/shared/ScheduleForm.jsx:544 -#: src/components/Schedule/shared/ScheduleForm.jsx:550 -#: src/components/Schedule/shared/useSchedulePromptSteps.js:47 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 -#: src/screens/Credential/shared/CredentialForm.jsx:269 -#: src/screens/Credential/shared/CredentialForm.jsx:274 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:19 -#: src/screens/Setting/shared/RevertFormActionGroup.jsx:25 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:34 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:118 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:161 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:165 +#: components/AddRole/AddResourceRole.jsx:266 +#: components/AssociateModal/AssociateModal.jsx:105 +#: components/AssociateModal/AssociateModal.jsx:111 +#: components/FormActionGroup/FormActionGroup.jsx:14 +#: components/FormActionGroup/FormActionGroup.jsx:20 +#: components/Schedule/shared/ScheduleForm.jsx:619 +#: components/Schedule/shared/ScheduleForm.jsx:625 +#: components/Schedule/shared/useSchedulePromptSteps.js:46 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 +#: screens/Credential/shared/CredentialForm.jsx:274 +#: screens/Credential/shared/CredentialForm.jsx:279 +#: screens/Setting/shared/RevertFormActionGroup.jsx:19 +#: screens/Setting/shared/RevertFormActionGroup.jsx:25 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:166 msgid "Save" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:31 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:34 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 msgid "Save & Exit" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 msgid "Save and enable log aggregation before testing the log aggregator." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 msgid "Save link changes" msgstr "" -#: src/screens/Project/Projects.jsx:38 -#: src/screens/Template/Templates.jsx:56 +#: screens/Project/Projects.jsx:38 +#: screens/Template/Templates.jsx:56 msgid "Schedule Details" msgstr "" -#: src/screens/Inventory/Inventories.jsx:117 +#: screens/Inventory/Inventories.jsx:115 msgid "Schedule details" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 msgid "Schedule is active" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 msgid "Schedule is inactive" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:460 +#: components/Schedule/shared/ScheduleForm.jsx:534 msgid "Schedule is missing rrule" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:231 -#: src/routeConfig.js:44 -#: src/screens/ActivityStream/ActivityStream.jsx:150 -#: src/screens/Inventory/Inventories.jsx:110 -#: src/screens/Inventory/InventorySource/InventorySource.jsx:93 -#: src/screens/ManagementJob/ManagementJob.jsx:107 -#: src/screens/ManagementJob/ManagementJobs.jsx:25 -#: src/screens/Project/Project.jsx:123 -#: src/screens/Project/Projects.jsx:34 -#: src/screens/Schedule/AllSchedules.jsx:25 -#: src/screens/Template/Template.jsx:144 -#: src/screens/Template/Templates.jsx:52 -#: src/screens/Template/WorkflowJobTemplate.jsx:134 +#: components/Schedule/ScheduleList/ScheduleList.jsx:231 +#: routeConfig.js:45 +#: screens/ActivityStream/ActivityStream.jsx:150 +#: screens/Inventory/Inventories.jsx:108 +#: screens/Inventory/InventorySource/InventorySource.jsx:93 +#: screens/ManagementJob/ManagementJob.jsx:107 +#: screens/ManagementJob/ManagementJobs.jsx:25 +#: screens/Project/Project.jsx:123 +#: screens/Project/Projects.jsx:34 +#: screens/Schedule/AllSchedules.jsx:25 +#: screens/Template/Template.jsx:157 +#: screens/Template/Templates.jsx:52 +#: screens/Template/WorkflowJobTemplate.jsx:134 msgid "Schedules" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 -#: src/screens/User/UserTokenDetail/UserTokenDetail.jsx:53 -#: src/screens/User/UserTokenList/UserTokenList.jsx:126 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:61 -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:62 -#: src/screens/User/shared/UserTokenForm.jsx:68 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 +#: screens/User/UserTokenList/UserTokenList.jsx:126 +#: screens/User/UserTokenList/UserTokenListItem.jsx:61 +#: screens/User/UserTokenList/UserTokenListItem.jsx:62 +#: screens/User/shared/UserTokenForm.jsx:68 msgid "Scope" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:57 +#: screens/Job/JobOutput/PageControls.jsx:61 msgid "Scroll first" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:64 +#: screens/Job/JobOutput/PageControls.jsx:69 msgid "Scroll last" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:50 +#: screens/Job/JobOutput/PageControls.jsx:53 msgid "Scroll next" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:43 +#: screens/Job/JobOutput/PageControls.jsx:45 msgid "Scroll previous" msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:250 -#: src/components/Lookup/Lookup.jsx:106 +#: components/Lookup/HostFilterLookup.jsx:251 +#: components/Lookup/Lookup.jsx:106 msgid "Search" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:257 -#: src/components/Search/Search.jsx:273 +#: screens/Job/JobOutput/JobOutput.jsx:723 +msgid "Search is disabled while the job is running" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:258 +#: components/Search/Search.jsx:282 msgid "Search submit button" msgstr "" -#: src/components/Search/Search.jsx:264 +#: components/Search/Search.jsx:272 msgid "Search text input" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:405 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 msgid "Second" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:104 -#: src/components/PromptDetail/PromptProjectDetail.jsx:89 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:125 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:105 +#: components/PromptDetail/PromptProjectDetail.jsx:95 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:127 msgid "Seconds" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:67 +#: components/LaunchPrompt/steps/PreviewStep.jsx:67 msgid "See errors on the left" msgstr "" -#: src/components/JobList/JobListItem.jsx:57 -#: src/components/Lookup/HostFilterLookup.jsx:319 -#: src/components/Lookup/Lookup.jsx:140 -#: src/components/Pagination/Pagination.jsx:35 +#: components/JobList/JobListItem.jsx:57 +#: components/Lookup/HostFilterLookup.jsx:321 +#: components/Lookup/Lookup.jsx:141 +#: components/Pagination/Pagination.jsx:33 msgid "Select" msgstr "" -#: src/screens/Host/HostGroups/HostGroupsList.jsx:236 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 +#: screens/Host/HostGroups/HostGroupsList.jsx:236 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 msgid "Select Groups" msgstr "" -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 msgid "Select Hosts" msgstr "" -#: src/components/AnsibleSelect/AnsibleSelect.jsx:38 +#: components/AnsibleSelect/AnsibleSelect.jsx:38 msgid "Select Input" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceList.jsx:223 +#: screens/InstanceGroup/Instances/InstanceList.jsx:223 msgid "Select Instances" msgstr "" -#: src/components/AssociateModal/AssociateModal.jsx:22 +#: components/AssociateModal/AssociateModal.jsx:22 msgid "Select Items" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:210 +#: components/AddRole/AddResourceRole.jsx:221 msgid "Select Items from List" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:255 msgid "Select Roles to Apply" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:249 +#: screens/User/UserTeams/UserTeamList.jsx:249 msgid "Select Teams" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 msgid "Select a JSON formatted service account key to autopopulate the following fields." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:50 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:78 msgid "Select a Node Type" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:180 +#: components/AddRole/AddResourceRole.jsx:191 msgid "Select a Resource Type" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:280 -msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#: screens/Template/shared/JobTemplateForm.jsx:310 +msgid "" +"Select a branch for the job template. This branch is applied to\n" +"all job template nodes that prompt for a branch." msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 +#: src/screens/Template/shared/JobTemplateForm.jsx:280 +#~ msgid "Select a branch for the job template. This branch is applied to all job template nodes that prompt for a branch." +#~ msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:170 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:181 msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:162 +#: screens/Credential/shared/CredentialForm.jsx:162 msgid "Select a credential Type" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:88 +#: components/JobList/JobListCancelButton.jsx:84 msgid "Select a job to cancel" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:81 +#: components/AdHocCommands/AdHocDetailsStep.jsx:81 msgid "Select a module" msgstr "" -#: src/screens/Template/shared/PlaybookSelect.jsx:58 +#: screens/Template/shared/PlaybookSelect.jsx:58 msgid "Select a playbook" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +#: screens/Template/shared/JobTemplateForm.jsx:296 +msgid "Select a project before editing the execution environment." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 msgid "Select a row to approve" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:110 -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 msgid "Select a row to delete" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 msgid "Select a row to deny" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:62 +#: components/DisassociateButton/DisassociateButton.jsx:62 msgid "Select a row to disassociate" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:85 +#: components/Schedule/shared/ScheduleForm.jsx:85 msgid "Select a valid date and time for this field" msgstr "" -#: src/components/HostForm/HostForm.jsx:23 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:55 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:82 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:86 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:94 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:98 -#: src/components/Schedule/shared/ScheduleForm.jsx:91 -#: src/components/Schedule/shared/ScheduleForm.jsx:95 -#: src/screens/Credential/shared/CredentialForm.jsx:43 -#: src/screens/InstanceGroup/shared/ContainerGroupForm.jsx:28 -#: src/screens/Inventory/shared/InventoryForm.jsx:24 -#: src/screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 -#: src/screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 -#: src/screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:33 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 -#: src/screens/Project/shared/ProjectForm.jsx:101 -#: src/screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 -#: src/screens/Team/shared/TeamForm.jsx:20 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:28 -#: src/screens/Template/shared/JobTemplateForm.jsx:82 -#: src/screens/Template/shared/JobTemplateForm.jsx:140 -#: src/screens/User/shared/UserForm.jsx:49 +#: components/HostForm/HostForm.jsx:23 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 +#: components/Schedule/shared/ScheduleForm.jsx:91 +#: components/Schedule/shared/ScheduleForm.jsx:95 +#: screens/Credential/shared/CredentialForm.jsx:43 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:24 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 +#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 +#: screens/Project/shared/ProjectForm.jsx:100 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 +#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Template/Survey/SurveyQuestionForm.jsx:28 +#: screens/Template/shared/JobTemplateForm.jsx:83 +#: screens/Template/shared/JobTemplateForm.jsx:147 +#: screens/User/shared/UserForm.jsx:49 msgid "Select a value for this field" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:132 +#: screens/Template/shared/WebhookSubForm.jsx:132 msgid "Select a webhook service." msgstr "" -#: src/components/DataListToolbar/DataListToolbar.jsx:74 -#: src/screens/Template/Survey/SurveyToolbar.jsx:44 +#: components/DataListToolbar/DataListToolbar.jsx:74 +#: screens/Template/Survey/SurveyToolbar.jsx:44 msgid "Select all" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:120 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:131 msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." msgstr "" +#: screens/Project/shared/ProjectForm.jsx:200 +msgid "Select an organization before editing the default execution environment." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:354 +msgid "" +"Select credentials that allow Tower to access the nodes this job will be ran\n" +"against. You can only select one credential of each type. For machine credentials (SSH),\n" +"checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" +"credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" +"credential(s) become the defaults that can be updated at run time." +msgstr "" + #: src/screens/Template/shared/JobTemplateForm.jsx:324 -msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgid "Select credentials that allow Tower to access the nodes this job will be ran against. You can only select one credential of each type. For machine credentials (SSH), checking \"Prompt on launch\" without selecting credentials will require you to select a machine credential at run time. If you select credentials and check \"Prompt on launch\", the selected credential(s) become the defaults that can be updated at run time." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 +msgid "" +"Select from the list of directories found in\n" +"the Project Base Path. Together the base path and the playbook\n" +"directory provide the full path used to locate playbooks." msgstr "" #: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 -msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." -msgstr "" +#~ msgid "Select from the list of directories found in the Project Base Path. Together the base path and the playbook directory provide the full path used to locate playbooks." +#~ msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 msgid "Select items from list" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:215 -#: src/screens/Dashboard/Dashboard.jsx:216 +#: screens/Dashboard/Dashboard.jsx:215 +#: screens/Dashboard/Dashboard.jsx:216 msgid "Select job type" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:193 -#: src/screens/Dashboard/Dashboard.jsx:194 +#: screens/Dashboard/Dashboard.jsx:193 +#: screens/Dashboard/Dashboard.jsx:194 msgid "Select period" msgstr "" -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 msgid "Select roles to apply" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:130 -#: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:131 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 msgid "Select source path" msgstr "" -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:91 +#: screens/Inventory/shared/SmartInventoryForm.jsx:91 msgid "Select the Instance Groups for this Inventory to run on." msgstr "" -#: src/screens/Organization/shared/OrganizationForm.jsx:100 -#: src/screens/Template/shared/JobTemplateForm.jsx:463 +#: screens/Template/shared/JobTemplateForm.jsx:493 +msgid "" +"Select the Instance Groups for this Organization\n" +"to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:90 msgid "Select the Instance Groups for this Organization to run on." msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:47 +#: screens/User/shared/UserTokenForm.jsx:47 msgid "Select the application that this token will belong to." msgstr "" -#: src/components/AdHocCommands/AdHocCredentialStep.jsx:77 +#: components/AdHocCommands/AdHocCredentialStep.jsx:77 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 "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:146 -msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgid "Select the custom Python virtual environment for this inventory source sync to run on." +#~ msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:201 +msgid "Select the default execution environment for this organization to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:102 +msgid "Select the default execution environment for this organization." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:197 +msgid "Select the default execution environment for this project." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:293 +msgid "Select the execution environment for this job template." +msgstr "" + +#: components/Lookup/InventoryLookup.jsx:89 +#: screens/Template/shared/JobTemplateForm.jsx:255 +msgid "" +"Select the inventory containing the hosts\n" +"you want this job to manage." msgstr "" #: src/components/Lookup/InventoryLookup.jsx:89 #: src/screens/Template/shared/JobTemplateForm.jsx:248 -msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgid "Select the inventory containing the hosts you want this job to manage." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +msgid "" +"Select the inventory file\n" +"to be synced by this source. You can select from\n" +"the dropdown or enter a file within the input." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 -msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." -msgstr "" +#~ msgid "Select the inventory file to be synced by this source. You can select from the dropdown or enter a file within the input." +#~ msgstr "" -#: src/components/HostForm/HostForm.jsx:32 -#: src/components/HostForm/HostForm.jsx:47 +#: components/HostForm/HostForm.jsx:32 +#: components/HostForm/HostForm.jsx:47 msgid "Select the inventory that this host will belong to." msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:277 -#: src/screens/Template/shared/JobTemplateForm.jsx:304 +#: screens/Template/shared/JobTemplateForm.jsx:334 msgid "Select the playbook to be executed by this job." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:264 -msgid "Select the project containing the playbook you want this job to execute." +#: screens/Template/shared/JobTemplateForm.jsx:272 +msgid "" +"Select the project containing the playbook\n" +"you want this job to execute." msgstr "" -#: src/components/Lookup/Lookup.jsx:129 +#: src/screens/Template/shared/JobTemplateForm.jsx:264 +#~ msgid "Select the project containing the playbook you want this job to execute." +#~ msgstr "" + +#: components/Lookup/Lookup.jsx:129 msgid "Select {0}" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:221 -#: src/components/AddRole/AddResourceRole.jsx:233 -#: src/components/AddRole/AddResourceRole.jsx:250 -#: src/components/AddRole/SelectRoleStep.jsx:31 -#: src/components/OptionsList/OptionsList.jsx:51 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:76 -#: src/components/TemplateList/TemplateListItem.jsx:112 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 -#: src/components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 -#: src/screens/Application/ApplicationsList/ApplicationListItem.jsx:30 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:53 -#: src/screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 -#: src/screens/Host/HostList/HostListItem.jsx:32 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:79 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:98 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:31 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:86 -#: src/screens/Team/TeamList/TeamListItem.jsx:38 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 +#: components/AddRole/AddResourceRole.jsx:232 +#: components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:261 +#: components/AddRole/SelectRoleStep.jsx:31 +#: components/OptionsList/OptionsList.jsx:51 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:76 +#: components/TemplateList/TemplateListItem.jsx:124 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:30 +#: screens/Credential/CredentialList/CredentialListItem.jsx:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 +#: screens/Host/HostList/HostListItem.jsx:32 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43 +#: screens/Project/ProjectList/ProjectListItem.jsx:97 +#: screens/Team/TeamList/TeamListItem.jsx:38 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 msgid "Selected" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:114 -#: src/components/LaunchPrompt/steps/CredentialsStep.jsx:119 -#: src/components/Lookup/MultiCredentialsLookup.jsx:149 -#: src/components/Lookup/MultiCredentialsLookup.jsx:154 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:153 +#: components/Lookup/MultiCredentialsLookup.jsx:149 +#: components/Lookup/MultiCredentialsLookup.jsx:154 msgid "Selected Category" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 msgid "Send a test log message to the configured log aggregator." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 msgid "Sender Email" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 msgid "Sender e-mail" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:152 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 msgid "September" msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 msgid "Service account JSON file" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:52 -#: src/screens/Project/shared/ProjectForm.jsx:96 +#: screens/Inventory/shared/InventorySourceForm.jsx:56 +#: screens/Project/shared/ProjectForm.jsx:96 msgid "Set a value for this field" msgstr "" -#: src/screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 msgid "Set how many days of data should be retained." msgstr "" -#: src/screens/Setting/SettingList.jsx:126 +#: screens/Setting/SettingList.jsx:126 msgid "Set preferences for data collection, logos, and logins" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:50 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +msgid "Set source path to" +msgstr "" + +#: components/InstanceToggle/InstanceToggle.jsx:50 msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:132 +#: screens/Application/shared/ApplicationForm.jsx:132 msgid "Set to Public or Confidential depending on how secure the client device is." msgstr "" -#: src/components/Search/AdvancedSearch.jsx:93 +#: components/Search/AdvancedSearch.jsx:94 msgid "Set type" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:84 +#: components/Search/AdvancedSearch.jsx:85 msgid "Set type select" msgstr "" -#: src/components/Search/AdvancedSearch.jsx:87 +#: components/Search/AdvancedSearch.jsx:88 msgid "Set type typeahead" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:150 +#: components/Workflow/WorkflowTools.jsx:155 msgid "Set zoom to 100% and center graph" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:45 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 msgid "Setting category" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:47 +#: screens/Setting/shared/RevertButton.jsx:47 msgid "Setting matches factory default." msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:49 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 msgid "Setting name" msgstr "" -#: src/routeConfig.js:144 -#: src/routeConfig.js:148 -#: src/screens/ActivityStream/ActivityStream.jsx:207 -#: src/screens/ActivityStream/ActivityStream.jsx:209 -#: src/screens/Setting/Settings.jsx:43 +#: routeConfig.js:150 +#: routeConfig.js:154 +#: screens/ActivityStream/ActivityStream.jsx:213 +#: screens/ActivityStream/ActivityStream.jsx:215 +#: screens/Setting/Settings.jsx:43 msgid "Settings" msgstr "" -#: src/components/FormField/PasswordInput.jsx:36 +#: components/FormField/PasswordInput.jsx:36 msgid "Show" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 -#: src/components/PromptDetail/PromptDetail.jsx:251 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:138 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:222 -#: src/screens/Template/shared/JobTemplateForm.jsx:445 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/PromptDetail/PromptDetail.jsx:251 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:144 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232 +#: screens/Template/shared/JobTemplateForm.jsx:475 msgid "Show Changes" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 msgid "Show all groups" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:211 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:212 +#: components/AdHocCommands/AdHocDetailsStep.jsx:211 +#: components/AdHocCommands/AdHocDetailsStep.jsx:212 msgid "Show changes" msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:12 +#: components/ChipGroup/ChipGroup.jsx:12 msgid "Show less" msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 msgid "Show only root groups" msgstr "" -#: src/screens/Login/Login.jsx:133 +#: screens/Login/Login.jsx:208 msgid "Sign in with Azure AD" msgstr "" -#: src/screens/Login/Login.jsx:142 +#: screens/Login/Login.jsx:221 msgid "Sign in with GitHub" msgstr "" -#: src/screens/Login/Login.jsx:172 +#: screens/Login/Login.jsx:263 msgid "Sign in with GitHub Enterprise" msgstr "" -#: src/screens/Login/Login.jsx:184 +#: screens/Login/Login.jsx:279 msgid "Sign in with GitHub Enterprise Organizations" msgstr "" -#: src/screens/Login/Login.jsx:196 +#: screens/Login/Login.jsx:296 msgid "Sign in with GitHub Enterprise Teams" msgstr "" -#: src/screens/Login/Login.jsx:152 +#: screens/Login/Login.jsx:235 msgid "Sign in with GitHub Organizations" msgstr "" -#: src/screens/Login/Login.jsx:162 +#: screens/Login/Login.jsx:249 msgid "Sign in with GitHub Teams" msgstr "" -#: src/screens/Login/Login.jsx:206 +#: screens/Login/Login.jsx:311 msgid "Sign in with Google" msgstr "" -#: src/screens/Login/Login.jsx:220 +#: screens/Login/Login.jsx:329 msgid "Sign in with SAML" msgstr "" -#: src/screens/Login/Login.jsx:219 +#: screens/Login/Login.jsx:328 msgid "Sign in with SAML {samlIDP}" msgstr "" -#: src/components/Search/Search.jsx:175 +#: components/Search/Search.jsx:177 msgid "Simple key select" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 -#: src/components/PromptDetail/PromptDetail.jsx:229 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:242 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 -#: src/screens/Job/JobDetail/JobDetail.jsx:308 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:347 -#: src/screens/Template/shared/JobTemplateForm.jsx:484 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 +#: components/PromptDetail/PromptDetail.jsx:229 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 +#: screens/Job/JobDetail/JobDetail.jsx:339 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357 +#: screens/Template/shared/JobTemplateForm.jsx:514 msgid "Skip Tags" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:517 +msgid "" +"Skip tags are useful when you have a\n" +"large playbook, and you want to skip specific parts of a\n" +"play or task. Use commas to separate multiple tags. Refer\n" +"to Ansible Tower documentation for details on the usage\n" +"of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 +msgid "" +"Skip tags are useful when you have a large\n" +"playbook, and you want to skip specific parts of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 #: src/screens/Template/shared/JobTemplateForm.jsx:487 -msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Skip tags are useful when you have a large playbook, and you want to skip specific parts of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 msgid "Skipped" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:200 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:140 +#: components/NotificationList/NotificationList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 msgid "Slack" msgstr "" -#: src/screens/Host/HostList/SmartInventoryButton.jsx:19 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:39 -#: src/screens/Host/HostList/SmartInventoryButton.jsx:43 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:97 +#: screens/Host/HostList/SmartInventoryButton.jsx:19 +#: screens/Host/HostList/SmartInventoryButton.jsx:40 +#: screens/Host/HostList/SmartInventoryButton.jsx:44 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:97 msgid "Smart Inventory" msgstr "" -#: src/screens/Inventory/SmartInventory.jsx:96 +#: screens/Inventory/SmartInventory.jsx:96 msgid "Smart Inventory not found." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:282 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 +#: components/Lookup/HostFilterLookup.jsx:283 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 msgid "Smart host filter" msgstr "" -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 msgid "Smart inventory" msgstr "" -#: src/components/LaunchPrompt/steps/PreviewStep.jsx:64 +#: components/LaunchPrompt/steps/PreviewStep.jsx:64 msgid "Some of the previous step(s) have errors" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 msgid "Something went wrong with the request to test this credential and metadata." msgstr "" -#: src/components/ContentError/ContentError.jsx:39 +#: components/ContentError/ContentError.jsx:39 msgid "Something went wrong..." msgstr "" -#: src/components/Sort/Sort.jsx:129 +#: components/Sort/Sort.jsx:129 msgid "Sort" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:63 -#: src/screens/Template/Survey/SurveyListItem.jsx:64 +#: screens/Template/Survey/SurveyListItem.jsx:63 +#: screens/Template/Survey/SurveyListItem.jsx:64 msgid "Sort question order" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:85 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:192 -#: src/screens/Inventory/shared/InventorySourceForm.jsx:121 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:86 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200 +#: screens/Inventory/shared/InventorySourceForm.jsx:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 msgid "Source" msgstr "" -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 -#: src/components/PromptDetail/PromptDetail.jsx:189 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:131 -#: src/components/PromptDetail/PromptProjectDetail.jsx:72 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:106 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:210 -#: src/screens/Template/shared/JobTemplateForm.jsx:276 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 +#: components/PromptDetail/PromptDetail.jsx:189 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:137 +#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/shared/JobTemplateForm.jsx:306 msgid "Source Control Branch" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 msgid "Source Control Branch/Tag/Commit" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:76 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:110 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 +#: components/PromptDetail/PromptProjectDetail.jsx:82 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:112 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 msgid "Source Control Credential" msgstr "" -#: src/screens/Project/shared/ProjectForm.jsx:188 +#: screens/Project/shared/ProjectForm.jsx:214 msgid "Source Control Credential Type" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:73 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:107 -#: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 +#: components/PromptDetail/PromptProjectDetail.jsx:79 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:109 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 msgid "Source Control Refspec" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:68 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:100 +#: components/PromptDetail/PromptProjectDetail.jsx:74 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:102 msgid "Source Control Type" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:121 -#: src/components/PromptDetail/PromptProjectDetail.jsx:71 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:153 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +#: components/Lookup/ProjectLookup.jsx:121 +#: components/PromptDetail/PromptProjectDetail.jsx:77 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:107 +#: screens/Project/ProjectList/ProjectList.jsx:158 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 msgid "Source Control URL" msgstr "" -#: src/components/JobList/JobList.jsx:205 -#: src/components/JobList/JobListItem.jsx:31 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:39 -#: src/screens/Job/JobDetail/JobDetail.jsx:77 +#: components/JobList/JobList.jsx:183 +#: components/JobList/JobListItem.jsx:31 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 +#: screens/Job/JobDetail/JobDetail.jsx:93 msgid "Source Control Update" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 msgid "Source Phone Number" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:169 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:170 msgid "Source Variables" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:183 +#: screens/Job/JobDetail/JobDetail.jsx:184 msgid "Source Workflow Job" msgstr "" -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:166 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:177 msgid "Source control branch" msgstr "" -#: src/screens/Inventory/shared/InventorySourceForm.jsx:167 +#: screens/Inventory/shared/InventorySourceForm.jsx:157 msgid "Source details" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 msgid "Source phone number" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:247 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:33 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 msgid "Source variables" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 msgid "Sourced from a project" msgstr "" -#: src/screens/Inventory/Inventories.jsx:100 -#: src/screens/Inventory/Inventory.jsx:66 +#: screens/Inventory/Inventories.jsx:98 +#: screens/Inventory/Inventory.jsx:66 msgid "Sources" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +msgid "" +"Specify HTTP Headers in JSON format. Refer to\n" +"the Ansible Tower documentation for example syntax." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 -msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgid "Specify HTTP Headers in JSON format. Refer to the Ansible Tower documentation for example syntax." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +msgid "" +"Specify a notification color. Acceptable colors are hex\n" +"color code (example: #3af or #789abc)." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 -msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." -msgstr "" +#~ msgid "Specify a notification color. Acceptable colors are hex color code (example: #3af or #789abc)." +#~ msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:71 +#: screens/User/shared/UserTokenForm.jsx:71 msgid "Specify a scope for the token's access" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 msgid "Specify the conditions under which this node should be executed" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:180 +#: screens/Job/JobOutput/HostEventModal.jsx:180 msgid "Standard Error" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:162 +#: screens/Job/JobOutput/HostEventModal.jsx:162 msgid "Standard Out" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:181 +#: screens/Job/JobOutput/HostEventModal.jsx:181 msgid "Standard error tab" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:163 +#: screens/Job/JobOutput/HostEventModal.jsx:163 msgid "Standard out tab" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:57 -#: src/components/NotificationList/NotificationListItem.jsx:58 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:48 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:54 +#: components/NotificationList/NotificationListItem.jsx:57 +#: components/NotificationList/NotificationListItem.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:55 msgid "Start" msgstr "" -#: src/components/JobList/JobList.jsx:241 -#: src/components/JobList/JobListItem.jsx:74 +#: components/JobList/JobList.jsx:219 +#: components/JobList/JobListItem.jsx:74 msgid "Start Time" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:123 +#: components/Schedule/shared/ScheduleForm.jsx:123 msgid "Start date/time" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:395 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:396 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 msgid "Start message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:404 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:405 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 msgid "Start message body" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:69 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:70 msgid "Start sync process" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:72 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:74 msgid "Start sync source" msgstr "" -#: src/screens/Job/JobDetail/JobDetail.jsx:152 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +#: screens/Job/JobDetail/JobDetail.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 msgid "Started" msgstr "" -#: src/components/JobList/JobList.jsx:218 -#: src/components/JobList/JobList.jsx:239 -#: src/components/JobList/JobListItem.jsx:68 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:195 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:90 -#: src/screens/Job/JobDetail/JobDetail.jsx:141 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:179 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 -#: src/screens/Project/ProjectList/ProjectList.jsx:170 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:93 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 +#: components/JobList/JobList.jsx:196 +#: components/JobList/JobList.jsx:217 +#: components/JobList/JobListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryList.jsx:201 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:142 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 +#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectListItem.jsx:119 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 msgid "Status" msgstr "" -#: src/components/Lookup/ProjectLookup.jsx:115 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 -#: src/screens/Project/ProjectList/ProjectList.jsx:147 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +#: screens/Job/JobOutput/JobOutput.jsx:630 +msgid "Stdout" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:115 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 +#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 msgid "Subversion" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:70 -#: src/components/NotificationList/NotificationListItem.jsx:71 -#: src/screens/Setting/shared/LoggingTestAlert.jsx:37 +#: components/NotificationList/NotificationListItem.jsx:70 +#: components/NotificationList/NotificationListItem.jsx:71 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 msgid "Success" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:413 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:414 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 msgid "Success message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:422 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:423 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 msgid "Success message body" msgstr "" -#: src/components/JobList/JobList.jsx:225 -#: src/components/Workflow/WorkflowNodeHelp.jsx:86 -#: src/screens/Dashboard/shared/ChartTooltip.jsx:59 +#: components/JobList/JobList.jsx:203 +#: components/Workflow/WorkflowNodeHelp.jsx:86 +#: screens/Dashboard/shared/ChartTooltip.jsx:59 msgid "Successful" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:122 +#: screens/Project/ProjectList/ProjectListItem.jsx:148 msgid "Successfully copied to clipboard!" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:259 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 msgid "Sun" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:264 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:425 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 msgid "Sunday" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:27 -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/Templates.jsx:49 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: screens/Template/Template.jsx:168 +#: screens/Template/Templates.jsx:49 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "Survey" msgstr "" -#: src/screens/Template/Survey/SurveyList.jsx:136 +#: screens/Template/Survey/SurveyList.jsx:138 msgid "Survey List" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:32 +#: screens/Template/Survey/SurveyPreviewModal.jsx:32 msgid "Survey Preview" msgstr "" -#: src/screens/Template/Survey/SurveyToolbar.jsx:50 +#: screens/Template/Survey/SurveyToolbar.jsx:50 msgid "Survey Toggle" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:33 +#: screens/Template/Survey/SurveyPreviewModal.jsx:33 msgid "Survey preview modal" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:57 +#: screens/Template/Survey/SurveyListItem.jsx:57 msgid "Survey questions" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSyncButton.jsx:76 -#: src/screens/Project/shared/ProjectSyncButton.jsx:34 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:78 +#: screens/Project/shared/ProjectSyncButton.jsx:35 msgid "Sync" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:128 -#: src/screens/Project/shared/ProjectSyncButton.jsx:30 +#: screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/shared/ProjectSyncButton.jsx:31 msgid "Sync Project" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:187 -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:190 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:199 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:202 msgid "Sync all" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:193 msgid "Sync all sources" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceList.jsx:219 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:231 msgid "Sync error" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:115 +#: screens/Project/ProjectList/ProjectListItem.jsx:141 msgid "Sync for revision" msgstr "" -#: src/screens/Setting/SettingList.jsx:105 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:27 +#: screens/Setting/SettingList.jsx:105 +#: screens/User/UserRoles/UserRolesListItem.jsx:27 msgid "System" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:126 -#: src/screens/User/UserDetail/UserDetail.jsx:42 -#: src/screens/User/UserList/UserListItem.jsx:26 -#: src/screens/User/UserRoles/UserRolesList.jsx:124 -#: src/screens/User/shared/UserForm.jsx:41 +#: screens/Team/TeamRoles/TeamRolesList.jsx:126 +#: screens/User/UserDetail/UserDetail.jsx:42 +#: screens/User/UserList/UserListItem.jsx:26 +#: screens/User/UserRoles/UserRolesList.jsx:124 +#: screens/User/shared/UserForm.jsx:41 msgid "System Administrator" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:44 -#: src/screens/User/UserList/UserListItem.jsx:28 -#: src/screens/User/shared/UserForm.jsx:35 +#: screens/User/UserDetail/UserDetail.jsx:44 +#: screens/User/UserList/UserListItem.jsx:28 +#: screens/User/shared/UserForm.jsx:35 msgid "System Auditor" msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:130 -#: src/screens/User/UserRoles/UserRolesList.jsx:128 +#: screens/Job/JobOutput/JobOutput.jsx:667 +msgid "System Warning" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:130 +#: screens/User/UserRoles/UserRolesList.jsx:128 msgid "System administrators have unrestricted access to all resources." msgstr "" -#: src/screens/Setting/Settings.jsx:109 +#: screens/Setting/Settings.jsx:109 msgid "TACACS+" msgstr "" -#: src/screens/Setting/SettingList.jsx:86 +#: screens/Setting/SettingList.jsx:86 msgid "TACACS+ settings" msgstr "" -#: src/screens/Dashboard/Dashboard.jsx:165 -#: src/screens/Job/JobOutput/HostEventModal.jsx:106 +#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Job/JobOutput/HostEventModal.jsx:106 msgid "Tabs" msgstr "" +#: screens/Template/shared/JobTemplateForm.jsx:501 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a\n" +"play or task. Use commas to separate multiple tags.\n" +"Refer to Ansible Tower documentation for details on\n" +"the usage of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + #: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 #: src/screens/Template/shared/JobTemplateForm.jsx:471 -msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." -msgstr "" +#~ msgid "Tags are useful when you have a large playbook, and you want to run a specific part of a play or task. Use commas to separate multiple tags. Refer to Ansible Tower documentation for details on the usage of tags." +#~ msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 msgid "Tags for the Annotation" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 msgid "Tags for the annotation (optional)" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 msgid "Target URL" msgstr "" -#: src/screens/Job/JobOutput/HostEventModal.jsx:129 +#: screens/Job/JobOutput/HostEventModal.jsx:129 msgid "Task" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:95 msgid "Task Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:89 +#: screens/Job/JobOutput/JobOutput.jsx:658 +msgid "Task Started" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:96 msgid "Tasks" msgstr "" -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:19 msgid "Team" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:120 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:144 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:120 +#: screens/Team/TeamRoles/TeamRolesList.jsx:144 msgid "Team Roles" msgstr "" -#: src/screens/Team/Team.jsx:73 +#: screens/Team/Team.jsx:73 msgid "Team not found." msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:198 -#: src/components/AddRole/AddResourceRole.jsx:199 -#: src/routeConfig.js:106 -#: src/screens/ActivityStream/ActivityStream.jsx:184 -#: src/screens/Organization/Organization.jsx:124 -#: src/screens/Organization/OrganizationList/OrganizationList.jsx:156 -#: src/screens/Organization/OrganizationList/OrganizationListItem.jsx:41 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 -#: src/screens/Organization/Organizations.jsx:33 -#: src/screens/Team/TeamList/TeamList.jsx:124 -#: src/screens/Team/TeamList/TeamList.jsx:179 -#: src/screens/Team/Teams.jsx:14 -#: src/screens/Team/Teams.jsx:25 -#: src/screens/User/User.jsx:69 -#: src/screens/User/UserTeams/UserTeamList.jsx:176 -#: src/screens/User/UserTeams/UserTeamList.jsx:244 -#: src/screens/User/Users.jsx:33 +#: components/AddRole/AddResourceRole.jsx:209 +#: components/AddRole/AddResourceRole.jsx:210 +#: routeConfig.js:107 +#: screens/ActivityStream/ActivityStream.jsx:184 +#: screens/Organization/Organization.jsx:125 +#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 +#: screens/Organization/Organizations.jsx:33 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/Teams.jsx:14 +#: screens/Team/Teams.jsx:25 +#: screens/User/User.jsx:69 +#: screens/User/UserTeams/UserTeamList.jsx:176 +#: screens/User/UserTeams/UserTeamList.jsx:244 +#: screens/User/Users.jsx:33 +#: util/getRelatedResourceDeleteDetails.js:198 msgid "Teams" msgstr "" -#: src/screens/Template/Template.jsx:171 -#: src/screens/Template/WorkflowJobTemplate.jsx:179 +#: screens/Template/Template.jsx:184 +#: screens/Template/WorkflowJobTemplate.jsx:179 msgid "Template not found." msgstr "" -#: src/components/TemplateList/TemplateList.jsx:179 -#: src/components/TemplateList/TemplateList.jsx:238 -#: src/routeConfig.js:65 -#: src/screens/ActivityStream/ActivityStream.jsx:161 -#: src/screens/Template/Templates.jsx:16 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 +msgid "Template type" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:184 +#: components/TemplateList/TemplateList.jsx:243 +#: routeConfig.js:66 +#: screens/ActivityStream/ActivityStream.jsx:161 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 +#: screens/Template/Templates.jsx:16 +#: util/getRelatedResourceDeleteDetails.js:242 +#: util/getRelatedResourceDeleteDetails.js:299 msgid "Templates" msgstr "" -#: src/screens/Credential/shared/CredentialForm.jsx:281 -#: src/screens/Credential/shared/CredentialForm.jsx:287 -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:81 -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 +#: screens/Credential/shared/CredentialForm.jsx:287 +#: screens/Credential/shared/CredentialForm.jsx:293 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:83 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 msgid "Test" msgstr "" -#: src/screens/Credential/shared/ExternalTestModal.jsx:78 +#: screens/Credential/shared/ExternalTestModal.jsx:78 msgid "Test External Credential" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:123 msgid "Test Notification" msgstr "" -#: src/screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 msgid "Test logging" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:113 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:120 msgid "Test notification" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 msgid "Test passed" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:53 -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:50 +#: screens/Template/Survey/SurveyPreviewModal.jsx:53 +#: screens/Template/Survey/SurveyQuestionForm.jsx:50 msgid "Text" msgstr "" -#: src/screens/Template/Survey/SurveyPreviewModal.jsx:67 +#: screens/Template/Survey/SurveyPreviewModal.jsx:67 msgid "Text Area" msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:51 +#: screens/Template/Survey/SurveyQuestionForm.jsx:51 msgid "Textarea" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:395 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 msgid "The" msgstr "" -#: src/screens/Application/shared/ApplicationForm.jsx:88 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +msgid "The Execution Environment to be used when one has not been configured for a job template." +msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:88 msgid "The Grant type the user must use for acquire tokens for this application" msgstr "" +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +msgid "" +"The amount of time (in seconds) before the email\n" +"notification stops trying to reach the host and times out. Ranges\n" +"from 1 to 120 seconds." +msgstr "" + #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 -msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgid "The amount of time (in seconds) before the email notification stops trying to reach the host and times out. Ranges from 1 to 120 seconds." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:469 +msgid "" +"The amount of time (in seconds) to run\n" +"before the job is canceled. Defaults to 0 for no job\n" +"timeout." msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:439 -msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgid "The amount of time (in seconds) to run before the job is canceled. Defaults to 0 for no job timeout." +#~ msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +msgid "" +"The base URL of the Grafana server - the\n" +"/api/annotations endpoint will be added automatically to the base\n" +"Grafana URL." msgstr "" #: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 -msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgid "The base URL of the Grafana server - the /api/annotations endpoint will be added automatically to the base Grafana URL." +#~ msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 +msgid "" +"The first fetches all references. The second\n" +"fetches the Github pull request number 62, in this example\n" +"the branch needs to be \"pull/62/head\"." msgstr "" #: src/screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 -msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgid "The first fetches all references. The second fetches the Github pull request number 62, in this example the branch needs to be \"pull/62/head\"." +#~ msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:77 +msgid "" +"The maximum number of hosts allowed to be managed by this organization.\n" +"Value defaults to 0 which means no limit. Refer to the Ansible\n" +"documentation for more details." msgstr "" #: src/screens/Organization/shared/OrganizationForm.jsx:69 -msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgid "The maximum number of hosts allowed to be managed by this organization. Value defaults to 0 which means no limit. Refer to the Ansible documentation for more details." +#~ msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:407 +msgid "" +"The number of parallel or simultaneous\n" +"processes to use while executing the playbook. An empty value,\n" +"or a value less than 1 will use the Ansible default which is\n" +"usually 5. The default number of forks can be overwritten\n" +"with a change to" msgstr "" #: src/screens/Template/shared/JobTemplateForm.jsx:377 -msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" -msgstr "" +#~ msgid "The number of parallel or simultaneous processes to use while executing the playbook. An empty value, or a value less than 1 will use the Ansible default which is usually 5. The default number of forks can be overwritten with a change to" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:197 +#: components/AdHocCommands/AdHocDetailsStep.jsx:197 msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" msgstr "" -#: src/components/ContentError/ContentError.jsx:43 -#: src/screens/Job/Job.jsx:84 +#: components/ContentError/ContentError.jsx:43 +#: screens/Job/Job.jsx:124 msgid "The page you requested could not be found." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:175 +#: components/AdHocCommands/AdHocDetailsStep.jsx:175 msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:123 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:82 +msgid "The registry location where the container is stored." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 msgid "The resource associated with this node has been deleted." msgstr "" -#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 -msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#: screens/Template/Survey/SurveyQuestionForm.jsx:134 +msgid "" +"The suggested format for variable names is lowercase and\n" +"underscore-separated (for example, foo_bar, user_id, host_name,\n" +"etc.). Variable names with spaces are not allowed." msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 +#: src/screens/Template/Survey/SurveyQuestionForm.jsx:134 +#~ msgid "The suggested format for variable names is lowercase and underscore-separated (for example, foo_bar, user_id, host_name, etc.). Variable names with spaces are not allowed." +#~ msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 msgid "The tower instance group cannot be deleted." msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 -msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +msgid "" +"There are no available playbook directories in {project_base_dir}.\n" +"Either that directory is empty, or all of the contents are already\n" +"assigned to other projects. Create a new directory there and make\n" +"sure the playbook files can be read by the \"awx\" system user,\n" +"or have {brandName} directly retrieve your playbooks from\n" +"source control using the Source Control Type option above." msgstr "" -#: src/screens/Login/Login.jsx:112 +#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +#~ msgid "There are no available playbook directories in {project_base_dir}. Either that directory is empty, or all of the contents are already assigned to other projects. Create a new directory there and make sure the playbook files can be read by the \"awx\" system user, or have {brandName} directly retrieve your playbooks from source control using the Source Control Type option above." +#~ msgstr "" + +#: screens/Login/Login.jsx:120 msgid "There was a problem signing in. Please try again." msgstr "" -#: src/components/ContentError/ContentError.jsx:45 +#: components/ContentError/ContentError.jsx:45 msgid "There was an error loading this content. Please reload the page." msgstr "" -#: src/screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 msgid "There was an error parsing the file. Please check the file formatting and try again." msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:589 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:600 msgid "There was an error saving the workflow." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:19 +#: screens/Setting/shared/LoggingTestAlert.jsx:19 msgid "There was an error testing the log aggregator." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:74 +#: components/AdHocCommands/AdHocDetailsStep.jsx:74 msgid "These are the modules that {brandName} supports running commands against." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:151 +#: components/AdHocCommands/AdHocDetailsStep.jsx:151 msgid "These are the verbosity levels for standard out of the command run that are supported." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:133 +#: components/AdHocCommands/AdHocDetailsStep.jsx:133 msgid "These arguments are used with the specified module." msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:121 +#: components/AdHocCommands/AdHocDetailsStep.jsx:121 msgid "These arguments are used with the specified module. You can find information about {0} by clicking" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:407 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 msgid "Third" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:171 -#: src/screens/Template/Survey/SurveyList.jsx:121 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282 +#: screens/Template/Survey/SurveyList.jsx:123 msgid "This action will delete the following:" msgstr "" -#: src/screens/User/UserTeams/UserTeamList.jsx:214 +#: screens/User/UserTeams/UserTeamList.jsx:214 msgid "This action will disassociate all roles for this user from the selected teams." msgstr "" -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:218 -#: src/screens/User/UserRoles/UserRolesList.jsx:218 +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: screens/User/UserRoles/UserRolesList.jsx:220 msgid "This action will disassociate the following role from {0}:" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:131 +#: components/DisassociateButton/DisassociateButton.jsx:134 msgid "This action will disassociate the following:" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:226 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +msgid "This container group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 +msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:122 +msgid "This credential type is currently being used by some credentials and cannot be deleted" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 +msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:269 msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." msgstr "" -#: src/components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 msgid "This field may not be blank" msgstr "" -#: src/util/validators.jsx:102 +#: util/validators.jsx:102 msgid "This field must be a number" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:113 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:113 msgid "This field must be a number and have a value between {0} and {1}" msgstr "" -#: src/util/validators.jsx:41 +#: util/validators.jsx:41 msgid "This field must be a number and have a value between {min} and {max}" msgstr "" -#: src/util/validators.jsx:142 +#: util/validators.jsx:142 msgid "This field must be a regular expression" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:48 -#: src/util/validators.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 +#: util/validators.jsx:86 msgid "This field must be an integer" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:104 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:104 msgid "This field must be at least {0} characters" msgstr "" -#: src/util/validators.jsx:31 +#: util/validators.jsx:31 msgid "This field must be at least {min} characters" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:51 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 msgid "This field must be greater than 0" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:118 -#: src/screens/User/shared/UserForm.jsx:89 -#: src/screens/User/shared/UserForm.jsx:100 -#: src/util/validators.jsx:4 -#: src/util/validators.jsx:51 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:118 +#: screens/User/shared/UserForm.jsx:89 +#: screens/User/shared/UserForm.jsx:100 +#: util/validators.jsx:4 +#: util/validators.jsx:51 msgid "This field must not be blank" msgstr "" -#: src/util/validators.jsx:76 +#: util/validators.jsx:76 msgid "This field must not contain spaces" msgstr "" -#: src/components/LaunchPrompt/steps/useSurveyStep.jsx:107 +#: components/LaunchPrompt/steps/useSurveyStep.jsx:107 msgid "This field must not exceed {0} characters" msgstr "" -#: src/util/validators.jsx:22 +#: util/validators.jsx:22 msgid "This field must not exceed {max} characters" msgstr "" -#: src/screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:50 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:52 msgid "This field will be retrieved from an external secret management system using the specified credential." msgstr "" -#: src/screens/Application/Applications.jsx:78 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:150 +msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/LaunchPrompt/steps/useInventoryStep.jsx:66 +msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" + +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292 +msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" +msgstr "" + +#: screens/Application/Applications.jsx:78 msgid "This is the only time the client secret will be shown." msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:59 +#: screens/User/UserTokens/UserTokens.jsx:59 msgid "This is the only time the token value and associated refresh token value will be shown." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:143 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:411 +msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 +msgid "This organization is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.jsx:177 +msgid "This project is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:150 msgid "This project needs to be updated" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:131 +#: components/Schedule/ScheduleList/ScheduleList.jsx:131 msgid "This schedule is missing an Inventory" msgstr "" -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:158 +#: components/Schedule/ScheduleList/ScheduleList.jsx:158 msgid "This schedule is missing required survey values" msgstr "" -#: src/components/AdHocCommands/AdHocCommandsWizard.jsx:63 -#: src/components/LaunchPrompt/steps/StepName.jsx:27 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:63 +#: components/LaunchPrompt/steps/StepName.jsx:27 msgid "This step contains errors" msgstr "" -#: src/screens/User/shared/UserForm.jsx:155 +#: screens/User/shared/UserForm.jsx:155 msgid "This value does not match the password you entered previously. Please confirm that password." msgstr "" -#: src/screens/Setting/shared/RevertAllAlert.jsx:36 -msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#: screens/Setting/shared/RevertAllAlert.jsx:36 +msgid "" +"This will revert all configuration values on this page to\n" +"their factory defaults. Are you sure you want to proceed?" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 +#: src/screens/Setting/shared/RevertAllAlert.jsx:36 +#~ msgid "This will revert all configuration values on this page to their factory defaults. Are you sure you want to proceed?" +#~ msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 msgid "This workflow does not have any nodes configured." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:299 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 msgid "Thu" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:304 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 msgid "Thursday" msgstr "" -#: src/screens/ActivityStream/ActivityStream.jsx:236 -#: src/screens/ActivityStream/ActivityStream.jsx:248 -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:40 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:42 +#: screens/ActivityStream/ActivityStream.jsx:242 +#: screens/ActivityStream/ActivityStream.jsx:254 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 +#: screens/ActivityStream/ActivityStreamListItem.jsx:42 msgid "Time" msgstr "" +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 +msgid "" +"Time in seconds to consider a project\n" +"to be current. During job runs and callbacks the task\n" +"system will evaluate the timestamp of the latest project\n" +"update. If it is older than Cache Timeout, it is not\n" +"considered current, and a new project update will be\n" +"performed." +msgstr "" + #: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 -msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgid "Time in seconds to consider a project to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest project update. If it is older than Cache Timeout, it is not considered current, and a new project update will be performed." +#~ msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +msgid "" +"Time in seconds to consider an inventory sync\n" +"to be current. During job runs and callbacks the task system will\n" +"evaluate the timestamp of the latest sync. If it is older than\n" +"Cache Timeout, it is not considered current, and a new\n" +"inventory sync will be performed." msgstr "" #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:195 -msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." -msgstr "" +#~ msgid "Time in seconds to consider an inventory sync to be current. During job runs and callbacks the task system will evaluate the timestamp of the latest sync. If it is older than Cache Timeout, it is not considered current, and a new inventory sync will be performed." +#~ msgstr "" -#: src/screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 msgid "Timed out" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:116 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:136 -#: src/screens/Template/shared/JobTemplateForm.jsx:438 +#: components/PromptDetail/PromptDetail.jsx:116 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 +#: screens/Template/shared/JobTemplateForm.jsx:468 msgid "Timeout" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:143 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:173 msgid "Timeout minutes" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:157 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:187 msgid "Timeout seconds" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 msgid "Toggle Legend" msgstr "" -#: src/components/FormField/PasswordInput.jsx:40 +#: components/FormField/PasswordInput.jsx:41 msgid "Toggle Password" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 msgid "Toggle Tools" msgstr "" -#: src/screens/Job/JobOutput/PageControls.jsx:36 +#: screens/Job/JobOutput/PageControls.jsx:37 msgid "Toggle expand/collapse event lines" msgstr "" -#: src/components/HostToggle/HostToggle.jsx:67 +#: components/HostToggle/HostToggle.jsx:67 msgid "Toggle host" msgstr "" -#: src/components/InstanceToggle/InstanceToggle.jsx:63 +#: components/InstanceToggle/InstanceToggle.jsx:63 msgid "Toggle instance" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 msgid "Toggle legend" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:51 +#: components/NotificationList/NotificationListItem.jsx:51 msgid "Toggle notification approvals" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:90 +#: components/NotificationList/NotificationListItem.jsx:90 msgid "Toggle notification failure" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:64 +#: components/NotificationList/NotificationListItem.jsx:64 msgid "Toggle notification start" msgstr "" -#: src/components/NotificationList/NotificationListItem.jsx:77 +#: components/NotificationList/NotificationListItem.jsx:77 msgid "Toggle notification success" msgstr "" -#: src/components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 msgid "Toggle schedule" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 msgid "Toggle tools" msgstr "" -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 -#: src/screens/User/UserTokens/UserTokens.jsx:65 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 +#: screens/User/UserTokens/UserTokens.jsx:65 msgid "Token" msgstr "" -#: src/screens/User/UserTokens/UserTokens.jsx:49 -#: src/screens/User/UserTokens/UserTokens.jsx:52 +#: screens/User/UserTokens/UserTokens.jsx:49 +#: screens/User/UserTokens/UserTokens.jsx:52 msgid "Token information" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:73 +#: screens/User/UserToken/UserToken.jsx:73 msgid "Token not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenListItem.jsx:39 +#: screens/User/UserTokenList/UserTokenListItem.jsx:39 msgid "Token type" msgstr "" -#: src/screens/Application/Application/Application.jsx:78 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 -#: src/screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 -#: src/screens/Application/Applications.jsx:40 -#: src/screens/User/User.jsx:75 -#: src/screens/User/UserTokenList/UserTokenList.jsx:106 -#: src/screens/User/Users.jsx:35 +#: screens/Application/Application/Application.jsx:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 +#: screens/Application/Applications.jsx:40 +#: screens/User/User.jsx:75 +#: screens/User/UserTokenList/UserTokenList.jsx:106 +#: screens/User/Users.jsx:35 msgid "Tokens" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:84 +#: components/Workflow/WorkflowTools.jsx:84 msgid "Tools" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:230 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237 msgid "Total Jobs" msgstr "" -#: src/screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 msgid "Total Nodes" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:103 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:103 msgid "Total jobs" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 msgid "True" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:279 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 msgid "Tue" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:284 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:435 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 msgid "Tuesday" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:201 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:141 +#: components/NotificationList/NotificationList.jsx:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 msgid "Twilio" msgstr "" -#: src/components/JobList/JobList.jsx:240 -#: src/components/JobList/JobListItem.jsx:72 -#: src/components/Lookup/ProjectLookup.jsx:110 -#: src/components/NotificationList/NotificationList.jsx:220 -#: src/components/NotificationList/NotificationListItem.jsx:30 -#: src/components/PromptDetail/PromptDetail.jsx:112 -#: src/components/Schedule/ScheduleList/ScheduleList.jsx:174 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:95 -#: src/components/TemplateList/TemplateList.jsx:193 -#: src/components/TemplateList/TemplateList.jsx:218 -#: src/components/TemplateList/TemplateListItem.jsx:129 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 -#: src/components/Workflow/WorkflowNodeHelp.jsx:136 -#: src/components/Workflow/WorkflowNodeHelp.jsx:162 -#: src/screens/Credential/CredentialList/CredentialList.jsx:152 -#: src/screens/Credential/CredentialList/CredentialListItem.jsx:60 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:47 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:79 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:228 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:86 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 -#: src/screens/Inventory/InventoryList/InventoryList.jsx:196 -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:95 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:181 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:108 -#: src/screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 -#: src/screens/Project/ProjectList/ProjectList.jsx:142 -#: src/screens/Project/ProjectList/ProjectList.jsx:171 -#: src/screens/Project/ProjectList/ProjectListItem.jsx:106 -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:30 -#: src/screens/Template/Survey/SurveyListItem.jsx:115 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 -#: src/screens/User/UserDetail/UserDetail.jsx:70 -#: src/screens/User/UserRoles/UserRolesListItem.jsx:34 +#: components/JobList/JobList.jsx:218 +#: components/JobList/JobListItem.jsx:72 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/NotificationList/NotificationList.jsx:220 +#: components/NotificationList/NotificationListItem.jsx:30 +#: components/PromptDetail/PromptDetail.jsx:112 +#: components/Schedule/ScheduleList/ScheduleList.jsx:174 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95 +#: components/TemplateList/TemplateList.jsx:198 +#: components/TemplateList/TemplateList.jsx:223 +#: components/TemplateList/TemplateListItem.jsx:154 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 +#: components/Workflow/WorkflowNodeHelp.jsx:136 +#: components/Workflow/WorkflowNodeHelp.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Credential/CredentialList/CredentialListItem.jsx:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:95 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 +#: screens/Project/ProjectList/ProjectList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectListItem.jsx:132 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30 +#: screens/Template/Survey/SurveyListItem.jsx:117 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/User/UserDetail/UserDetail.jsx:70 +#: screens/User/UserRoles/UserRolesListItem.jsx:34 msgid "Type" msgstr "" -#: src/screens/Credential/shared/TypeInputsSubForm.jsx:25 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 -#: src/screens/Project/shared/ProjectForm.jsx:220 +#: screens/Credential/shared/TypeInputsSubForm.jsx:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 +#: screens/Project/shared/ProjectForm.jsx:246 msgid "Type Details" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:108 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:63 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:111 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:63 msgid "Unavailable" msgstr "" -#: src/screens/Setting/shared/RevertButton.jsx:54 -#: src/screens/Setting/shared/RevertButton.jsx:63 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 msgid "Undo" msgstr "" -#: src/screens/Job/JobOutput/shared/HostStatusBar.jsx:51 -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:101 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:108 msgid "Unreachable" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:100 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:107 msgid "Unreachable Host Count" msgstr "" -#: src/screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:109 msgid "Unreachable Hosts" msgstr "" -#: src/util/dates.jsx:81 +#: util/dates.jsx:81 msgid "Unrecognized day string" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 msgid "Unsaved changes modal" msgstr "" -#: src/components/PromptDetail/PromptProjectDetail.jsx:42 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:69 -#: src/screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 +#: components/PromptDetail/PromptProjectDetail.jsx:43 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 msgid "Update Revision on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:51 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 msgid "Update on Launch" msgstr "" -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:53 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:54 msgid "Update on Project Update" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:156 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:167 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 msgid "Update on launch" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:176 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 msgid "Update on project update" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:123 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:126 msgid "Update options" msgstr "" -#: src/screens/Setting/SettingList.jsx:94 +#: screens/Setting/SettingList.jsx:94 msgid "Update settings pertaining to Jobs within {brandName}" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:205 +#: screens/Template/shared/WebhookSubForm.jsx:206 msgid "Update webhook key" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:110 +#: components/Workflow/WorkflowNodeHelp.jsx:110 msgid "Updating" msgstr "" #: src/screens/Inventory/shared/InventorySourceForm.jsx:57 #: src/screens/Organization/shared/OrganizationForm.jsx:33 #: src/screens/Project/shared/ProjectForm.jsx:286 -msgid "Use Default Ansible Environment" -msgstr "" +#~ msgid "Use Default Ansible Environment" +#~ msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:65 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:133 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:67 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 msgid "Use Fact Storage" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 msgid "Use SSL" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 msgid "Use TLS" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:99 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:107 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:59 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:102 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:59 msgid "Used capacity" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:135 -#: src/components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:22 +#: components/AppContainer/PageHeaderToolbar.jsx:135 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:20 msgid "User" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:163 +#: components/AppContainer/PageHeaderToolbar.jsx:163 msgid "User Details" msgstr "" -#: src/screens/Setting/SettingList.jsx:124 -#: src/screens/Setting/Settings.jsx:112 +#: screens/Setting/SettingList.jsx:124 +#: screens/Setting/Settings.jsx:112 msgid "User Interface" msgstr "" -#: src/screens/Setting/SettingList.jsx:131 +#: screens/Setting/SettingList.jsx:131 msgid "User Interface settings" msgstr "" -#: src/components/ResourceAccessList/ResourceAccessListItem.jsx:110 -#: src/screens/User/UserRoles/UserRolesList.jsx:141 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:110 +#: screens/User/UserRoles/UserRolesList.jsx:141 msgid "User Roles" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:67 -#: src/screens/User/shared/UserForm.jsx:137 +#: screens/User/UserDetail/UserDetail.jsx:67 +#: screens/User/shared/UserForm.jsx:137 msgid "User Type" msgstr "" -#: src/components/AppContainer/PageHeaderToolbar.jsx:156 +#: components/AppContainer/PageHeaderToolbar.jsx:156 msgid "User details" msgstr "" -#: src/screens/User/User.jsx:95 +#: screens/User/User.jsx:95 msgid "User not found." msgstr "" -#: src/screens/User/UserTokenList/UserTokenList.jsx:166 +#: screens/User/UserTokenList/UserTokenList.jsx:166 msgid "User tokens" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:114 -#: src/components/AddRole/AddResourceRole.jsx:129 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:125 -#: src/components/ResourceAccessList/ResourceAccessList.jsx:159 -#: src/screens/Login/Login.jsx:261 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 -#: src/screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 -#: src/screens/User/UserDetail/UserDetail.jsx:60 -#: src/screens/User/UserList/UserList.jsx:118 -#: src/screens/User/UserList/UserList.jsx:163 -#: src/screens/User/UserList/UserListItem.jsx:45 -#: src/screens/User/shared/UserForm.jsx:67 +#: components/AddRole/AddResourceRole.jsx:125 +#: components/AddRole/AddResourceRole.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:127 +#: components/ResourceAccessList/ResourceAccessList.jsx:161 +#: screens/Login/Login.jsx:175 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 +#: screens/User/UserDetail/UserDetail.jsx:60 +#: screens/User/UserList/UserList.jsx:118 +#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserListItem.jsx:45 +#: screens/User/shared/UserForm.jsx:67 msgid "Username" msgstr "" -#: src/components/AddRole/AddResourceRole.jsx:190 -#: src/components/AddRole/AddResourceRole.jsx:191 -#: src/routeConfig.js:101 -#: src/screens/ActivityStream/ActivityStream.jsx:181 -#: src/screens/Team/Teams.jsx:30 -#: src/screens/User/UserList/UserList.jsx:113 -#: src/screens/User/UserList/UserList.jsx:155 -#: src/screens/User/Users.jsx:15 -#: src/screens/User/Users.jsx:27 +#: components/AddRole/AddResourceRole.jsx:201 +#: components/AddRole/AddResourceRole.jsx:202 +#: routeConfig.js:102 +#: screens/ActivityStream/ActivityStream.jsx:181 +#: screens/Team/Teams.jsx:30 +#: screens/User/UserList/UserList.jsx:113 +#: screens/User/UserList/UserList.jsx:155 +#: screens/User/Users.jsx:15 +#: screens/User/Users.jsx:27 msgid "Users" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 msgid "VMware vCenter" msgstr "" -#: src/components/HostForm/HostForm.jsx:102 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 -#: src/components/PromptDetail/PromptDetail.jsx:260 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:256 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 -#: src/screens/Host/HostDetail/HostDetail.jsx:104 -#: src/screens/Inventory/InventoryDetail/InventoryDetail.jsx:99 -#: src/screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 -#: src/screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 -#: src/screens/Inventory/shared/InventoryForm.jsx:89 -#: src/screens/Inventory/shared/InventoryGroupForm.jsx:55 -#: src/screens/Inventory/shared/SmartInventoryForm.jsx:98 -#: src/screens/Job/JobDetail/JobDetail.jsx:337 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:362 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:194 -#: src/screens/Template/shared/JobTemplateForm.jsx:359 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:206 +#: components/HostForm/HostForm.jsx:102 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 +#: components/PromptDetail/PromptDetail.jsx:260 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:262 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 +#: screens/Host/HostDetail/HostDetail.jsx:104 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 +#: screens/Inventory/shared/InventoryForm.jsx:89 +#: screens/Inventory/shared/InventoryGroupForm.jsx:55 +#: screens/Inventory/shared/SmartInventoryForm.jsx:98 +#: screens/Job/JobDetail/JobDetail.jsx:368 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 +#: screens/Template/shared/JobTemplateForm.jsx:389 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231 msgid "Variables" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 +#: screens/Job/JobOutput/JobOutput.jsx:659 +msgid "Variables Prompted" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 msgid "Vault password" msgstr "" -#: src/components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 msgid "Vault password | {credId}" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:140 -#: src/components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 -#: src/components/PromptDetail/PromptDetail.jsx:199 -#: src/components/PromptDetail/PromptInventorySourceDetail.jsx:101 -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:135 -#: src/components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:225 -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:89 -#: src/screens/Job/JobDetail/JobDetail.jsx:223 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:217 -#: src/screens/Template/shared/JobTemplateForm.jsx:411 +#: screens/Job/JobOutput/JobOutput.jsx:664 +msgid "Verbose" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:140 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 +#: components/PromptDetail/PromptDetail.jsx:199 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:102 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:141 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:251 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 +#: screens/Template/shared/JobTemplateForm.jsx:441 msgid "Verbosity" msgstr "" -#: src/screens/Setting/ActivityStream/ActivityStream.jsx:33 +#: screens/Setting/ActivityStream/ActivityStream.jsx:33 msgid "View Activity Stream settings" msgstr "" -#: src/screens/Setting/AzureAD/AzureAD.jsx:26 +#: screens/Setting/AzureAD/AzureAD.jsx:26 msgid "View Azure AD settings" msgstr "" -#: src/screens/Credential/Credential.jsx:119 -#: src/screens/Credential/Credential.jsx:131 +#: screens/Credential/Credential.jsx:119 +#: screens/Credential/Credential.jsx:131 msgid "View Credential Details" msgstr "" -#: src/components/Schedule/Schedule.jsx:133 +#: components/Schedule/Schedule.jsx:135 msgid "View Details" msgstr "" -#: src/screens/Setting/GitHub/GitHub.jsx:58 +#: screens/Setting/GitHub/GitHub.jsx:58 msgid "View GitHub Settings" msgstr "" -#: src/screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 msgid "View Google OAuth 2.0 settings" msgstr "" -#: src/screens/Host/Host.jsx:132 +#: screens/Host/Host.jsx:132 msgid "View Host Details" msgstr "" -#: src/screens/Inventory/Inventory.jsx:183 -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 -#: src/screens/Inventory/SmartInventory.jsx:174 +#: screens/Inventory/Inventory.jsx:180 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 +#: screens/Inventory/SmartInventory.jsx:171 msgid "View Inventory Details" msgstr "" -#: src/screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 msgid "View Inventory Groups" msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:162 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:162 msgid "View Inventory Host Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:49 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 msgid "View JSON examples at <0>www.json.org" msgstr "" -#: src/screens/Job/Job.jsx:120 +#: screens/Job/Job.jsx:165 msgid "View Job Details" msgstr "" -#: src/screens/Setting/Jobs/Jobs.jsx:26 +#: screens/Setting/Jobs/Jobs.jsx:26 msgid "View Jobs settings" msgstr "" -#: src/screens/Setting/LDAP/LDAP.jsx:38 +#: screens/Setting/LDAP/LDAP.jsx:38 msgid "View LDAP Settings" msgstr "" -#: src/screens/Setting/Logging/Logging.jsx:33 +#: screens/Setting/Logging/Logging.jsx:33 msgid "View Logging settings" msgstr "" -#: src/screens/Setting/MiscSystem/MiscSystem.jsx:33 +#: screens/Setting/MiscSystem/MiscSystem.jsx:33 msgid "View Miscellaneous System settings" msgstr "" -#: src/screens/Organization/Organization.jsx:216 +#: screens/Organization/Organization.jsx:227 msgid "View Organization Details" msgstr "" -#: src/screens/Project/Project.jsx:198 +#: screens/Project/Project.jsx:198 msgid "View Project Details" msgstr "" -#: src/screens/Setting/RADIUS/RADIUS.jsx:26 +#: screens/Setting/RADIUS/RADIUS.jsx:26 msgid "View RADIUS settings" msgstr "" -#: src/screens/Setting/SAML/SAML.jsx:26 +#: screens/Setting/SAML/SAML.jsx:26 msgid "View SAML settings" msgstr "" -#: src/components/Schedule/Schedule.jsx:84 +#: components/Schedule/Schedule.jsx:85 msgid "View Schedules" msgstr "" -#: src/screens/Template/Template.jsx:155 -#: src/screens/Template/WorkflowJobTemplate.jsx:149 +#: screens/Template/Template.jsx:168 +#: screens/Template/WorkflowJobTemplate.jsx:149 msgid "View Survey" msgstr "" -#: src/screens/Setting/TACACS/TACACS.jsx:26 +#: screens/Setting/TACACS/TACACS.jsx:26 msgid "View TACACS+ settings" msgstr "" -#: src/screens/Team/Team.jsx:116 +#: screens/Team/Team.jsx:116 msgid "View Team Details" msgstr "" -#: src/screens/Template/Template.jsx:251 -#: src/screens/Template/WorkflowJobTemplate.jsx:279 +#: screens/Template/Template.jsx:265 +#: screens/Template/WorkflowJobTemplate.jsx:279 msgid "View Template Details" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:103 +#: screens/User/UserToken/UserToken.jsx:103 msgid "View Tokens" msgstr "" -#: src/screens/User/User.jsx:140 +#: screens/User/User.jsx:140 msgid "View User Details" msgstr "" -#: src/screens/Setting/UI/UI.jsx:26 +#: screens/Setting/UI/UI.jsx:26 msgid "View User Interface settings" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:104 +#: screens/WorkflowApproval/WorkflowApproval.jsx:104 msgid "View Workflow Approval Details" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:60 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 msgid "View YAML examples at <0>docs.ansible.com" msgstr "" -#: src/components/ScreenHeader/ScreenHeader.jsx:54 -#: src/components/ScreenHeader/ScreenHeader.jsx:56 +#: components/ScreenHeader/ScreenHeader.jsx:54 +#: components/ScreenHeader/ScreenHeader.jsx:57 msgid "View activity stream" msgstr "" -#: src/screens/Credential/Credential.jsx:81 +#: screens/Credential/Credential.jsx:81 msgid "View all Credentials." msgstr "" -#: src/screens/Host/Host.jsx:91 +#: screens/Host/Host.jsx:91 msgid "View all Hosts." msgstr "" -#: src/screens/Inventory/Inventory.jsx:93 -#: src/screens/Inventory/SmartInventory.jsx:98 +#: screens/Inventory/Inventory.jsx:93 +#: screens/Inventory/SmartInventory.jsx:98 msgid "View all Inventories." msgstr "" -#: src/screens/Inventory/InventoryHost/InventoryHost.jsx:102 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:102 msgid "View all Inventory Hosts." msgstr "" -#: src/screens/Job/JobTypeRedirect.jsx:40 +#: screens/Job/JobTypeRedirect.jsx:40 msgid "View all Jobs" msgstr "" -#: src/screens/Job/Job.jsx:85 +#: screens/Job/Job.jsx:125 msgid "View all Jobs." msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplate.jsx:60 -#: src/screens/NotificationTemplate/NotificationTemplateAdd.jsx:53 +#: screens/NotificationTemplate/NotificationTemplate.jsx:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 msgid "View all Notification Templates." msgstr "" -#: src/screens/Organization/Organization.jsx:150 +#: screens/Organization/Organization.jsx:156 msgid "View all Organizations." msgstr "" -#: src/screens/Project/Project.jsx:140 +#: screens/Project/Project.jsx:140 msgid "View all Projects." msgstr "" -#: src/screens/Team/Team.jsx:74 +#: screens/Team/Team.jsx:74 msgid "View all Teams." msgstr "" -#: src/screens/Template/Template.jsx:172 -#: src/screens/Template/WorkflowJobTemplate.jsx:180 +#: screens/Template/Template.jsx:185 +#: screens/Template/WorkflowJobTemplate.jsx:180 msgid "View all Templates." msgstr "" -#: src/screens/User/User.jsx:96 +#: screens/User/User.jsx:96 msgid "View all Users." msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:54 +#: screens/WorkflowApproval/WorkflowApproval.jsx:54 msgid "View all Workflow Approvals." msgstr "" -#: src/screens/Application/Application/Application.jsx:95 +#: screens/Application/Application/Application.jsx:95 msgid "View all applications." msgstr "" -#: src/screens/CredentialType/CredentialType.jsx:77 +#: screens/CredentialType/CredentialType.jsx:77 msgid "View all credential types" msgstr "" -#: src/screens/InstanceGroup/ContainerGroup.jsx:84 -#: src/screens/InstanceGroup/InstanceGroup.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +msgid "View all execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:84 +#: screens/InstanceGroup/InstanceGroup.jsx:90 msgid "View all instance groups" msgstr "" -#: src/screens/ManagementJob/ManagementJob.jsx:134 +#: screens/ManagementJob/ManagementJob.jsx:134 msgid "View all management jobs" msgstr "" -#: src/screens/Setting/Settings.jsx:195 +#: screens/Setting/Settings.jsx:195 msgid "View all settings" msgstr "" -#: src/screens/User/UserToken/UserToken.jsx:75 +#: screens/User/UserToken/UserToken.jsx:75 msgid "View all tokens." msgstr "" -#: src/screens/Setting/SettingList.jsx:138 +#: screens/Setting/SettingList.jsx:138 msgid "View and edit your license information" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDetailButton.jsx:24 -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:50 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 +#: screens/ActivityStream/ActivityStreamListItem.jsx:50 msgid "View event details" msgstr "" -#: src/screens/Inventory/InventorySource/InventorySource.jsx:172 +#: screens/Inventory/InventorySource/InventorySource.jsx:172 msgid "View inventory source details" msgstr "" -#: src/components/Sparkline/Sparkline.jsx:44 +#: components/Sparkline/Sparkline.jsx:44 msgid "View job {0}" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:171 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:177 msgid "View node details" msgstr "" -#: src/screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 msgid "View smart inventory host details" msgstr "" -#: src/routeConfig.js:30 -#: src/screens/ActivityStream/ActivityStream.jsx:142 +#: routeConfig.js:31 +#: screens/ActivityStream/ActivityStream.jsx:142 msgid "Views" msgstr "" -#: src/components/TemplateList/TemplateListItem.jsx:134 -#: src/components/TemplateList/TemplateListItem.jsx:139 -#: src/screens/Template/WorkflowJobTemplate.jsx:141 +#: components/TemplateList/TemplateListItem.jsx:159 +#: components/TemplateList/TemplateListItem.jsx:165 +#: screens/Template/WorkflowJobTemplate.jsx:141 msgid "Visualizer" msgstr "" -#: src/screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 msgid "WARNING:" msgstr "" -#: src/components/JobList/JobList.jsx:223 -#: src/components/Workflow/WorkflowNodeHelp.jsx:80 +#: components/JobList/JobList.jsx:201 +#: components/Workflow/WorkflowNodeHelp.jsx:80 msgid "Waiting" msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:114 +#: components/Workflow/WorkflowLegend.jsx:114 +#: screens/Job/JobOutput/JobOutput.jsx:666 msgid "Warning" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 msgid "Warning: Unsaved Changes" msgstr "" -#: src/components/NotificationList/NotificationList.jsx:202 -#: src/screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:142 +#: components/NotificationList/NotificationList.jsx:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 msgid "Webhook" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:164 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:257 -#: src/screens/Template/shared/WebhookSubForm.jsx:216 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:170 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:267 +#: screens/Template/shared/WebhookSubForm.jsx:217 msgid "Webhook Credential" msgstr "" -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:152 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 msgid "Webhook Credentials" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:160 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 -#: src/screens/Template/shared/WebhookSubForm.jsx:185 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:166 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:264 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:165 +#: screens/Template/shared/WebhookSubForm.jsx:185 msgid "Webhook Key" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:151 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:240 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:139 -#: src/screens/Template/shared/WebhookSubForm.jsx:131 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/shared/WebhookSubForm.jsx:131 msgid "Webhook Service" msgstr "" -#: src/components/PromptDetail/PromptJobTemplateDetail.jsx:156 -#: src/components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 -#: src/screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 -#: src/screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:144 -#: src/screens/Template/shared/WebhookSubForm.jsx:167 -#: src/screens/Template/shared/WebhookSubForm.jsx:179 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:162 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:161 +#: screens/Template/shared/WebhookSubForm.jsx:167 +#: screens/Template/shared/WebhookSubForm.jsx:179 msgid "Webhook URL" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:607 -#: src/screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +#: screens/Template/shared/JobTemplateForm.jsx:637 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 msgid "Webhook details" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:171 +#: screens/Template/shared/WebhookSubForm.jsx:171 msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:189 +#: screens/Template/shared/WebhookSubForm.jsx:189 msgid "Webhook services can use this as a shared secret." msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:289 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 msgid "Wed" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:294 -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:440 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 msgid "Wednesday" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:166 +#: components/Schedule/shared/ScheduleForm.jsx:166 msgid "Week" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:461 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 msgid "Weekday" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:466 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 msgid "Weekend day" msgstr "" -#: src/screens/Login/Login.jsx:121 +#: screens/Login/Login.jsx:142 msgid "Welcome to Ansible {brandName}! Please Sign In." msgstr "" +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161 +msgid "" +"When not checked, a merge will be performed,\n" +"combining local variables with those found on the\n" +"external source." +msgstr "" + #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:146 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:158 -msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgid "When not checked, a merge will be performed, combining local variables with those found on the external source." +#~ msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144 +msgid "" +"When not checked, local child\n" +"hosts and groups not found on the external source will remain\n" +"untouched by the inventory update process." msgstr "" #: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:127 #: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:141 -msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." -msgstr "" +#~ msgid "When not checked, local child hosts and groups not found on the external source will remain untouched by the inventory update process." +#~ msgstr "" -#: src/components/Workflow/WorkflowLegend.jsx:96 +#: components/Workflow/WorkflowLegend.jsx:96 msgid "Workflow" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:63 +#: components/Workflow/WorkflowNodeHelp.jsx:63 msgid "Workflow Approval" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApproval.jsx:52 +#: screens/WorkflowApproval/WorkflowApproval.jsx:52 msgid "Workflow Approval not found." msgstr "" -#: src/routeConfig.js:54 -#: src/screens/ActivityStream/ActivityStream.jsx:153 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:12 -#: src/screens/WorkflowApproval/WorkflowApprovals.jsx:19 +#: routeConfig.js:55 +#: screens/ActivityStream/ActivityStream.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:19 msgid "Workflow Approvals" msgstr "" -#: src/components/JobList/JobList.jsx:210 -#: src/components/JobList/JobListItem.jsx:36 -#: src/components/Schedule/ScheduleList/ScheduleListItem.jsx:41 -#: src/screens/Job/JobDetail/JobDetail.jsx:82 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +#: components/JobList/JobList.jsx:188 +#: components/JobList/JobListItem.jsx:36 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41 +#: screens/Job/JobDetail/JobDetail.jsx:101 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 msgid "Workflow Job" msgstr "" -#: src/components/Workflow/WorkflowNodeHelp.jsx:51 -#: src/screens/Job/JobDetail/JobDetail.jsx:171 -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:79 -#: src/screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: components/Workflow/WorkflowNodeHelp.jsx:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:172 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: util/getRelatedResourceDeleteDetails.js:112 msgid "Workflow Job Template" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:181 +#: util/getRelatedResourceDeleteDetails.js:284 +msgid "Workflow Job Template Nodes" +msgstr "" + +#: util/getRelatedResourceDeleteDetails.js:164 +msgid "Workflow Job Templates" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 msgid "Workflow Link" msgstr "" -#: src/components/TemplateList/TemplateList.jsx:197 +#: components/TemplateList/TemplateList.jsx:202 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 msgid "Workflow Template" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:449 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:450 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 msgid "Workflow approved message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:461 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:462 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 msgid "Workflow approved message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:473 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:474 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 msgid "Workflow denied message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:485 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:486 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 msgid "Workflow denied message body" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 -#: src/screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 msgid "Workflow documentation" msgstr "" -#: src/components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 msgid "Workflow job templates" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 msgid "Workflow link modal" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 msgid "Workflow node view modal" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:497 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:498 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 msgid "Workflow pending message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:509 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:510 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 msgid "Workflow pending message body" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:521 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:522 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 msgid "Workflow timed out message" msgstr "" -#: src/screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:533 -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:534 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 msgid "Workflow timed out message body" msgstr "" -#: src/screens/User/shared/UserTokenForm.jsx:81 +#: screens/User/shared/UserTokenForm.jsx:81 msgid "Write" msgstr "" -#: src/screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:46 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 msgid "YAML:" msgstr "" -#: src/components/Schedule/shared/ScheduleForm.jsx:168 +#: components/Schedule/shared/ScheduleForm.jsx:168 msgid "Year" msgstr "" -#: src/components/Search/Search.jsx:246 +#: components/Search/Search.jsx:254 msgid "Yes" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" msgstr "" -#: src/screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" msgstr "" -#: src/components/Lookup/MultiCredentialsLookup.jsx:142 +#: components/Lookup/MultiCredentialsLookup.jsx:142 msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." msgstr "" -#: src/screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:102 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:52 +#: components/DisassociateButton/DisassociateButton.jsx:52 msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 msgid "You may apply a number of possible variables in the message. Refer to the" msgstr "" -#: src/components/AppContainer/AppContainer.jsx:241 +#: components/AppContainer/AppContainer.jsx:247 msgid "You will be logged out in {0} seconds due to inactivity." msgstr "" -#: src/components/AppContainer/AppContainer.jsx:222 +#: components/AppContainer/AppContainer.jsx:222 msgid "Your session is about to expire" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:120 +#: components/Workflow/WorkflowTools.jsx:122 msgid "Zoom In" msgstr "" -#: src/components/Workflow/WorkflowTools.jsx:100 +#: components/Workflow/WorkflowTools.jsx:101 msgid "Zoom Out" msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:704 -#: src/screens/Template/shared/WebhookSubForm.jsx:155 +#: screens/Template/shared/JobTemplateForm.jsx:734 +#: screens/Template/shared/WebhookSubForm.jsx:155 msgid "a new webhook key will be generated on save." msgstr "" -#: src/screens/Template/shared/JobTemplateForm.jsx:701 -#: src/screens/Template/shared/WebhookSubForm.jsx:143 +#: screens/Template/shared/JobTemplateForm.jsx:731 +#: screens/Template/shared/WebhookSubForm.jsx:143 msgid "a new webhook url will be generated on save." msgstr "" -#: src/screens/Host/HostGroups/HostGroupItem.jsx:45 -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:116 -#: src/screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 -#: src/screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 -#: src/screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 -#: src/screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:91 -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 -#: src/screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:89 +#: screens/Host/HostGroups/HostGroupItem.jsx:45 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:116 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 msgid "actions" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:514 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:219 +msgid "and click on Update Revision on Launch" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:514 msgid "approved" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:164 -#: src/screens/Template/Survey/SurveyList.jsx:111 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275 +#: screens/Template/Survey/SurveyList.jsx:113 msgid "cancel delete" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:252 +#: components/AdHocCommands/AdHocDetailsStep.jsx:252 msgid "command" msgstr "" -#: src/components/PaginatedDataList/ToolbarDeleteButton.jsx:156 -#: src/screens/Template/Survey/SurveyList.jsx:103 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264 +#: screens/Template/Survey/SurveyList.jsx:104 msgid "confirm delete" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:114 -#: src/screens/Team/TeamRoles/TeamRolesList.jsx:201 +#: components/DisassociateButton/DisassociateButton.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:202 msgid "confirm disassociate" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:60 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 msgid "controller instance" msgstr "" -#: src/screens/Project/ProjectList/ProjectListItem.jsx:114 +#: screens/Project/ProjectList/ProjectListItem.jsx:140 msgid "copy to clipboard disabled" msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:147 msgid "deletion error" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:522 +#: screens/ActivityStream/ActivityStreamDescription.jsx:522 msgid "denied" msgstr "" -#: src/components/DisassociateButton/DisassociateButton.jsx:82 +#: components/DisassociateButton/DisassociateButton.jsx:82 msgid "disassociate" msgstr "" -#: src/screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:71 -#: src/screens/Host/HostDetail/HostDetail.jsx:112 -#: src/screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:89 -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:129 -#: src/screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:102 -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 -#: src/screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:155 -#: src/screens/Project/ProjectDetail/ProjectDetail.jsx:154 -#: src/screens/User/UserDetail/UserDetail.jsx:88 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:219 +msgid "documentation" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:121 +#: screens/Host/HostDetail/HostDetail.jsx:113 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:159 +#: screens/User/UserDetail/UserDetail.jsx:89 msgid "edit" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:121 +#: screens/Template/Survey/SurveyListItem.jsx:123 msgid "encrypted" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 msgid "expiration" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 msgid "for more details." msgstr "" -#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "group" +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:221 +msgid "for more info." msgstr "" #: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 -msgid "groups" -msgstr "" +#~ msgid "group" +#~ msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:182 +#: src/screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:117 +#~ msgid "groups" +#~ msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:182 msgid "here" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:129 -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:204 +#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.jsx:204 msgid "here." msgstr "" -#: src/components/Lookup/HostFilterLookup.jsx:333 +#: components/Lookup/HostFilterLookup.jsx:340 msgid "hosts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:95 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:95 msgid "instance counts" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:109 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:109 msgid "instance group used capacity" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:82 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:82 msgid "instance host name" msgstr "" -#: src/screens/InstanceGroup/Instances/InstanceListItem.jsx:85 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:85 msgid "instance type" msgstr "" -#: src/components/Lookup/HostListItem.jsx:30 +#: components/Lookup/HostListItem.jsx:30 msgid "inventory" msgstr "" -#: src/screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:48 -#: src/screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 -#: src/screens/Job/JobDetail/JobDetail.jsx:118 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 +#: screens/Job/JobDetail/JobDetail.jsx:119 msgid "isolated instance" msgstr "" -#: src/components/Pagination/Pagination.jsx:26 +#: components/Pagination/Pagination.jsx:24 msgid "items" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 msgid "ldap user" msgstr "" -#: src/screens/User/UserDetail/UserDetail.jsx:72 +#: screens/User/UserDetail/UserDetail.jsx:72 msgid "login type" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:183 msgid "min" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:80 +#: screens/Template/Survey/SurveyListItem.jsx:82 msgid "move down" msgstr "" -#: src/screens/Template/Survey/SurveyListItem.jsx:70 +#: screens/Template/Survey/SurveyListItem.jsx:71 msgid "move up" msgstr "" -#: src/components/Lookup/HostListItem.jsx:23 -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:76 +#: components/Lookup/HostListItem.jsx:23 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:90 msgid "name" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:477 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 msgid "of" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:250 +#: components/AdHocCommands/AdHocDetailsStep.jsx:250 msgid "option to the" msgstr "" -#: src/screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 msgid "or attributes of the job such as" msgstr "" -#: src/components/Pagination/Pagination.jsx:27 +#: components/Pagination/Pagination.jsx:25 msgid "page" msgstr "" -#: src/components/Pagination/Pagination.jsx:28 +#: components/Pagination/Pagination.jsx:26 msgid "pages" msgstr "" -#: src/components/Pagination/Pagination.jsx:30 +#: components/Pagination/Pagination.jsx:28 msgid "per page" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:21 +#: components/LaunchButton/ReLaunchDropDown.jsx:66 +#: components/LaunchButton/ReLaunchDropDown.jsx:88 +msgid "relaunch jobs" +msgstr "" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:21 msgid "resource name" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:36 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:36 msgid "resource role" msgstr "" -#: src/screens/Team/TeamRoles/TeamRoleListItem.jsx:26 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:26 msgid "resource type" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 msgid "scope" msgstr "" -#: src/screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:197 msgid "sec" msgstr "" -#: src/screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:228 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 msgid "seconds" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:62 +#: components/AdHocCommands/AdHocDetailsStep.jsx:62 msgid "select module" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:139 +#: components/AdHocCommands/AdHocDetailsStep.jsx:139 msgid "select verbosity" msgstr "" -#: src/screens/User/UserList/UserListItem.jsx:56 +#: screens/User/UserList/UserListItem.jsx:56 msgid "social login" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:30 +#: screens/ActivityStream/ActivityStreamListItem.jsx:30 msgid "system" msgstr "" -#: src/screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 msgid "team name" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:520 +#: screens/ActivityStream/ActivityStreamDescription.jsx:520 msgid "timed out" msgstr "" -#: src/components/AdHocCommands/AdHocDetailsStep.jsx:230 +#: components/AdHocCommands/AdHocDetailsStep.jsx:230 msgid "toggle changes" msgstr "" -#: src/screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 msgid "token name" msgstr "" -#: src/screens/Inventory/InventorySources/InventorySourceListItem.jsx:83 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:110 msgid "type" msgstr "" -#: src/screens/ActivityStream/ActivityStreamDescription.jsx:525 +#: screens/ActivityStream/ActivityStreamDescription.jsx:525 msgid "updated" msgstr "" -#: src/screens/Template/shared/WebhookSubForm.jsx:199 +#: screens/Template/shared/WebhookSubForm.jsx:199 msgid "workflow job template webhook key" msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:27 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:113 +msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:86 +msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.jsx:223 +msgid "{0, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:65 +msgid "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:56 +msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +msgstr "" + +#: screens/Setting/shared/LoggingTestAlert.jsx:27 msgid "{0}" msgstr "" -#: src/screens/ActivityStream/ActivityStreamListItem.jsx:28 +#: screens/ActivityStream/ActivityStreamListItem.jsx:28 msgid "{0} (deleted)" msgstr "" -#: src/components/ChipGroup/ChipGroup.jsx:13 +#: components/ChipGroup/ChipGroup.jsx:13 msgid "{0} more" msgstr "" -#: src/screens/Inventory/InventoryList/InventoryListItem.jsx:62 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:62 msgid "{0} sources with sync failures." msgstr "" -#: src/screens/Setting/shared/LoggingTestAlert.jsx:25 +#: screens/Setting/shared/LoggingTestAlert.jsx:25 msgid "{0}: {1}" msgstr "" -#: src/components/DetailList/UserDateDetail.jsx:23 +#: components/DetailList/UserDateDetail.jsx:23 msgid "{dateStr} by <0>{username}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:196 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 msgid "{intervalValue, plural, one {day} other {days}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:192 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 msgid "{intervalValue, plural, one {hour} other {hours}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:188 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 msgid "{intervalValue, plural, one {minute} other {minutes}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:204 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 msgid "{intervalValue, plural, one {month} other {months}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 msgid "{intervalValue, plural, one {week} other {weeks}}" msgstr "" -#: src/components/Schedule/shared/FrequencyDetailSubform.jsx:208 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 msgid "{intervalValue, plural, one {year} other {years}}" msgstr "" -#: src/components/PromptDetail/PromptDetail.jsx:43 +#: components/PromptDetail/PromptDetail.jsx:43 msgid "{minutes} min {seconds} sec" msgstr "" #: src/screens/Inventory/InventoryList/InventoryList.jsx:215 -msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgid "{numItemsToDelete, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +#~ msgstr "" + +#: components/JobList/JobListCancelButton.jsx:92 +msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:81 -msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" -msgstr "" +#~ msgid "{numJobsToCancel, plural, one {Cancel selected job} other {Cancel selected jobs}}" +#~ msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:156 +#: components/JobList/JobListCancelButton.jsx:151 msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" msgstr "" -#: src/components/JobList/JobListCancelButton.jsx:68 -msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#: components/JobList/JobListCancelButton.jsx:77 +msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" msgstr "" +#: src/components/JobList/JobListCancelButton.jsx:68 +#~ msgid "{numJobsUnableToCancel, plural, one {You cannot cancel the following job because it is not running:} other {You cannot cancel the following jobs because they are not running:}}" +#~ msgstr "" + #: src/components/JobList/JobListCancelButton.jsx:57 -msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" -msgstr "" +#~ msgid "{numJobsUnableToCancel, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +#~ msgstr "" -#: src/components/PaginatedDataList/PaginatedDataList.jsx:92 -#: src/components/PaginatedTable/PaginatedTable.jsx:76 +#: components/PaginatedDataList/PaginatedDataList.jsx:92 +#: components/PaginatedTable/PaginatedTable.jsx:77 msgid "{pluralizedItemName} List" msgstr "" #: src/components/JobList/JobListCancelButton.jsx:96 -msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" -msgstr "" +#~ msgid "{zeroOrOneJobSelected, plural, one {Cancel job} other {Cancel jobs}}" +#~ msgstr "" diff --git a/awx/ui_next/src/locales/zu/messages.po b/awx/ui_next/src/locales/zu/messages.po new file mode 100644 index 0000000000..6a16e2252c --- /dev/null +++ b/awx/ui_next/src/locales/zu/messages.po @@ -0,0 +1,8846 @@ +msgid "" +msgstr "" +"POT-Creation-Date: 2021-04-06 17:06-0400\n" +"Mime-Version: 1.0\n" +"Content-Type: text/plain; charset=utf-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: @lingui/cli\n" +"Language: zu\n" + +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:43 +msgid "(Limited to first 10)" +msgstr "" + +#: components/TemplateList/TemplateListItem.jsx:90 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:153 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:91 +msgid "(Prompt on launch)" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:261 +msgid "* This field will be retrieved from an external secret management system using the specified credential." +msgstr "" + +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:59 +msgid "- Enable Concurrent Jobs" +msgstr "" + +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:64 +msgid "- Enable Webhooks" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:229 +msgid "/ (project root)" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:26 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:136 +#: components/PromptDetail/PromptDetail.jsx:95 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:32 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:42 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:75 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:106 +#: screens/Template/shared/JobTemplateForm.jsx:180 +msgid "0 (Normal)" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:106 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:82 +msgid "0 (Warning)" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:107 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:83 +msgid "1 (Info)" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:27 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:137 +#: components/PromptDetail/PromptDetail.jsx:96 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:33 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:43 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:76 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:107 +#: screens/Template/shared/JobTemplateForm.jsx:181 +msgid "1 (Verbose)" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:108 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:84 +msgid "2 (Debug)" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:28 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:138 +#: components/PromptDetail/PromptDetail.jsx:97 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:34 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:44 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:77 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:108 +#: screens/Template/shared/JobTemplateForm.jsx:182 +msgid "2 (More Verbose)" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:29 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:139 +#: components/PromptDetail/PromptDetail.jsx:98 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:35 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:45 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:78 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:109 +#: screens/Template/shared/JobTemplateForm.jsx:183 +msgid "3 (Debug)" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:30 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:140 +#: components/PromptDetail/PromptDetail.jsx:99 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:36 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:46 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:79 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:110 +#: screens/Template/shared/JobTemplateForm.jsx:184 +msgid "4 (Connection Debug)" +msgstr "" + +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:111 +msgid "5 (WinRM Debug)" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:57 +msgid "" +"A refspec to fetch (passed to the Ansible git\n" +"module). This parameter allows access to references via\n" +"the branch field not otherwise available." +msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:128 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:281 +msgid "ALL" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:223 +msgid "API Service/Integration Key" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:301 +msgid "API Token" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:316 +msgid "API service/integration key" +msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:129 +msgid "About" +msgstr "" + +#: routeConfig.js:93 +#: screens/ActivityStream/ActivityStream.jsx:176 +#: screens/Credential/Credential.jsx:60 +#: screens/Credential/Credentials.jsx:29 +#: screens/Inventory/Inventories.jsx:58 +#: screens/Inventory/Inventory.jsx:63 +#: screens/Inventory/SmartInventory.jsx:70 +#: screens/Organization/Organization.jsx:124 +#: screens/Organization/Organizations.jsx:32 +#: screens/Project/Project.jsx:106 +#: screens/Project/Projects.jsx:30 +#: screens/Team/Team.jsx:56 +#: screens/Team/Teams.jsx:31 +#: screens/Template/Template.jsx:145 +#: screens/Template/Templates.jsx:46 +#: screens/Template/WorkflowJobTemplate.jsx:122 +msgid "Access" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:76 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:80 +msgid "Access Token Expiration" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:431 +msgid "Account SID" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:404 +msgid "Account token" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:53 +msgid "Action" +msgstr "" + +#: components/JobList/JobList.jsx:223 +#: components/JobList/JobListItem.jsx:80 +#: components/Schedule/ScheduleList/ScheduleList.jsx:176 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:112 +#: components/TemplateList/TemplateList.jsx:227 +#: components/TemplateList/TemplateListItem.jsx:156 +#: screens/ActivityStream/ActivityStream.jsx:259 +#: screens/ActivityStream/ActivityStreamListItem.jsx:49 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:47 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:166 +#: screens/Credential/CredentialList/CredentialList.jsx:145 +#: screens/Credential/CredentialList/CredentialListItem.jsx:63 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:181 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:37 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:160 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:78 +#: screens/Host/HostList/HostList.jsx:170 +#: screens/Host/HostList/HostListItem.jsx:48 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:240 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:102 +#: screens/Inventory/InventoryList/InventoryList.jsx:204 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:112 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:104 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:74 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:119 +#: screens/Organization/OrganizationList/OrganizationList.jsx:161 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:71 +#: screens/Project/ProjectList/ProjectList.jsx:178 +#: screens/Project/ProjectList/ProjectListItem.jsx:152 +#: screens/Team/TeamList/TeamList.jsx:156 +#: screens/Team/TeamList/TeamListItem.jsx:54 +#: screens/User/UserList/UserList.jsx:172 +#: screens/User/UserList/UserListItem.jsx:79 +msgid "Actions" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:87 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:53 +#: components/TemplateList/TemplateListItem.jsx:229 +#: screens/Host/HostDetail/HostDetail.jsx:77 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:78 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:101 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:34 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:118 +msgid "Activity" +msgstr "" + +#: routeConfig.js:50 +#: screens/ActivityStream/ActivityStream.jsx:119 +#: screens/Setting/Settings.jsx:44 +msgid "Activity Stream" +msgstr "" + +#: screens/Setting/SettingList.jsx:114 +msgid "Activity Stream settings" +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:122 +msgid "Activity Stream type selector" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:117 +msgid "Actor" +msgstr "" + +#: components/AddDropDownButton/AddDropDownButton.jsx:39 +#: components/PaginatedDataList/ToolbarAddButton.jsx:15 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:152 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:155 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:161 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:165 +msgid "Add" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkAddModal.jsx:14 +msgid "Add Link" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeAddModal.jsx:70 +msgid "Add Node" +msgstr "" + +#: screens/Template/Templates.jsx:50 +msgid "Add Question" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:185 +msgid "Add Roles" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:182 +msgid "Add Team Roles" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:179 +msgid "Add User Roles" +msgstr "" + +#: components/Workflow/WorkflowStartNode.jsx:69 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:195 +msgid "Add a new node" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:55 +msgid "Add a new node between these two nodes" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:157 +msgid "Add container group" +msgstr "" + +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:128 +msgid "Add existing group" +msgstr "" + +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:146 +msgid "Add existing host" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:158 +msgid "Add instance group" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.jsx:135 +msgid "Add inventory" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:141 +msgid "Add job template" +msgstr "" + +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:129 +msgid "Add new group" +msgstr "" + +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:147 +msgid "Add new host" +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:73 +msgid "Add resource type" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.jsx:136 +msgid "Add smart inventory" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:171 +msgid "Add team permissions" +msgstr "" + +#: screens/User/UserRoles/UserRolesList.jsx:182 +msgid "Add user permissions" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:142 +msgid "Add workflow template" +msgstr "" + +#: routeConfig.js:114 +#: screens/ActivityStream/ActivityStream.jsx:187 +msgid "Administration" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.jsx:86 +#: screens/Job/JobOutput/JobOutput.jsx:671 +msgid "Advanced" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:246 +msgid "Advanced search value input" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:176 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:203 +msgid "" +"After every project update where the SCM revision\n" +"changes, refresh the inventory from the selected source\n" +"before executing job tasks. This is intended for static content,\n" +"like the Ansible inventory .ini file format." +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:508 +msgid "After number of occurrences" +msgstr "" + +#: components/AlertModal/AlertModal.jsx:77 +msgid "Alert modal" +msgstr "" + +#: components/LaunchButton/ReLaunchDropDown.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:244 +msgid "All" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:226 +msgid "All job types" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:46 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:74 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:100 +msgid "Allow Branch Override" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:129 +msgid "Allow Provisioning Callbacks" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:102 +msgid "" +"Allow changing the Source Control branch or revision in a job\n" +"template that uses this project." +msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:119 +msgid "Allowed URIs list, space separated" +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:126 +#: components/Workflow/WorkflowLinkHelp.jsx:24 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:53 +msgid "Always" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:91 +msgid "Amazon EC2" +msgstr "" + +#: components/Lookup/shared/LookupErrorMessage.jsx:12 +msgid "An error occurred" +msgstr "" + +#: components/LaunchPrompt/steps/useInventoryStep.jsx:40 +msgid "An inventory must be selected" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:98 +msgid "Ansible Tower" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:85 +msgid "Ansible Tower Documentation." +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:33 +msgid "Answer type" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:130 +msgid "Answer variable name" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:241 +msgid "Any" +msgstr "" + +#: components/Lookup/ApplicationLookup.jsx:65 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:43 +#: screens/User/UserTokenList/UserTokenListItem.jsx:52 +#: screens/User/shared/UserTokenForm.jsx:44 +msgid "Application" +msgstr "" + +#: screens/User/Users.jsx:38 +msgid "Application Name" +msgstr "" + +#: screens/User/UserTokenList/UserTokenListItem.jsx:42 +msgid "Application access token" +msgstr "" + +#: screens/Application/Applications.jsx:67 +#: screens/Application/Applications.jsx:70 +msgid "Application information" +msgstr "" + +#: screens/User/UserTokenList/UserTokenList.jsx:111 +#: screens/User/UserTokenList/UserTokenList.jsx:122 +#: screens/User/UserTokenList/UserTokenListItem.jsx:47 +msgid "Application name" +msgstr "" + +#: screens/Application/Application/Application.jsx:93 +msgid "Application not found." +msgstr "" + +#: components/Lookup/ApplicationLookup.jsx:74 +#: routeConfig.js:138 +#: screens/Application/Applications.jsx:25 +#: screens/Application/Applications.jsx:35 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:116 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:154 +#: util/getRelatedResourceDeleteDetails.js:233 +msgid "Applications" +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:204 +msgid "Applications & Tokens" +msgstr "" + +#: components/NotificationList/NotificationListItem.jsx:40 +#: components/NotificationList/NotificationListItem.jsx:41 +#: components/Workflow/WorkflowLegend.jsx:110 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:83 +msgid "Approval" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:196 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:59 +msgid "Approve" +msgstr "" + +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:56 +msgid "Approved" +msgstr "" + +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:49 +msgid "Approved by {0} - {1}" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:127 +msgid "April" +msgstr "" + +#: components/DeleteButton/DeleteButton.jsx:127 +msgid "Are you sure you want to delete:" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:41 +msgid "Are you sure you want to exit the Workflow Creator without saving your changes?" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:41 +msgid "Are you sure you want to remove all the nodes in this workflow?" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:46 +msgid "Are you sure you want to remove the node below:" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:43 +msgid "Are you sure you want to remove this link?" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:53 +msgid "Are you sure you want to remove this node?" +msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:53 +msgid "Are you sure you want to remove {0} access from {1}? Doing so affects all members of the team." +msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:64 +msgid "Are you sure you want to remove {0} access from {username}?" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:461 +#: screens/Job/JobOutput/JobOutput.jsx:812 +msgid "Are you sure you want to submit the request to cancel this job?" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:108 +#: components/AdHocCommands/AdHocDetailsStep.jsx:110 +msgid "Arguments" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:378 +msgid "Artifacts" +msgstr "" + +#: screens/InstanceGroup/Instances/InstanceList.jsx:181 +#: screens/User/UserTeams/UserTeamList.jsx:204 +msgid "Associate" +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:134 +msgid "Associate role error" +msgstr "" + +#: components/AssociateModal/AssociateModal.jsx:99 +msgid "Association modal" +msgstr "" + +#: components/LaunchPrompt/steps/SurveyStep.jsx:138 +msgid "At least one value must be selected for this field." +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:147 +msgid "August" +msgstr "" + +#: screens/Setting/SettingList.jsx:55 +msgid "Authentication" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:86 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:93 +msgid "Authorization Code Expiration" +msgstr "" + +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:84 +#: screens/Application/shared/ApplicationForm.jsx:84 +msgid "Authorization grant type" +msgstr "" + +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:89 +msgid "Auto" +msgstr "" + +#: screens/Setting/Settings.jsx:47 +msgid "Azure AD" +msgstr "" + +#: screens/Setting/SettingList.jsx:62 +msgid "Azure AD settings" +msgstr "" + +#: components/AdHocCommands/AdHocCommandsWizard.jsx:111 +#: components/AddRole/AddResourceRole.jsx:286 +#: components/LaunchPrompt/LaunchPrompt.jsx:118 +#: components/Schedule/shared/SchedulePromptableFields.jsx:122 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:93 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:141 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:144 +msgid "Back" +msgstr "" + +#: screens/Credential/Credential.jsx:52 +msgid "Back to Credentials" +msgstr "" + +#: components/ContentError/ContentError.jsx:48 +msgid "Back to Dashboard." +msgstr "" + +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:51 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:52 +msgid "Back to Groups" +msgstr "" + +#: screens/Host/Host.jsx:45 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:66 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:48 +msgid "Back to Hosts" +msgstr "" + +#: screens/Inventory/Inventory.jsx:56 +#: screens/Inventory/SmartInventory.jsx:63 +msgid "Back to Inventories" +msgstr "" + +#: screens/Job/Job.jsx:97 +msgid "Back to Jobs" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplate.jsx:76 +msgid "Back to Notifications" +msgstr "" + +#: screens/Organization/Organization.jsx:117 +msgid "Back to Organizations" +msgstr "" + +#: screens/Project/Project.jsx:99 +msgid "Back to Projects" +msgstr "" + +#: components/Schedule/Schedule.jsx:61 +msgid "Back to Schedules" +msgstr "" + +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:47 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:39 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:73 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:39 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:57 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:90 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:63 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:108 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:39 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:40 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:39 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:48 +msgid "Back to Settings" +msgstr "" + +#: screens/Inventory/InventorySource/InventorySource.jsx:81 +msgid "Back to Sources" +msgstr "" + +#: screens/Team/Team.jsx:49 +msgid "Back to Teams" +msgstr "" + +#: screens/Template/Template.jsx:138 +#: screens/Template/WorkflowJobTemplate.jsx:115 +msgid "Back to Templates" +msgstr "" + +#: screens/User/UserToken/UserToken.jsx:47 +msgid "Back to Tokens" +msgstr "" + +#: screens/User/User.jsx:57 +msgid "Back to Users" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApproval.jsx:69 +msgid "Back to Workflow Approvals" +msgstr "" + +#: screens/Application/Application/Application.jsx:71 +msgid "Back to applications" +msgstr "" + +#: screens/CredentialType/CredentialType.jsx:55 +msgid "Back to credential types" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:57 +msgid "Back to execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:56 +#: screens/InstanceGroup/InstanceGroup.jsx:57 +msgid "Back to instance groups" +msgstr "" + +#: screens/ManagementJob/ManagementJob.jsx:98 +msgid "Back to management jobs" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:70 +msgid "" +"Base path used for locating playbooks. Directories\n" +"found inside this path will be listed in the playbook directory drop-down.\n" +"Together the base path and selected playbook directory provide the full\n" +"path used to locate playbooks." +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:456 +msgid "Basic auth password" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:33 +msgid "" +"Branch to checkout. In addition to branches,\n" +"you can input tags, commit hashes, and arbitrary refs. Some\n" +"commit hashes and refs may not be available unless you also\n" +"provide a custom refspec." +msgstr "" + +#: components/About/About.jsx:37 +msgid "Brand Image" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:104 +#: components/PromptDetail/PromptProjectDetail.jsx:94 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:126 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:120 +msgid "Cache Timeout" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:235 +msgid "Cache timeout" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:237 +msgid "Cache timeout (seconds)" +msgstr "" + +#: components/AdHocCommands/AdHocCommandsWizard.jsx:112 +#: components/AddRole/AddResourceRole.jsx:287 +#: components/AssociateModal/AssociateModal.jsx:115 +#: components/AssociateModal/AssociateModal.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:120 +#: components/DeleteButton/DeleteButton.jsx:123 +#: components/DisassociateButton/DisassociateButton.jsx:125 +#: components/DisassociateButton/DisassociateButton.jsx:128 +#: components/FormActionGroup/FormActionGroup.jsx:24 +#: components/FormActionGroup/FormActionGroup.jsx:29 +#: components/LaunchPrompt/LaunchPrompt.jsx:119 +#: components/Lookup/HostFilterLookup.jsx:329 +#: components/Lookup/Lookup.jsx:150 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:278 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:46 +#: components/Schedule/shared/ScheduleForm.jsx:641 +#: components/Schedule/shared/ScheduleForm.jsx:646 +#: components/Schedule/shared/SchedulePromptableFields.jsx:123 +#: screens/Credential/shared/CredentialForm.jsx:299 +#: screens/Credential/shared/CredentialForm.jsx:304 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:103 +#: screens/Credential/shared/ExternalTestModal.jsx:99 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:109 +#: screens/Job/JobDetail/JobDetail.jsx:411 +#: screens/Job/JobDetail/JobDetail.jsx:416 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:64 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:67 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:14 +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:18 +#: screens/Setting/shared/RevertAllAlert.jsx:32 +#: screens/Setting/shared/RevertFormActionGroup.jsx:38 +#: screens/Setting/shared/RevertFormActionGroup.jsx:44 +#: screens/Team/TeamRoles/TeamRolesList.jsx:211 +#: screens/Team/TeamRoles/TeamRolesList.jsx:214 +#: screens/Template/Survey/SurveyList.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:31 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:39 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:45 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:40 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:154 +#: screens/User/UserRoles/UserRolesList.jsx:211 +#: screens/User/UserRoles/UserRolesList.jsx:214 +msgid "Cancel" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:436 +#: screens/Job/JobDetail/JobDetail.jsx:437 +#: screens/Job/JobOutput/JobOutput.jsx:787 +#: screens/Job/JobOutput/JobOutput.jsx:788 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:186 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:190 +msgid "Cancel Job" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:444 +#: screens/Job/JobDetail/JobDetail.jsx:447 +#: screens/Job/JobOutput/JobOutput.jsx:795 +#: screens/Job/JobOutput/JobOutput.jsx:798 +msgid "Cancel job" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:42 +msgid "Cancel link changes" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:34 +msgid "Cancel link removal" +msgstr "" + +#: components/Lookup/Lookup.jsx:148 +msgid "Cancel lookup" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:28 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:37 +msgid "Cancel node removal" +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:29 +msgid "Cancel revert" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:79 +msgid "Cancel selected job" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:80 +msgid "Cancel selected jobs" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:66 +msgid "Cancel sync" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:58 +msgid "Cancel sync process" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:62 +msgid "Cancel sync source" +msgstr "" + +#: components/JobList/JobList.jsx:206 +#: components/Workflow/WorkflowNodeHelp.jsx:95 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:176 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:25 +msgid "Canceled" +msgstr "" + +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:153 +msgid "" +"Cannot enable log aggregator without providing\n" +"logging aggregator host and logging aggregator type." +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:239 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:101 +msgid "Capacity" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:176 +msgid "Case-insensitive version of contains" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:196 +msgid "Case-insensitive version of endswith." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:166 +msgid "Case-insensitive version of exact." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:206 +msgid "Case-insensitive version of regex." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:186 +msgid "Case-insensitive version of startswith." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:76 +msgid "" +"Change PROJECTS_ROOT when deploying\n" +"{brandName} to change this location." +msgstr "" + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:43 +msgid "Changed" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:56 +msgid "Changes" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:195 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:276 +msgid "Channel" +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:104 +#: screens/Template/shared/JobTemplateForm.jsx:175 +msgid "Check" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:232 +msgid "Check whether the given field or related object is null; expects a boolean value." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:239 +msgid "Check whether the given field's value is present in the list provided; expects a comma-separated list of items." +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:34 +msgid "Choose a .json file" +msgstr "" + +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:76 +msgid "Choose a Notification Type" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:29 +msgid "Choose a Playbook Directory" +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:223 +msgid "Choose a Source Control Type" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.jsx:102 +msgid "Choose a Webhook Service" +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:97 +#: screens/Template/shared/JobTemplateForm.jsx:168 +msgid "Choose a job type" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:88 +msgid "Choose a module" +msgstr "" + +#: screens/Inventory/shared/InventorySourceForm.jsx:144 +msgid "Choose a source" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:499 +msgid "Choose an HTTP method" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:37 +msgid "" +"Choose an answer type or format you want as the prompt for the user.\n" +"Refer to the Ansible Tower Documentation for more additional\n" +"information about each option." +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:142 +msgid "Choose an email option" +msgstr "" + +#: components/AddRole/SelectRoleStep.jsx:23 +msgid "Choose roles to apply to the selected resources. Note that all selected roles will be applied to all selected resources." +msgstr "" + +#: components/AddRole/SelectResourceStep.jsx:82 +msgid "Choose the resources that will be receiving new roles. You'll be able to select the roles to apply in the next step. Note that the resources chosen here will receive all roles chosen in the next step." +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:196 +msgid "Choose the type of resource that will be receiving new roles. For example, if you'd like to add new roles to a set of users please choose Users and click Next. You'll be able to select the specific resources in the next step." +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:38 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:66 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:71 +msgid "Clean" +msgstr "" + +#: components/DataListToolbar/DataListToolbar.jsx:65 +#: screens/Job/JobOutput/JobOutput.jsx:715 +msgid "Clear all filters" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerGraph.jsx:261 +msgid "Click an available node to create a new link. Click outside the graph to cancel." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:129 +msgid "Click the Edit button below to reconfigure the node." +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:73 +msgid "Click this button to verify connection to the secret management system using the selected credential and specified inputs." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:153 +msgid "Click to create a new link to this node." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:168 +msgid "Click to view job details" +msgstr "" + +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:91 +#: screens/Application/Applications.jsx:89 +msgid "Client ID" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:228 +msgid "Client Identifier" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:324 +msgid "Client identifier" +msgstr "" + +#: screens/Application/Applications.jsx:102 +msgid "Client secret" +msgstr "" + +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:101 +#: screens/Application/shared/ApplicationForm.jsx:128 +msgid "Client type" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:173 +msgid "Close" +msgstr "" + +#: components/CredentialChip/CredentialChip.jsx:12 +msgid "Cloud" +msgstr "" + +#: components/ExpandCollapse/ExpandCollapse.jsx:41 +msgid "Collapse" +msgstr "" + +#: components/JobList/JobList.jsx:186 +#: components/JobList/JobListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:99 +#: screens/Job/JobOutput/HostEventModal.jsx:137 +msgid "Command" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:580 +msgid "Concurrent Jobs" +msgstr "" + +#: components/DeleteButton/DeleteButton.jsx:107 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:95 +msgid "Confirm Delete" +msgstr "" + +#: screens/User/shared/UserForm.jsx:96 +msgid "Confirm Password" +msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:35 +msgid "Confirm delete" +msgstr "" + +#: screens/User/UserRoles/UserRolesList.jsx:202 +msgid "Confirm disassociate" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:24 +msgid "Confirm link removal" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:27 +msgid "Confirm node removal" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:18 +msgid "Confirm removal of all nodes" +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:20 +msgid "Confirm revert all" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:265 +msgid "Container Group" +msgstr "" + +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:85 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:95 +msgid "Container group" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:81 +msgid "Container group not found." +msgstr "" + +#: components/LaunchPrompt/LaunchPrompt.jsx:113 +#: components/Schedule/shared/SchedulePromptableFields.jsx:117 +msgid "Content Loading" +msgstr "" + +#: components/AppContainer/AppContainer.jsx:234 +msgid "Continue" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:93 +msgid "" +"Control the level of output Ansible\n" +"will produce for inventory source update jobs." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:152 +msgid "" +"Control the level of output ansible\n" +"will produce as the playbook executes." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:444 +msgid "" +"Control the level of output ansible will\n" +"produce as the playbook executes." +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:64 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:69 +msgid "Controller" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:205 +msgid "Convergence" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:236 +msgid "Convergence select" +msgstr "" + +#: components/CopyButton/CopyButton.jsx:41 +msgid "Copy" +msgstr "" + +#: screens/Credential/CredentialList/CredentialListItem.jsx:77 +msgid "Copy Credential" +msgstr "" + +#: components/CopyButton/CopyButton.jsx:48 +msgid "Copy Error" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:95 +msgid "Copy Execution Environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:135 +msgid "Copy Inventory" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:147 +msgid "Copy Notification Template" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.jsx:175 +msgid "Copy Project" +msgstr "" + +#: components/TemplateList/TemplateListItem.jsx:209 +msgid "Copy Template" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.jsx:147 +msgid "Copy full revision to clipboard." +msgstr "" + +#: components/About/About.jsx:35 +msgid "Copyright 2019 Red Hat, Inc." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:383 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:223 +msgid "Create" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:14 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:24 +msgid "Create Execution environments" +msgstr "" + +#: screens/Application/Applications.jsx:26 +#: screens/Application/Applications.jsx:36 +msgid "Create New Application" +msgstr "" + +#: screens/Credential/Credentials.jsx:14 +#: screens/Credential/Credentials.jsx:25 +msgid "Create New Credential" +msgstr "" + +#: screens/Host/Hosts.jsx:16 +#: screens/Host/Hosts.jsx:26 +msgid "Create New Host" +msgstr "" + +#: screens/Template/Templates.jsx:17 +msgid "Create New Job Template" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplates.jsx:14 +#: screens/NotificationTemplate/NotificationTemplates.jsx:23 +msgid "Create New Notification Template" +msgstr "" + +#: screens/Organization/Organizations.jsx:17 +#: screens/Organization/Organizations.jsx:28 +msgid "Create New Organization" +msgstr "" + +#: screens/Project/Projects.jsx:15 +#: screens/Project/Projects.jsx:26 +msgid "Create New Project" +msgstr "" + +#: screens/Inventory/Inventories.jsx:112 +#: screens/ManagementJob/ManagementJobs.jsx:26 +#: screens/Project/Projects.jsx:35 +#: screens/Template/Templates.jsx:53 +msgid "Create New Schedule" +msgstr "" + +#: screens/Team/Teams.jsx:15 +#: screens/Team/Teams.jsx:26 +msgid "Create New Team" +msgstr "" + +#: screens/User/Users.jsx:16 +#: screens/User/Users.jsx:28 +msgid "Create New User" +msgstr "" + +#: screens/Template/Templates.jsx:19 +msgid "Create New Workflow Template" +msgstr "" + +#: screens/Host/HostList/SmartInventoryButton.jsx:29 +msgid "Create a new Smart Inventory with the applied filter" +msgstr "" + +#: screens/InstanceGroup/InstanceGroups.jsx:18 +#: screens/InstanceGroup/InstanceGroups.jsx:30 +msgid "Create container group" +msgstr "" + +#: screens/InstanceGroup/InstanceGroups.jsx:17 +#: screens/InstanceGroup/InstanceGroups.jsx:28 +msgid "Create instance group" +msgstr "" + +#: screens/CredentialType/CredentialTypes.jsx:24 +msgid "Create new credential Type" +msgstr "" + +#: screens/CredentialType/CredentialTypes.jsx:14 +msgid "Create new credential type" +msgstr "" + +#: screens/Inventory/Inventories.jsx:77 +#: screens/Inventory/Inventories.jsx:95 +msgid "Create new group" +msgstr "" + +#: screens/Inventory/Inventories.jsx:64 +#: screens/Inventory/Inventories.jsx:89 +msgid "Create new host" +msgstr "" + +#: screens/Inventory/Inventories.jsx:17 +msgid "Create new inventory" +msgstr "" + +#: screens/Inventory/Inventories.jsx:18 +msgid "Create new smart inventory" +msgstr "" + +#: screens/Inventory/Inventories.jsx:99 +msgid "Create new source" +msgstr "" + +#: screens/User/Users.jsx:36 +msgid "Create user token" +msgstr "" + +#: components/Lookup/ApplicationLookup.jsx:93 +#: components/Lookup/HostFilterLookup.jsx:356 +#: components/PromptDetail/PromptDetail.jsx:133 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:273 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:105 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:127 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:246 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:90 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:143 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:115 +#: screens/Host/HostDetail/HostDetail.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:66 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:117 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:109 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:46 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:85 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:128 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:262 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:141 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:355 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:331 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:105 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:111 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:145 +#: screens/Team/TeamDetail/TeamDetail.jsx:47 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:281 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:183 +#: screens/User/UserDetail/UserDetail.jsx:82 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:63 +#: screens/User/UserTokenList/UserTokenList.jsx:134 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:160 +msgid "Created" +msgstr "" + +#: components/AdHocCommands/AdHocCredentialStep.jsx:96 +#: components/AddRole/AddResourceRole.jsx:159 +#: components/AssociateModal/AssociateModal.jsx:144 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:179 +#: components/LaunchPrompt/steps/InventoryStep.jsx:91 +#: components/Lookup/CredentialLookup.jsx:153 +#: components/Lookup/InventoryLookup.jsx:114 +#: components/Lookup/InventoryLookup.jsx:167 +#: components/Lookup/MultiCredentialsLookup.jsx:181 +#: components/Lookup/OrganizationLookup.jsx:111 +#: components/Lookup/ProjectLookup.jsx:129 +#: components/NotificationList/NotificationList.jsx:206 +#: components/Schedule/ScheduleList/ScheduleList.jsx:201 +#: components/TemplateList/TemplateList.jsx:210 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:27 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:58 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:104 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:127 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:173 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:196 +#: screens/Credential/CredentialList/CredentialList.jsx:133 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:90 +#: 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:188 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:131 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:162 +#: screens/Inventory/InventoryList/InventoryList.jsx:182 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:170 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:93 +#: screens/Organization/OrganizationList/OrganizationList.jsx:146 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:125 +#: screens/Project/ProjectList/ProjectList.jsx:166 +#: 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:105 +msgid "Created By (Username)" +msgstr "" + +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:72 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:163 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:71 +msgid "Created by (username)" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:110 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:41 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:94 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:56 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:50 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:244 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:35 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:79 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:39 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:39 +#: util/getRelatedResourceDeleteDetails.js:191 +msgid "Credential" +msgstr "" + +#: util/getRelatedResourceDeleteDetails.js:81 +msgid "Credential Input Sources" +msgstr "" + +#: components/Lookup/InstanceGroupsLookup.jsx:96 +msgid "Credential Name" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:229 +#: screens/Credential/shared/CredentialForm.jsx:148 +#: screens/Credential/shared/CredentialForm.jsx:152 +msgid "Credential Type" +msgstr "" + +#: routeConfig.js:118 +#: screens/ActivityStream/ActivityStream.jsx:189 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:122 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:168 +#: screens/CredentialType/CredentialTypes.jsx:13 +#: screens/CredentialType/CredentialTypes.jsx:23 +msgid "Credential Types" +msgstr "" + +#: screens/Credential/Credential.jsx:79 +msgid "Credential not found." +msgstr "" + +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:30 +msgid "Credential passwords" +msgstr "" + +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:58 +msgid "Credential to authenticate with Kubernetes or OpenShift. Must be of type \"Kubernetes/OpenShift API Bearer Token\". If left blank, the underlying Pod's service account will be used." +msgstr "" + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:136 +msgid "Credential to authenticate with a protected container registry." +msgstr "" + +#: screens/CredentialType/CredentialType.jsx:75 +msgid "Credential type not found." +msgstr "" + +#: components/JobList/JobListItem.jsx:124 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:196 +#: components/LaunchPrompt/steps/useCredentialsStep.jsx:65 +#: components/Lookup/MultiCredentialsLookup.jsx:126 +#: components/Lookup/MultiCredentialsLookup.jsx:198 +#: components/PromptDetail/PromptDetail.jsx:163 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:184 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:337 +#: components/TemplateList/TemplateListItem.jsx:235 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:77 +#: routeConfig.js:71 +#: screens/ActivityStream/ActivityStream.jsx:164 +#: screens/Credential/CredentialList/CredentialList.jsx:176 +#: screens/Credential/Credentials.jsx:13 +#: screens/Credential/Credentials.jsx:24 +#: screens/Job/JobDetail/JobDetail.jsx:293 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:293 +#: screens/Template/shared/JobTemplateForm.jsx:351 +#: util/getRelatedResourceDeleteDetails.js:98 +msgid "Credentials" +msgstr "" + +#: components/LaunchPrompt/steps/credentialsValidator.jsx:58 +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:34 +msgid "Current page" +msgstr "" + +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:86 +msgid "Custom pod spec" +msgstr "" + +#: components/TemplateList/TemplateListItem.jsx:145 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:101 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:56 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:93 +#: screens/Project/ProjectList/ProjectListItem.jsx:109 +msgid "Custom virtual environment {0} must be replaced by an execution environment." +msgstr "" + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:54 +msgid "Custom virtual environment {virtualEnvironment} must be replaced by an execution environment." +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:61 +msgid "Customize messages…" +msgstr "" + +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:70 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:71 +msgid "Customize pod specification" +msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputNode.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:314 +msgid "DELETED" +msgstr "" + +#: routeConfig.js:35 +#: screens/Dashboard/Dashboard.jsx:122 +msgid "Dashboard" +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:144 +msgid "Dashboard (all activity)" +msgstr "" + +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:76 +msgid "Data retention period" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:341 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:445 +#: components/Schedule/shared/ScheduleForm.jsx:165 +msgid "Day" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:269 +#: components/Schedule/shared/ScheduleForm.jsx:176 +msgid "Days of Data to Keep" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:663 +msgid "Debug" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:167 +msgid "December" +msgstr "" + +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:97 +#: screens/Template/Survey/SurveyListItem.jsx:121 +msgid "Default" +msgstr "" + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:26 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:172 +msgid "Default Execution Environment" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:193 +#: screens/Template/Survey/SurveyQuestionForm.jsx:201 +#: screens/Template/Survey/SurveyQuestionForm.jsx:208 +#: screens/Template/Survey/SurveyQuestionForm.jsx:234 +msgid "Default answer" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:85 +msgid "Default choice must be answered from the choices listed." +msgstr "" + +#: screens/Setting/SettingList.jsx:106 +msgid "Define system-level features and functions" +msgstr "" + +#: components/DeleteButton/DeleteButton.jsx:76 +#: components/DeleteButton/DeleteButton.jsx:81 +#: components/DeleteButton/DeleteButton.jsx:90 +#: components/DeleteButton/DeleteButton.jsx:94 +#: components/DeleteButton/DeleteButton.jsx:114 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:157 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:233 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:243 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:247 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:270 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:38 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:411 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:131 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:287 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:126 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:140 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:112 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:153 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:139 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:98 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:295 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:169 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:66 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:69 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:74 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:78 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:101 +#: screens/Job/JobDetail/JobDetail.jsx:427 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:369 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:170 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:180 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:79 +#: screens/Team/TeamDetail/TeamDetail.jsx:73 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:414 +#: screens/Template/Survey/SurveyList.jsx:107 +#: screens/Template/Survey/SurveyToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:254 +#: screens/User/UserDetail/UserDetail.jsx:104 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:82 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:218 +msgid "Delete" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:128 +msgid "Delete All Groups and Hosts" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:279 +msgid "Delete Credential" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:131 +msgid "Delete Execution Environment" +msgstr "" + +#: screens/Host/HostDetail/HostDetail.jsx:123 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:113 +msgid "Delete Host" +msgstr "" + +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:132 +msgid "Delete Inventory" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:423 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:201 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:205 +msgid "Delete Job" +msgstr "" + +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:406 +msgid "Delete Job Template" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:365 +msgid "Delete Notification" +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:162 +msgid "Delete Organization" +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.jsx:172 +msgid "Delete Project" +msgstr "" + +#: screens/Template/Survey/SurveyList.jsx:92 +msgid "Delete Questions" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:407 +msgid "Delete Schedule" +msgstr "" + +#: screens/Template/Survey/SurveyList.jsx:92 +msgid "Delete Survey" +msgstr "" + +#: screens/Team/TeamDetail/TeamDetail.jsx:69 +msgid "Delete Team" +msgstr "" + +#: screens/User/UserDetail/UserDetail.jsx:100 +msgid "Delete User" +msgstr "" + +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:78 +msgid "Delete User Token" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:214 +msgid "Delete Workflow Approval" +msgstr "" + +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:246 +msgid "Delete Workflow Job Template" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:142 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:145 +msgid "Delete all nodes" +msgstr "" + +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:127 +msgid "Delete application" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:116 +msgid "Delete credential type" +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceList.jsx:244 +msgid "Delete error" +msgstr "" + +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:104 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:145 +msgid "Delete instance group" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:288 +msgid "Delete inventory source" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:40 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:68 +msgid "Delete on Update" +msgstr "" + +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:165 +msgid "Delete smart inventory" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:81 +msgid "" +"Delete the local repository in its entirety prior to\n" +"performing an update. Depending on the size of the\n" +"repository this may significantly increase the amount\n" +"of time required to complete an update." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:89 +msgid "Delete this link" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:233 +msgid "Delete this node" +msgstr "" + +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:162 +msgid "Delete {pluralizedItemName}?" +msgstr "" + +#: components/DetailList/DeletedDetail.jsx:15 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:141 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:75 +msgid "Deleted" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:269 +#: screens/Credential/CredentialList/CredentialList.jsx:189 +#: screens/Inventory/InventoryList/InventoryList.jsx:255 +#: screens/Project/ProjectList/ProjectList.jsx:233 +msgid "Deletion Error" +msgstr "" + +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:204 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:217 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:259 +msgid "Deletion error" +msgstr "" + +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:39 +msgid "Denied" +msgstr "" + +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:32 +msgid "Denied by {0} - {1}" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:200 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:205 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:32 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:47 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:55 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:59 +msgid "Deny" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:665 +msgid "Deprecated" +msgstr "" + +#: components/HostForm/HostForm.jsx:95 +#: components/Lookup/ApplicationLookup.jsx:83 +#: components/Lookup/ApplicationLookup.jsx:101 +#: components/NotificationList/NotificationList.jsx:186 +#: components/PromptDetail/PromptDetail.jsx:110 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:256 +#: components/Schedule/ScheduleList/ScheduleList.jsx:197 +#: components/Schedule/shared/ScheduleForm.jsx:110 +#: components/TemplateList/TemplateList.jsx:194 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:68 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:126 +#: screens/Application/shared/ApplicationForm.jsx:62 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:211 +#: screens/Credential/CredentialList/CredentialList.jsx:129 +#: screens/Credential/shared/CredentialForm.jsx:126 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:78 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:132 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:32 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:62 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:151 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:106 +#: screens/Host/HostDetail/HostDetail.jsx:81 +#: screens/Host/HostList/HostList.jsx:152 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:78 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:39 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:82 +#: screens/Inventory/InventoryList/InventoryList.jsx:178 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:199 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:105 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:38 +#: screens/Inventory/shared/InventoryForm.jsx:55 +#: screens/Inventory/shared/InventoryGroupForm.jsx:49 +#: screens/Inventory/shared/InventorySourceForm.jsx:113 +#: screens/Inventory/shared/SmartInventoryForm.jsx:61 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:103 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:73 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:53 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:143 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:48 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:95 +#: screens/Organization/OrganizationList/OrganizationList.jsx:142 +#: screens/Organization/shared/OrganizationForm.jsx:68 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:88 +#: screens/Project/ProjectList/ProjectList.jsx:143 +#: screens/Project/shared/ProjectForm.jsx:175 +#: screens/Team/TeamDetail/TeamDetail.jsx:38 +#: screens/Team/TeamList/TeamList.jsx:134 +#: screens/Team/shared/TeamForm.jsx:43 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:174 +#: screens/Template/Survey/SurveyQuestionForm.jsx:124 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:114 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:163 +#: screens/Template/shared/JobTemplateForm.jsx:215 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:118 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:48 +#: screens/User/UserTokenList/UserTokenList.jsx:116 +#: screens/User/shared/UserTokenForm.jsx:59 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:91 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:180 +msgid "Description" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:265 +msgid "Destination Channels" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:171 +msgid "Destination Channels or Users" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:284 +msgid "Destination SMS Number(s)" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:421 +msgid "Destination SMS number(s)" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:372 +msgid "Destination channels" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:239 +msgid "Destination channels or users" +msgstr "" + +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:11 +msgid "Detail coming soon :)" +msgstr "" + +#: components/AdHocCommands/AdHocCommandsWizard.jsx:60 +#: components/AdHocCommands/AdHocCommandsWizard.jsx:70 +#: components/ErrorDetail/ErrorDetail.jsx:73 +#: components/Schedule/Schedule.jsx:68 +#: screens/Application/Application/Application.jsx:77 +#: screens/Application/Applications.jsx:39 +#: screens/Credential/Credential.jsx:58 +#: screens/Credential/Credentials.jsx:28 +#: screens/CredentialType/CredentialType.jsx:62 +#: screens/CredentialType/CredentialTypes.jsx:29 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:64 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:30 +#: screens/Host/Host.jsx:52 +#: screens/Host/Hosts.jsx:29 +#: screens/InstanceGroup/ContainerGroup.jsx:63 +#: screens/InstanceGroup/InstanceGroup.jsx:64 +#: screens/InstanceGroup/InstanceGroups.jsx:33 +#: screens/InstanceGroup/InstanceGroups.jsx:42 +#: screens/Inventory/Inventories.jsx:60 +#: screens/Inventory/Inventories.jsx:102 +#: screens/Inventory/Inventory.jsx:62 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:59 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:73 +#: screens/Inventory/InventorySource/InventorySource.jsx:88 +#: screens/Inventory/SmartInventory.jsx:69 +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:55 +#: screens/Job/Job.jsx:103 +#: screens/Job/JobOutput/HostEventModal.jsx:113 +#: screens/Job/Jobs.jsx:29 +#: screens/ManagementJob/ManagementJobs.jsx:29 +#: screens/NotificationTemplate/NotificationTemplate.jsx:83 +#: screens/NotificationTemplate/NotificationTemplates.jsx:27 +#: screens/Organization/Organization.jsx:123 +#: screens/Organization/Organizations.jsx:31 +#: screens/Project/Project.jsx:105 +#: screens/Project/Projects.jsx:29 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:54 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:46 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:46 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:64 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:70 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:115 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:46 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:47 +#: screens/Setting/Settings.jsx:45 +#: screens/Setting/Settings.jsx:48 +#: screens/Setting/Settings.jsx:52 +#: screens/Setting/Settings.jsx:55 +#: screens/Setting/Settings.jsx:58 +#: screens/Setting/Settings.jsx:61 +#: screens/Setting/Settings.jsx:66 +#: screens/Setting/Settings.jsx:69 +#: screens/Setting/Settings.jsx:72 +#: screens/Setting/Settings.jsx:75 +#: screens/Setting/Settings.jsx:84 +#: screens/Setting/Settings.jsx:85 +#: screens/Setting/Settings.jsx:86 +#: screens/Setting/Settings.jsx:87 +#: screens/Setting/Settings.jsx:88 +#: screens/Setting/Settings.jsx:89 +#: screens/Setting/Settings.jsx:98 +#: screens/Setting/Settings.jsx:101 +#: screens/Setting/Settings.jsx:104 +#: screens/Setting/Settings.jsx:107 +#: 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/Team/Team.jsx:55 +#: screens/Team/Teams.jsx:29 +#: screens/Template/Template.jsx:144 +#: screens/Template/Templates.jsx:44 +#: screens/Template/WorkflowJobTemplate.jsx:121 +#: screens/User/User.jsx:63 +#: screens/User/UserToken/UserToken.jsx:54 +#: screens/User/Users.jsx:31 +#: screens/User/Users.jsx:41 +#: screens/WorkflowApproval/WorkflowApproval.jsx:76 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:21 +msgid "Details" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:111 +msgid "Details tab" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:143 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:205 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:252 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:308 +msgid "Disable SSL Verification" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:197 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:250 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:289 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:360 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:469 +msgid "Disable SSL verification" +msgstr "" + +#: components/DisassociateButton/DisassociateButton.jsx:60 +#: components/DisassociateButton/DisassociateButton.jsx:87 +#: components/DisassociateButton/DisassociateButton.jsx:95 +#: components/DisassociateButton/DisassociateButton.jsx:99 +#: components/DisassociateButton/DisassociateButton.jsx:119 +#: screens/Team/TeamRoles/TeamRolesList.jsx:205 +#: screens/User/UserRoles/UserRolesList.jsx:205 +msgid "Disassociate" +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:211 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:213 +msgid "Disassociate group from host?" +msgstr "" + +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:223 +msgid "Disassociate host from group?" +msgstr "" + +#: screens/InstanceGroup/Instances/InstanceList.jsx:191 +msgid "Disassociate instance from instance group?" +msgstr "" + +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:205 +msgid "Disassociate related group(s)?" +msgstr "" + +#: screens/User/UserTeams/UserTeamList.jsx:212 +msgid "Disassociate related team(s)?" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:192 +#: screens/User/UserRoles/UserRolesList.jsx:192 +msgid "Disassociate role" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:195 +#: screens/User/UserRoles/UserRolesList.jsx:195 +msgid "Disassociate role!" +msgstr "" + +#: components/DisassociateButton/DisassociateButton.jsx:19 +msgid "Disassociate?" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:459 +msgid "" +"Divide the work done by this job template\n" +"into the specified number of job slices, each running the\n" +"same tasks against a portion of the inventory." +msgstr "" + +#: components/CodeEditor/VariablesDetail.jsx:114 +#: components/CodeEditor/VariablesDetail.jsx:120 +#: components/CodeEditor/VariablesField.jsx:63 +#: components/CodeEditor/VariablesField.jsx:69 +msgid "Done" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:172 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:177 +msgid "Download Output" +msgstr "" + +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:79 +msgid "E-mail" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:133 +msgid "E-mail options" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:220 +msgid "Each answer choice must be on a separate line." +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:166 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:175 +msgid "" +"Each time a job runs using this inventory,\n" +"refresh the inventory from the selected source before\n" +"executing job tasks." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:92 +msgid "" +"Each time a job runs using this project, update the\n" +"revision of the project prior to starting the job." +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:397 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:401 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:118 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:120 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:272 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:109 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:125 +#: screens/Host/HostDetail/HostDetail.jsx:117 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:97 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:137 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:126 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:61 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:68 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:107 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:279 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:159 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:356 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:358 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:133 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:151 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:155 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:163 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:88 +#: screens/Setting/ActivityStream/ActivityStreamDetail/ActivityStreamDetail.jsx:92 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:80 +#: screens/Setting/AzureAD/AzureADDetail/AzureADDetail.jsx:84 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:143 +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:147 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:80 +#: screens/Setting/GoogleOAuth2/GoogleOAuth2Detail/GoogleOAuth2Detail.jsx:84 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:97 +#: screens/Setting/Jobs/JobsDetail/JobsDetail.jsx:101 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:161 +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:165 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:15 +#: screens/Setting/License/LicenseDetail/LicenseDetail.jsx:19 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:101 +#: screens/Setting/Logging/LoggingDetail/LoggingDetail.jsx:105 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:146 +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:150 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:80 +#: screens/Setting/RADIUS/RADIUSDetail/RADIUSDetail.jsx:84 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:81 +#: screens/Setting/SAML/SAMLDetail/SAMLDetail.jsx:85 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:79 +#: screens/Setting/TACACS/TACACSDetail/TACACSDetail.jsx:84 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:94 +#: screens/Setting/UI/UIDetail/UIDetail.jsx:99 +#: screens/Team/TeamDetail/TeamDetail.jsx:58 +#: screens/Team/TeamDetail/TeamDetail.jsx:62 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:383 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:385 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:223 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:225 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:208 +#: screens/User/UserDetail/UserDetail.jsx:93 +msgid "Edit" +msgstr "" + +#: screens/Credential/CredentialList/CredentialListItem.jsx:64 +#: screens/Credential/CredentialList/CredentialListItem.jsx:68 +msgid "Edit Credential" +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:38 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:43 +msgid "Edit Credential Plugin Configuration" +msgstr "" + +#: screens/Application/Applications.jsx:38 +#: screens/Credential/Credentials.jsx:27 +#: screens/Host/Hosts.jsx:28 +#: screens/ManagementJob/ManagementJobs.jsx:32 +#: screens/NotificationTemplate/NotificationTemplates.jsx:26 +#: screens/Organization/Organizations.jsx:30 +#: screens/Project/Projects.jsx:28 +#: screens/Project/Projects.jsx:40 +#: screens/Setting/Settings.jsx:46 +#: screens/Setting/Settings.jsx:49 +#: screens/Setting/Settings.jsx:53 +#: screens/Setting/Settings.jsx:56 +#: screens/Setting/Settings.jsx:59 +#: screens/Setting/Settings.jsx:62 +#: screens/Setting/Settings.jsx:67 +#: screens/Setting/Settings.jsx:70 +#: screens/Setting/Settings.jsx:73 +#: screens/Setting/Settings.jsx:76 +#: screens/Setting/Settings.jsx:90 +#: screens/Setting/Settings.jsx:91 +#: screens/Setting/Settings.jsx:92 +#: screens/Setting/Settings.jsx:93 +#: screens/Setting/Settings.jsx:94 +#: screens/Setting/Settings.jsx:95 +#: screens/Setting/Settings.jsx:99 +#: screens/Setting/Settings.jsx:102 +#: screens/Setting/Settings.jsx:105 +#: screens/Setting/Settings.jsx:108 +#: screens/Setting/Settings.jsx:111 +#: screens/Setting/Settings.jsx:114 +#: screens/Team/Teams.jsx:28 +#: screens/Template/Templates.jsx:45 +#: screens/User/Users.jsx:30 +msgid "Edit Details" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:85 +msgid "Edit Execution Environment" +msgstr "" + +#: screens/Host/HostGroups/HostGroupItem.jsx:50 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:56 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:59 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:56 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:67 +msgid "Edit Group" +msgstr "" + +#: screens/Host/HostList/HostListItem.jsx:52 +#: screens/Host/HostList/HostListItem.jsx:56 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:75 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:78 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:68 +msgid "Edit Host" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:115 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:120 +msgid "Edit Inventory" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkEditModal.jsx:14 +msgid "Edit Link" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeEditModal.jsx:59 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:205 +msgid "Edit Node" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:137 +msgid "Edit Notification Template" +msgstr "" + +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:74 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:78 +msgid "Edit Organization" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.jsx:161 +#: screens/Project/ProjectList/ProjectListItem.jsx:166 +msgid "Edit Project" +msgstr "" + +#: screens/Template/Templates.jsx:51 +msgid "Edit Question" +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:116 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:120 +#: screens/Template/Templates.jsx:58 +msgid "Edit Schedule" +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:126 +msgid "Edit Source" +msgstr "" + +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:40 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:43 +#: screens/Team/TeamList/TeamListItem.jsx:57 +#: screens/Team/TeamList/TeamListItem.jsx:61 +msgid "Edit Team" +msgstr "" + +#: components/TemplateList/TemplateListItem.jsx:194 +#: components/TemplateList/TemplateListItem.jsx:200 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:133 +msgid "Edit Template" +msgstr "" + +#: screens/User/UserList/UserListItem.jsx:82 +#: screens/User/UserList/UserListItem.jsx:86 +msgid "Edit User" +msgstr "" + +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:50 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:54 +msgid "Edit application" +msgstr "" + +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:40 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:44 +msgid "Edit credential type" +msgstr "" + +#: screens/CredentialType/CredentialTypes.jsx:27 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:27 +#: screens/InstanceGroup/InstanceGroups.jsx:38 +#: screens/InstanceGroup/InstanceGroups.jsx:48 +#: screens/Inventory/Inventories.jsx:61 +#: screens/Inventory/Inventories.jsx:67 +#: screens/Inventory/Inventories.jsx:80 +#: screens/Inventory/Inventories.jsx:105 +msgid "Edit details" +msgstr "" + +#: screens/Setting/License/LicenseEdit/LicenseEdit.jsx:11 +msgid "Edit form coming soon :)" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:105 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:109 +msgid "Edit instance group" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerLink.jsx:76 +msgid "Edit this link" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:205 +msgid "Edit this node" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:146 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:130 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:181 +msgid "Elapsed" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:129 +msgid "Elapsed Time" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:131 +msgid "Elapsed time that the job ran" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:193 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:150 +#: screens/User/UserDetail/UserDetail.jsx:64 +#: screens/User/shared/UserForm.jsx:77 +msgid "Email" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:112 +msgid "Email Options" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:65 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:31 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:134 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:265 +msgid "Enable Concurrent Jobs" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:587 +msgid "Enable Fact Storage" +msgstr "" + +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:220 +msgid "Enable HTTPS certificate verification" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:59 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:124 +msgid "Enable Privilege Escalation" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:561 +#: screens/Template/shared/JobTemplateForm.jsx:564 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:241 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:244 +msgid "Enable Webhook" +msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:248 +msgid "Enable Webhook for this workflow job template." +msgstr "" + +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:33 +msgid "Enable Webhooks" +msgstr "" + +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:161 +msgid "Enable external logging" +msgstr "" + +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:194 +msgid "Enable log system tracking facts individually" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:236 +#: components/AdHocCommands/AdHocDetailsStep.jsx:239 +msgid "Enable privilege escalation" +msgstr "" + +#: screens/Setting/SettingList.jsx:57 +msgid "Enable simplified login for your {brandName} applications" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:567 +msgid "Enable webhook for this template." +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:94 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:48 +msgid "Enabled" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:240 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:267 +msgid "Enabled Value" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:239 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:254 +msgid "Enabled Variable" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:547 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact BRAND_NAME\n" +"and request a configuration update using this job\n" +"template." +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:244 +msgid "" +"Enables creation of a provisioning\n" +"callback URL. Using the URL a host can contact {brandName}\n" +"and request a configuration update using this job\n" +"template" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:154 +#: screens/Setting/shared/SettingDetail.jsx:75 +msgid "Encrypted" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:492 +msgid "End" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:550 +msgid "End date/time" +msgstr "" + +#: components/Schedule/shared/buildRuleObj.js:96 +msgid "End did not match an expected value" +msgstr "" + +#: screens/Host/HostList/SmartInventoryButton.jsx:31 +msgid "Enter at least one search filter to create a new Smart Inventory" +msgstr "" + +#: screens/CredentialType/shared/CredentialTypeForm.jsx:49 +msgid "Enter injectors using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." +msgstr "" + +#: screens/CredentialType/shared/CredentialTypeForm.jsx:39 +msgid "Enter inputs using either JSON or YAML syntax. Refer to the Ansible Tower documentation for example syntax." +msgstr "" + +#: screens/Inventory/shared/SmartInventoryForm.jsx:100 +msgid "" +"Enter inventory variables using either JSON or YAML syntax.\n" +"Use the radio button to toggle between the two. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: screens/Inventory/shared/InventoryForm.jsx:85 +msgid "Enter inventory variables using either JSON or YAML syntax. Use the radio button to toggle between the two. Refer to the Ansible Tower documentation for example syntax" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:193 +msgid "Enter one Annotation Tag per line, without commas." +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:244 +msgid "" +"Enter one IRC channel or username per line. The pound\n" +"symbol (#) for channels, and the at (@) symbol for users, are not\n" +"required." +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:377 +msgid "" +"Enter one Slack channel per line. The pound symbol (#)\n" +"is required for channels." +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:92 +msgid "" +"Enter one email address per line to create a recipient\n" +"list for this type of notification." +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:426 +msgid "" +"Enter one phone number per line to specify where to\n" +"route SMS messages." +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:416 +msgid "" +"Enter the number associated with the \"Messaging\n" +"Service\" in Twilio in the format +18005550199." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:56 +msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>Tower plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/EC2SubForm.jsx:47 +msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>aws_ec2 plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:56 +msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>azure_rm plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:56 +msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>foreman plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:56 +msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>gcp_compute plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:56 +msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>openstack plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:56 +msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>ovirt plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:56 +msgid "Enter variables to configure the inventory source. For a detailed description of how to configure this plugin, see <0>Inventory Plugins in the documentation and the <1>vmware_vm_inventory plugin configuration guide." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:38 +msgid "Enter variables using either JSON or YAML syntax. Use the radio button to toggle between the two." +msgstr "" + +#: components/JobList/JobList.jsx:205 +#: components/Workflow/WorkflowNodeHelp.jsx:92 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:135 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:207 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:150 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:220 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:120 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:161 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:262 +#: screens/Job/JobOutput/JobOutput.jsx:668 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 +msgid "Error" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:432 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:144 +msgid "Error message" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:441 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:153 +msgid "Error message body" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:596 +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:598 +msgid "Error saving the workflow!" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:98 +#: components/AppContainer/AppContainer.jsx:214 +#: components/CopyButton/CopyButton.jsx:51 +#: components/DeleteButton/DeleteButton.jsx:57 +#: components/HostToggle/HostToggle.jsx:73 +#: components/InstanceToggle/InstanceToggle.jsx:69 +#: components/JobList/JobList.jsx:266 +#: components/JobList/JobList.jsx:277 +#: components/LaunchButton/LaunchButton.jsx:162 +#: components/LaunchPrompt/LaunchPrompt.jsx:73 +#: components/NotificationList/NotificationList.jsx:248 +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:204 +#: components/ResourceAccessList/ResourceAccessList.jsx:236 +#: components/ResourceAccessList/ResourceAccessList.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:419 +#: components/Schedule/ScheduleList/ScheduleList.jsx:241 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:69 +#: components/Schedule/shared/SchedulePromptableFields.jsx:77 +#: components/TemplateList/TemplateList.jsx:272 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:137 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:139 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:170 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:191 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:295 +#: screens/Credential/CredentialList/CredentialList.jsx:192 +#: screens/Host/HostDetail/HostDetail.jsx:60 +#: screens/Host/HostDetail/HostDetail.jsx:132 +#: screens/Host/HostGroups/HostGroupsList.jsx:243 +#: screens/Host/HostList/HostList.jsx:222 +#: screens/InstanceGroup/Instances/InstanceList.jsx:232 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:148 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:84 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:260 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:271 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:60 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:122 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:245 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:188 +#: screens/Inventory/InventoryList/InventoryList.jsx:256 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:237 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:302 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:234 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:247 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:178 +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:148 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:86 +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:97 +#: screens/Login/Login.jsx:184 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:127 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:377 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:224 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:164 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:179 +#: screens/Organization/OrganizationList/OrganizationList.jsx:208 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:189 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:197 +#: screens/Project/ProjectList/ProjectList.jsx:234 +#: screens/Project/shared/ProjectSyncButton.jsx:41 +#: screens/Team/TeamDetail/TeamDetail.jsx:81 +#: screens/Team/TeamList/TeamList.jsx:205 +#: screens/Team/TeamRoles/TeamRolesList.jsx:231 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:423 +#: screens/Template/TemplateSurvey.jsx:126 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:262 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:167 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:182 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:307 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:331 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:342 +#: screens/User/UserDetail/UserDetail.jsx:112 +#: screens/User/UserList/UserList.jsx:197 +#: screens/User/UserRoles/UserRolesList.jsx:231 +#: screens/User/UserTeams/UserTeamList.jsx:257 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:89 +#: screens/User/UserTokenList/UserTokenList.jsx:191 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:237 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:248 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:250 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:261 +msgid "Error!" +msgstr "" + +#: components/CodeEditor/VariablesDetail.jsx:103 +msgid "Error:" +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:258 +#: screens/ActivityStream/ActivityStreamListItem.jsx:46 +#: screens/Job/JobOutput/JobOutput.jsx:635 +msgid "Event" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:35 +msgid "Event detail" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:36 +msgid "Event detail modal" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:564 +msgid "Event summary not available" +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:227 +msgid "Events" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:160 +msgid "Exact match (default lookup if not specified)." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:24 +msgid "Example URLs for GIT Source Control include:" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/ArchiveSubForm.jsx:22 +msgid "Example URLs for Remote Archive Source Control include:" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:23 +msgid "Example URLs for Subversion Source Control include:" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:65 +msgid "Examples include:" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:55 +msgid "Execute regardless of the parent node's final state." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:46 +msgid "Execute when the parent node results in a failure state." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:37 +msgid "Execute when the parent node results in a successful state." +msgstr "" + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:27 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:152 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:174 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:135 +msgid "Execution Environment" +msgstr "" + +#: components/Lookup/ExecutionEnvironmentLookup.jsx:124 +#: routeConfig.js:143 +#: screens/ActivityStream/ActivityStream.jsx:210 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:121 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:185 +#: screens/Organization/Organization.jsx:127 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:77 +#: screens/Organization/Organizations.jsx:38 +#: util/getRelatedResourceDeleteDetails.js:88 +#: util/getRelatedResourceDeleteDetails.js:212 +msgid "Execution Environments" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:256 +msgid "Execution Node" +msgstr "" + +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:41 +msgid "Execution environment image" +msgstr "" + +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvListItem.jsx:33 +msgid "Execution environment name" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:82 +msgid "Execution environment not found." +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:13 +#: screens/ExecutionEnvironment/ExecutionEnvironments.jsx:23 +msgid "Execution environments" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:23 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:26 +msgid "Exit Without Saving" +msgstr "" + +#: components/ExpandCollapse/ExpandCollapse.jsx:52 +msgid "Expand" +msgstr "" + +#: components/CodeEditor/VariablesDetail.jsx:214 +#: components/CodeEditor/VariablesField.jsx:165 +msgid "Expand input" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:49 +msgid "Expected at least one of client_email, project_id or private_key to be present in the file." +msgstr "" + +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:123 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:52 +#: screens/User/UserTokenList/UserTokenListItem.jsx:65 +msgid "Expiration" +msgstr "" + +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:58 +#: screens/User/UserTokenList/UserTokenList.jsx:130 +#: screens/User/UserTokenList/UserTokenListItem.jsx:66 +#: screens/User/UserTokens/UserTokens.jsx:90 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:97 +msgid "Expires" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:36 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:13 +msgid "Expires on {0}" +msgstr "" + +#: components/JobList/JobListItem.jsx:168 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:129 +msgid "Explanation" +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:116 +msgid "External Secret Management System" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:309 +#: components/AdHocCommands/AdHocDetailsStep.jsx:310 +msgid "Extra variables" +msgstr "" + +#: components/Sparkline/Sparkline.jsx:35 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:49 +#: screens/Project/ProjectList/ProjectListItem.jsx:69 +msgid "FINISHED:" +msgstr "" + +#: screens/Host/Host.jsx:57 +#: screens/Host/HostFacts/HostFacts.jsx:39 +#: screens/Host/Hosts.jsx:30 +#: screens/Inventory/Inventories.jsx:73 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:78 +#: screens/Inventory/InventoryHostFacts/InventoryHostFacts.jsx:38 +msgid "Facts" +msgstr "" + +#: components/JobList/JobList.jsx:204 +#: components/Workflow/WorkflowNodeHelp.jsx:89 +#: screens/Dashboard/shared/ChartTooltip.jsx:66 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:47 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:118 +msgid "Failed" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:117 +msgid "Failed Host Count" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:119 +msgid "Failed Hosts" +msgstr "" + +#: components/LaunchButton/ReLaunchDropDown.jsx:50 +#: screens/Dashboard/Dashboard.jsx:135 +msgid "Failed hosts" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:265 +msgid "Failed to approve one or more workflow approval." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:240 +msgid "Failed to approve workflow approval." +msgstr "" + +#: components/ResourceAccessList/ResourceAccessList.jsx:240 +msgid "Failed to assign roles properly" +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:140 +msgid "Failed to associate role" +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:247 +#: screens/InstanceGroup/Instances/InstanceList.jsx:236 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:263 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:249 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:241 +#: screens/User/UserTeams/UserTeamList.jsx:261 +msgid "Failed to associate." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:100 +msgid "Failed to cancel inventory source sync." +msgstr "" + +#: components/JobList/JobList.jsx:280 +msgid "Failed to cancel one or more jobs." +msgstr "" + +#: screens/Credential/CredentialList/CredentialListItem.jsx:85 +msgid "Failed to copy credential." +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:103 +msgid "Failed to copy execution environment" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:143 +msgid "Failed to copy inventory." +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.jsx:183 +msgid "Failed to copy project." +msgstr "" + +#: components/TemplateList/TemplateListItem.jsx:214 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:155 +msgid "Failed to copy template." +msgstr "" + +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:142 +msgid "Failed to delete application." +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:298 +msgid "Failed to delete credential." +msgstr "" + +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:88 +msgid "Failed to delete group {0}." +msgstr "" + +#: screens/Host/HostDetail/HostDetail.jsx:135 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:125 +msgid "Failed to delete host." +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:306 +msgid "Failed to delete inventory source {name}." +msgstr "" + +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:151 +msgid "Failed to delete inventory." +msgstr "" + +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:426 +msgid "Failed to delete job template." +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:380 +msgid "Failed to delete notification." +msgstr "" + +#: screens/Application/ApplicationsList/ApplicationsList.jsx:194 +msgid "Failed to delete one or more applications." +msgstr "" + +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:210 +msgid "Failed to delete one or more credential types." +msgstr "" + +#: screens/Credential/CredentialList/CredentialList.jsx:195 +msgid "Failed to delete one or more credentials." +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:223 +msgid "Failed to delete one or more execution environments" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:151 +msgid "Failed to delete one or more groups." +msgstr "" + +#: screens/Host/HostList/HostList.jsx:225 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:191 +msgid "Failed to delete one or more hosts." +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:265 +msgid "Failed to delete one or more instance groups." +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.jsx:259 +msgid "Failed to delete one or more inventories." +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceList.jsx:250 +msgid "Failed to delete one or more inventory sources." +msgstr "" + +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:200 +msgid "Failed to delete one or more job templates." +msgstr "" + +#: components/JobList/JobList.jsx:269 +msgid "Failed to delete one or more jobs." +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:227 +msgid "Failed to delete one or more notification template." +msgstr "" + +#: screens/Organization/OrganizationList/OrganizationList.jsx:211 +msgid "Failed to delete one or more organizations." +msgstr "" + +#: screens/Project/ProjectList/ProjectList.jsx:237 +msgid "Failed to delete one or more projects." +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.jsx:244 +msgid "Failed to delete one or more schedules." +msgstr "" + +#: screens/Team/TeamList/TeamList.jsx:208 +msgid "Failed to delete one or more teams." +msgstr "" + +#: components/TemplateList/TemplateList.jsx:275 +msgid "Failed to delete one or more templates." +msgstr "" + +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:173 +msgid "Failed to delete one or more tokens." +msgstr "" + +#: screens/User/UserTokenList/UserTokenList.jsx:194 +msgid "Failed to delete one or more user tokens." +msgstr "" + +#: screens/User/UserList/UserList.jsx:200 +msgid "Failed to delete one or more users." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:253 +msgid "Failed to delete one or more workflow approval." +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:182 +msgid "Failed to delete organization." +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.jsx:192 +msgid "Failed to delete project." +msgstr "" + +#: components/ResourceAccessList/ResourceAccessList.jsx:251 +msgid "Failed to delete role" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:234 +#: screens/User/UserRoles/UserRolesList.jsx:234 +msgid "Failed to delete role." +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:422 +msgid "Failed to delete schedule." +msgstr "" + +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:181 +msgid "Failed to delete smart inventory." +msgstr "" + +#: screens/Team/TeamDetail/TeamDetail.jsx:84 +msgid "Failed to delete team." +msgstr "" + +#: screens/User/UserDetail/UserDetail.jsx:115 +msgid "Failed to delete user." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:229 +msgid "Failed to delete workflow approval." +msgstr "" + +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:265 +msgid "Failed to delete workflow job template." +msgstr "" + +#: screens/Host/HostDetail/HostDetail.jsx:63 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:63 +msgid "Failed to delete {name}." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:266 +msgid "Failed to deny one or more workflow approval." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:251 +msgid "Failed to deny workflow approval." +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:248 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:250 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:242 +msgid "Failed to disassociate one or more groups." +msgstr "" + +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:274 +msgid "Failed to disassociate one or more hosts." +msgstr "" + +#: screens/InstanceGroup/Instances/InstanceList.jsx:237 +msgid "Failed to disassociate one or more instances." +msgstr "" + +#: screens/User/UserTeams/UserTeamList.jsx:262 +msgid "Failed to disassociate one or more teams." +msgstr "" + +#: screens/Login/Login.jsx:189 +msgid "Failed to fetch custom login configuration settings. System defaults will be shown instead." +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:106 +#: components/LaunchButton/LaunchButton.jsx:165 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:130 +msgid "Failed to launch job." +msgstr "" + +#: components/AppContainer/AppContainer.jsx:217 +msgid "Failed to retrieve configuration." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:334 +msgid "Failed to retrieve full node resource object." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:345 +msgid "Failed to retrieve node credentials." +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:167 +msgid "Failed to send test notification." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:89 +msgid "Failed to sync inventory source." +msgstr "" + +#: screens/Project/shared/ProjectSyncButton.jsx:44 +msgid "Failed to sync project." +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceList.jsx:237 +msgid "Failed to sync some or all inventory sources." +msgstr "" + +#: components/HostToggle/HostToggle.jsx:77 +msgid "Failed to toggle host." +msgstr "" + +#: components/InstanceToggle/InstanceToggle.jsx:73 +msgid "Failed to toggle instance." +msgstr "" + +#: components/NotificationList/NotificationList.jsx:252 +msgid "Failed to toggle notification." +msgstr "" + +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:73 +msgid "Failed to toggle schedule." +msgstr "" + +#: screens/Template/TemplateSurvey.jsx:129 +msgid "Failed to update survey." +msgstr "" + +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:92 +msgid "Failed to user token." +msgstr "" + +#: components/NotificationList/NotificationListItem.jsx:83 +#: components/NotificationList/NotificationListItem.jsx:84 +msgid "Failure" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:147 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:209 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:256 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:312 +msgid "False" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:117 +msgid "February" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:171 +msgid "Field contains value." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:191 +msgid "Field ends with value." +msgstr "" + +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:82 +msgid "Field for passing a custom Kubernetes or OpenShift Pod specification." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:201 +msgid "Field matches the given regular expression." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:181 +msgid "Field starts with value." +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:401 +msgid "Fifth" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:652 +msgid "File Difference" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:79 +msgid "File upload rejected. Please select a single .json file." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:89 +msgid "File, directory or script" +msgstr "" + +#: components/JobList/JobList.jsx:221 +#: components/JobList/JobListItem.jsx:77 +msgid "Finish Time" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:157 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:171 +msgid "Finished" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:389 +msgid "First" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:130 +#: components/AddRole/AddResourceRole.jsx:144 +#: components/ResourceAccessList/ResourceAccessList.jsx:132 +#: components/ResourceAccessList/ResourceAccessList.jsx:165 +#: screens/User/UserDetail/UserDetail.jsx:65 +#: screens/User/UserList/UserList.jsx:123 +#: screens/User/UserList/UserList.jsx:166 +#: screens/User/UserList/UserListItem.jsx:62 +#: screens/User/UserList/UserListItem.jsx:65 +#: screens/User/shared/UserForm.jsx:109 +msgid "First Name" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:258 +msgid "First Run" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:249 +msgid "First, select a key" +msgstr "" + +#: components/Workflow/WorkflowTools.jsx:89 +msgid "Fit the graph to the available screen size" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:64 +msgid "Float" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:223 +msgid "" +"For job templates, select run to execute\n" +"the playbook. Select check to only check playbook syntax,\n" +"test environment setup, and report problems without\n" +"executing the playbook." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:115 +msgid "" +"For job templates, select run to execute the playbook.\n" +"Select check to only check playbook syntax, test environment setup,\n" +"and report problems without executing the playbook." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:79 +msgid "For more information, refer to the" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:192 +#: components/AdHocCommands/AdHocDetailsStep.jsx:193 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:139 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:224 +#: screens/Template/shared/JobTemplateForm.jsx:404 +msgid "Forks" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:399 +msgid "Fourth" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:186 +msgid "Frequency Details" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:200 +#: components/Schedule/shared/buildRuleObj.js:69 +msgid "Frequency did not match an expected value" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:297 +msgid "Fri" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:302 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:438 +msgid "Friday" +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:132 +#: screens/Organization/shared/OrganizationForm.jsx:110 +msgid "Galaxy Credentials" +msgstr "" + +#: screens/Credential/shared/CredentialForm.jsx:55 +msgid "Galaxy credentials must be owned by an Organization." +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:660 +msgid "Gathering Facts" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:114 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:89 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:158 +#: screens/Project/ProjectList/ProjectList.jsx:151 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:90 +msgid "Git" +msgstr "" + +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:253 +#: screens/Template/shared/WebhookSubForm.jsx:108 +msgid "GitHub" +msgstr "" + +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:80 +#: screens/Setting/Settings.jsx:51 +msgid "GitHub Default" +msgstr "" + +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:95 +#: screens/Setting/Settings.jsx:60 +msgid "GitHub Enterprise" +msgstr "" + +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:100 +#: screens/Setting/Settings.jsx:64 +msgid "GitHub Enterprise Organization" +msgstr "" + +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:105 +#: screens/Setting/Settings.jsx:68 +msgid "GitHub Enterprise Team" +msgstr "" + +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:85 +#: screens/Setting/Settings.jsx:54 +msgid "GitHub Organization" +msgstr "" + +#: screens/Setting/GitHub/GitHubDetail/GitHubDetail.jsx:90 +#: screens/Setting/Settings.jsx:57 +msgid "GitHub Team" +msgstr "" + +#: screens/Setting/SettingList.jsx:66 +msgid "GitHub settings" +msgstr "" + +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:254 +#: screens/Template/shared/WebhookSubForm.jsx:114 +msgid "GitLab" +msgstr "" + +#: components/Lookup/ExecutionEnvironmentLookup.jsx:169 +msgid "Global Default Execution Environment" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:81 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:75 +msgid "Globally Available" +msgstr "" + +#: components/Pagination/Pagination.jsx:29 +msgid "Go to first page" +msgstr "" + +#: components/Pagination/Pagination.jsx:31 +msgid "Go to last page" +msgstr "" + +#: components/Pagination/Pagination.jsx:32 +msgid "Go to next page" +msgstr "" + +#: components/Pagination/Pagination.jsx:30 +msgid "Go to previous page" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:92 +msgid "Google Compute Engine" +msgstr "" + +#: screens/Setting/SettingList.jsx:70 +msgid "Google OAuth 2 settings" +msgstr "" + +#: screens/Setting/Settings.jsx:71 +msgid "Google OAuth2" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:194 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:151 +msgid "Grafana" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:170 +msgid "Grafana API key" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:123 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:159 +msgid "Grafana URL" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:211 +msgid "Greater than comparison." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:216 +msgid "Greater than or equal to comparison." +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:86 +msgid "Group" +msgstr "" + +#: screens/Inventory/Inventories.jsx:83 +msgid "Group details" +msgstr "" + +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:122 +msgid "Group type" +msgstr "" + +#: screens/Host/Host.jsx:62 +#: screens/Host/HostGroups/HostGroupsList.jsx:230 +#: screens/Host/Hosts.jsx:31 +#: screens/Inventory/Inventories.jsx:74 +#: screens/Inventory/Inventories.jsx:76 +#: screens/Inventory/Inventory.jsx:64 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:83 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:232 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:108 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:224 +#: util/getRelatedResourceDeleteDetails.js:143 +msgid "Groups" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:322 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:476 +msgid "HTTP Headers" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:317 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:490 +msgid "HTTP Method" +msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:121 +msgid "Help" +msgstr "" + +#: components/FormField/PasswordInput.jsx:36 +msgid "Hide" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:152 +msgid "Hipchat" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:87 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:78 +msgid "Host" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:647 +msgid "Host Async Failure" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:646 +msgid "Host Async OK" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:149 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:239 +#: screens/Template/shared/JobTemplateForm.jsx:622 +msgid "Host Config Key" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:101 +msgid "Host Count" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:101 +msgid "Host Details" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:638 +msgid "Host Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:641 +msgid "Host Failure" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:238 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:281 +msgid "Host Filter" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:120 +msgid "Host Name" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:640 +msgid "Host OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:645 +msgid "Host Polling" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:651 +msgid "Host Retry" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:642 +msgid "Host Skipped" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:639 +msgid "Host Started" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:643 +msgid "Host Unreachable" +msgstr "" + +#: screens/Inventory/Inventories.jsx:70 +msgid "Host details" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:102 +msgid "Host details modal" +msgstr "" + +#: screens/Host/Host.jsx:90 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:100 +msgid "Host not found." +msgstr "" + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:77 +msgid "Host status information for this job is unavailable." +msgstr "" + +#: routeConfig.js:86 +#: screens/ActivityStream/ActivityStream.jsx:173 +#: screens/Dashboard/Dashboard.jsx:129 +#: screens/Host/HostList/HostList.jsx:142 +#: screens/Host/HostList/HostList.jsx:188 +#: screens/Host/Hosts.jsx:15 +#: screens/Host/Hosts.jsx:25 +#: screens/Inventory/Inventories.jsx:63 +#: screens/Inventory/Inventories.jsx:86 +#: screens/Inventory/Inventory.jsx:65 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:69 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:178 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:247 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:112 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:160 +#: screens/Inventory/SmartInventory.jsx:71 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:62 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:102 +#: util/getRelatedResourceDeleteDetails.js:147 +msgid "Hosts" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:164 +msgid "Hour" +msgstr "" + +#: components/JobList/JobList.jsx:172 +#: components/Lookup/HostFilterLookup.jsx:82 +#: screens/Team/TeamRoles/TeamRolesList.jsx:155 +#: screens/User/UserRoles/UserRolesList.jsx:152 +msgid "ID" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:128 +msgid "ID of the Dashboard" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:133 +msgid "ID of the Panel" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:177 +msgid "ID of the dashboard (optional)" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:183 +msgid "ID of the panel (optional)" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:153 +msgid "IRC" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:166 +msgid "IRC Nick" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:161 +msgid "IRC Server Address" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:156 +msgid "IRC Server Port" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:231 +msgid "IRC nick" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:223 +msgid "IRC server address" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:209 +msgid "IRC server password" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:214 +msgid "IRC server port" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:247 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:282 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:353 +msgid "Icon URL" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:149 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:156 +msgid "" +"If checked, all variables for child groups\n" +"and hosts will be removed and replaced by those found\n" +"on the external source." +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:126 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:135 +msgid "" +"If checked, any hosts and groups that were\n" +"previously present on the external source but are now removed\n" +"will be removed from the Tower inventory. Hosts and groups\n" +"that were not managed by the inventory source will be promoted\n" +"to the next manually created group or if there is no manually\n" +"created group to promote them into, they will be left in the \"all\"\n" +"default group for the inventory." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:537 +msgid "" +"If enabled, run this playbook as an\n" +"administrator." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:177 +msgid "" +"If enabled, show the changes made\n" +"by Ansible tasks, where supported. This is equivalent to Ansible’s\n" +"--diff mode." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:478 +msgid "" +"If enabled, show the changes made by\n" +"Ansible tasks, where supported. This is equivalent\n" +"to Ansible's --diff mode." +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:216 +msgid "If enabled, show the changes made by Ansible tasks, where supported. This is equivalent to Ansible’s --diff mode." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:581 +msgid "" +"If enabled, simultaneous runs of this job\n" +"template will be allowed." +msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:263 +msgid "If enabled, simultaneous runs of this workflow job template will be allowed." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:589 +msgid "" +"If enabled, this will store gathered facts so they can\n" +"be viewed at the host level. Facts are persisted and\n" +"injected into the fact cache at runtime." +msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:58 +msgid "If you only want to remove access for this particular user, please remove them from the team." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:182 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:211 +msgid "" +"If you want the Inventory Source to update on\n" +"launch and on project update, click on Update on launch, and also go to" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:57 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:133 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:139 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:158 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:64 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:88 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:107 +msgid "Image" +msgstr "" + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:76 +msgid "Image name" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:655 +msgid "Including File" +msgstr "" + +#: components/HostToggle/HostToggle.jsx:18 +msgid "" +"Indicates if a host is available and should be included in running\n" +"jobs. For hosts that are part of an external inventory, this may be\n" +"reset by the inventory sync process." +msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:104 +#: components/AppContainer/PageHeaderToolbar.jsx:114 +msgid "Info" +msgstr "" + +#: screens/ActivityStream/ActivityStreamListItem.jsx:45 +msgid "Initiated By" +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:246 +#: screens/ActivityStream/ActivityStream.jsx:256 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:44 +msgid "Initiated by" +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:236 +msgid "Initiated by (username)" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:85 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:53 +msgid "Injector configuration" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:80 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:43 +msgid "Input configuration" +msgstr "" + +#: screens/Inventory/shared/InventoryForm.jsx:71 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:34 +msgid "Insights Credential" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:107 +msgid "Insights system ID" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:137 +msgid "Instance Filters" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:259 +msgid "Instance Group" +msgstr "" + +#: components/Lookup/InstanceGroupsLookup.jsx:71 +#: components/Lookup/InstanceGroupsLookup.jsx:77 +#: components/Lookup/InstanceGroupsLookup.jsx:109 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:218 +#: routeConfig.js:133 +#: screens/ActivityStream/ActivityStream.jsx:198 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:130 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:221 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:91 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:117 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:327 +msgid "Instance Groups" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:99 +msgid "Instance ID" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:86 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:96 +#: screens/InstanceGroup/InstanceGroups.jsx:27 +msgid "Instance group" +msgstr "" + +#: screens/InstanceGroup/InstanceGroup.jsx:87 +msgid "Instance group not found." +msgstr "" + +#: screens/InstanceGroup/InstanceGroups.jsx:16 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:123 +msgid "Instance groups" +msgstr "" + +#: screens/InstanceGroup/InstanceGroup.jsx:69 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:238 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:100 +#: screens/InstanceGroup/InstanceGroups.jsx:35 +#: screens/InstanceGroup/Instances/InstanceList.jsx:148 +#: screens/InstanceGroup/Instances/InstanceList.jsx:218 +msgid "Instances" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:63 +msgid "Integer" +msgstr "" + +#: util/validators.jsx:69 +msgid "Invalid email address" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:151 +msgid "Invalid link target. Unable to link to children or ancestor nodes. Graph cycles are not supported." +msgstr "" + +#: screens/Login/Login.jsx:118 +msgid "Invalid username or password. Please try again." +msgstr "" + +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:119 +#: routeConfig.js:81 +#: screens/ActivityStream/ActivityStream.jsx:170 +#: screens/Dashboard/Dashboard.jsx:140 +#: screens/Inventory/Inventories.jsx:16 +#: screens/Inventory/InventoryList/InventoryList.jsx:169 +#: screens/Inventory/InventoryList/InventoryList.jsx:220 +#: util/getRelatedResourceDeleteDetails.js:67 +#: util/getRelatedResourceDeleteDetails.js:226 +#: util/getRelatedResourceDeleteDetails.js:294 +msgid "Inventories" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:134 +msgid "Inventories with sources cannot be copied" +msgstr "" + +#: components/HostForm/HostForm.jsx:28 +#: components/JobList/JobListItem.jsx:150 +#: components/LaunchPrompt/steps/InventoryStep.jsx:107 +#: components/LaunchPrompt/steps/useInventoryStep.jsx:53 +#: components/Lookup/InventoryLookup.jsx:85 +#: components/Lookup/InventoryLookup.jsx:94 +#: components/Lookup/InventoryLookup.jsx:131 +#: components/Lookup/InventoryLookup.jsx:147 +#: components/Lookup/InventoryLookup.jsx:184 +#: components/PromptDetail/PromptDetail.jsx:183 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:78 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:107 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:118 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:70 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:295 +#: components/TemplateList/TemplateListItem.jsx:251 +#: components/TemplateList/TemplateListItem.jsx:260 +#: screens/Host/HostDetail/HostDetail.jsx:83 +#: screens/Host/HostList/HostList.jsx:169 +#: screens/Host/HostList/HostListItem.jsx:39 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:40 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostListItem.jsx:53 +#: screens/Job/JobDetail/JobDetail.jsx:196 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:135 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:200 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:148 +msgid "Inventory" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:101 +msgid "Inventory (Name)" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:101 +msgid "Inventory File" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:90 +msgid "Inventory ID" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:212 +msgid "Inventory Source" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:89 +msgid "Inventory Source Sync" +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceList.jsx:163 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:182 +#: util/getRelatedResourceDeleteDetails.js:74 +#: util/getRelatedResourceDeleteDetails.js:171 +msgid "Inventory Sources" +msgstr "" + +#: components/JobList/JobList.jsx:184 +#: components/JobList/JobListItem.jsx:32 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:37 +#: components/Workflow/WorkflowLegend.jsx:100 +#: screens/Job/JobDetail/JobDetail.jsx:94 +msgid "Inventory Sync" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:59 +msgid "Inventory Update" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:227 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:102 +msgid "Inventory file" +msgstr "" + +#: screens/Inventory/Inventory.jsx:91 +msgid "Inventory not found." +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:229 +msgid "Inventory sync" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:146 +msgid "Inventory sync failures" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:52 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:60 +#: screens/Job/JobDetail/JobDetail.jsx:120 +msgid "Isolated" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:649 +msgid "Item Failed" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:648 +msgid "Item OK" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:650 +msgid "Item Skipped" +msgstr "" + +#: components/AssociateModal/AssociateModal.jsx:21 +msgid "Items" +msgstr "" + +#: components/Pagination/Pagination.jsx:27 +msgid "Items per page" +msgstr "" + +#: components/Sparkline/Sparkline.jsx:28 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:42 +#: screens/Project/ProjectList/ProjectListItem.jsx:62 +msgid "JOB ID:" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:144 +msgid "JSON" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:145 +msgid "JSON tab" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:44 +msgid "JSON:" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:112 +msgid "January" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:225 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:69 +msgid "Job" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:470 +#: screens/Job/JobDetail/JobDetail.jsx:471 +#: screens/Job/JobOutput/JobOutput.jsx:832 +#: screens/Job/JobOutput/JobOutput.jsx:833 +msgid "Job Cancel Error" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:481 +#: screens/Job/JobOutput/JobOutput.jsx:821 +#: screens/Job/JobOutput/JobOutput.jsx:822 +msgid "Job Delete Error" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:272 +msgid "Job Slice" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:148 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:235 +#: screens/Template/shared/JobTemplateForm.jsx:458 +msgid "Job Slicing" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:140 +msgid "Job Status" +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:60 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:61 +#: components/PromptDetail/PromptDetail.jsx:206 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:233 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:350 +#: screens/Job/JobDetail/JobDetail.jsx:321 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:342 +#: screens/Template/shared/JobTemplateForm.jsx:498 +msgid "Job Tags" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:201 +#: components/Workflow/WorkflowLegend.jsx:92 +#: components/Workflow/WorkflowNodeHelp.jsx:47 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:96 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:33 +#: screens/Job/JobDetail/JobDetail.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:95 +msgid "Job Template" +msgstr "" + +#: components/LaunchPrompt/steps/credentialsValidator.jsx:42 +msgid "Job Template default credentials must be replaced with one of the same type. Please select a credential for the following types in order to proceed: {0}" +msgstr "" + +#: screens/Project/Project.jsx:117 +#: screens/Project/Projects.jsx:32 +#: util/getRelatedResourceDeleteDetails.js:56 +#: util/getRelatedResourceDeleteDetails.js:108 +#: util/getRelatedResourceDeleteDetails.js:157 +msgid "Job Templates" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:24 +msgid "Job Templates with a missing inventory or project cannot be selected when creating or editing nodes. Select another template or fix the missing fields to proceed." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useWorkflowNodeSteps.js:267 +msgid "Job Templates with credentials that prompt for passwords cannot be selected when creating or editing nodes" +msgstr "" + +#: components/JobList/JobList.jsx:180 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:112 +#: components/PromptDetail/PromptDetail.jsx:156 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:90 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:291 +#: screens/Job/JobDetail/JobDetail.jsx:192 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:175 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:145 +#: screens/Template/shared/JobTemplateForm.jsx:220 +msgid "Job Type" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:172 +msgid "Job status" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:170 +msgid "Job status graph tab" +msgstr "" + +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:15 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:176 +msgid "Job templates" +msgstr "" + +#: components/JobList/JobList.jsx:163 +#: components/JobList/JobList.jsx:240 +#: routeConfig.js:40 +#: screens/ActivityStream/ActivityStream.jsx:147 +#: screens/Dashboard/shared/LineChart.jsx:69 +#: screens/Host/Host.jsx:67 +#: screens/Host/Hosts.jsx:32 +#: screens/InstanceGroup/ContainerGroup.jsx:68 +#: screens/InstanceGroup/InstanceGroup.jsx:74 +#: screens/InstanceGroup/InstanceGroups.jsx:37 +#: screens/InstanceGroup/InstanceGroups.jsx:45 +#: screens/Inventory/Inventories.jsx:59 +#: screens/Inventory/Inventories.jsx:72 +#: screens/Inventory/Inventory.jsx:68 +#: screens/Inventory/InventoryHost/InventoryHost.jsx:88 +#: screens/Inventory/SmartInventory.jsx:73 +#: screens/Job/Jobs.jsx:15 +#: screens/Job/Jobs.jsx:26 +#: screens/Setting/SettingList.jsx:92 +#: screens/Setting/Settings.jsx:74 +#: screens/Template/Template.jsx:164 +#: screens/Template/Templates.jsx:48 +#: screens/Template/WorkflowJobTemplate.jsx:145 +msgid "Jobs" +msgstr "" + +#: screens/Setting/SettingList.jsx:99 +msgid "Jobs settings" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:142 +msgid "July" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:137 +msgid "June" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:130 +msgid "Key" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:121 +msgid "Key select" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:124 +msgid "Key typeahead" +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:231 +msgid "Keyword" +msgstr "" + +#: screens/User/UserDetail/UserDetail.jsx:51 +#: screens/User/UserList/UserListItem.jsx:51 +msgid "LDAP" +msgstr "" + +#: screens/Setting/Settings.jsx:79 +msgid "LDAP 1" +msgstr "" + +#: screens/Setting/Settings.jsx:80 +msgid "LDAP 2" +msgstr "" + +#: screens/Setting/Settings.jsx:81 +msgid "LDAP 3" +msgstr "" + +#: screens/Setting/Settings.jsx:82 +msgid "LDAP 4" +msgstr "" + +#: screens/Setting/Settings.jsx:83 +msgid "LDAP 5" +msgstr "" + +#: screens/Setting/Settings.jsx:78 +msgid "LDAP Default" +msgstr "" + +#: screens/Setting/SettingList.jsx:74 +msgid "LDAP settings" +msgstr "" + +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:102 +msgid "LDAP1" +msgstr "" + +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:107 +msgid "LDAP2" +msgstr "" + +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:112 +msgid "LDAP3" +msgstr "" + +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:117 +msgid "LDAP4" +msgstr "" + +#: screens/Setting/LDAP/LDAPDetail/LDAPDetail.jsx:122 +msgid "LDAP5" +msgstr "" + +#: components/JobList/JobList.jsx:176 +msgid "Label Name" +msgstr "" + +#: components/JobList/JobListItem.jsx:136 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:200 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:110 +#: components/TemplateList/TemplateListItem.jsx:265 +#: screens/Job/JobDetail/JobDetail.jsx:306 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:309 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:195 +#: screens/Template/shared/JobTemplateForm.jsx:369 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:209 +msgid "Labels" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:402 +msgid "Last" +msgstr "" + +#: screens/User/UserDetail/UserDetail.jsx:78 +msgid "Last Login" +msgstr "" + +#: components/PromptDetail/PromptDetail.jsx:140 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:278 +#: components/TemplateList/TemplateListItem.jsx:293 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:107 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:44 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:165 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:253 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:95 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:110 +#: screens/Host/HostDetail/HostDetail.jsx:99 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:71 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:122 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:114 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:51 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:359 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:336 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:110 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:150 +#: screens/Team/TeamDetail/TeamDetail.jsx:49 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:286 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:69 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:166 +msgid "Last Modified" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:134 +#: components/AddRole/AddResourceRole.jsx:148 +#: components/ResourceAccessList/ResourceAccessList.jsx:136 +#: components/ResourceAccessList/ResourceAccessList.jsx:169 +#: screens/User/UserDetail/UserDetail.jsx:66 +#: screens/User/UserList/UserList.jsx:127 +#: screens/User/UserList/UserList.jsx:169 +#: screens/User/UserList/UserListItem.jsx:70 +#: screens/User/UserList/UserListItem.jsx:73 +#: screens/User/shared/UserForm.jsx:115 +msgid "Last Name" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:225 +#: components/TemplateList/TemplateListItem.jsx:155 +msgid "Last Ran" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:265 +msgid "Last Run" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:103 +msgid "Last job" +msgstr "" + +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:139 +msgid "Last job run" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:267 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:146 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:58 +msgid "Last modified" +msgstr "" + +#: components/AdHocCommands/AdHocCommandsWizard.jsx:92 +#: components/LaunchPrompt/steps/usePreviewStep.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:55 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:58 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:389 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:397 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:229 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:237 +msgid "Launch" +msgstr "" + +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:77 +msgid "Launch Management Job" +msgstr "" + +#: components/TemplateList/TemplateListItem.jsx:175 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:117 +msgid "Launch Template" +msgstr "" + +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:33 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:35 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:47 +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:48 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:94 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:99 +msgid "Launch management job" +msgstr "" + +#: components/TemplateList/TemplateListItem.jsx:183 +msgid "Launch template" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:122 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:125 +msgid "Launch workflow" +msgstr "" + +#: components/DetailList/LaunchedByDetail.jsx:41 +msgid "Launched By" +msgstr "" + +#: components/JobList/JobList.jsx:192 +msgid "Launched By (Username)" +msgstr "" + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:120 +msgid "Leave this field blank to make the execution environment globally available." +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:86 +msgid "Legend" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:221 +msgid "Less than comparison." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:226 +msgid "Less than or equal to comparison." +msgstr "" + +#: screens/Setting/SettingList.jsx:137 +#: screens/Setting/Settings.jsx:96 +msgid "License" +msgstr "" + +#: screens/Setting/License/License.jsx:15 +#: screens/Setting/SettingList.jsx:142 +msgid "License settings" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:170 +#: components/AdHocCommands/AdHocDetailsStep.jsx:171 +#: components/JobList/JobList.jsx:210 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:35 +#: components/PromptDetail/PromptDetail.jsx:194 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:140 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:81 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:326 +#: screens/Job/JobDetail/JobDetail.jsx:250 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:225 +#: screens/Template/shared/JobTemplateForm.jsx:420 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:155 +msgid "Limit" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:219 +msgid "Link to an available node" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:323 +msgid "Loading" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:266 +msgid "Local Time Zone" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:141 +msgid "Local time zone" +msgstr "" + +#: screens/Login/Login.jsx:162 +msgid "Log In" +msgstr "" + +#: screens/Setting/shared/LoggingTestAlert.jsx:14 +msgid "Log aggregator test sent successfully." +msgstr "" + +#: screens/Setting/Settings.jsx:97 +msgid "Logging" +msgstr "" + +#: screens/Setting/SettingList.jsx:118 +msgid "Logging settings" +msgstr "" + +#: components/AppContainer/AppContainer.jsx:242 +#: components/AppContainer/PageHeaderToolbar.jsx:171 +msgid "Logout" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:308 +#: components/Lookup/Lookup.jsx:130 +msgid "Lookup modal" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:143 +msgid "Lookup select" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:152 +msgid "Lookup type" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:146 +msgid "Lookup typeahead" +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:40 +#: screens/Project/ProjectList/ProjectListItem.jsx:60 +msgid "MOST RECENT SYNC" +msgstr "" + +#: components/AdHocCommands/AdHocCredentialStep.jsx:67 +#: components/AdHocCommands/AdHocCredentialStep.jsx:68 +#: components/AdHocCommands/AdHocCredentialStep.jsx:86 +#: screens/Job/JobDetail/JobDetail.jsx:278 +msgid "Machine Credential" +msgstr "" + +#: components/AdHocCommands/AdHocCommandsWizard.jsx:84 +msgid "Machine credential" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:67 +msgid "Managed by Tower" +msgstr "" + +#: components/JobList/JobList.jsx:187 +#: components/JobList/JobListItem.jsx:35 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:40 +#: screens/Job/JobDetail/JobDetail.jsx:100 +msgid "Management Job" +msgstr "" + +#: routeConfig.js:128 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:82 +msgid "Management Jobs" +msgstr "" + +#: screens/ManagementJob/ManagementJobs.jsx:22 +msgid "Management job" +msgstr "" + +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:118 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:119 +msgid "Management job launch error" +msgstr "" + +#: screens/ManagementJob/ManagementJob.jsx:132 +msgid "Management job not found." +msgstr "" + +#: screens/ManagementJob/ManagementJobs.jsx:14 +msgid "Management jobs" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:113 +#: components/PromptDetail/PromptProjectDetail.jsx:75 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:88 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:157 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:90 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:104 +#: screens/Project/ProjectList/ProjectList.jsx:150 +#: screens/Project/ProjectList/ProjectListItem.jsx:134 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:89 +msgid "Manual" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:122 +msgid "March" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:197 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:154 +msgid "Mattermost" +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:97 +#: screens/Organization/shared/OrganizationForm.jsx:75 +msgid "Max Hosts" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:175 +msgid "Maximum" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:159 +msgid "Maximum length" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:132 +msgid "May" +msgstr "" + +#: screens/Organization/OrganizationList/OrganizationList.jsx:159 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:65 +msgid "Members" +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:48 +msgid "Metadata" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:93 +msgid "Microsoft Azure Resource Manager" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:169 +msgid "Minimum" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:153 +msgid "Minimum length" +msgstr "" + +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:34 +msgid "" +"Minimum number of instances that will be automatically\n" +"assigned to this group when new instances come online." +msgstr "" + +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:46 +msgid "" +"Minimum percentage of all instances that will be automatically\n" +"assigned to this group when new instances come online." +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:163 +msgid "Minute" +msgstr "" + +#: screens/Setting/Settings.jsx:100 +msgid "Miscellaneous System" +msgstr "" + +#: screens/Setting/SettingList.jsx:110 +msgid "Miscellaneous System settings" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:104 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:89 +msgid "Missing" +msgstr "" + +#: components/ExecutionEnvironmentDetail/ExecutionEnvironmentDetail.jsx:50 +msgid "Missing resource" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:360 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:131 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:119 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:122 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:115 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:143 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:188 +#: screens/User/UserTokenList/UserTokenList.jsx:138 +msgid "Modified" +msgstr "" + +#: components/AdHocCommands/AdHocCredentialStep.jsx:100 +#: components/AddRole/AddResourceRole.jsx:163 +#: components/AssociateModal/AssociateModal.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:183 +#: components/LaunchPrompt/steps/InventoryStep.jsx:95 +#: components/Lookup/CredentialLookup.jsx:157 +#: components/Lookup/InventoryLookup.jsx:118 +#: components/Lookup/InventoryLookup.jsx:171 +#: components/Lookup/MultiCredentialsLookup.jsx:185 +#: components/Lookup/OrganizationLookup.jsx:115 +#: components/Lookup/ProjectLookup.jsx:125 +#: components/NotificationList/NotificationList.jsx:210 +#: components/Schedule/ScheduleList/ScheduleList.jsx:205 +#: components/TemplateList/TemplateList.jsx:214 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:31 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:62 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:100 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:131 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:169 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:200 +#: screens/Credential/CredentialList/CredentialList.jsx:137 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:94 +#: 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:192 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:135 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:166 +#: screens/Inventory/InventoryList/InventoryList.jsx:186 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:174 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:97 +#: screens/Organization/OrganizationList/OrganizationList.jsx:150 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:129 +#: screens/Project/ProjectList/ProjectList.jsx:162 +#: 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:109 +msgid "Modified By (Username)" +msgstr "" + +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:76 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:167 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:75 +msgid "Modified by (username)" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:63 +#: screens/Job/JobOutput/HostEventModal.jsx:131 +msgid "Module" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:257 +msgid "Mon" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:262 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:418 +msgid "Monday" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:167 +msgid "Month" +msgstr "" + +#: components/Popover/Popover.jsx:39 +msgid "More information" +msgstr "" + +#: screens/Setting/shared/SharedFields.jsx:63 +msgid "More information for" +msgstr "" + +#: screens/Template/Survey/SurveyPreviewModal.jsx:111 +msgid "Multi-Select" +msgstr "" + +#: screens/Template/Survey/SurveyPreviewModal.jsx:90 +msgid "Multiple Choice" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:61 +msgid "Multiple Choice (multiple select)" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:56 +msgid "Multiple Choice (single select)" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:217 +msgid "Multiple Choice Options" +msgstr "" + +#: components/AdHocCommands/AdHocCredentialStep.jsx:91 +#: components/AdHocCommands/AdHocCredentialStep.jsx:106 +#: components/AddRole/AddResourceRole.jsx:154 +#: components/AddRole/AddResourceRole.jsx:170 +#: components/AssociateModal/AssociateModal.jsx:139 +#: components/AssociateModal/AssociateModal.jsx:154 +#: components/HostForm/HostForm.jsx:87 +#: components/JobList/JobList.jsx:167 +#: components/JobList/JobList.jsx:216 +#: components/JobList/JobListItem.jsx:59 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:174 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:189 +#: components/LaunchPrompt/steps/InventoryStep.jsx:86 +#: components/LaunchPrompt/steps/InventoryStep.jsx:101 +#: components/Lookup/ApplicationLookup.jsx:78 +#: components/Lookup/ApplicationLookup.jsx:89 +#: components/Lookup/CredentialLookup.jsx:148 +#: components/Lookup/CredentialLookup.jsx:163 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:138 +#: components/Lookup/ExecutionEnvironmentLookup.jsx:145 +#: components/Lookup/HostFilterLookup.jsx:77 +#: components/Lookup/HostFilterLookup.jsx:352 +#: components/Lookup/InstanceGroupsLookup.jsx:91 +#: components/Lookup/InstanceGroupsLookup.jsx:102 +#: components/Lookup/InventoryLookup.jsx:109 +#: components/Lookup/InventoryLookup.jsx:124 +#: components/Lookup/InventoryLookup.jsx:162 +#: components/Lookup/InventoryLookup.jsx:177 +#: components/Lookup/MultiCredentialsLookup.jsx:176 +#: components/Lookup/MultiCredentialsLookup.jsx:191 +#: components/Lookup/OrganizationLookup.jsx:106 +#: components/Lookup/OrganizationLookup.jsx:121 +#: components/Lookup/ProjectLookup.jsx:105 +#: components/Lookup/ProjectLookup.jsx:135 +#: components/NotificationList/NotificationList.jsx:181 +#: components/NotificationList/NotificationList.jsx:218 +#: components/NotificationList/NotificationListItem.jsx:25 +#: components/PaginatedDataList/PaginatedDataList.jsx:77 +#: components/PaginatedDataList/PaginatedDataList.jsx:86 +#: components/PaginatedTable/PaginatedTable.jsx:70 +#: components/PromptDetail/PromptDetail.jsx:109 +#: components/ResourceAccessList/ResourceAccessListItem.jsx:100 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:255 +#: components/Schedule/ScheduleList/ScheduleList.jsx:173 +#: components/Schedule/ScheduleList/ScheduleList.jsx:192 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:78 +#: components/Schedule/shared/ScheduleForm.jsx:102 +#: components/TemplateList/TemplateList.jsx:189 +#: components/TemplateList/TemplateList.jsx:222 +#: components/TemplateList/TemplateListItem.jsx:126 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:18 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:37 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:49 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:68 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:80 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:110 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:122 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:137 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:149 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:179 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:191 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:206 +#: components/Workflow/WorkflowNodeHelp.jsx:132 +#: components/Workflow/WorkflowNodeHelp.jsx:158 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:63 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:108 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:115 +#: screens/Application/Applications.jsx:84 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:32 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:121 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:161 +#: screens/Application/shared/ApplicationForm.jsx:54 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:205 +#: screens/Credential/CredentialList/CredentialList.jsx:124 +#: screens/Credential/CredentialList/CredentialList.jsx:143 +#: screens/Credential/CredentialList/CredentialListItem.jsx:55 +#: screens/Credential/shared/CredentialForm.jsx:118 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:85 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialsStep.jsx:100 +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:74 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:127 +#: screens/CredentialType/CredentialTypeList/CredentialTypeList.jsx:180 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:32 +#: screens/CredentialType/shared/CredentialTypeForm.jsx:24 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:52 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:128 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:157 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:59 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:88 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:111 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:23 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:68 +#: screens/Host/HostDetail/HostDetail.jsx:74 +#: screens/Host/HostGroups/HostGroupsList.jsx:158 +#: screens/Host/HostGroups/HostGroupsList.jsx:173 +#: screens/Host/HostList/HostList.jsx:147 +#: screens/Host/HostList/HostList.jsx:168 +#: screens/Host/HostList/HostListItem.jsx:34 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:45 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:77 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:234 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:87 +#: screens/InstanceGroup/Instances/InstanceList.jsx:155 +#: screens/InstanceGroup/Instances/InstanceList.jsx:162 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:44 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:20 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:74 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:35 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:183 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:198 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:117 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:141 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:75 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:157 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:172 +#: screens/Inventory/InventoryHosts/InventoryHostList.jsx:116 +#: screens/Inventory/InventoryList/InventoryList.jsx:173 +#: screens/Inventory/InventoryList/InventoryList.jsx:192 +#: screens/Inventory/InventoryList/InventoryList.jsx:200 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:81 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:165 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:180 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:198 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:98 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:31 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:67 +#: screens/Inventory/SmartInventoryHosts/SmartInventoryHostList.jsx:82 +#: screens/Inventory/shared/InventoryForm.jsx:47 +#: screens/Inventory/shared/InventoryGroupForm.jsx:41 +#: screens/Inventory/shared/InventorySourceForm.jsx:105 +#: screens/Inventory/shared/SmartInventoryForm.jsx:53 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:88 +#: screens/ManagementJob/ManagementJobList/ManagementJobList.jsx:102 +#: screens/ManagementJob/ManagementJobList/ManagementJobListItem.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:48 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:138 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:107 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:40 +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:91 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:83 +#: screens/Organization/OrganizationExecEnvList/OrganizationExecEnvList.jsx:103 +#: screens/Organization/OrganizationList/OrganizationList.jsx:137 +#: screens/Organization/OrganizationList/OrganizationList.jsx:158 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:45 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:66 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:81 +#: screens/Organization/shared/OrganizationForm.jsx:60 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:84 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:120 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:138 +#: screens/Project/ProjectList/ProjectList.jsx:174 +#: screens/Project/ProjectList/ProjectListItem.jsx:99 +#: screens/Project/shared/ProjectForm.jsx:167 +#: screens/Team/TeamDetail/TeamDetail.jsx:34 +#: screens/Team/TeamList/TeamList.jsx:129 +#: screens/Team/TeamList/TeamList.jsx:154 +#: screens/Team/TeamList/TeamListItem.jsx:40 +#: screens/Team/shared/TeamForm.jsx:35 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:173 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:113 +#: 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/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:158 +#: 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:92 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:115 +#: screens/Template/shared/JobTemplateForm.jsx:207 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:110 +#: screens/User/UserTeams/UserTeamList.jsx:230 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:86 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:175 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:224 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:62 +msgid "Name" +msgstr "" + +#: components/AppContainer/AppContainer.jsx:185 +msgid "Navigation" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:497 +#: screens/Dashboard/shared/ChartTooltip.jsx:106 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:101 +msgid "Never" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:98 +msgid "Never Updated" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:47 +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:17 +msgid "Never expires" +msgstr "" + +#: components/JobList/JobList.jsx:199 +#: components/Workflow/WorkflowNodeHelp.jsx:74 +msgid "New" +msgstr "" + +#: components/AdHocCommands/AdHocCommandsWizard.jsx:79 +#: components/LaunchPrompt/LaunchPrompt.jsx:120 +#: components/Schedule/shared/SchedulePromptableFields.jsx:124 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:120 +msgid "Next" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:262 +#: components/Schedule/ScheduleList/ScheduleList.jsx:175 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:102 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:106 +msgid "Next Run" +msgstr "" + +#: components/Search/Search.jsx:257 +msgid "No" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:656 +msgid "No Hosts Matched" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:644 +#: screens/Job/JobOutput/JobOutput.jsx:657 +msgid "No Hosts Remaining" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:157 +msgid "No JSON Available" +msgstr "" + +#: screens/Dashboard/shared/ChartTooltip.jsx:82 +msgid "No Jobs" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:193 +msgid "No Standard Error Available" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:175 +msgid "No Standard Out Available" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:65 +msgid "No inventory sync failures." +msgstr "" + +#: components/ContentEmpty/ContentEmpty.jsx:16 +msgid "No items found." +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:133 +msgid "No result found" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:96 +#: components/Search/AdvancedSearch.jsx:134 +#: components/Search/AdvancedSearch.jsx:154 +msgid "No results found" +msgstr "" + +#: screens/Template/Survey/SurveyList.jsx:176 +msgid "No survey questions found." +msgstr "" + +#: components/PaginatedDataList/PaginatedDataList.jsx:96 +#: components/PaginatedTable/PaginatedTable.jsx:78 +msgid "No {pluralizedItemName} Found" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:74 +msgid "Node Type" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/useNodeTypeStep.jsx:74 +msgid "Node type" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:107 +msgid "None" +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:147 +msgid "None (Run Once)" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:162 +msgid "None (run once)" +msgstr "" + +#: screens/User/UserDetail/UserDetail.jsx:46 +#: screens/User/UserList/UserListItem.jsx:30 +#: screens/User/shared/UserForm.jsx:29 +msgid "Normal User" +msgstr "" + +#: components/ContentError/ContentError.jsx:39 +msgid "Not Found" +msgstr "" + +#: screens/Setting/shared/SettingDetail.jsx:59 +#: screens/Setting/shared/SettingDetail.jsx:100 +msgid "Not configured" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:68 +msgid "Not configured for inventory sync." +msgstr "" + +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:224 +msgid "" +"Note that only hosts directly in this group can\n" +"be disassociated. Hosts in sub-groups must be disassociated\n" +"directly from the sub-group level that they belong." +msgstr "" + +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:214 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s\n" +"children. This list shows all groups the host is associated\n" +"with directly and indirectly." +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:212 +msgid "" +"Note that you may still see the group in the list after\n" +"disassociating if the host is also a member of that group’s \n" +"children. This list shows all groups the host is associated \n" +"with directly and indirectly." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:62 +msgid "Note: This field assumes the remote name is \"origin\"." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:36 +msgid "" +"Note: When using SSH protocol for GitHub or\n" +"Bitbucket, enter an SSH key only, do not enter a username\n" +"(other than git). Additionally, GitHub and Bitbucket do\n" +"not support password authentication when using SSH. GIT\n" +"read only protocol (git://) does not use username or\n" +"password information." +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:270 +msgid "Notification Color" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplate.jsx:58 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:50 +msgid "Notification Template not found." +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:195 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:133 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:188 +#: screens/NotificationTemplate/NotificationTemplates.jsx:13 +#: screens/NotificationTemplate/NotificationTemplates.jsx:21 +#: util/getRelatedResourceDeleteDetails.js:205 +msgid "Notification Templates" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:72 +msgid "Notification Type" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:389 +msgid "Notification color" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:249 +msgid "Notification sent successfully" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:253 +msgid "Notification timed out" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:147 +msgid "Notification type" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:177 +#: routeConfig.js:123 +#: screens/Inventory/Inventories.jsx:118 +#: screens/Inventory/InventorySource/InventorySource.jsx:104 +#: screens/ManagementJob/ManagementJob.jsx:115 +#: screens/ManagementJob/ManagementJobs.jsx:24 +#: screens/Organization/Organization.jsx:135 +#: screens/Organization/Organizations.jsx:35 +#: screens/Project/Project.jsx:111 +#: screens/Project/Projects.jsx:31 +#: screens/Template/Template.jsx:150 +#: screens/Template/Templates.jsx:47 +#: screens/Template/WorkflowJobTemplate.jsx:127 +msgid "Notifications" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:162 +msgid "November" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:101 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:67 +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:35 +msgid "OK" +msgstr "" + +#: components/Schedule/ScheduleOccurrences/ScheduleOccurrences.jsx:42 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:531 +msgid "Occurrences" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:157 +msgid "October" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:225 +#: components/HostToggle/HostToggle.jsx:59 +#: components/InstanceToggle/InstanceToggle.jsx:59 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:188 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:55 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:53 +#: screens/Template/shared/JobTemplateForm.jsx:484 +msgid "Off" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:224 +#: components/HostToggle/HostToggle.jsx:58 +#: components/InstanceToggle/InstanceToggle.jsx:58 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:185 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:187 +#: components/PromptDetail/PromptDetail.jsx:253 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:145 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:331 +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:54 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:49 +#: screens/Setting/shared/SettingDetail.jsx:86 +#: screens/Setting/shared/SharedFields.jsx:96 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:233 +#: screens/Template/Survey/SurveyToolbar.jsx:52 +#: screens/Template/shared/JobTemplateForm.jsx:484 +msgid "On" +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:122 +#: components/Workflow/WorkflowLinkHelp.jsx:30 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:68 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:44 +msgid "On Failure" +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:118 +#: components/Workflow/WorkflowLinkHelp.jsx:27 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:63 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:35 +msgid "On Success" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:519 +msgid "On date" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:243 +msgid "On days" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:155 +msgid "Only Group By" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:96 +msgid "OpenStack" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:113 +msgid "Option Details" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:372 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:212 +msgid "" +"Optional labels that describe this job template,\n" +"such as 'dev' or 'test'. Labels can be used to group and filter\n" +"job templates and completed jobs." +msgstr "" + +#: screens/Template/shared/WebhookSubForm.jsx:219 +msgid "Optionally select the credential to use to send status updates back to the webhook service." +msgstr "" + +#: components/NotificationList/NotificationList.jsx:222 +#: components/NotificationList/NotificationListItem.jsx:34 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:167 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:180 +#: components/PromptDetail/PromptProjectDetail.jsx:92 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:93 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:141 +#: screens/Credential/shared/TypeInputsSubForm.jsx:49 +#: screens/InstanceGroup/shared/ContainerGroupForm.jsx:65 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:251 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:123 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:66 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:278 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:180 +#: screens/Template/shared/JobTemplateForm.jsx:530 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:238 +msgid "Options" +msgstr "" + +#: components/Lookup/ApplicationLookup.jsx:97 +#: components/Lookup/OrganizationLookup.jsx:82 +#: components/Lookup/OrganizationLookup.jsx:88 +#: components/Lookup/OrganizationLookup.jsx:101 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:64 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:74 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:93 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:103 +#: components/PromptDetail/PromptProjectDetail.jsx:56 +#: components/PromptDetail/PromptProjectDetail.jsx:66 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:58 +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:73 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:37 +#: screens/Application/ApplicationsList/ApplicationsList.jsx:163 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:218 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:72 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:147 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentList.jsx:159 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:67 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:81 +#: screens/Inventory/InventoryList/InventoryList.jsx:203 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:100 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:203 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:108 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:59 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:69 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:91 +#: screens/Team/TeamDetail/TeamDetail.jsx:40 +#: screens/Team/TeamList/TeamList.jsx:155 +#: screens/Team/TeamList/TeamListItem.jsx:45 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:178 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:188 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:123 +#: screens/User/UserTeams/UserTeamList.jsx:235 +#: screens/User/UserTeams/UserTeamListItem.jsx:42 +msgid "Organization" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/WorkflowJobTemplatesList.jsx:97 +msgid "Organization (Name)" +msgstr "" + +#: screens/Team/TeamList/TeamList.jsx:138 +msgid "Organization Name" +msgstr "" + +#: screens/Organization/Organization.jsx:154 +msgid "Organization not found." +msgstr "" + +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:188 +#: routeConfig.js:97 +#: screens/ActivityStream/ActivityStream.jsx:178 +#: screens/Organization/OrganizationList/OrganizationList.jsx:133 +#: screens/Organization/OrganizationList/OrganizationList.jsx:179 +#: screens/Organization/Organizations.jsx:16 +#: screens/Organization/Organizations.jsx:27 +#: screens/User/User.jsx:65 +#: screens/User/UserOrganizations/UserOrganizationsList.jsx:55 +#: screens/User/Users.jsx:34 +#: util/getRelatedResourceDeleteDetails.js:256 +#: util/getRelatedResourceDeleteDetails.js:290 +msgid "Organizations" +msgstr "" + +#: components/LaunchPrompt/steps/useOtherPromptsStep.jsx:50 +msgid "Other prompts" +msgstr "" + +#: screens/Job/Job.jsx:104 +#: screens/Job/Jobs.jsx:28 +msgid "Output" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:48 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:122 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:132 +msgid "Overwrite" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:50 +msgid "Overwrite Variables" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:145 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:153 +msgid "Overwrite variables" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:502 +msgid "POST" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:503 +msgid "PUT" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:155 +msgid "Pagerduty" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:218 +msgid "Pagerduty Subdomain" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:308 +msgid "Pagerduty subdomain" +msgstr "" + +#: components/Pagination/Pagination.jsx:35 +msgid "Pagination" +msgstr "" + +#: components/Workflow/WorkflowTools.jsx:166 +msgid "Pan Down" +msgstr "" + +#: components/Workflow/WorkflowTools.jsx:133 +msgid "Pan Left" +msgstr "" + +#: components/Workflow/WorkflowTools.jsx:177 +msgid "Pan Right" +msgstr "" + +#: components/Workflow/WorkflowTools.jsx:144 +msgid "Pan Up" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:279 +msgid "Pass extra command line changes. There are two ansible command line parameters:" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:392 +msgid "" +"Pass extra command line variables to the playbook. This is the\n" +"-e or --extra-vars command line parameter for ansible-playbook.\n" +"Provide key/value pairs using either YAML or JSON. Refer to the\n" +"Ansible Tower documentation for example syntax." +msgstr "" + +#: 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 "" + +#: screens/Login/Login.jsx:172 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:73 +#: screens/Template/Survey/SurveyQuestionForm.jsx:52 +#: screens/User/shared/UserForm.jsx:85 +msgid "Password" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:204 +msgid "Past month" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:207 +msgid "Past two weeks" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:210 +msgid "Past week" +msgstr "" + +#: components/JobList/JobList.jsx:200 +#: components/Workflow/WorkflowNodeHelp.jsx:77 +msgid "Pending" +msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:88 +msgid "Pending Workflow Approvals" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:109 +msgid "Pending delete" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:311 +msgid "Perform a search to define a host filter" +msgstr "" + +#: screens/User/UserTokenList/UserTokenListItem.jsx:43 +msgid "Personal access token" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:128 +msgid "Play" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:89 +msgid "Play Count" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:661 +msgid "Play Started" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:138 +#: screens/Job/JobDetail/JobDetail.jsx:249 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:223 +#: screens/Template/shared/JobTemplateForm.jsx:330 +msgid "Playbook" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:97 +msgid "Playbook Check" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:662 +msgid "Playbook Complete" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:105 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:142 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:86 +msgid "Playbook Directory" +msgstr "" + +#: components/JobList/JobList.jsx:185 +#: components/JobList/JobListItem.jsx:33 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:38 +#: screens/Job/JobDetail/JobDetail.jsx:98 +msgid "Playbook Run" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:653 +msgid "Playbook Started" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:206 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:23 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:54 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/JobTemplatesList.jsx:88 +msgid "Playbook name" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:235 +msgid "Playbook run" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:90 +msgid "Plays" +msgstr "" + +#: screens/Template/Survey/SurveyList.jsx:179 +msgid "Please add survey questions." +msgstr "" + +#: components/PaginatedDataList/PaginatedDataList.jsx:94 +#: components/PaginatedTable/PaginatedTable.jsx:91 +msgid "Please add {pluralizedItemName} to populate this list" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:45 +msgid "Please click the Start button to begin." +msgstr "" + +#: util/validators.jsx:118 +msgid "Please enter a valid URL" +msgstr "" + +#: screens/User/shared/UserTokenForm.jsx:22 +msgid "Please enter a value." +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:581 +msgid "Please select a day number between 1 and 31." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:755 +msgid "Please select an Inventory or check the Prompt on Launch option." +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:571 +msgid "Please select an end date/time that comes after the start date/time." +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:299 +msgid "Please select an organization before editing the host filter" +msgstr "" + +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:77 +msgid "Pod spec override" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:91 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:28 +msgid "Policy instance minimum" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:96 +#: screens/InstanceGroup/shared/InstanceGroupForm.jsx:40 +msgid "Policy instance percentage" +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:63 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginField.jsx:71 +msgid "Populate field from an external secret management system" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:288 +msgid "" +"Populate the hosts for this inventory by using a search\n" +"filter. Example: ansible_facts.ansible_distribution:\"RedHat\".\n" +"Refer to the Ansible Tower documentation for further syntax and\n" +"examples." +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:102 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:105 +msgid "Port" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:212 +msgid "Preconditions for running this node when there are multiple parents. Refer to the" +msgstr "" + +#: components/CodeEditor/CodeEditor.jsx:176 +msgid "Press Enter to edit. Press ESC to stop editing." +msgstr "" + +#: components/LaunchPrompt/steps/usePreviewStep.jsx:23 +#: screens/Template/Survey/SurveyList.jsx:163 +#: screens/Template/Survey/SurveyList.jsx:165 +msgid "Preview" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:103 +msgid "Private key passphrase" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:536 +msgid "Privilege Escalation" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:111 +msgid "Privilege escalation password" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:86 +#: components/Lookup/ProjectLookup.jsx:91 +#: components/Lookup/ProjectLookup.jsx:144 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:89 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:123 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:131 +#: components/TemplateList/TemplateListItem.jsx:283 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:217 +#: screens/Job/JobDetail/JobDetail.jsx:224 +#: screens/Job/JobDetail/JobDetail.jsx:239 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:151 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:205 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:213 +msgid "Project" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:100 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:137 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:64 +msgid "Project Base Path" +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:104 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:101 +msgid "Project Sync" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:55 +msgid "Project Update" +msgstr "" + +#: screens/Project/Project.jsx:139 +msgid "Project not found." +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:157 +msgid "Project sync failures" +msgstr "" + +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:146 +#: routeConfig.js:76 +#: screens/ActivityStream/ActivityStream.jsx:167 +#: screens/Dashboard/Dashboard.jsx:151 +#: screens/Project/ProjectList/ProjectList.jsx:133 +#: screens/Project/ProjectList/ProjectList.jsx:201 +#: screens/Project/Projects.jsx:14 +#: screens/Project/Projects.jsx:25 +#: util/getRelatedResourceDeleteDetails.js:60 +#: util/getRelatedResourceDeleteDetails.js:219 +#: util/getRelatedResourceDeleteDetails.js:249 +msgid "Projects" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:136 +msgid "Promote Child Groups and Hosts" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:633 +#: components/Schedule/shared/ScheduleForm.jsx:636 +msgid "Prompt" +msgstr "" + +#: components/PromptDetail/PromptDetail.jsx:153 +msgid "Prompt Overrides" +msgstr "" + +#: components/CodeEditor/VariablesField.jsx:158 +#: components/FieldWithPrompt/FieldWithPrompt.jsx:47 +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:167 +msgid "Prompt on launch" +msgstr "" + +#: components/PromptDetail/PromptDetail.jsx:150 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:286 +msgid "Prompted Values" +msgstr "" + +#: components/LaunchPrompt/LaunchPrompt.jsx:107 +#: components/Schedule/shared/SchedulePromptableFields.jsx:111 +msgid "Prompts" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:423 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:158 +msgid "" +"Provide a host pattern to further constrain\n" +"the list of hosts that will be managed or affected by the\n" +"playbook. Multiple patterns are allowed. Refer to Ansible\n" +"documentation for more information and examples on patterns." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:36 +msgid "" +"Provide a host pattern to further constrain the list\n" +"of hosts that will be managed or affected by the playbook. Multiple\n" +"patterns are allowed. Refer to Ansible documentation for more\n" +"information and examples on patterns." +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:164 +msgid "Provide a value for this field or select the Prompt on launch option." +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:284 +msgid "" +"Provide key/value pairs using either\n" +"YAML or JSON." +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:152 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:243 +#: screens/Template/shared/JobTemplateForm.jsx:609 +msgid "Provisioning Callback URL" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:604 +msgid "Provisioning Callback details" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:541 +#: screens/Template/shared/JobTemplateForm.jsx:544 +msgid "Provisioning Callbacks" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:88 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:93 +msgid "Pull" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:116 +msgid "Question" +msgstr "" + +#: screens/Setting/Settings.jsx:103 +msgid "RADIUS" +msgstr "" + +#: screens/Setting/SettingList.jsx:78 +msgid "RADIUS settings" +msgstr "" + +#: screens/User/shared/UserTokenForm.jsx:80 +msgid "Read" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:177 +msgid "Recent Jobs" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:175 +msgid "Recent Jobs list tab" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:183 +msgid "Recent Templates" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:180 +msgid "Recent Templates list tab" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:92 +msgid "Recipient List" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:86 +msgid "Recipient list" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:117 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:92 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:161 +#: screens/Project/ProjectList/ProjectList.jsx:154 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:93 +msgid "Red Hat Insights" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:95 +msgid "Red Hat Satellite 6" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:97 +msgid "Red Hat Virtualization" +msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:108 +msgid "Redirect URIs" +msgstr "" + +#: screens/Application/ApplicationDetails/ApplicationDetails.jsx:96 +msgid "Redirect uris" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:413 +msgid "" +"Refer to the Ansible documentation for details\n" +"about the configuration file." +msgstr "" + +#: screens/User/UserTokens/UserTokens.jsx:78 +msgid "Refresh Token" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystemDetail/MiscSystemDetail.jsx:81 +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:86 +msgid "Refresh Token Expiration" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:119 +msgid "Regions" +msgstr "" + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:128 +msgid "Registry credential" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:283 +msgid "Regular expression where only matching host names will be imported. The filter is applied as a post-processing step after any inventory plugin filters are applied." +msgstr "" + +#: screens/Inventory/Inventories.jsx:92 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:64 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:160 +msgid "Related Groups" +msgstr "" + +#: components/JobList/JobListItem.jsx:105 +#: components/LaunchButton/ReLaunchDropDown.jsx:70 +#: screens/Job/JobDetail/JobDetail.jsx:395 +#: screens/Job/JobDetail/JobDetail.jsx:402 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:161 +msgid "Relaunch" +msgstr "" + +#: components/JobList/JobListItem.jsx:89 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:142 +msgid "Relaunch Job" +msgstr "" + +#: components/LaunchButton/ReLaunchDropDown.jsx:33 +msgid "Relaunch all hosts" +msgstr "" + +#: components/LaunchButton/ReLaunchDropDown.jsx:44 +msgid "Relaunch failed hosts" +msgstr "" + +#: components/LaunchButton/ReLaunchDropDown.jsx:23 +#: components/LaunchButton/ReLaunchDropDown.jsx:28 +msgid "Relaunch on" +msgstr "" + +#: components/JobList/JobListItem.jsx:88 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:141 +msgid "Relaunch using host parameters" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:116 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:91 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:160 +#: screens/Project/ProjectList/ProjectList.jsx:153 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:92 +msgid "Remote Archive" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:21 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:29 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:30 +msgid "Remove" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/DeleteAllNodesModal.jsx:36 +msgid "Remove All Nodes" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:17 +msgid "Remove Link" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeDeleteModal.jsx:18 +msgid "Remove Node" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:73 +msgid "Remove any local modifications prior to performing an update." +msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:23 +msgid "Remove {0} Access" +msgstr "" + +#: components/ResourceAccessList/ResourceAccessListItem.jsx:60 +msgid "Remove {0} chip" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkDeleteModal.jsx:49 +msgid "Removing this link will orphan the rest of the branch and cause it to be executed immediately on launch." +msgstr "" + +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:267 +msgid "Repeat Frequency" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:45 +msgid "Replace" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:54 +msgid "Replace field with new value" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:106 +#: screens/Template/Survey/SurveyQuestionForm.jsx:143 +msgid "Required" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:194 +msgid "Resource deleted" +msgstr "" + +#: screens/User/UserRoles/UserRolesListItem.jsx:21 +msgid "Resource name" +msgstr "" + +#: screens/User/UserRoles/UserRolesListItem.jsx:40 +msgid "Resource role" +msgstr "" + +#: screens/User/UserRoles/UserRolesListItem.jsx:30 +msgid "Resource type" +msgstr "" + +#: routeConfig.js:62 +#: screens/ActivityStream/ActivityStream.jsx:156 +msgid "Resources" +msgstr "" + +#: components/TemplateList/TemplateListItem.jsx:133 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:81 +msgid "Resources are missing from this template." +msgstr "" + +#: screens/Setting/shared/RevertButton.jsx:44 +msgid "Restore initial value." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:255 +msgid "" +"Retrieve the enabled state from the given dict of host variables.\n" +"The enabled variable may be specified using dot notation, e.g: 'foo.bar'" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:143 +#: components/JobList/JobListCancelButton.jsx:146 +#: screens/Job/JobDetail/JobDetail.jsx:453 +#: screens/Job/JobDetail/JobDetail.jsx:456 +#: screens/Job/JobOutput/JobOutput.jsx:804 +#: screens/Job/JobOutput/JobOutput.jsx:807 +msgid "Return" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:116 +msgid "Returns results that have values other than this one as well as other filters." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:102 +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 +msgid "Returns results that satisfy this one or any other filters." +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:44 +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 +msgid "Revert" +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:23 +msgid "Revert all" +msgstr "" + +#: screens/Setting/shared/RevertFormActionGroup.jsx:28 +#: screens/Setting/shared/RevertFormActionGroup.jsx:34 +msgid "Revert all to default" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/CredentialField.jsx:53 +msgid "Revert field to previously saved value" +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:11 +msgid "Revert settings" +msgstr "" + +#: screens/Setting/shared/RevertButton.jsx:43 +msgid "Revert to factory default." +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:248 +#: screens/Project/ProjectList/ProjectList.jsx:177 +#: screens/Project/ProjectList/ProjectListItem.jsx:137 +msgid "Revision" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/SvnSubForm.jsx:38 +msgid "Revision #" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:199 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:156 +msgid "Rocket.Chat" +msgstr "" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:40 +#: screens/Team/TeamRoles/TeamRolesList.jsx:148 +#: screens/User/UserList/UserList.jsx:171 +#: screens/User/UserList/UserListItem.jsx:78 +#: screens/User/UserRoles/UserRolesList.jsx:145 +#: screens/User/UserRoles/UserRolesListItem.jsx:44 +msgid "Role" +msgstr "" + +#: components/ResourceAccessList/ResourceAccessList.jsx:143 +#: components/ResourceAccessList/ResourceAccessList.jsx:156 +#: screens/Team/Team.jsx:57 +#: screens/Team/Teams.jsx:32 +#: screens/User/User.jsx:70 +#: screens/User/Users.jsx:32 +msgid "Roles" +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:100 +#: components/Workflow/WorkflowLinkHelp.jsx:39 +#: screens/Credential/shared/ExternalTestModal.jsx:90 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:24 +#: screens/Template/shared/JobTemplateForm.jsx:171 +msgid "Run" +msgstr "" + +#: components/AdHocCommands/AdHocCommands.jsx:124 +#: components/AdHocCommands/AdHocCommands.jsx:127 +#: components/AdHocCommands/AdHocCommands.jsx:133 +#: components/AdHocCommands/AdHocCommands.jsx:137 +msgid "Run Command" +msgstr "" + +#: components/AdHocCommands/AdHocCommandsWizard.jsx:109 +msgid "Run command" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:215 +msgid "Run every" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:157 +msgid "Run frequency" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:329 +msgid "Run on" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/useRunTypeStep.jsx:32 +msgid "Run type" +msgstr "" + +#: components/JobList/JobList.jsx:202 +#: components/TemplateList/TemplateListItem.jsx:105 +#: components/Workflow/WorkflowNodeHelp.jsx:83 +msgid "Running" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:654 +msgid "Running Handlers" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:236 +msgid "Running Jobs" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:98 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:99 +msgid "Running jobs" +msgstr "" + +#: screens/Setting/Settings.jsx:106 +msgid "SAML" +msgstr "" + +#: screens/Setting/SettingList.jsx:82 +msgid "SAML settings" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:232 +msgid "SCM update" +msgstr "" + +#: screens/User/UserDetail/UserDetail.jsx:53 +#: screens/User/UserList/UserListItem.jsx:57 +msgid "SOCIAL" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:95 +msgid "SSH password" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:176 +msgid "SSL Connection" +msgstr "" + +#: components/Workflow/WorkflowStartNode.jsx:61 +#: components/Workflow/workflowReducer.js:412 +msgid "START" +msgstr "" + +#: components/Sparkline/Sparkline.jsx:31 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:45 +#: screens/Project/ProjectList/ProjectListItem.jsx:65 +msgid "STATUS:" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:307 +msgid "Sat" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:312 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:443 +msgid "Saturday" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:266 +#: components/AssociateModal/AssociateModal.jsx:105 +#: components/AssociateModal/AssociateModal.jsx:111 +#: components/FormActionGroup/FormActionGroup.jsx:14 +#: components/FormActionGroup/FormActionGroup.jsx:20 +#: components/Schedule/shared/ScheduleForm.jsx:619 +#: components/Schedule/shared/ScheduleForm.jsx:625 +#: components/Schedule/shared/useSchedulePromptSteps.js:46 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:126 +#: screens/Credential/shared/CredentialForm.jsx:274 +#: screens/Credential/shared/CredentialForm.jsx:279 +#: screens/Setting/shared/RevertFormActionGroup.jsx:19 +#: screens/Setting/shared/RevertFormActionGroup.jsx:25 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:35 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeModal.jsx:119 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:162 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:166 +msgid "Save" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:33 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:36 +msgid "Save & Exit" +msgstr "" + +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:239 +msgid "Save and enable log aggregation before testing the log aggregator." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:32 +msgid "Save link changes" +msgstr "" + +#: screens/Project/Projects.jsx:38 +#: screens/Template/Templates.jsx:56 +msgid "Schedule Details" +msgstr "" + +#: screens/Inventory/Inventories.jsx:115 +msgid "Schedule details" +msgstr "" + +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:45 +msgid "Schedule is active" +msgstr "" + +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:46 +msgid "Schedule is inactive" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:534 +msgid "Schedule is missing rrule" +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.jsx:231 +#: routeConfig.js:45 +#: screens/ActivityStream/ActivityStream.jsx:150 +#: screens/Inventory/Inventories.jsx:108 +#: screens/Inventory/InventorySource/InventorySource.jsx:93 +#: screens/ManagementJob/ManagementJob.jsx:107 +#: screens/ManagementJob/ManagementJobs.jsx:25 +#: screens/Project/Project.jsx:123 +#: screens/Project/Projects.jsx:34 +#: screens/Schedule/AllSchedules.jsx:25 +#: screens/Template/Template.jsx:157 +#: screens/Template/Templates.jsx:52 +#: screens/Template/WorkflowJobTemplate.jsx:134 +msgid "Schedules" +msgstr "" + +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:119 +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:48 +#: screens/User/UserTokenDetail/UserTokenDetail.jsx:53 +#: screens/User/UserTokenList/UserTokenList.jsx:126 +#: screens/User/UserTokenList/UserTokenListItem.jsx:61 +#: screens/User/UserTokenList/UserTokenListItem.jsx:62 +#: screens/User/shared/UserTokenForm.jsx:68 +msgid "Scope" +msgstr "" + +#: screens/Job/JobOutput/PageControls.jsx:61 +msgid "Scroll first" +msgstr "" + +#: screens/Job/JobOutput/PageControls.jsx:69 +msgid "Scroll last" +msgstr "" + +#: screens/Job/JobOutput/PageControls.jsx:53 +msgid "Scroll next" +msgstr "" + +#: screens/Job/JobOutput/PageControls.jsx:45 +msgid "Scroll previous" +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:251 +#: components/Lookup/Lookup.jsx:106 +msgid "Search" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:723 +msgid "Search is disabled while the job is running" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:258 +#: components/Search/Search.jsx:282 +msgid "Search submit button" +msgstr "" + +#: components/Search/Search.jsx:272 +msgid "Search text input" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:393 +msgid "Second" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:105 +#: components/PromptDetail/PromptProjectDetail.jsx:95 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:127 +msgid "Seconds" +msgstr "" + +#: components/LaunchPrompt/steps/PreviewStep.jsx:67 +msgid "See errors on the left" +msgstr "" + +#: components/JobList/JobListItem.jsx:57 +#: components/Lookup/HostFilterLookup.jsx:321 +#: components/Lookup/Lookup.jsx:141 +#: components/Pagination/Pagination.jsx:33 +msgid "Select" +msgstr "" + +#: screens/Host/HostGroups/HostGroupsList.jsx:236 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupsList.jsx:238 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupList.jsx:230 +msgid "Select Groups" +msgstr "" + +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostList.jsx:253 +msgid "Select Hosts" +msgstr "" + +#: components/AnsibleSelect/AnsibleSelect.jsx:38 +msgid "Select Input" +msgstr "" + +#: screens/InstanceGroup/Instances/InstanceList.jsx:223 +msgid "Select Instances" +msgstr "" + +#: components/AssociateModal/AssociateModal.jsx:22 +msgid "Select Items" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:221 +msgid "Select Items from List" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:255 +msgid "Select Roles to Apply" +msgstr "" + +#: screens/User/UserTeams/UserTeamList.jsx:249 +msgid "Select Teams" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:26 +msgid "Select a JSON formatted service account key to autopopulate the following fields." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:78 +msgid "Select a Node Type" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:191 +msgid "Select a Resource Type" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:310 +msgid "" +"Select a branch for the job template. This branch is applied to\n" +"all job template nodes that prompt for a branch." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:48 +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:181 +msgid "Select a branch for the workflow. This branch is applied to all job template nodes that prompt for a branch." +msgstr "" + +#: screens/Credential/shared/CredentialForm.jsx:162 +msgid "Select a credential Type" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:84 +msgid "Select a job to cancel" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:81 +msgid "Select a module" +msgstr "" + +#: screens/Template/shared/PlaybookSelect.jsx:58 +msgid "Select a playbook" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:296 +msgid "Select a project before editing the execution environment." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:18 +msgid "Select a row to approve" +msgstr "" + +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:159 +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:100 +msgid "Select a row to delete" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:18 +msgid "Select a row to deny" +msgstr "" + +#: components/DisassociateButton/DisassociateButton.jsx:62 +msgid "Select a row to disassociate" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:85 +msgid "Select a valid date and time for this field" +msgstr "" + +#: components/HostForm/HostForm.jsx:23 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:55 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:82 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:86 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:94 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:98 +#: components/Schedule/shared/ScheduleForm.jsx:91 +#: components/Schedule/shared/ScheduleForm.jsx:95 +#: screens/Credential/shared/CredentialForm.jsx:43 +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:33 +#: screens/Inventory/shared/InventoryForm.jsx:24 +#: screens/Inventory/shared/InventorySourceSubForms/AzureSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/GCESubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/OpenStackSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:34 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:38 +#: screens/Inventory/shared/InventorySourceSubForms/SatelliteSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/TowerSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VMwareSubForm.jsx:20 +#: screens/Inventory/shared/InventorySourceSubForms/VirtualizationSubForm.jsx:20 +#: screens/Inventory/shared/SmartInventoryForm.jsx:33 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:24 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:61 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:444 +#: screens/Project/shared/ProjectForm.jsx:100 +#: screens/Project/shared/ProjectSubForms/InsightsSubForm.jsx:19 +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:41 +#: screens/Team/shared/TeamForm.jsx:20 +#: screens/Template/Survey/SurveyQuestionForm.jsx:28 +#: screens/Template/shared/JobTemplateForm.jsx:83 +#: screens/Template/shared/JobTemplateForm.jsx:147 +#: screens/User/shared/UserForm.jsx:49 +msgid "Select a value for this field" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.jsx:132 +msgid "Select a webhook service." +msgstr "" + +#: components/DataListToolbar/DataListToolbar.jsx:74 +#: screens/Template/Survey/SurveyToolbar.jsx:44 +msgid "Select all" +msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:131 +msgid "Select an inventory for the workflow. This inventory is applied to all job template nodes that prompt for an inventory." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:200 +msgid "Select an organization before editing the default execution environment." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:354 +msgid "" +"Select credentials that allow Tower to access the nodes this job will be ran\n" +"against. You can only select one credential of each type. For machine credentials (SSH),\n" +"checking \"Prompt on launch\" without selecting credentials will require you to select a machine\n" +"credential at run time. If you select credentials and check \"Prompt on launch\", the selected\n" +"credential(s) become the defaults that can be updated at run time." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:89 +msgid "" +"Select from the list of directories found in\n" +"the Project Base Path. Together the base path and the playbook\n" +"directory provide the full path used to locate playbooks." +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:94 +msgid "Select items from list" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:215 +#: screens/Dashboard/Dashboard.jsx:216 +msgid "Select job type" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:193 +#: screens/Dashboard/Dashboard.jsx:194 +msgid "Select period" +msgstr "" + +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:113 +msgid "Select roles to apply" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:127 +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:128 +msgid "Select source path" +msgstr "" + +#: screens/Inventory/shared/SmartInventoryForm.jsx:91 +msgid "Select the Instance Groups for this Inventory to run on." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:493 +msgid "" +"Select the Instance Groups for this Organization\n" +"to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:90 +msgid "Select the Instance Groups for this Organization to run on." +msgstr "" + +#: screens/User/shared/UserTokenForm.jsx:47 +msgid "Select the application that this token will belong to." +msgstr "" + +#: components/AdHocCommands/AdHocCredentialStep.jsx:77 +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:201 +msgid "Select the default execution environment for this organization to run on." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:102 +msgid "Select the default execution environment for this organization." +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:197 +msgid "Select the default execution environment for this project." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:293 +msgid "Select the execution environment for this job template." +msgstr "" + +#: components/Lookup/InventoryLookup.jsx:89 +#: screens/Template/shared/JobTemplateForm.jsx:255 +msgid "" +"Select the inventory containing the hosts\n" +"you want this job to manage." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:105 +msgid "" +"Select the inventory file\n" +"to be synced by this source. You can select from\n" +"the dropdown or enter a file within the input." +msgstr "" + +#: components/HostForm/HostForm.jsx:32 +#: components/HostForm/HostForm.jsx:47 +msgid "Select the inventory that this host will belong to." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:334 +msgid "Select the playbook to be executed by this job." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:272 +msgid "" +"Select the project containing the playbook\n" +"you want this job to execute." +msgstr "" + +#: components/Lookup/Lookup.jsx:129 +msgid "Select {0}" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:232 +#: components/AddRole/AddResourceRole.jsx:244 +#: components/AddRole/AddResourceRole.jsx:261 +#: components/AddRole/SelectRoleStep.jsx:31 +#: components/OptionsList/OptionsList.jsx:51 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:76 +#: components/TemplateList/TemplateListItem.jsx:124 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:103 +#: components/UserAndTeamAccessAdd/UserAndTeamAccessAdd.jsx:121 +#: screens/Application/ApplicationsList/ApplicationListItem.jsx:30 +#: screens/Credential/CredentialList/CredentialListItem.jsx:53 +#: screens/CredentialType/CredentialTypeList/CredentialTypeListItem.jsx:30 +#: screens/ExecutionEnvironment/ExecutionEnvironmentList/ExecutionEnvironmentListItem.jsx:57 +#: screens/Host/HostList/HostListItem.jsx:32 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:85 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:79 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:105 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:43 +#: screens/Project/ProjectList/ProjectListItem.jsx:97 +#: screens/Team/TeamList/TeamListItem.jsx:38 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:60 +msgid "Selected" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialsStep.jsx:148 +#: components/LaunchPrompt/steps/CredentialsStep.jsx:153 +#: components/Lookup/MultiCredentialsLookup.jsx:149 +#: components/Lookup/MultiCredentialsLookup.jsx:154 +msgid "Selected Category" +msgstr "" + +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:242 +msgid "Send a test log message to the configured log aggregator." +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:97 +msgid "Sender Email" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:97 +msgid "Sender e-mail" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:152 +msgid "September" +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:24 +msgid "Service account JSON file" +msgstr "" + +#: screens/Inventory/shared/InventorySourceForm.jsx:56 +#: screens/Project/shared/ProjectForm.jsx:96 +msgid "Set a value for this field" +msgstr "" + +#: screens/ManagementJob/ManagementJobList/LaunchManagementPrompt.jsx:71 +msgid "Set how many days of data should be retained." +msgstr "" + +#: screens/Setting/SettingList.jsx:126 +msgid "Set preferences for data collection, logos, and logins" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SCMSubForm.jsx:129 +msgid "Set source path to" +msgstr "" + +#: components/InstanceToggle/InstanceToggle.jsx:50 +msgid "Set the instance online or offline. If offline, jobs will not be assigned to this instance." +msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:132 +msgid "Set to Public or Confidential depending on how secure the client device is." +msgstr "" + +#: components/Search/AdvancedSearch.jsx:94 +msgid "Set type" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:85 +msgid "Set type select" +msgstr "" + +#: components/Search/AdvancedSearch.jsx:88 +msgid "Set type typeahead" +msgstr "" + +#: components/Workflow/WorkflowTools.jsx:155 +msgid "Set zoom to 100% and center graph" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:46 +msgid "Setting category" +msgstr "" + +#: screens/Setting/shared/RevertButton.jsx:47 +msgid "Setting matches factory default." +msgstr "" + +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:50 +msgid "Setting name" +msgstr "" + +#: routeConfig.js:150 +#: routeConfig.js:154 +#: screens/ActivityStream/ActivityStream.jsx:213 +#: screens/ActivityStream/ActivityStream.jsx:215 +#: screens/Setting/Settings.jsx:43 +msgid "Settings" +msgstr "" + +#: components/FormField/PasswordInput.jsx:36 +msgid "Show" +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:175 +#: components/PromptDetail/PromptDetail.jsx:251 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:144 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:330 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:232 +#: screens/Template/shared/JobTemplateForm.jsx:475 +msgid "Show Changes" +msgstr "" + +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:127 +msgid "Show all groups" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:211 +#: components/AdHocCommands/AdHocDetailsStep.jsx:212 +msgid "Show changes" +msgstr "" + +#: components/ChipGroup/ChipGroup.jsx:12 +msgid "Show less" +msgstr "" + +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:126 +msgid "Show only root groups" +msgstr "" + +#: screens/Login/Login.jsx:208 +msgid "Sign in with Azure AD" +msgstr "" + +#: screens/Login/Login.jsx:221 +msgid "Sign in with GitHub" +msgstr "" + +#: screens/Login/Login.jsx:263 +msgid "Sign in with GitHub Enterprise" +msgstr "" + +#: screens/Login/Login.jsx:279 +msgid "Sign in with GitHub Enterprise Organizations" +msgstr "" + +#: screens/Login/Login.jsx:296 +msgid "Sign in with GitHub Enterprise Teams" +msgstr "" + +#: screens/Login/Login.jsx:235 +msgid "Sign in with GitHub Organizations" +msgstr "" + +#: screens/Login/Login.jsx:249 +msgid "Sign in with GitHub Teams" +msgstr "" + +#: screens/Login/Login.jsx:311 +msgid "Sign in with Google" +msgstr "" + +#: screens/Login/Login.jsx:329 +msgid "Sign in with SAML" +msgstr "" + +#: screens/Login/Login.jsx:328 +msgid "Sign in with SAML {samlIDP}" +msgstr "" + +#: components/Search/Search.jsx:177 +msgid "Simple key select" +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:72 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:73 +#: components/PromptDetail/PromptDetail.jsx:229 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:248 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:368 +#: screens/Job/JobDetail/JobDetail.jsx:339 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:357 +#: screens/Template/shared/JobTemplateForm.jsx:514 +msgid "Skip Tags" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:517 +msgid "" +"Skip tags are useful when you have a\n" +"large playbook, and you want to skip specific parts of a\n" +"play or task. Use commas to separate multiple tags. Refer\n" +"to Ansible Tower documentation for details on the usage\n" +"of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:74 +msgid "" +"Skip tags are useful when you have a large\n" +"playbook, and you want to skip specific parts of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:39 +msgid "Skipped" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:200 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:157 +msgid "Slack" +msgstr "" + +#: screens/Host/HostList/SmartInventoryButton.jsx:19 +#: screens/Host/HostList/SmartInventoryButton.jsx:40 +#: screens/Host/HostList/SmartInventoryButton.jsx:44 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:97 +msgid "Smart Inventory" +msgstr "" + +#: screens/Inventory/SmartInventory.jsx:96 +msgid "Smart Inventory not found." +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:283 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:117 +msgid "Smart host filter" +msgstr "" + +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +msgid "Smart inventory" +msgstr "" + +#: components/LaunchPrompt/steps/PreviewStep.jsx:64 +msgid "Some of the previous step(s) have errors" +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:43 +msgid "Something went wrong with the request to test this credential and metadata." +msgstr "" + +#: components/ContentError/ContentError.jsx:39 +msgid "Something went wrong..." +msgstr "" + +#: components/Sort/Sort.jsx:129 +msgid "Sort" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:63 +#: screens/Template/Survey/SurveyListItem.jsx:64 +msgid "Sort question order" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:86 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:200 +#: screens/Inventory/shared/InventorySourceForm.jsx:135 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:86 +msgid "Source" +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:46 +#: components/PromptDetail/PromptDetail.jsx:189 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:137 +#: components/PromptDetail/PromptProjectDetail.jsx:78 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:80 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:321 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:108 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:220 +#: screens/Template/shared/JobTemplateForm.jsx:306 +msgid "Source Control Branch" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:47 +msgid "Source Control Branch/Tag/Commit" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:82 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:112 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:55 +msgid "Source Control Credential" +msgstr "" + +#: screens/Project/shared/ProjectForm.jsx:214 +msgid "Source Control Credential Type" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:79 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:109 +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:51 +msgid "Source Control Refspec" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:74 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:102 +msgid "Source Control Type" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:121 +#: components/PromptDetail/PromptProjectDetail.jsx:77 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:96 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:165 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:107 +#: screens/Project/ProjectList/ProjectList.jsx:158 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:18 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:97 +msgid "Source Control URL" +msgstr "" + +#: components/JobList/JobList.jsx:183 +#: components/JobList/JobListItem.jsx:31 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:39 +#: screens/Job/JobDetail/JobDetail.jsx:93 +msgid "Source Control Update" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:279 +msgid "Source Phone Number" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:170 +msgid "Source Variables" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:184 +msgid "Source Workflow Job" +msgstr "" + +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:177 +msgid "Source control branch" +msgstr "" + +#: screens/Inventory/shared/InventorySourceForm.jsx:157 +msgid "Source details" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:411 +msgid "Source phone number" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:255 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:34 +msgid "Source variables" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:90 +msgid "Sourced from a project" +msgstr "" + +#: screens/Inventory/Inventories.jsx:98 +#: screens/Inventory/Inventory.jsx:66 +msgid "Sources" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:478 +msgid "" +"Specify HTTP Headers in JSON format. Refer to\n" +"the Ansible Tower documentation for example syntax." +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:392 +msgid "" +"Specify a notification color. Acceptable colors are hex\n" +"color code (example: #3af or #789abc)." +msgstr "" + +#: screens/User/shared/UserTokenForm.jsx:71 +msgid "Specify a scope for the token's access" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/RunStep.jsx:28 +msgid "Specify the conditions under which this node should be executed" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:180 +msgid "Standard Error" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:162 +msgid "Standard Out" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:181 +msgid "Standard error tab" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:163 +msgid "Standard out tab" +msgstr "" + +#: components/NotificationList/NotificationListItem.jsx:57 +#: components/NotificationList/NotificationListItem.jsx:58 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:49 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:55 +msgid "Start" +msgstr "" + +#: components/JobList/JobList.jsx:219 +#: components/JobList/JobListItem.jsx:74 +msgid "Start Time" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:123 +msgid "Start date/time" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:396 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:108 +msgid "Start message" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:405 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:117 +msgid "Start message body" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:70 +msgid "Start sync process" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:74 +msgid "Start sync source" +msgstr "" + +#: screens/Job/JobDetail/JobDetail.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:226 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:79 +msgid "Started" +msgstr "" + +#: components/JobList/JobList.jsx:196 +#: components/JobList/JobList.jsx:217 +#: components/JobList/JobListItem.jsx:68 +#: screens/Inventory/InventoryList/InventoryList.jsx:201 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:142 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:196 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:112 +#: screens/Project/ProjectList/ProjectList.jsx:175 +#: screens/Project/ProjectList/ProjectListItem.jsx:119 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:108 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:227 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListItem.jsx:82 +msgid "Status" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:630 +msgid "Stdout" +msgstr "" + +#: components/Lookup/ProjectLookup.jsx:115 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:90 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:159 +#: screens/Project/ProjectList/ProjectList.jsx:152 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:91 +msgid "Subversion" +msgstr "" + +#: components/NotificationList/NotificationListItem.jsx:70 +#: components/NotificationList/NotificationListItem.jsx:71 +#: screens/Setting/shared/LoggingTestAlert.jsx:37 +msgid "Success" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:414 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:126 +msgid "Success message" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:423 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:135 +msgid "Success message body" +msgstr "" + +#: components/JobList/JobList.jsx:203 +#: components/Workflow/WorkflowNodeHelp.jsx:86 +#: screens/Dashboard/shared/ChartTooltip.jsx:59 +msgid "Successful" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.jsx:148 +msgid "Successfully copied to clipboard!" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:247 +msgid "Sun" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:252 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:413 +msgid "Sunday" +msgstr "" + +#: components/LaunchPrompt/steps/useSurveyStep.jsx:27 +#: screens/Template/Template.jsx:168 +#: screens/Template/Templates.jsx:49 +#: screens/Template/WorkflowJobTemplate.jsx:149 +msgid "Survey" +msgstr "" + +#: screens/Template/Survey/SurveyList.jsx:138 +msgid "Survey List" +msgstr "" + +#: screens/Template/Survey/SurveyPreviewModal.jsx:32 +msgid "Survey Preview" +msgstr "" + +#: screens/Template/Survey/SurveyToolbar.jsx:50 +msgid "Survey Toggle" +msgstr "" + +#: screens/Template/Survey/SurveyPreviewModal.jsx:33 +msgid "Survey preview modal" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:57 +msgid "Survey questions" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSyncButton.jsx:78 +#: screens/Project/shared/ProjectSyncButton.jsx:35 +msgid "Sync" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.jsx:155 +#: screens/Project/shared/ProjectSyncButton.jsx:31 +msgid "Sync Project" +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceList.jsx:199 +#: screens/Inventory/InventorySources/InventorySourceList.jsx:202 +msgid "Sync all" +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceList.jsx:193 +msgid "Sync all sources" +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceList.jsx:231 +msgid "Sync error" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.jsx:141 +msgid "Sync for revision" +msgstr "" + +#: screens/Setting/SettingList.jsx:105 +#: screens/User/UserRoles/UserRolesListItem.jsx:27 +msgid "System" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:126 +#: screens/User/UserDetail/UserDetail.jsx:42 +#: screens/User/UserList/UserListItem.jsx:26 +#: screens/User/UserRoles/UserRolesList.jsx:124 +#: screens/User/shared/UserForm.jsx:41 +msgid "System Administrator" +msgstr "" + +#: screens/User/UserDetail/UserDetail.jsx:44 +#: screens/User/UserList/UserListItem.jsx:28 +#: screens/User/shared/UserForm.jsx:35 +msgid "System Auditor" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:667 +msgid "System Warning" +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:130 +#: screens/User/UserRoles/UserRolesList.jsx:128 +msgid "System administrators have unrestricted access to all resources." +msgstr "" + +#: screens/Setting/Settings.jsx:109 +msgid "TACACS+" +msgstr "" + +#: screens/Setting/SettingList.jsx:86 +msgid "TACACS+ settings" +msgstr "" + +#: screens/Dashboard/Dashboard.jsx:165 +#: screens/Job/JobOutput/HostEventModal.jsx:106 +msgid "Tabs" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:501 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a\n" +"play or task. Use commas to separate multiple tags.\n" +"Refer to Ansible Tower documentation for details on\n" +"the usage of tags." +msgstr "" + +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:62 +msgid "" +"Tags are useful when you have a large\n" +"playbook, and you want to run a specific part of a play or task.\n" +"Use commas to separate multiple tags. Refer to Ansible Tower\n" +"documentation for details on the usage of tags." +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:138 +msgid "Tags for the Annotation" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:189 +msgid "Tags for the annotation (optional)" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:185 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:237 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:303 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:262 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:339 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:461 +msgid "Target URL" +msgstr "" + +#: screens/Job/JobOutput/HostEventModal.jsx:129 +msgid "Task" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:95 +msgid "Task Count" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:658 +msgid "Task Started" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:96 +msgid "Tasks" +msgstr "" + +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:19 +msgid "Team" +msgstr "" + +#: components/ResourceAccessList/ResourceAccessListItem.jsx:120 +#: screens/Team/TeamRoles/TeamRolesList.jsx:144 +msgid "Team Roles" +msgstr "" + +#: screens/Team/Team.jsx:73 +msgid "Team not found." +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:209 +#: components/AddRole/AddResourceRole.jsx:210 +#: routeConfig.js:107 +#: screens/ActivityStream/ActivityStream.jsx:184 +#: screens/Organization/Organization.jsx:125 +#: screens/Organization/OrganizationList/OrganizationList.jsx:160 +#: screens/Organization/OrganizationList/OrganizationListItem.jsx:68 +#: screens/Organization/OrganizationTeams/OrganizationTeamList.jsx:62 +#: screens/Organization/Organizations.jsx:33 +#: screens/Team/TeamList/TeamList.jsx:124 +#: screens/Team/TeamList/TeamList.jsx:179 +#: screens/Team/Teams.jsx:14 +#: screens/Team/Teams.jsx:25 +#: screens/User/User.jsx:69 +#: screens/User/UserTeams/UserTeamList.jsx:176 +#: screens/User/UserTeams/UserTeamList.jsx:244 +#: screens/User/Users.jsx:33 +#: util/getRelatedResourceDeleteDetails.js:198 +msgid "Teams" +msgstr "" + +#: screens/Template/Template.jsx:184 +#: screens/Template/WorkflowJobTemplate.jsx:179 +msgid "Template not found." +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:30 +msgid "Template type" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:184 +#: components/TemplateList/TemplateList.jsx:243 +#: routeConfig.js:66 +#: screens/ActivityStream/ActivityStream.jsx:161 +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:69 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:82 +#: screens/Template/Templates.jsx:16 +#: util/getRelatedResourceDeleteDetails.js:242 +#: util/getRelatedResourceDeleteDetails.js:299 +msgid "Templates" +msgstr "" + +#: screens/Credential/shared/CredentialForm.jsx:287 +#: screens/Credential/shared/CredentialForm.jsx:293 +#: screens/Credential/shared/CredentialPlugins/CredentialPluginPrompt/CredentialPluginPrompt.jsx:83 +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:260 +msgid "Test" +msgstr "" + +#: screens/Credential/shared/ExternalTestModal.jsx:78 +msgid "Test External Credential" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:123 +msgid "Test Notification" +msgstr "" + +#: screens/Setting/Logging/LoggingEdit/LoggingEdit.jsx:248 +msgid "Test logging" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:120 +msgid "Test notification" +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginTestAlert.jsx:49 +msgid "Test passed" +msgstr "" + +#: screens/Template/Survey/SurveyPreviewModal.jsx:53 +#: screens/Template/Survey/SurveyQuestionForm.jsx:50 +msgid "Text" +msgstr "" + +#: screens/Template/Survey/SurveyPreviewModal.jsx:67 +msgid "Text Area" +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:51 +msgid "Textarea" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:383 +msgid "The" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystemEdit/MiscSystemEdit.jsx:248 +msgid "The Execution Environment to be used when one has not been configured for a job template." +msgstr "" + +#: screens/Application/shared/ApplicationForm.jsx:88 +msgid "The Grant type the user must use for acquire tokens for this application" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:122 +msgid "" +"The amount of time (in seconds) before the email\n" +"notification stops trying to reach the host and times out. Ranges\n" +"from 1 to 120 seconds." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:469 +msgid "" +"The amount of time (in seconds) to run\n" +"before the job is canceled. Defaults to 0 for no job\n" +"timeout." +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:164 +msgid "" +"The base URL of the Grafana server - the\n" +"/api/annotations endpoint will be added automatically to the base\n" +"Grafana URL." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/GitSubForm.jsx:74 +msgid "" +"The first fetches all references. The second\n" +"fetches the Github pull request number 62, in this example\n" +"the branch needs to be \"pull/62/head\"." +msgstr "" + +#: screens/Organization/shared/OrganizationForm.jsx:77 +msgid "" +"The maximum number of hosts allowed to be managed by this organization.\n" +"Value defaults to 0 which means no limit. Refer to the Ansible\n" +"documentation for more details." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:407 +msgid "" +"The number of parallel or simultaneous\n" +"processes to use while executing the playbook. An empty value,\n" +"or a value less than 1 will use the Ansible default which is\n" +"usually 5. The default number of forks can be overwritten\n" +"with a change to" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:197 +msgid "The number of parallel or simultaneous processes to use while executing the playbook. Inputting no value will use the default value from the ansible configuration file. You can find more information" +msgstr "" + +#: components/ContentError/ContentError.jsx:43 +#: screens/Job/Job.jsx:124 +msgid "The page you requested could not be found." +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:175 +msgid "The pattern used to target hosts in the inventory. Leaving the field blank, all, and * will all target all hosts in the inventory. You can find more information about Ansible's host patterns" +msgstr "" + +#: screens/ExecutionEnvironment/shared/ExecutionEnvironmentForm.jsx:82 +msgid "The registry location where the container is stored." +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:123 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:126 +msgid "The resource associated with this node has been deleted." +msgstr "" + +#: screens/Template/Survey/SurveyQuestionForm.jsx:134 +msgid "" +"The suggested format for variable names is lowercase and\n" +"underscore-separated (for example, foo_bar, user_id, host_name,\n" +"etc.). Variable names with spaces are not allowed." +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:153 +msgid "The tower instance group cannot be deleted." +msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:53 +msgid "" +"There are no available playbook directories in {project_base_dir}.\n" +"Either that directory is empty, or all of the contents are already\n" +"assigned to other projects. Create a new directory there and make\n" +"sure the playbook files can be read by the \"awx\" system user,\n" +"or have {brandName} directly retrieve your playbooks from\n" +"source control using the Source Control Type option above." +msgstr "" + +#: screens/Login/Login.jsx:120 +msgid "There was a problem signing in. Please try again." +msgstr "" + +#: components/ContentError/ContentError.jsx:45 +msgid "There was an error loading this content. Please reload the page." +msgstr "" + +#: screens/Credential/shared/CredentialFormFields/GceFileUploadField.jsx:61 +msgid "There was an error parsing the file. Please check the file formatting and try again." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Visualizer.jsx:600 +msgid "There was an error saving the workflow." +msgstr "" + +#: screens/Setting/shared/LoggingTestAlert.jsx:19 +msgid "There was an error testing the log aggregator." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:216 +msgid "These approvals cannot be deleted due to insufficient permissions or a pending job status" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:74 +msgid "These are the modules that {brandName} supports running commands against." +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:151 +msgid "These are the verbosity levels for standard out of the command run that are supported." +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:133 +msgid "These arguments are used with the specified module." +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:121 +msgid "These arguments are used with the specified module. You can find information about {0} by clicking" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:395 +msgid "Third" +msgstr "" + +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:282 +#: screens/Template/Survey/SurveyList.jsx:123 +msgid "This action will delete the following:" +msgstr "" + +#: screens/User/UserTeams/UserTeamList.jsx:214 +msgid "This action will disassociate all roles for this user from the selected teams." +msgstr "" + +#: screens/Team/TeamRoles/TeamRolesList.jsx:220 +#: screens/User/UserRoles/UserRolesList.jsx:220 +msgid "This action will disassociate the following role from {0}:" +msgstr "" + +#: components/DisassociateButton/DisassociateButton.jsx:134 +msgid "This action will disassociate the following:" +msgstr "" + +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:109 +msgid "This container group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Credential/CredentialDetail/CredentialDetail.jsx:284 +msgid "This credential is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:122 +msgid "This credential type is currently being used by some credentials and cannot be deleted" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:137 +msgid "This execution environment is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:269 +msgid "This field is ignored unless an Enabled Variable is set. If the enabled variable matches this value, the host will be enabled on import." +msgstr "" + +#: components/LaunchPrompt/steps/useCredentialPasswordsStep.jsx:54 +msgid "This field may not be blank" +msgstr "" + +#: util/validators.jsx:102 +msgid "This field must be a number" +msgstr "" + +#: components/LaunchPrompt/steps/useSurveyStep.jsx:113 +msgid "This field must be a number and have a value between {0} and {1}" +msgstr "" + +#: util/validators.jsx:41 +msgid "This field must be a number and have a value between {min} and {max}" +msgstr "" + +#: util/validators.jsx:142 +msgid "This field must be a regular expression" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:48 +#: util/validators.jsx:86 +msgid "This field must be an integer" +msgstr "" + +#: components/LaunchPrompt/steps/useSurveyStep.jsx:104 +msgid "This field must be at least {0} characters" +msgstr "" + +#: util/validators.jsx:31 +msgid "This field must be at least {min} characters" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:51 +msgid "This field must be greater than 0" +msgstr "" + +#: components/LaunchPrompt/steps/useSurveyStep.jsx:118 +#: screens/User/shared/UserForm.jsx:89 +#: screens/User/shared/UserForm.jsx:100 +#: util/validators.jsx:4 +#: util/validators.jsx:51 +msgid "This field must not be blank" +msgstr "" + +#: util/validators.jsx:76 +msgid "This field must not contain spaces" +msgstr "" + +#: components/LaunchPrompt/steps/useSurveyStep.jsx:107 +msgid "This field must not exceed {0} characters" +msgstr "" + +#: util/validators.jsx:22 +msgid "This field must not exceed {max} characters" +msgstr "" + +#: screens/Credential/shared/CredentialPlugins/CredentialPluginSelected.jsx:52 +msgid "This field will be retrieved from an external secret management system using the specified credential." +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:150 +msgid "This instance group is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/LaunchPrompt/steps/useInventoryStep.jsx:66 +msgid "This inventory is applied to all job template nodes within this workflow ({0}) that prompt for an inventory." +msgstr "" + +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:136 +msgid "This inventory is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:292 +msgid "This inventory source is currently being used by other resources that rely on it. Are you sure you want to delete it?" +msgstr "" + +#: screens/Application/Applications.jsx:78 +msgid "This is the only time the client secret will be shown." +msgstr "" + +#: screens/User/UserTokens/UserTokens.jsx:59 +msgid "This is the only time the token value and associated refresh token value will be shown." +msgstr "" + +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:411 +msgid "This job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Organization/OrganizationDetail/OrganizationDetail.jsx:167 +msgid "This organization is currently being by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Project/ProjectDetail/ProjectDetail.jsx:177 +msgid "This project is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:150 +msgid "This project needs to be updated" +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.jsx:131 +msgid "This schedule is missing an Inventory" +msgstr "" + +#: components/Schedule/ScheduleList/ScheduleList.jsx:158 +msgid "This schedule is missing required survey values" +msgstr "" + +#: components/AdHocCommands/AdHocCommandsWizard.jsx:63 +#: components/LaunchPrompt/steps/StepName.jsx:27 +msgid "This step contains errors" +msgstr "" + +#: screens/User/shared/UserForm.jsx:155 +msgid "This value does not match the password you entered previously. Please confirm that password." +msgstr "" + +#: screens/Setting/shared/RevertAllAlert.jsx:36 +msgid "" +"This will revert all configuration values on this page to\n" +"their factory defaults. Are you sure you want to proceed?" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerStartScreen.jsx:41 +msgid "This workflow does not have any nodes configured." +msgstr "" + +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:251 +msgid "This workflow job template is currently being used by other resources. Are you sure you want to delete it?" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:287 +msgid "Thu" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:292 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:433 +msgid "Thursday" +msgstr "" + +#: screens/ActivityStream/ActivityStream.jsx:242 +#: screens/ActivityStream/ActivityStream.jsx:254 +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:41 +#: screens/ActivityStream/ActivityStreamListItem.jsx:42 +msgid "Time" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:121 +msgid "" +"Time in seconds to consider a project\n" +"to be current. During job runs and callbacks the task\n" +"system will evaluate the timestamp of the latest project\n" +"update. If it is older than Cache Timeout, it is not\n" +"considered current, and a new project update will be\n" +"performed." +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:238 +msgid "" +"Time in seconds to consider an inventory sync\n" +"to be current. During job runs and callbacks the task system will\n" +"evaluate the timestamp of the latest sync. If it is older than\n" +"Cache Timeout, it is not considered current, and a new\n" +"inventory sync will be performed." +msgstr "" + +#: screens/WorkflowApproval/shared/WorkflowApprovalStatus.jsx:21 +msgid "Timed out" +msgstr "" + +#: components/PromptDetail/PromptDetail.jsx:116 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:107 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:115 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:230 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:166 +#: screens/Template/shared/JobTemplateForm.jsx:468 +msgid "Timeout" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:173 +msgid "Timeout minutes" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:187 +msgid "Timeout seconds" +msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:75 +msgid "Toggle Legend" +msgstr "" + +#: components/FormField/PasswordInput.jsx:41 +msgid "Toggle Password" +msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:85 +msgid "Toggle Tools" +msgstr "" + +#: screens/Job/JobOutput/PageControls.jsx:37 +msgid "Toggle expand/collapse event lines" +msgstr "" + +#: components/HostToggle/HostToggle.jsx:67 +msgid "Toggle host" +msgstr "" + +#: components/InstanceToggle/InstanceToggle.jsx:63 +msgid "Toggle instance" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:82 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:84 +msgid "Toggle legend" +msgstr "" + +#: components/NotificationList/NotificationListItem.jsx:51 +msgid "Toggle notification approvals" +msgstr "" + +#: components/NotificationList/NotificationListItem.jsx:90 +msgid "Toggle notification failure" +msgstr "" + +#: components/NotificationList/NotificationListItem.jsx:64 +msgid "Toggle notification start" +msgstr "" + +#: components/NotificationList/NotificationListItem.jsx:77 +msgid "Toggle notification success" +msgstr "" + +#: components/Schedule/ScheduleToggle/ScheduleToggle.jsx:63 +msgid "Toggle schedule" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:94 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:96 +msgid "Toggle tools" +msgstr "" + +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:382 +#: screens/User/UserTokens/UserTokens.jsx:65 +msgid "Token" +msgstr "" + +#: screens/User/UserTokens/UserTokens.jsx:49 +#: screens/User/UserTokens/UserTokens.jsx:52 +msgid "Token information" +msgstr "" + +#: screens/User/UserToken/UserToken.jsx:73 +msgid "Token not found." +msgstr "" + +#: screens/User/UserTokenList/UserTokenListItem.jsx:39 +msgid "Token type" +msgstr "" + +#: screens/Application/Application/Application.jsx:78 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:103 +#: screens/Application/ApplicationTokens/ApplicationTokenList.jsx:151 +#: screens/Application/Applications.jsx:40 +#: screens/User/User.jsx:75 +#: screens/User/UserTokenList/UserTokenList.jsx:106 +#: screens/User/Users.jsx:35 +msgid "Tokens" +msgstr "" + +#: components/Workflow/WorkflowTools.jsx:84 +msgid "Tools" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:237 +msgid "Total Jobs" +msgstr "" + +#: screens/Job/WorkflowOutput/WorkflowOutputToolbar.jsx:73 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:78 +msgid "Total Nodes" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:99 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:103 +msgid "Total jobs" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:68 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:146 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:177 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:208 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:255 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:311 +msgid "True" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:267 +msgid "Tue" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:272 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:423 +msgid "Tuesday" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:201 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:158 +msgid "Twilio" +msgstr "" + +#: components/JobList/JobList.jsx:218 +#: components/JobList/JobListItem.jsx:72 +#: components/Lookup/ProjectLookup.jsx:110 +#: components/NotificationList/NotificationList.jsx:220 +#: components/NotificationList/NotificationListItem.jsx:30 +#: components/PromptDetail/PromptDetail.jsx:112 +#: components/Schedule/ScheduleList/ScheduleList.jsx:174 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:95 +#: components/TemplateList/TemplateList.jsx:198 +#: components/TemplateList/TemplateList.jsx:223 +#: components/TemplateList/TemplateListItem.jsx:154 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:85 +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:154 +#: components/Workflow/WorkflowNodeHelp.jsx:136 +#: components/Workflow/WorkflowNodeHelp.jsx:162 +#: screens/Credential/CredentialList/CredentialList.jsx:144 +#: screens/Credential/CredentialList/CredentialListItem.jsx:60 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:93 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:50 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:82 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:235 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:93 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:86 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:79 +#: screens/Inventory/InventoryList/InventoryList.jsx:202 +#: screens/Inventory/InventoryList/InventoryListItem.jsx:95 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:106 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:198 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateListItem.jsx:115 +#: screens/NotificationTemplate/shared/NotificationTemplateForm.jsx:66 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesList.jsx:155 +#: screens/Project/ProjectList/ProjectList.jsx:147 +#: screens/Project/ProjectList/ProjectList.jsx:176 +#: screens/Project/ProjectList/ProjectListItem.jsx:132 +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:30 +#: screens/Template/Survey/SurveyListItem.jsx:117 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/ProjectsList.jsx:86 +#: screens/User/UserDetail/UserDetail.jsx:70 +#: screens/User/UserRoles/UserRolesListItem.jsx:34 +msgid "Type" +msgstr "" + +#: screens/Credential/shared/TypeInputsSubForm.jsx:25 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:44 +#: screens/Project/shared/ProjectForm.jsx:246 +msgid "Type Details" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:111 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:50 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:63 +msgid "Unavailable" +msgstr "" + +#: screens/Setting/shared/RevertButton.jsx:54 +#: screens/Setting/shared/RevertButton.jsx:63 +msgid "Undo" +msgstr "" + +#: screens/Job/JobOutput/shared/HostStatusBar.jsx:51 +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:108 +msgid "Unreachable" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:107 +msgid "Unreachable Host Count" +msgstr "" + +#: screens/Job/JobOutput/shared/OutputToolbar.jsx:109 +msgid "Unreachable Hosts" +msgstr "" + +#: util/dates.jsx:81 +msgid "Unrecognized day string" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:15 +msgid "Unsaved changes modal" +msgstr "" + +#: components/PromptDetail/PromptProjectDetail.jsx:43 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:71 +#: screens/Project/shared/ProjectSubForms/SharedFields.jsx:90 +msgid "Update Revision on Launch" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:52 +msgid "Update on Launch" +msgstr "" + +#: components/PromptDetail/PromptInventorySourceDetail.jsx:54 +msgid "Update on Project Update" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:164 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:171 +msgid "Update on launch" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:174 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:199 +msgid "Update on project update" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:126 +msgid "Update options" +msgstr "" + +#: screens/Setting/SettingList.jsx:94 +msgid "Update settings pertaining to Jobs within {brandName}" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.jsx:206 +msgid "Update webhook key" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:110 +msgid "Updating" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:67 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:139 +msgid "Use Fact Storage" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:146 +msgid "Use SSL" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:114 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:145 +msgid "Use TLS" +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:72 +msgid "Use custom messages to change the content of notifications sent when a job starts, succeeds, or fails. Use curly braces to access information about the job:" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:102 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:110 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:46 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:59 +msgid "Used capacity" +msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:135 +#: components/ResourceAccessList/DeleteRoleConfirmationModal.jsx:20 +msgid "User" +msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:163 +msgid "User Details" +msgstr "" + +#: screens/Setting/SettingList.jsx:124 +#: screens/Setting/Settings.jsx:112 +msgid "User Interface" +msgstr "" + +#: screens/Setting/SettingList.jsx:131 +msgid "User Interface settings" +msgstr "" + +#: components/ResourceAccessList/ResourceAccessListItem.jsx:110 +#: screens/User/UserRoles/UserRolesList.jsx:141 +msgid "User Roles" +msgstr "" + +#: screens/User/UserDetail/UserDetail.jsx:67 +#: screens/User/shared/UserForm.jsx:137 +msgid "User Type" +msgstr "" + +#: components/AppContainer/PageHeaderToolbar.jsx:156 +msgid "User details" +msgstr "" + +#: screens/User/User.jsx:95 +msgid "User not found." +msgstr "" + +#: screens/User/UserTokenList/UserTokenList.jsx:166 +msgid "User tokens" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:125 +#: components/AddRole/AddResourceRole.jsx:140 +#: components/ResourceAccessList/ResourceAccessList.jsx:127 +#: components/ResourceAccessList/ResourceAccessList.jsx:161 +#: screens/Login/Login.jsx:175 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:82 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:190 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:242 +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:298 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:67 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:270 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:347 +#: screens/NotificationTemplate/shared/TypeInputsSubForm.jsx:450 +#: screens/User/UserDetail/UserDetail.jsx:60 +#: screens/User/UserList/UserList.jsx:118 +#: screens/User/UserList/UserList.jsx:163 +#: screens/User/UserList/UserListItem.jsx:45 +#: screens/User/shared/UserForm.jsx:67 +msgid "Username" +msgstr "" + +#: components/AddRole/AddResourceRole.jsx:201 +#: components/AddRole/AddResourceRole.jsx:202 +#: routeConfig.js:102 +#: screens/ActivityStream/ActivityStream.jsx:181 +#: screens/Team/Teams.jsx:30 +#: screens/User/UserList/UserList.jsx:113 +#: screens/User/UserList/UserList.jsx:155 +#: screens/User/Users.jsx:15 +#: screens/User/Users.jsx:27 +msgid "Users" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/InventorySourcesList.jsx:94 +msgid "VMware vCenter" +msgstr "" + +#: components/HostForm/HostForm.jsx:102 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:84 +#: components/PromptDetail/PromptDetail.jsx:260 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:262 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:127 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:387 +#: screens/Host/HostDetail/HostDetail.jsx:104 +#: screens/Inventory/InventoryDetail/InventoryDetail.jsx:104 +#: screens/Inventory/InventoryGroupDetail/InventoryGroupDetail.jsx:41 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:94 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:136 +#: screens/Inventory/SmartInventoryHostDetail/SmartInventoryHostDetail.jsx:62 +#: screens/Inventory/shared/InventoryForm.jsx:89 +#: screens/Inventory/shared/InventoryGroupForm.jsx:55 +#: screens/Inventory/shared/SmartInventoryForm.jsx:98 +#: screens/Job/JobDetail/JobDetail.jsx:368 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:372 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:211 +#: screens/Template/shared/JobTemplateForm.jsx:389 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:231 +msgid "Variables" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:659 +msgid "Variables Prompted" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:122 +msgid "Vault password" +msgstr "" + +#: components/LaunchPrompt/steps/CredentialPasswordsStep.jsx:123 +msgid "Vault password | {credId}" +msgstr "" + +#: screens/Job/JobOutput/JobOutput.jsx:664 +msgid "Verbose" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:140 +#: components/LaunchPrompt/steps/OtherPromptsStep.jsx:149 +#: components/PromptDetail/PromptDetail.jsx:199 +#: components/PromptDetail/PromptInventorySourceDetail.jsx:102 +#: components/PromptDetail/PromptJobTemplateDetail.jsx:141 +#: components/Schedule/ScheduleDetail/ScheduleDetail.jsx:315 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:233 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:90 +#: screens/Job/JobDetail/JobDetail.jsx:251 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:227 +#: screens/Template/shared/JobTemplateForm.jsx:441 +msgid "Verbosity" +msgstr "" + +#: screens/Setting/ActivityStream/ActivityStream.jsx:33 +msgid "View Activity Stream settings" +msgstr "" + +#: screens/Setting/AzureAD/AzureAD.jsx:26 +msgid "View Azure AD settings" +msgstr "" + +#: screens/Credential/Credential.jsx:119 +#: screens/Credential/Credential.jsx:131 +msgid "View Credential Details" +msgstr "" + +#: components/Schedule/Schedule.jsx:135 +msgid "View Details" +msgstr "" + +#: screens/Setting/GitHub/GitHub.jsx:58 +msgid "View GitHub Settings" +msgstr "" + +#: screens/Setting/GoogleOAuth2/GoogleOAuth2.jsx:26 +msgid "View Google OAuth 2.0 settings" +msgstr "" + +#: screens/Host/Host.jsx:132 +msgid "View Host Details" +msgstr "" + +#: screens/Inventory/Inventory.jsx:180 +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:144 +#: screens/Inventory/SmartInventory.jsx:171 +msgid "View Inventory Details" +msgstr "" + +#: screens/Inventory/InventoryGroup/InventoryGroup.jsx:94 +msgid "View Inventory Groups" +msgstr "" + +#: screens/Inventory/InventoryHost/InventoryHost.jsx:162 +msgid "View Inventory Host Details" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:50 +msgid "View JSON examples at <0>www.json.org" +msgstr "" + +#: screens/Job/Job.jsx:165 +msgid "View Job Details" +msgstr "" + +#: screens/Setting/Jobs/Jobs.jsx:26 +msgid "View Jobs settings" +msgstr "" + +#: screens/Setting/LDAP/LDAP.jsx:38 +msgid "View LDAP Settings" +msgstr "" + +#: screens/Setting/Logging/Logging.jsx:33 +msgid "View Logging settings" +msgstr "" + +#: screens/Setting/MiscSystem/MiscSystem.jsx:33 +msgid "View Miscellaneous System settings" +msgstr "" + +#: screens/Organization/Organization.jsx:227 +msgid "View Organization Details" +msgstr "" + +#: screens/Project/Project.jsx:198 +msgid "View Project Details" +msgstr "" + +#: screens/Setting/RADIUS/RADIUS.jsx:26 +msgid "View RADIUS settings" +msgstr "" + +#: screens/Setting/SAML/SAML.jsx:26 +msgid "View SAML settings" +msgstr "" + +#: components/Schedule/Schedule.jsx:85 +msgid "View Schedules" +msgstr "" + +#: screens/Template/Template.jsx:168 +#: screens/Template/WorkflowJobTemplate.jsx:149 +msgid "View Survey" +msgstr "" + +#: screens/Setting/TACACS/TACACS.jsx:26 +msgid "View TACACS+ settings" +msgstr "" + +#: screens/Team/Team.jsx:116 +msgid "View Team Details" +msgstr "" + +#: screens/Template/Template.jsx:265 +#: screens/Template/WorkflowJobTemplate.jsx:279 +msgid "View Template Details" +msgstr "" + +#: screens/User/UserToken/UserToken.jsx:103 +msgid "View Tokens" +msgstr "" + +#: screens/User/User.jsx:140 +msgid "View User Details" +msgstr "" + +#: screens/Setting/UI/UI.jsx:26 +msgid "View User Interface settings" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApproval.jsx:104 +msgid "View Workflow Approval Details" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:61 +msgid "View YAML examples at <0>docs.ansible.com" +msgstr "" + +#: components/ScreenHeader/ScreenHeader.jsx:54 +#: components/ScreenHeader/ScreenHeader.jsx:57 +msgid "View activity stream" +msgstr "" + +#: screens/Credential/Credential.jsx:81 +msgid "View all Credentials." +msgstr "" + +#: screens/Host/Host.jsx:91 +msgid "View all Hosts." +msgstr "" + +#: screens/Inventory/Inventory.jsx:93 +#: screens/Inventory/SmartInventory.jsx:98 +msgid "View all Inventories." +msgstr "" + +#: screens/Inventory/InventoryHost/InventoryHost.jsx:102 +msgid "View all Inventory Hosts." +msgstr "" + +#: screens/Job/JobTypeRedirect.jsx:40 +msgid "View all Jobs" +msgstr "" + +#: screens/Job/Job.jsx:125 +msgid "View all Jobs." +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplate.jsx:60 +#: screens/NotificationTemplate/NotificationTemplateAdd.jsx:52 +msgid "View all Notification Templates." +msgstr "" + +#: screens/Organization/Organization.jsx:156 +msgid "View all Organizations." +msgstr "" + +#: screens/Project/Project.jsx:140 +msgid "View all Projects." +msgstr "" + +#: screens/Team/Team.jsx:74 +msgid "View all Teams." +msgstr "" + +#: screens/Template/Template.jsx:185 +#: screens/Template/WorkflowJobTemplate.jsx:180 +msgid "View all Templates." +msgstr "" + +#: screens/User/User.jsx:96 +msgid "View all Users." +msgstr "" + +#: screens/WorkflowApproval/WorkflowApproval.jsx:54 +msgid "View all Workflow Approvals." +msgstr "" + +#: screens/Application/Application/Application.jsx:95 +msgid "View all applications." +msgstr "" + +#: screens/CredentialType/CredentialType.jsx:77 +msgid "View all credential types" +msgstr "" + +#: screens/ExecutionEnvironment/ExecutionEnvironment.jsx:84 +msgid "View all execution environments" +msgstr "" + +#: screens/InstanceGroup/ContainerGroup.jsx:84 +#: screens/InstanceGroup/InstanceGroup.jsx:90 +msgid "View all instance groups" +msgstr "" + +#: screens/ManagementJob/ManagementJob.jsx:134 +msgid "View all management jobs" +msgstr "" + +#: screens/Setting/Settings.jsx:195 +msgid "View all settings" +msgstr "" + +#: screens/User/UserToken/UserToken.jsx:75 +msgid "View all tokens." +msgstr "" + +#: screens/Setting/SettingList.jsx:138 +msgid "View and edit your license information" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDetailButton.jsx:25 +#: screens/ActivityStream/ActivityStreamListItem.jsx:50 +msgid "View event details" +msgstr "" + +#: screens/Inventory/InventorySource/InventorySource.jsx:172 +msgid "View inventory source details" +msgstr "" + +#: components/Sparkline/Sparkline.jsx:44 +msgid "View job {0}" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerNode.jsx:177 +msgid "View node details" +msgstr "" + +#: screens/Inventory/SmartInventoryHost/SmartInventoryHost.jsx:80 +msgid "View smart inventory host details" +msgstr "" + +#: routeConfig.js:31 +#: screens/ActivityStream/ActivityStream.jsx:142 +msgid "Views" +msgstr "" + +#: components/TemplateList/TemplateListItem.jsx:159 +#: components/TemplateList/TemplateListItem.jsx:165 +#: screens/Template/WorkflowJobTemplate.jsx:141 +msgid "Visualizer" +msgstr "" + +#: screens/Project/shared/ProjectSubForms/ManualSubForm.jsx:48 +msgid "WARNING:" +msgstr "" + +#: components/JobList/JobList.jsx:201 +#: components/Workflow/WorkflowNodeHelp.jsx:80 +msgid "Waiting" +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:114 +#: screens/Job/JobOutput/JobOutput.jsx:666 +msgid "Warning" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/UnsavedChangesModal.jsx:14 +msgid "Warning: Unsaved Changes" +msgstr "" + +#: components/NotificationList/NotificationList.jsx:202 +#: screens/NotificationTemplate/NotificationTemplateList/NotificationTemplateList.jsx:159 +msgid "Webhook" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:170 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:97 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:267 +#: screens/Template/shared/WebhookSubForm.jsx:217 +msgid "Webhook Credential" +msgstr "" + +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:169 +msgid "Webhook Credentials" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:166 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:86 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:264 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:165 +#: screens/Template/shared/WebhookSubForm.jsx:185 +msgid "Webhook Key" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:157 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:83 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:250 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:156 +#: screens/Template/shared/WebhookSubForm.jsx:131 +msgid "Webhook Service" +msgstr "" + +#: components/PromptDetail/PromptJobTemplateDetail.jsx:162 +#: components/PromptDetail/PromptWFJobTemplateDetail.jsx:89 +#: screens/Template/JobTemplateDetail/JobTemplateDetail.jsx:260 +#: screens/Template/WorkflowJobTemplateDetail/WorkflowJobTemplateDetail.jsx:161 +#: screens/Template/shared/WebhookSubForm.jsx:167 +#: screens/Template/shared/WebhookSubForm.jsx:179 +msgid "Webhook URL" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:637 +#: screens/Template/shared/WorkflowJobTemplateForm.jsx:273 +msgid "Webhook details" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.jsx:171 +msgid "Webhook services can launch jobs with this workflow job template by making a POST request to this URL." +msgstr "" + +#: screens/Template/shared/WebhookSubForm.jsx:189 +msgid "Webhook services can use this as a shared secret." +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:277 +msgid "Wed" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:282 +#: components/Schedule/shared/FrequencyDetailSubform.jsx:428 +msgid "Wednesday" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:166 +msgid "Week" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:449 +msgid "Weekday" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:454 +msgid "Weekend day" +msgstr "" + +#: screens/Login/Login.jsx:142 +msgid "Welcome to Ansible {brandName}! Please Sign In." +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:154 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:161 +msgid "" +"When not checked, a merge will be performed,\n" +"combining local variables with those found on the\n" +"external source." +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:135 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:144 +msgid "" +"When not checked, local child\n" +"hosts and groups not found on the external source will remain\n" +"untouched by the inventory update process." +msgstr "" + +#: components/Workflow/WorkflowLegend.jsx:96 +msgid "Workflow" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:63 +msgid "Workflow Approval" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApproval.jsx:52 +msgid "Workflow Approval not found." +msgstr "" + +#: routeConfig.js:55 +#: screens/ActivityStream/ActivityStream.jsx:153 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:170 +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalList.jsx:210 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:12 +#: screens/WorkflowApproval/WorkflowApprovals.jsx:19 +msgid "Workflow Approvals" +msgstr "" + +#: components/JobList/JobList.jsx:188 +#: components/JobList/JobListItem.jsx:36 +#: components/Schedule/ScheduleList/ScheduleListItem.jsx:41 +#: screens/Job/JobDetail/JobDetail.jsx:101 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:134 +msgid "Workflow Job" +msgstr "" + +#: components/Workflow/WorkflowNodeHelp.jsx:51 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateListItem.jsx:34 +#: screens/Job/JobDetail/JobDetail.jsx:172 +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:107 +#: screens/WorkflowApproval/WorkflowApprovalDetail/WorkflowApprovalDetail.jsx:147 +#: util/getRelatedResourceDeleteDetails.js:112 +msgid "Workflow Job Template" +msgstr "" + +#: util/getRelatedResourceDeleteDetails.js:139 +#: util/getRelatedResourceDeleteDetails.js:181 +#: util/getRelatedResourceDeleteDetails.js:284 +msgid "Workflow Job Template Nodes" +msgstr "" + +#: util/getRelatedResourceDeleteDetails.js:164 +msgid "Workflow Job Templates" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:23 +msgid "Workflow Link" +msgstr "" + +#: components/TemplateList/TemplateList.jsx:202 +#: screens/ExecutionEnvironment/ExecutionEnvironmentTemplate/ExecutionEnvironmentTemplateList.jsx:97 +msgid "Workflow Template" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:450 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:162 +msgid "Workflow approved message" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:462 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:171 +msgid "Workflow approved message body" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:474 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:180 +msgid "Workflow denied message" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:486 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:189 +msgid "Workflow denied message body" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:107 +#: screens/Template/WorkflowJobTemplateVisualizer/VisualizerToolbar.jsx:111 +msgid "Workflow documentation" +msgstr "" + +#: components/UserAndTeamAccessAdd/getResourceAccessConfig.js:46 +msgid "Workflow job templates" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/LinkModals/LinkModal.jsx:24 +msgid "Workflow link modal" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeViewModal.jsx:195 +msgid "Workflow node view modal" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:498 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:198 +msgid "Workflow pending message" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:510 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:207 +msgid "Workflow pending message body" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:522 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:216 +msgid "Workflow timed out message" +msgstr "" + +#: screens/NotificationTemplate/NotificationTemplateDetail/NotificationTemplateDetail.jsx:534 +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:225 +msgid "Workflow timed out message body" +msgstr "" + +#: screens/User/shared/UserTokenForm.jsx:81 +msgid "Write" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:47 +msgid "YAML:" +msgstr "" + +#: components/Schedule/shared/ScheduleForm.jsx:168 +msgid "Year" +msgstr "" + +#: components/Search/Search.jsx:254 +msgid "Yes" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListApproveButton.jsx:28 +msgid "You are unable to act on the following workflow approvals: {itemsUnableToApprove}" +msgstr "" + +#: screens/WorkflowApproval/WorkflowApprovalList/WorkflowApprovalListDenyButton.jsx:28 +msgid "You are unable to act on the following workflow approvals: {itemsUnableToDeny}" +msgstr "" + +#: components/Lookup/MultiCredentialsLookup.jsx:142 +msgid "You cannot select multiple vault credentials with the same vault ID. Doing so will automatically deselect the other with the same vault ID." +msgstr "" + +#: screens/Inventory/InventoryGroups/InventoryGroupsList.jsx:92 +msgid "You do not have permission to delete the following Groups: {itemsUnableToDelete}" +msgstr "" + +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:151 +msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupList.jsx:144 +msgid "You do not have permission to delete {pluralizedItemName}: {itemsUnableToDelete}." +msgstr "" + +#: components/DisassociateButton/DisassociateButton.jsx:52 +msgid "You do not have permission to disassociate the following: {itemsUnableToDisassociate}" +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:89 +msgid "You may apply a number of possible variables in the message. Refer to the" +msgstr "" + +#: components/AppContainer/AppContainer.jsx:247 +msgid "You will be logged out in {0} seconds due to inactivity." +msgstr "" + +#: components/AppContainer/AppContainer.jsx:222 +msgid "Your session is about to expire" +msgstr "" + +#: components/Workflow/WorkflowTools.jsx:122 +msgid "Zoom In" +msgstr "" + +#: components/Workflow/WorkflowTools.jsx:101 +msgid "Zoom Out" +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:734 +#: screens/Template/shared/WebhookSubForm.jsx:155 +msgid "a new webhook key will be generated on save." +msgstr "" + +#: screens/Template/shared/JobTemplateForm.jsx:731 +#: screens/Template/shared/WebhookSubForm.jsx:143 +msgid "a new webhook url will be generated on save." +msgstr "" + +#: screens/Host/HostGroups/HostGroupItem.jsx:45 +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:116 +#: screens/Inventory/InventoryGroupHosts/InventoryGroupHostListItem.jsx:69 +#: screens/Inventory/InventoryGroups/InventoryGroupItem.jsx:51 +#: screens/Inventory/InventoryHostGroups/InventoryHostGroupItem.jsx:51 +#: screens/Inventory/InventoryHosts/InventoryHostItem.jsx:62 +#: screens/Inventory/InventoryRelatedGroups/InventoryRelatedGroupListItem.jsx:59 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:118 +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:35 +#: screens/Project/ProjectJobTemplatesList/ProjectJobTemplatesListItem.jsx:112 +msgid "actions" +msgstr "" + +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:188 +#: screens/Inventory/shared/InventorySourceSubForms/SharedFields.jsx:219 +msgid "and click on Update Revision on Launch" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:514 +msgid "approved" +msgstr "" + +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:275 +#: screens/Template/Survey/SurveyList.jsx:113 +msgid "cancel delete" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:252 +msgid "command" +msgstr "" + +#: components/PaginatedDataList/ToolbarDeleteButton.jsx:264 +#: screens/Template/Survey/SurveyList.jsx:104 +msgid "confirm delete" +msgstr "" + +#: components/DisassociateButton/DisassociateButton.jsx:116 +#: screens/Team/TeamRoles/TeamRolesList.jsx:202 +msgid "confirm disassociate" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:63 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:68 +msgid "controller instance" +msgstr "" + +#: screens/Project/ProjectList/ProjectListItem.jsx:140 +msgid "copy to clipboard disabled" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:147 +msgid "deletion error" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:522 +msgid "denied" +msgstr "" + +#: components/DisassociateButton/DisassociateButton.jsx:82 +msgid "disassociate" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:219 +msgid "documentation" +msgstr "" + +#: screens/CredentialType/CredentialTypeDetails/CredentialTypeDetails.jsx:105 +#: screens/ExecutionEnvironment/ExecutionEnvironmentDetails/ExecutionEnvironmentDetails.jsx:121 +#: screens/Host/HostDetail/HostDetail.jsx:113 +#: screens/InstanceGroup/ContainerGroupDetails/ContainerGroupDetails.jsx:93 +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:133 +#: screens/Inventory/InventoryHostDetail/InventoryHostDetail.jsx:103 +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:276 +#: screens/Inventory/SmartInventoryDetail/SmartInventoryDetail.jsx:156 +#: screens/Project/ProjectDetail/ProjectDetail.jsx:159 +#: screens/User/UserDetail/UserDetail.jsx:89 +msgid "edit" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:123 +msgid "encrypted" +msgstr "" + +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:51 +msgid "expiration" +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:100 +msgid "for more details." +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:221 +msgid "for more info." +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:182 +msgid "here" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:129 +#: components/AdHocCommands/AdHocDetailsStep.jsx:204 +msgid "here." +msgstr "" + +#: components/Lookup/HostFilterLookup.jsx:340 +msgid "hosts" +msgstr "" + +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:95 +msgid "instance counts" +msgstr "" + +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:109 +msgid "instance group used capacity" +msgstr "" + +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:82 +msgid "instance host name" +msgstr "" + +#: screens/InstanceGroup/Instances/InstanceListItem.jsx:85 +msgid "instance type" +msgstr "" + +#: components/Lookup/HostListItem.jsx:30 +msgid "inventory" +msgstr "" + +#: screens/InstanceGroup/InstanceGroupDetails/InstanceGroupDetails.jsx:51 +#: screens/InstanceGroup/InstanceGroupList/InstanceGroupListItem.jsx:59 +#: screens/Job/JobDetail/JobDetail.jsx:119 +msgid "isolated instance" +msgstr "" + +#: components/Pagination/Pagination.jsx:24 +msgid "items" +msgstr "" + +#: screens/User/UserList/UserListItem.jsx:51 +msgid "ldap user" +msgstr "" + +#: screens/User/UserDetail/UserDetail.jsx:72 +msgid "login type" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:183 +msgid "min" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:82 +msgid "move down" +msgstr "" + +#: screens/Template/Survey/SurveyListItem.jsx:71 +msgid "move up" +msgstr "" + +#: components/Lookup/HostListItem.jsx:23 +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:90 +msgid "name" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:465 +msgid "of" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:250 +msgid "option to the" +msgstr "" + +#: screens/NotificationTemplate/shared/CustomMessagesSubForm.jsx:84 +msgid "or attributes of the job such as" +msgstr "" + +#: components/Pagination/Pagination.jsx:25 +msgid "page" +msgstr "" + +#: components/Pagination/Pagination.jsx:26 +msgid "pages" +msgstr "" + +#: components/Pagination/Pagination.jsx:28 +msgid "per page" +msgstr "" + +#: components/LaunchButton/ReLaunchDropDown.jsx:66 +#: components/LaunchButton/ReLaunchDropDown.jsx:88 +msgid "relaunch jobs" +msgstr "" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:21 +msgid "resource name" +msgstr "" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:36 +msgid "resource role" +msgstr "" + +#: screens/Team/TeamRoles/TeamRoleListItem.jsx:26 +msgid "resource type" +msgstr "" + +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:47 +msgid "scope" +msgstr "" + +#: screens/Template/WorkflowJobTemplateVisualizer/Modals/NodeModals/NodeTypeStep/NodeTypeStep.jsx:197 +msgid "sec" +msgstr "" + +#: screens/Inventory/InventorySourceDetail/InventorySourceDetail.jsx:236 +msgid "seconds" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:62 +msgid "select module" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:139 +msgid "select verbosity" +msgstr "" + +#: screens/User/UserList/UserListItem.jsx:56 +msgid "social login" +msgstr "" + +#: screens/ActivityStream/ActivityStreamListItem.jsx:30 +msgid "system" +msgstr "" + +#: screens/Organization/OrganizationTeams/OrganizationTeamListItem.jsx:28 +msgid "team name" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:520 +msgid "timed out" +msgstr "" + +#: components/AdHocCommands/AdHocDetailsStep.jsx:230 +msgid "toggle changes" +msgstr "" + +#: screens/Application/ApplicationTokens/ApplicationTokenListItem.jsx:42 +msgid "token name" +msgstr "" + +#: screens/Inventory/InventorySources/InventorySourceListItem.jsx:110 +msgid "type" +msgstr "" + +#: screens/ActivityStream/ActivityStreamDescription.jsx:525 +msgid "updated" +msgstr "" + +#: screens/Template/shared/WebhookSubForm.jsx:199 +msgid "workflow job template webhook key" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:113 +msgid "{0, plural, one {Are you sure you want delete the group below?} other {Are you sure you want delete the groups below?}}" +msgstr "" + +#: screens/Inventory/shared/InventoryGroupsDeleteModal.jsx:86 +msgid "{0, plural, one {Delete Group?} other {Delete Groups?}}" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryList.jsx:223 +msgid "{0, plural, one {The inventory will be in a pending status until the final delete is processed.} other {The inventories will be in a pending status until the final delete is processed.}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:65 +msgid "{0, plural, one {You cannot cancel the following job because it is not running} other {You cannot cancel the following jobs because they are not running}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:56 +msgid "{0, plural, one {You do not have permission to cancel the following job:} other {You do not have permission to cancel the following jobs:}}" +msgstr "" + +#: screens/Setting/shared/LoggingTestAlert.jsx:27 +msgid "{0}" +msgstr "" + +#: screens/ActivityStream/ActivityStreamListItem.jsx:28 +msgid "{0} (deleted)" +msgstr "" + +#: components/ChipGroup/ChipGroup.jsx:13 +msgid "{0} more" +msgstr "" + +#: screens/Inventory/InventoryList/InventoryListItem.jsx:62 +msgid "{0} sources with sync failures." +msgstr "" + +#: screens/Setting/shared/LoggingTestAlert.jsx:25 +msgid "{0}: {1}" +msgstr "" + +#: components/DetailList/UserDateDetail.jsx:23 +msgid "{dateStr} by <0>{username}" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:192 +msgid "{intervalValue, plural, one {day} other {days}}" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:190 +msgid "{intervalValue, plural, one {hour} other {hours}}" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:188 +msgid "{intervalValue, plural, one {minute} other {minutes}}" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:196 +msgid "{intervalValue, plural, one {month} other {months}}" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:194 +msgid "{intervalValue, plural, one {week} other {weeks}}" +msgstr "" + +#: components/Schedule/shared/FrequencyDetailSubform.jsx:198 +msgid "{intervalValue, plural, one {year} other {years}}" +msgstr "" + +#: components/PromptDetail/PromptDetail.jsx:43 +msgid "{minutes} min {seconds} sec" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:92 +msgid "{numJobsToCancel, plural, one {Cancel job} other {Cancel jobs}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:151 +msgid "{numJobsToCancel, plural, one {This action will cancel the following job:} other {This action will cancel the following jobs:}}" +msgstr "" + +#: components/JobList/JobListCancelButton.jsx:77 +msgid "{numJobsToCancel, plural, one {{0}} other {{1}}}" +msgstr "" + +#: components/PaginatedDataList/PaginatedDataList.jsx:92 +#: components/PaginatedTable/PaginatedTable.jsx:77 +msgid "{pluralizedItemName} List" +msgstr ""